@charset "UTF-8";
/*
  scssでカスタマイズしています。
  css編集するときはscssから変更するか、cssファイルを直接編集する場合は
  編集以降はcssのみ編集してください。
*/
/*---------------	リセットcss	---------------*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-style: normal;
  font-weight: normal;
  font-size: 100%;
  vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

html {
  overflow-y: scroll;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

input,
textarea {
  margin: 0;
  padding: 0;
}

ol,
ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption,
th {
  text-align: left;
}

a:focus {
  outline: none;
}

input,
textarea,
button {
  -webkit-appearance: none;
  background-color: transparent;
  border: none;
  border-radius: 0;
}

body {
  overflow: hidden;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* ========================================
	Component(共通利用の部品。幅とか色は持たせない)
	命名規則: .c-
========================================= */
.c-container {
  width: 100%;
  max-width: 1140px;
  height: auto;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (min-width: 769px) {
  .c-container {
    width: 100%;
  }
}
@media screen and (min-width: 769px) and (max-width: 1400px) {
  .c-container {
    width: 100%;
  }
}
@media screen and (min-width: 769px) and (max-width: 1300px) {
  .c-container {
    width: 100%;
  }
}
@media screen and (min-width: 769px) and (max-width: 1200px) {
  .c-container {
    width: 100%;
  }
}
@media screen and (min-width: 769px) and (max-width: 1100px) {
  .c-container {
    width: 100%;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .c-container {
    width: 100%;
  }
}
@media screen and (min-width: 769px) and (max-width: 900px) {
  .c-container {
    width: 100%;
  }
}
@media screen and (min-width: 769px) and (max-width: 800px) {
  .c-container {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .c-container {
    width: 100%;
    max-width: 550px !important;
  }
}
@media screen and (max-width: 360px) {
  .c-container {
    width: 100%;
  }
}
@media screen and (min-width: 421px) and (max-width: 768px) {
  .c-container {
    width: 100%;
  }
}
@media screen and (min-width: 481px) and (max-width: 768px) {
  .c-container {
    width: 100%;
  }
}
@media screen and (min-width: 601px) and (max-width: 768px) {
  .c-container {
    width: 100%;
  }
}

/*----- レスポンシブ表示切り替え -----*/
.c-pc_only {
  display: block !important;
}
@media screen and (max-width: 768px) {
  .c-pc_only {
    display: none !important;
  }
}

.c-pc_only--inline {
  display: inline !important;
}
@media screen and (max-width: 768px) {
  .c-pc_only--inline {
    display: none !important;
  }
}

.c-pc_only--flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}
@media screen and (max-width: 768px) {
  .c-pc_only--flex {
    display: none !important;
  }
}

.c-sp_only {
  display: none !important;
}
@media screen and (max-width: 768px) {
  .c-sp_only {
    display: block !important;
  }
}

.c-sp_only--inline {
  display: none !important;
}
@media screen and (max-width: 768px) {
  .c-sp_only--inline {
    display: inline !important;
  }
}

.c-sp_only--flex {
  display: none !important;
}
@media screen and (max-width: 768px) {
  .c-sp_only--flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}

/*----- 共通パーツ -----*/
.c-btn {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 12.5rem;
  height: 3rem;
  border: 1px solid #fff;
  text-decoration: none;
  font-size: 0.875rem;
  color: #fff;
  font-weight: 500;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .c-btn {
    width: 10.625rem;
    height: 2.25rem;
    font-size: 0.8125rem;
  }
}
.c-btn:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 8px;
  height: 11px;
  background: url(../images/common/icon-btn_more.webp) 50% 50% no-repeat;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .c-btn:after {
    right: 0.625rem;
  }
}
.c-btn.u-color_blue {
  border: 1px solid #0f3290;
  color: #0f3290;
}
.c-btn.u-color_blue:after {
  background: url(../images/common/icon-btn_more_blue.webp) 50% 50% no-repeat;
  background-size: cover;
}

.c-lowerpage__titlearea {
  width: 100%;
  height: auto;
  padding: 4.375rem 0 5rem;
  background: url(../images/common/bg-lowerpage_tite.webp) 50% 50% no-repeat;
  background-size: cover;
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .c-lowerpage__titlearea {
    padding: 2.1875rem 0 2.5rem;
    margin-top: 50px;
  }
}

.c-lowerpage__titlebox {
  color: #fff;
  text-align: center;
}

.c-lowerpage__title--en {
  font-size: 3rem;
  font-family: "Noto Serif JP", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", sans-serif;
  font-weight: 500;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .c-lowerpage__title--en {
    font-size: 2.25rem;
  }
}

.c-lowerpage__title--jp {
  margin: 1.75rem auto 0;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .c-lowerpage__title--jp {
    margin: 1rem auto 0;
    font-size: 0.75rem;
  }
}

/*----- ヘッダー -----*/
.c-header {
  position: fixed;
  z-index: 9500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: auto;
  padding: 0 1.25rem 0 1.875rem;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .c-header {
    height: 3.125rem;
    padding: 0 0.9375rem 0;
  }
}

.c-header__logo {
  width: 12.125rem;
  height: auto;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .c-header__logo {
    width: 9.375rem;
  }
}
@media screen and (max-width: 768px) {
  .c-header__logo {
    width: 7.5rem;
  }
}

.c-header__linkarea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.c-header__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.c-header__link {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 80px;
  margin-left: 2.75rem;
}
.c-header__link:hover > a {
  opacity: 1;
  color: #06b1f0;
}
.c-header__link:hover.u-has_2nd_links:after {
  border-right: 1px solid #06b1f0;
  border-bottom: 1px solid #06b1f0;
}
@media screen and (min-width: 769px) and (max-width: 1200px) {
  .c-header__link {
    margin-left: 1.25rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .c-header__link {
    margin-left: 1.875rem;
  }
}
.c-header__link.u-has_2nd_links:after {
  content: "";
  position: absolute;
  bottom: 18px;
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(45deg);
          transform: translateX(-50%) rotate(45deg);
  display: block;
  width: 8.5px;
  height: 8.5px;
  border-right: 1px solid #7b7b7b;
  border-bottom: 1px solid #7b7b7b;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .c-header__link.u-has_2nd_links:after {
    width: 6px;
    height: 6px;
  }
}
.c-header__link a {
  text-decoration: none;
  font-size: 16px;
  color: #333;
  font-weight: 500;
  line-height: 1;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .c-header__link a {
    font-size: 0.75rem;
  }
}

.c-header__2ndlinkbox {
  position: absolute;
  bottom: 0.375rem;
  left: 50%;
  -webkit-transform: translate(-50%, 100%);
          transform: translate(-50%, 100%);
  width: 18.8125rem;
  height: auto;
  padding-bottom: 2.5rem;
  border-radius: 0.625rem;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  background-color: #edf3f5;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  overflow: hidden;
}
.c-header__2ndlinkbox.wide {
  width: 380px;
}
.c-header__2ndlinkbox.js-active {
  opacity: 1;
  visibility: visible;
}

.c-header__2ndlinkbox__img {
  width: 100%;
  height: auto;
}

.c-header__2ndlinks {
  width: calc(100% - 50px);
  margin: 2.5rem auto 0;
}

.c-header__2ndlink {
  position: relative;
  padding-left: 2.25rem;
}
.c-header__2ndlink a {
  font-size: 1rem;
  font-weight: 500;
  color: #333;
}
.c-header__2ndlink a:hover {
  opacity: 1;
  color: #06b1f0;
}
.c-header__2ndlink:not(:first-child) {
  margin-top: 1.25rem;
}

.c-header__2ndlink__icon {
  position: absolute;
  top: 52%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.25rem;
  height: auto;
  margin-right: 0.875rem;
}

.c-header__entry {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 220px;
  height: 48px;
  margin-left: 3.75rem;
  border-radius: 24px;
  background-color: #01AFEE;
  text-decoration: none;
  font-size: 16px;
  color: #fff;
  font-weight: 700;
  line-height: 1;
}
@media screen and (min-width: 769px) and (max-width: 1200px) {
  .c-header__entry {
    margin-left: 1.875rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .c-header__entry {
    width: 180px;
    height: 30px;
    border-radius: 15px;
    font-size: 12px;
  }
}

.c-header__entry__icon {
  width: 27px;
  height: auto;
  margin-right: 13px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .c-header__entry__icon {
    width: 20px;
    margin-right: 10px;
  }
}

.c-header__togglemenu {
  display: block;
  width: 1.6875rem;
  height: auto;
  padding: 0;
}
.c-header__togglemenu .js-openbtn {
  display: block;
}
.c-header__togglemenu .js-closebtn {
  display: none;
}
.c-header__togglemenu.js-active .js-openbtn {
  display: none;
}
.c-header__togglemenu.js-active .js-closebtn {
  display: block;
}

.c-header__link__bg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9000;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-header__link__bg.js-active {
  opacity: 1;
  visibility: visible;
}

.c-header__globalmenusp {
  position: fixed;
  top: 3.125rem;
  left: 0;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  z-index: 9999;
  display: none;
  width: 100%;
  height: 100%;
  background-color: #edf3f5;
  padding: 2.5rem 2.1875rem;
  padding-bottom: 100px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  overflow-y: scroll;
  -ms-scroll-chaining: none;
      overscroll-behavior: contain;
}
.c-header__globalmenusp.js-active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
@media screen and (max-width: 768px) {
  .c-header__globalmenusp {
    display: block;
  }
}

.c-header__globalmenusp__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  height: auto;
}

.c-header__globalmenusp__listitem {
  width: 100%;
  height: auto;
}
.c-header__globalmenusp__listitem:not(:first-child) {
  margin-top: 2.5rem;
}
.c-header__globalmenusp__listitem.u-half {
  width: 50%;
}

.c-header__globalmenusp__link {
  display: block;
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 700;
  color: #06b1f0;
  line-height: 1;
}

.c-header__globalmenusp__2ndlist {
  margin-top: 1.125rem;
}

.c-header__globalmenusp__2ndlistitem:not(:first-child) {
  margin-top: 1rem;
}

.c-header__globalmenusp__2ndlink {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 0.28125rem;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  color: #333;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .c-header__globalmenusp__2ndlink {
    line-height: 1.3;
  }
}

.c-header__globalmenusp__2ndlinkicon {
  width: 0.78125rem;
  height: auto;
  margin-right: 0.625rem;
}

.c-header__globalmenusp__linkbtn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 3.125rem;
  margin: 2.375rem auto 0;
  border-radius: 1.5625rem;
  background-color: #01AFEE;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}

.c-header__globalmenusp__linkbtn__icon {
  width: 1.09375rem;
  height: auto;
  margin-right: 0.53125rem;
}

/*----- CTA -----*/
.c-cta {
  padding: 12.5rem 0;
}
@media screen and (max-width: 768px) {
  .c-cta {
    padding: 6.25rem 0;
  }
}
.c-cta .c-container {
  max-width: 1300px;
}

.c-cta__link {
  display: block;
  position: relative;
  width: 100%;
  height: auto;
  text-decoration: none;
  color: #fff;
}

.c-cta__flex {
  position: absolute;
  z-index: 2;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: auto;
  padding: 0 6.19%;
}
@media screen and (max-width: 768px) {
  .c-cta__flex {
    display: block;
    padding: 0.625rem 6.19% 0;
  }
}

.c-cta__link__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 768px) {
  .c-cta__link__left {
    display: block;
  }
}

.c-cta__link__mark {
  width: 8.5rem;
  height: auto;
}
@media screen and (max-width: 768px) {
  .c-cta__link__mark {
    width: 5.375rem;
    margin: 0 auto;
  }
}

.c-cta__link__text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: 1.25rem;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5555555556;
}
@media screen and (max-width: 768px) {
  .c-cta__link__text {
    margin-top: 1.375rem;
    margin-left: 0;
    font-size: 1rem;
    text-align: center;
    line-height: 1.625;
  }
}

.c-cta__link__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 18.125rem;
  height: auto;
}
@media screen and (max-width: 768px) {
  .c-cta__link__right {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    width: 100%;
    margin-top: 1.1875rem;
  }
}

.c-cta__link__strongtext {
  font-size: 3.75rem;
  font-family: "Noto Serif JP", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", sans-serif;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
}
@media screen and (max-width: 768px) {
  .c-cta__link__strongtext {
    margin-top: 0.125rem;
    font-size: 1.875rem;
    text-align: center;
  }
}

.c-cta__link__icon {
  width: 2rem;
  height: auto;
  margin-left: 1.25rem;
}
@media screen and (max-width: 768px) {
  .c-cta__link__icon {
    width: 1rem;
    margin: 0 auto;
  }
}

.c-cta__bg {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
}

/*----- フッター -----*/
.c-footer {
  width: 100%;
  height: auto;
}

.c-footer__content {
  width: 100%;
  height: auto;
  padding: 3.75rem 0;
  background: url(../images/common/bg-footer.webp) top center no-repeat;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .c-footer__content {
    padding: 2.34375rem 0 3.75rem;
    background: url(../images/common/bg-footer_sp.webp) top center no-repeat;
    background-size: cover;
  }
}
.c-footer__content .c-container {
  max-width: 1300px;
}
@media screen and (max-width: 768px) {
  .c-footer__content .c-container {
    max-width: 550px;
  }
}

.c-footer__content__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .c-footer__content__flex {
    display: block;
  }
}

.c-footer__content__logoarea {
  -ms-flex-negative: 1;
      flex-shrink: 1;
  padding-right: 1.25rem;
}
@media screen and (max-width: 768px) {
  .c-footer__content__logoarea {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-right: 0;
  }
}

.c-footer__content__logo {
  display: block;
  width: 12.75rem;
  height: auto;
}
@media screen and (max-width: 768px) {
  .c-footer__content__logo {
    width: 7.375rem;
    margin-top: 0.3125rem;
  }
}

.c-footer__content__sns_links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 1.875rem auto 0 0;
  gap: 0.625rem;
}
@media screen and (max-width: 768px) {
  .c-footer__content__sns_links {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    margin: 0 0 0 auto;
    gap: 0.375rem;
  }
}

.c-footer__content__sns_link:not(:first-child) {
  margin-left: 0.625rem;
}
@media screen and (max-width: 768px) {
  .c-footer__content__sns_link:not(:first-child) {
    margin-left: 0.25rem;
  }
}
.c-footer__content__sns_link a {
  display: block;
  width: 2.5rem;
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  .c-footer__content__sns_link a {
    width: 1.625rem;
  }
}
.c-footer__content__sns_link a.x {
  width: 2.125rem;
}
@media screen and (max-width: 768px) {
  .c-footer__content__sns_link a.x {
    width: 1.375rem;
  }
}

.c-footer__content__linkarea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 768px) {
  .c-footer__content__linkarea {
    display: block;
    margin-top: 1.625rem;
  }
}

.c-footer__content__linkblock:not(:first-child) {
  margin-left: 2.8125rem;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .c-footer__content__linkblock:not(:first-child) {
    margin-left: 1.875rem;
  }
}
@media screen and (max-width: 768px) {
  .c-footer__content__linkblock:not(:first-child) {
    margin-top: 1.25rem;
    margin-left: 0;
  }
  .c-footer__content__linkblock:not(:first-child).u-sp__flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .c-footer__content__linkblock:not(:first-child).u-sp__flex .c-footer__content__largelink {
    width: 50%;
  }
}

.c-footer__content__largelink {
  display: block;
  margin-bottom: 0.875rem;
  font-size: 1rem;
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .c-footer__content__largelink {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 768px) {
  .c-footer__content__largelink {
    margin-bottom: 1rem;
  }
}

.c-footer__content__links {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .c-footer__content__links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.c-footer__content__link {
  display: block;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .c-footer__content__link {
    width: 50%;
  }
  .c-footer__content__link:not(:nth-child(-n+2)) {
    margin-top: 0.625rem !important;
  }
}
.c-footer__content__link:not(:first-child) {
  margin-top: 0.625rem;
}
@media screen and (max-width: 768px) {
  .c-footer__content__link:not(:first-child) {
    margin-top: 0;
  }
}
.c-footer__content__link a {
  display: block;
  text-decoration: none;
  font-size: 0.875rem;
  line-height: 1.5em;
  color: #d4dffc;
  /*white-space: nowrap;*/
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .c-footer__content__link a {
    font-size: 0.75rem;
  }
}
@media screen and (max-width: 768px) {
  .c-footer__content__link a {
    font-size: 0.75rem;
    padding-right: 1em;
  }
}

.c-footer__copyrightarea {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .c-footer__copyrightarea {
    padding: 1.125rem 0 1.875rem;
  }
}
.c-footer__copyrightarea .c-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1300px;
  height: 4.375rem;
}
@media screen and (max-width: 768px) {
  .c-footer__copyrightarea .c-container {
    display: block;
    max-width: 550px;
    height: auto;
  }
}

.c-footer__copyrightarea__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .c-footer__copyrightarea__flex {
    -webkit-box-pack: initial;
        -ms-flex-pack: initial;
            justify-content: initial;
    -webkit-box-align: initial;
        -ms-flex-align: initial;
            align-items: initial;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.c-footer__copyrightarea__copyright {
  width: 12.5rem;
  height: auto;
  padding-right: 2.5rem;
  font-size: 0.75rem;
  text-align: right;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .c-footer__copyrightarea__copyright {
    width: 100%;
    margin-top: 1.5rem;
    padding-right: 0;
    font-size: 0.625rem;
    text-align: center;
  }
}

.c-footer__copyrightarea__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-right: 3rem;
}
@media screen and (max-width: 768px) {
  .c-footer__copyrightarea__links {
    -webkit-box-pack: initial;
        -ms-flex-pack: initial;
            justify-content: initial;
    -webkit-box-align: initial;
        -ms-flex-align: initial;
            align-items: initial;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding-right: 0;
  }
}

@media screen and (max-width: 768px) {
  .c-footer__copyrightarea__link {
    display: block;
    width: 50%;
    line-height: 1;
    margin-top: 0.75rem;
  }
  .c-footer__copyrightarea__link:nth-child(odd) {
    padding-right: 0.5rem;
    text-align: right;
  }
  .c-footer__copyrightarea__link:nth-child(even) {
    padding-left: 0.5rem;
    text-align: left;
  }
}
.c-footer__copyrightarea__link a {
  display: block;
  font-size: 0.875rem;
  text-decoration: none;
  color: #333;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .c-footer__copyrightarea__link a {
    font-size: 0.625rem;
  }
}
.c-footer__copyrightarea__link:not(:first-child) {
  margin-left: 1.25rem;
}
@media screen and (max-width: 768px) {
  .c-footer__copyrightarea__link:not(:first-child) {
    margin-top: 0.75rem;
    margin-left: 0;
  }
}

br.sp-only {
  display: none;
}
@media screen and (max-width: 768px) {
  br.sp-only {
    display: block;
  }
}

.scroll-fixed {
  position: fixed !important;
}