@charset "UTF-8";
/* shutter 
========================================== */
.shutter {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  overflow: hidden;
  background: #141414;
  opacity: 1;
  transition: 0.2s;
}
.shutter.open {
  opacity: 0;
  pointer-events: none;
}
.shutter.close {
  opacity: 1;
  pointer-events: inherit;
}

/* Youtube
========================================== */
/*
  width = ウィンドウ幅 - 左右マージンの合計
  height = width * 9/16
  ※単位vwはスクロールバーを含めた値になるため、PCの場合は少しずれる。
  　スマホは問題ない。
*/
.read :not(.c-youtubeWrap) > iframe,
.read .c-youtubeWrap {
  margin: 1em 0;
}

.read iframe {
  max-width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}

/* ==========================================
*
*  mfp
*
========================================== */
.mfp-bg {
  background: rgba(0, 0, 0, 0.8) !important;
}

.mfp-fade.mfp-bg {
  opacity: 0;
  transition: 0.5s;
}

/* overlay animate in */
.mfp-fade.mfp-bg.mfp-ready {
  opacity: 1;
}

/* overlay animate out */
.mfp-fade.mfp-bg.mfp-removing {
  opacity: 0;
}

/* content at start */
.mfp-fade.mfp-wrap .mfp-content {
  opacity: 0;
  transition: 0.5s;
}

/* content animate it */
.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}

/* content animate out */
.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}

/* ボタン
========================================== */
.linkButton {
  text-align: center;
}
.linkButton a, .linkButton button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 34.6rem;
  max-width: 100%;
  height: 6rem;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.075em;
  padding-left: 0.075em;
  color: #003e79;
  text-decoration: none;
  border: 1px solid #003e79;
  border-radius: 3rem;
  overflow: hidden;
  position: relative;
  z-index: 10;
}
.linkButton a::before, .linkButton button::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0 0 0 auto;
  width: 0;
  height: 100%;
  background: linear-gradient(30deg, #002357, #00a0e9);
  transition: 0.3s ease;
}
.linkButton a:hover, .linkButton button:hover {
  color: #ffffff;
}
.linkButton a:hover::before, .linkButton button:hover::before {
  left: 0;
  right: auto;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .linkButton a, .linkButton button {
    width: 26rem;
    max-width: 100%;
    height: 5rem;
    font-size: 2rem;
  }
}

.arrowButton {
  --btn-color: #003e79;
}
.arrowButton.-black {
  --btn-color: #000;
}
.arrowButton a {
  position: relative;
  display: inline-block;
  padding: 0.45em 1.7em 0.45em 1.05em;
  margin-right: 0.65em;
  z-index: 1;
  font-family: "Roboto Condensed", "Noto Sans JP", "ヒラギノ角ゴ ProN W3", Meiryo, sans-serif;
  font-weight: 700;
  font-size: 3.8rem;
  line-height: 1.2;
  color: var(--btn-color);
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .arrowButton a {
    font-size: min(5vw, 3.6rem);
  }
}
.arrowButton a::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0 0 0 auto;
  transform: translateX(50%);
  margin: auto;
  width: 1.3em;
  height: 0.8rem;
  background: var(--btn-color);
  -webkit-mask-image: url(../../images/main/common/arrow.svg);
          mask-image: url(../../images/main/common/arrow.svg);
  -webkit-mask-position: right center;
          mask-position: right center;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}
.arrowButton__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  display: block;
  border: 0.2rem solid var(--btn-color);
  border-radius: 4rem;
  overflow: hidden;
  transition: 0.3s ease;
}
.arrowButton__bg::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 0;
  display: block;
  background: linear-gradient(30deg, #002357, #00a0e9);
  transition: 0.3s ease;
}
.arrowButton a:hover {
  opacity: 1;
  color: #ffffff;
}
a:hover .arrowButton__bg::before {
  right: auto;
  left: 0;
  width: 100%;
}

/* 見出し
========================================== */
h2.sectionHead {
  font-family: "Roboto Condensed", "Noto Sans JP", "ヒラギノ角ゴ ProN W3", Meiryo, sans-serif;
  font-weight: 700;
  color: #003e79;
  font-size: 12rem;
  line-height: 0.8;
  letter-spacing: 0.02em;
  margin: 0;
}
@media screen and (max-width: 768px) {
  h2.sectionHead {
    font-size: min(14vw, 10rem);
  }
}

/* Layout
========================================== */
.container {
  max-width: 129rem;
  margin: auto;
  padding: 0 4.5rem;
}
.container.-large {
  max-width: 148rem;
  padding: 0 2rem;
}
@media screen and (max-width: 425px) {
  .container {
    padding: 0 2.4rem;
  }
  .container.-large {
    max-width: 148rem;
    padding: 0 1rem;
  }
}

.fv {
  position: relative;
  z-index: 100;
  background: url(../../images/main/common/fv-bg.png) center center/cover no-repeat, #003e79;
  -webkit-mask-image: url(../../images/main/common/fv-bg_mask.png), linear-gradient(to top, transparent 9.5rem, #fff 9.5rem);
          mask-image: url(../../images/main/common/fv-bg_mask.png), linear-gradient(to top, transparent 9.5rem, #fff 9.5rem);
  -webkit-mask-position: bottom center, bottom center;
          mask-position: bottom center, bottom center;
  -webkit-mask-size: max(192rem, 100%), 100% 100%;
          mask-size: max(192rem, 100%), 100% 100%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  color: #ffffff;
}
@media screen and (max-width: 425px) {
  .fv {
    -webkit-mask-image: url(../../images/main/common/fv-bg_mask.png), linear-gradient(to top, transparent 10vw, #fff 10vw);
            mask-image: url(../../images/main/common/fv-bg_mask.png), linear-gradient(to top, transparent 10vw, #fff 10vw);
    -webkit-mask-size: 200%, 100% 100%;
            mask-size: 200%, 100% 100%;
  }
}

/* NEWSList
========================================== */
.newsList a {
  color: inherit;
  text-decoration: none;
}

.day {
  font-family: "Roboto Condensed", "Noto Sans JP", "ヒラギノ角ゴ ProN W3", Meiryo, sans-serif;
  font-weight: 700;
}

/* NEWマーク
========================================== */
.new_ic {
  display: inline-block;
}

#list_01 .new_ic > a {
  display: inline;
}

.new_ic::before {
  content: " NEW";
  background: #003e79;
  color: #ffffff;
  font-family: "Roboto Condensed", "Noto Sans JP", "ヒラギノ角ゴ ProN W3", Meiryo, sans-serif;
  font-weight: 700;
  font-size: 0.8em;
  letter-spacing: 0.1em;
  padding: 0.15em 0.35em 0.1em 0.5em;
  margin: 0 0.5em 0 0;
  border-radius: 1em;
}

/* ページネーション（ネクストバック）
========================================== */
/* ネクストバックナビ */
.nb_navi {
  text-align: center;
  margin-top: 50px;
}

/* 件数表示 */
.page {
  display: none;
}

/* 件数件表示（数字） */
/* ページネーション（リスト） */
.page_navi > ul {
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 1em;
}

/* ページネーション（ページ数、前、次） */
/* ページネーション（前、次のみ） */
.page_navi li.nb_pre,
.page_navi li.nb_nex {
  flex: 1;
}

.page_navi li.nb_pre {
  text-align: left;
}

.page_navi li.nb_nex {
  text-align: right;
}

/* ページネーション（ページ数のみ） */
.page_navi li.nb_crt,
.page_navi li.nb_link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 6rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  font-family: "Roboto Condensed", "Noto Sans JP", "ヒラギノ角ゴ ProN W3", Meiryo, sans-serif;
  font-size: 4rem;
  line-height: 0.8;
  font-weight: 700;
  color: #ffffff;
}

/* ページネーション（ページ数 カレント） */
.page_navi li.nb_link {
  background: #cacaca;
}

.page_navi li.nb_crt {
  background: #003e79;
}

/* ページネーション（リンク） */
.page_navi a {
  color: inherit;
  text-decoration: none;
}

/* ページネーション リンクなし */
.page_navi li > span {
  opacity: 0.2;
}

#footer {
  position: relative;
  z-index: 10;
  background: url(../../images/main/common/footer-bg.png) top center/cover no-repeat;
  color: #ffffff;
  padding: 18rem 0 12rem;
}
@media screen and (max-width: 425px) {
  #footer {
    padding: 8rem 0 3.4rem;
  }
  #footer .container {
    padding: 0 1rem;
  }
}

.footer {
  display: grid;
  grid-template-columns: 1fr min(50%, 22.6rem);
  gap: 4rem;
  font-size: 1.2rem;
  font-weight: 500;
}
.footer__logo {
  max-width: 35rem;
}
.footer__navi {
  font-size: 1.8rem;
  line-height: 1;
}
.footer__navi a {
  display: block;
  color: inherit;
  text-decoration: none;
  padding: 1.5rem 0;
  border-top: 1px solid;
}
.footer__navi a:first-child {
  padding-top: 0;
  border-top: none;
}
@media screen and (max-width: 768px) {
  .footer {
    gap: 1rem 4rem;
  }
  .footer__navi {
    margin-bottom: 3rem;
  }
  .footer__caution, .footer__copyright {
    grid-column-start: 1;
    grid-column-end: -1;
    text-align: center;
  }
}
@media screen and (max-width: 375px) {
  .footer {
    grid-template-columns: 100%;
  }
  .footer__logo {
    margin-bottom: 4rem;
    width: 60%;
  }
}
/*# sourceMappingURL=usa_038.css.map */