@charset "UTF-8";
/*
  https://www.joshwcomeau.com/css/custom-css-reset/
*/
/*
  1. Use a more-intuitive box-sizing model.
*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

/*
  2. Remove default margin
*/
* {
  margin: 0;
}

/*
  Typographic tweaks!
  3. Add accessible line-height
  4. Improve text rendering
*/
body {
  line-height: 1.5;
}

/*
  5. Improve media defaults
*/
img,
picture,
video,
canvas,
svg {
  max-width: 100%;
}

/*
  6. Remove built-in form typography styles
*/
input,
button,
textarea,
select {
  font: inherit;
}

/*
  7. Avoid text overflows
*/
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

/*
  8. Create a root stacking context
*/
#root,
#__next {
  isolation: isolate;
}

/* ==============================================
 * Base style
 */
:root {
  --wrap-padding: min(4.39vw, 60px);
  --header-height: 100px;
}
@media screen and (max-width: 1200px) {
  :root {
    --header-height: 60px;
  }
}
@media screen and (max-width: 767px) {
  :root {
    --wrap-padding: 8vw;
  }
}
html {
  font-size: 100% !important;
}
body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "Yu Gothic", "YuGothic", sans-serif;
  font-size: 16px;
  line-height: 1.4;
  background-color: #184999;
  color: #fff;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

svg {
  overflow: visible;
}

button {
  cursor: pointer;
}

#root {
  position: relative;
  min-height: 100vh;
  max-width: 100%;
  overflow-x: clip;
}
#root::before {
  content: "";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  height: 100lvh;
  width: 100vw;
  background: center center/cover no-repeat url("../img/top_bg_pc.webp");
  z-index: -1;
}
@media screen and (max-width: 767px) {
  #root::before {
    background-image: url("../img/top_bg_sp.webp");
  }
}
#root.js-no-bg::before {
  content: none;
}

.main {
  padding-top: calc(var(--header-height) - 1px);
}

.splide__pagination {
  padding-left: 0;
  margin-top: 20px;
  list-style-type: none;
  gap: 0 8px;
}
.splide__pagination li button {
  appearance: none;
  padding: 0;
  margin: 0;
  border-width: 0;
  box-shadow: none;
  border-radius: 0px;
  width: min(10.66vw, 40px);
  height: 2px;
  background-color: #fff;
  opacity: 0.4;
  transition: opacity 0.2s;
}
.splide__pagination li button.is-active {
  opacity: 1;
}

/* ==============================================
 * common classes - display
 */
.c-lte-wrap {
  display: none;
}
@media screen and (max-width: 1366px) {
  .c-lte-wrap {
    display: block;
  }
}

.c-lte-pc {
  display: none;
}
@media screen and (max-width: 1024px) {
  .c-lte-pc {
    display: block;
  }
}

.c-lte-tab {
  display: none;
}
@media screen and (max-width: 767px) {
  .c-lte-tab {
    display: block;
  }
}

.c-lte-sp {
  display: none;
}
@media screen and (max-width: 480px) {
  .c-lte-sp {
    display: block;
  }
}

.c-lte-sp-small {
  display: none;
}
@media screen and (max-width: 374px) {
  .c-lte-sp-small {
    display: block;
  }
}

.c-lte-wrap-inline {
  display: none;
}
@media screen and (max-width: 1366px) {
  .c-lte-wrap-inline {
    display: inline;
  }
}

.c-lte-pc-inline {
  display: none;
}
@media screen and (max-width: 1024px) {
  .c-lte-pc-inline {
    display: inline;
  }
}

.c-lte-tab-inline {
  display: none;
}
@media screen and (max-width: 767px) {
  .c-lte-tab-inline {
    display: inline;
  }
}

.c-lte-sp-inline {
  display: none;
}
@media screen and (max-width: 480px) {
  .c-lte-sp-inline {
    display: inline;
  }
}

.c-lte-sp-small-inline {
  display: none;
}
@media screen and (max-width: 374px) {
  .c-lte-sp-small-inline {
    display: inline;
  }
}

@media screen and (max-width: 1366px) {
  .c-gt-wrap {
    display: none;
  }
}

@media screen and (max-width: 1024px) {
  .c-gt-pc {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .c-gt-tab {
    display: none;
  }
}

@media screen and (max-width: 480px) {
  .c-gt-sp {
    display: none;
  }
}

@media screen and (max-width: 374px) {
  .c-gt-sp-small {
    display: none;
  }
}

/* ==============================================
 * .c-wrap
 */
.c-wrap {
  max-width: 100%;
  width: 1366px;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--wrap-padding);
  padding-right: var(--wrap-padding);
}

.c-wrap-small {
  max-width: 100%;
  width: calc(1060px + var(--wrap-padding) * 2);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--wrap-padding);
  padding-right: var(--wrap-padding);
}

/* ==============================================
 * .c-hl-01
 */
.c-hl-01 {
  font-size: 1.75rem;
  font-size: clamp(1.75rem, 1.7rem + 0.2018163471vw, 1.87rem); /* 28px @375px - 30px @1366px */
}
@media screen and (max-width: 374px) {
  .c-hl-01 {
    font-size: 7.46vw;
  }
}
.c-hl-01__en img {
  display: block;
  height: 15px;
  width: auto;
}
.c-hl-01__ja {
  margin-top: 0.37em;
  font-size: inherit;
  color: #fff;
  font-weight: 900;
  line-height: 1.563;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .c-hl-01__ja {
    margin-top: 0.71em;
    line-height: 1.429;
  }
}
.c-hl-01--center .c-hl-01__en img {
  margin-left: auto;
  margin-right: auto;
}
.c-hl-01--center .c-hl-01__ja {
  text-align: center;
  font-size: 2rem;
  font-size: clamp(2rem, 1.9rem + 0.4036326942vw, 2.25rem); /* 32px @375px - 36px @1366px */
  margin-top: 0.27em;
}

/* ==============================================
 * .c-hl-02
 */
.c-hl-02__en {
  font-size: 21px;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: #a99148;
}
@media screen and (max-width: 1024px) {
  .c-hl-02__en {
    text-align: center;
  }
}
.c-hl-02__ja {
  margin-top: 0.61em;
  font-weight: 600;
  color: #fff;
  font-size: 1.31rem;
  font-size: clamp(1.31rem, 1.19rem + 0.5045408678vw, 1.62rem); /* 21px @375px - 26px @1366px */
  line-height: 1.385;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1024px) {
  .c-hl-02__ja {
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .c-hl-02__ja {
    margin-top: 0.33em;
    line-height: 1.333;
  }
}

/* ==============================================
 * .c-btn-basic
 */
.c-btn-basic {
  display: inline-block;
  height: 4em;
  line-height: 4em;
  padding: 0 2.26em;
  font-size: 15px;
  text-align: center;
  text-decoration: none;
  border-radius: 9999px;
  color: #184796;
  background-color: #fff;
  letter-spacing: 0.05em;
  transition: opacity 0.2s;
}
.c-btn-basic:hover {
  opacity: 0.85;
}

/* ==============================================
 * .c-cards
 */
.c-cards {
  padding-left: 0;
  list-style-type: none;
  display: flex;
  gap: 30px 3.17%;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 1024px) {
  .c-cards {
    column-gap: 3%;
  }
}
@media screen and (max-width: 767px) {
  .c-cards {
    column-gap: 0px;
    flex-wrap: nowrap;
    justify-content: start;
  }
}
.c-cards:is(.splide.is-initialized:not(.is-active) .splide__list.c-cards) {
  display: flex;
}
.c-cards__item {
  width: 31.21%;
  max-width: 389px;
}
@media screen and (max-width: 1024px) {
  .c-cards__item {
    width: 48.5%;
  }
}
@media screen and (max-width: 767px) {
  .c-cards__item {
    width: 315px;
  }
}
@media screen and (max-width: 374px) {
  .c-cards__item {
    width: 84vw;
  }
}
@media screen and (max-width: 767px) {
  .c-cards__item:first-child {
    width: 345px;
    padding-left: 30px;
  }
}
@media screen and (max-width: 374px) {
  .c-cards__item:first-child {
    width: 92vw;
    padding-left: 8vw;
  }
}
@media screen and (max-width: 767px) {
  .c-cards__item:last-child {
    width: 345px;
    padding-right: 30px;
  }
}
@media screen and (max-width: 374px) {
  .c-cards__item:last-child {
    width: 100vw;
    padding-left: 8vw;
    padding-right: 8vw;
  }
}
.c-cards__item--hl {
  align-self: center;
}
.c-cards__item--hl .c-cards__inner {
  background-color: transparent;
  border-radius: 0px;
  margin-bottom: 20px;
}
.c-cards__inner {
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  height: 100%;
}
.c-cards__img img {
  display: block;
  width: 100%;
}
.c-cards__hl {
  margin-top: 1.37em;
  margin-bottom: 1em;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-align: center;
  color: #1a4899;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .c-cards__hl {
    font-size: 20px;
    margin-top: 1.5em;
    margin-bottom: 0.7em;
  }
}
@media screen and (max-width: 374px) {
  .c-cards__hl {
    font-size: 5.33vw;
  }
}
.c-cards__detail,
.c-cards__desc {
  margin: 0 1.6em 1.42em;
  color: #1a4899;
  font-size: 14px;
  line-height: 1.714;
}
@media screen and (max-width: 767px) {
  .c-cards__detail,
  .c-cards__desc {
    font-size: 16px;
    line-height: 1.875;
    margin-left: 1.25em;
    margin-right: 1.25em;
    margin-bottom: 2.31em;
  }
}
.c-cards__detail {
  padding-left: 0;
  list-style-type: none;
}
.c-cards__detail > li {
  position: relative;
  padding-left: 0.8em;
}
.c-cards__detail > li::before {
  position: absolute;
  left: 0;
  content: "・";
}

/* ==============================================
 * .c-box-01
 */
.c-box-01 {
  border-radius: 12px;
  background-color: #16329a;
  padding: 82px 7.54% 88px 7.54%;
  display: flex;
  gap: 30px 9.47%;
  align-items: stretch;
}
@media screen and (max-width: 1024px) {
  .c-box-01 {
    position: relative;
    flex-direction: column;
    margin-left: -2.67vw;
    margin-right: -2.67vw;
    padding: 147px 8vw 40px;
  }
}
.c-box-01__lcol {
  flex: 1;
  border-radius: 12px;
  overflow: hidden;
  max-width: 500px;
}
@media screen and (max-width: 1024px) {
  .c-box-01__lcol {
    align-self: center;
  }
}
.c-box-01__lcol img {
  display: block;
  width: 100%;
}
.c-box-01__rcol {
  flex-shrink: 0;
  width: 400px;
  color: #fff;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 1024px) {
  .c-box-01__rcol {
    width: auto;
  }
}
@media screen and (max-width: 1024px) {
  .c-box-01 .c-hl-01 {
    position: absolute;
    top: 46px;
    right: 0;
    left: 8vw;
  }
}
.c-box-01__lead {
  margin-top: 1.17em;
  margin-bottom: 0.82em;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.706;
}
@media screen and (max-width: 1024px) {
  .c-box-01__lead {
    font-size: 21px;
    margin-top: 0;
    margin-bottom: 20px;
    line-height: 1.333;
  }
}
.c-box-01__desc {
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 1.929;
}
@supports (text-align-last: left) {
  .c-box-01__desc {
    text-align: justify;
    text-align-last: left;
  }
}
@media screen and (max-width: 767px) {
  .c-box-01__desc {
    line-height: 2;
  }
}
.c-box-01__name {
  margin-top: 1.18em;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.05em;
  flex: 1;
  display: flex;
  align-items: end;
}
@media screen and (max-width: 1024px) {
  .c-box-01__name {
    margin-top: 24px;
    font-size: 14px;
  }
}
.c-box-01__btn {
  margin-top: 55px;
}
@media screen and (max-width: 767px) {
  .c-box-01__btn {
    margin-top: 41px;
    display: flex;
    justify-content: center;
  }
}
.c-box-01__btn .c-btn-basic {
  padding-left: 3em;
  padding-right: 3em;
}

/* ==============================================
 * .c-tags
 */
.c-tags {
  padding-left: 0;
  list-style-type: none;
  font-size: 14px;
  letter-spacing: 0.05em;
  gap: 0.42em;
  display: flex;
  justify-content: start;
  align-items: center;
  flex-wrap: wrap;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .c-tags {
    font-weight: normal;
  }
}
.c-tags > li {
  background-color: #13c6f3;
  font-size: inherit;
  padding: 0.07em 0.35em;
}

/* ==============================================
 * .c-linear-slider
 */
@keyframes animScrollLeft {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.c-linear-slider {
  --linear-slide-width: 2970px;
  overflow: hidden;
  display: flex;
  width: calc(var(--linear-slide-width) * 2);
}
.c-linear-slider__slide {
  width: var(--linear-slide-width);
  background: center center/var(--linear-slide-width) auto repeat-x url("../img/activation_btm.webp");
  animation: 40s linear infinite animScrollLeft;
}
.c-linear-slider__slide::before {
  content: "";
  display: block;
  padding-bottom: 6.06%;
}

/* ==============================================
 * .header
 */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  background: #fff;
  font-size: 14px;
  height: var(--header-height);
  z-index: 100;
}
@media screen and (max-width: 1200px) {
  .header {
    font-size: 16px;
  }
}
.header__logo {
  padding-left: 2.14em;
  display: grid;
  place-content: center;
  font-size: inherit;
}
@media screen and (max-width: 1200px) {
  .header__logo {
    padding-left: 16px;
  }
}
.header__logo img {
  width: 11.42em;
}
@media screen and (max-width: 1200px) {
  .header__logo img {
    width: 120px;
  }
}

/* ==============================================
 * .gnav
 */
@media screen and (max-width: 1200px) {
  .gnav {
    display: flex;
    align-items: center;
  }
}
.gnav__btn {
  display: none;
  z-index: 110;
}
@media screen and (max-width: 1200px) {
  .gnav__btn {
    display: block;
    margin-right: 20px;
  }
}
.gnav__btn button {
  position: relative;
  appearance: none;
  border-width: 0;
  padding: 0;
  margin: 0;
  background-color: transparent;
  border-radius: 0px;
  width: 48px;
  height: 26px;
  display: block;
}
.gnav__btn span {
  position: absolute;
  left: 0;
  right: 0;
  height: 3px;
  background-color: #1a4899;
  transition: opacity 0.3s, transform 0.3s, background-color 0.3s, top 0.3s, bottom 0.3s;
  display: block;
}
.gnav__btn span:nth-child(1) {
  top: 0;
}
.gnav__btn span:nth-child(2) {
  top: calc(50% - 1.5px);
}
.gnav__btn span:nth-child(3) {
  bottom: 0;
}
.gnav__content {
  height: 100%;
}
@media screen and (max-width: 1200px) {
  .gnav__content {
    height: auto;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 0.5s, transform 0.3s;
    pointer-events: none;
    display: none;
    background-color: #184999;
    z-index: 105;
  }
}
.gnav__wrap {
  height: 100%;
}
@media screen and (max-width: 1200px) {
  .gnav__wrap {
    max-height: 100%;
    height: auto;
    overflow-y: auto;
    pointer-events: auto;
  }
}
.gnav__inner {
  height: 100%;
  display: flex;
  justify-content: end;
  align-items: stretch;
  column-gap: 3.71em;
}
@media screen and (max-width: 1200px) {
  .gnav__inner {
    padding: calc(var(--header-height) + 45px) var(--wrap-padding) 30px;
    flex-direction: column;
    row-gap: 50px;
  }
}
.gnav__list {
  padding-left: 0;
  list-style-type: none;
  display: flex;
  justify-content: end;
  align-items: stretch;
  height: 100%;
  column-gap: 2.85em;
}
@media screen and (max-width: 1200px) {
  .gnav__list {
    height: auto;
    flex-direction: column;
  }
}
@media screen and (max-width: 1200px) {
  .gnav__list > li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }
}
@media screen and (max-width: 1200px) {
  .gnav__list > li:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
  }
}
.gnav a {
  display: block;
  color: #1a4899;
  text-decoration: none;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1.429;
  text-align: center;
  letter-spacing: 0.05em;
  font-weight: bold;
  transition: opacity 0.2s;
}
@media screen and (max-width: 1200px) {
  .gnav a {
    height: auto;
    justify-content: space-between;
    color: #fff;
    font-weight: 600;
    padding: 22px 4px 21px 0;
  }
}
@media screen and (max-width: 1200px) {
  .gnav a::after {
    content: "";
    display: block;
    width: 11px;
    height: 18px;
    background: right center/contain no-repeat url("../img/gnav_icon_arrow.svg");
  }
}
.gnav a:hover {
  opacity: 0.8;
}
@media screen and (max-width: 1200px) {
  .gnav a br {
    display: none;
  }
}
.gnav__contact a {
  padding: 0 2.57em;
  background: #a99148;
  color: #fff;
  transition: background-color 0.2s;
}
@media screen and (max-width: 1200px) {
  .gnav__contact a {
    justify-content: center;
    padding: 19px 0;
  }
}
.gnav__contact a:hover {
  background: #bda55a;
  opacity: 1;
}
@media screen and (max-width: 1200px) {
  .gnav__contact a::after {
    content: none;
  }
}
.gnav.js-active .gnav__btn span {
  background-color: #fff;
}
.gnav.js-active .gnav__btn span:nth-child(1) {
  transform: rotate(27deg);
  top: calc(50% - 1.5px);
}
.gnav.js-active .gnav__btn span:nth-child(2) {
  opacity: 0;
}
.gnav.js-active .gnav__btn span:nth-child(3) {
  transform: rotate(-27deg);
  bottom: calc(50% - 1.5px);
}
.gnav.js-active .gnav__content {
  opacity: 1;
  transform: scale(1);
}

/* ==============================================
 * .footer
 */
.footer {
  margin-top: -1px;
  padding-top: 80px;
  padding-bottom: 40px;
  background: #1a4899;
}
@media screen and (max-width: 767px) {
  .footer {
    padding-top: max(48px, min(12.8vw, 80px));
  }
}
.footer__sns {
  padding-left: 0;
  list-style-type: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 34px;
}
.footer__sns img {
  width: 22px;
  display: block;
}
.footer__nav {
  margin-top: 70px;
  margin-bottom: 24px;
  padding-left: 0;
  list-style-type: none;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 13px;
  letter-spacing: 0.05em;
  line-height: 2.154;
  gap: 0 3.07em;
}
@media screen and (max-width: 767px) {
  .footer__nav {
    margin-top: 43px;
    display: grid;
    grid-template-columns: auto auto auto;
    margin-left: -2.67vw;
    margin-right: -2.67vw;
  }
}
@media screen and (max-width: 374px) {
  .footer__nav {
    display: flex;
    flex-direction: column;
  }
}
.footer__nav li {
  position: relative;
}
.footer__nav li::before {
  content: "";
  display: block;
  width: 1px;
  height: 1em;
  background-color: #fff;
  position: absolute;
  right: -1.54em;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 374px) {
  .footer__nav li::before {
    content: none;
  }
}
@media screen and (max-width: 767px) {
  .footer__nav li:nth-child(3)::before {
    content: none;
  }
}
@media screen and (max-width: 767px) {
  .footer__nav li:last-child {
    grid-column: 1/3;
  }
}
.footer__nav li:last-child::before {
  content: none;
}
.footer__nav a {
  color: #fff;
  text-decoration: none;
}
.footer__nav a:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.footer__copyright {
  text-align: center;
}
.footer__copyright img {
  width: 296px;
  max-width: 100%;
}

/* ==============================================
 * .mv
 */
.mv {
  height: 56.07vw;
  background: center center/cover no-repeat url("../img/mv_pc.webp");
}
@media screen and (max-width: 767px) {
  .mv {
    height: 161.86vw;
    background-image: url("../img/mv_sp.webp");
    display: flex;
    align-items: center;
  }
}
.mv__lead {
  position: absolute;
  top: 14.64vw;
  left: 4.17vw;
}
@media screen and (max-width: 767px) {
  .mv__lead {
    left: 0;
    right: 0;
    top: 74.66vw;
  }
}
.mv__lead img {
  display: block;
  width: 42.6vw;
}
@media screen and (max-width: 767px) {
  .mv__lead img {
    width: 84.26vw;
    margin: 0 auto;
  }
}

/* ==============================================
 * .top
 */
.top {
  position: relative;
  padding: 93px 0 97px;
}
@media screen and (max-width: 767px) {
  .top {
    padding-top: 50px;
    padding-bottom: 44px;
  }
}
.top::before,
.top::after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  z-index: -1;
}
.top::before {
  background-color: #1a4899;
  opacity: 0.2;
}
.top::after {
  background-color: #0057f2;
  mix-blend-mode: multiply;
}
.top__ttl {
  margin-bottom: 1.38em;
  font-size: 1.62rem;
  font-size: clamp(1.62rem, 1.38rem + 1.0090817356vw, 2.25rem); /* 26px @375px - 36px @1366px */
  letter-spacing: 0.05em;
  color: #fff;
  font-weight: 900;
  text-align: center;
  line-height: 1.385;
}
@media screen and (max-width: 767px) {
  .top__ttl {
    text-align: center;
  }
}
.top__lead {
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0.05em;
  font-weight: 400;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .top__lead {
    text-align: left;
  }
  @supports (text-align-last: left) {
    .top__lead {
      text-align: justify;
      text-align-last: left;
    }
  }
}
.top__movie {
  margin: 58px auto 0;
  width: 1000px;
  max-width: 100%;
  aspect-ratio: 560/315;
}
@media screen and (max-width: 767px) {
  .top__movie {
    margin-top: 45px;
    width: 100vw;
    max-width: none;
    margin-left: calc(var(--wrap-padding) * -1);
  }
}
.top__movie iframe {
  width: 100%;
  height: 100%;
}

/* ==============================================
 * .about
 */
.about {
  padding: 120px 0 113px;
  margin-bottom: max(400px, 29.28vw);
  background: #184999;
}
@media screen and (max-width: 767px) {
  .about {
    padding-top: max(60px, min(16vw, 120px));
    padding-bottom: max(37px, min(9.86vw, 120px));
    margin-bottom: min(106.66vw, 400px);
  }
}
.about__wrap {
  display: flex;
  align-items: end;
  row-gap: 13px;
}
@media screen and (max-width: 1024px) {
  .about__wrap {
    flex-direction: column;
    align-items: center;
  }
}
.about__lcol {
  flex: 1;
  min-width: 360px;
}
@media screen and (max-width: 767px) {
  .about__lcol {
    min-width: 0;
  }
}
.about__rcol {
  margin-bottom: 3.01%;
  width: 64.15%;
}
@media screen and (max-width: 1024px) {
  .about__rcol {
    margin-bottom: 0;
    width: auto;
  }
}
@media screen and (max-width: 767px) {
  .about__rcol {
    margin-right: -2.67vw;
    margin-left: -2.67vw;
    width: min(89.33vw, 335px);
  }
}
@media screen and (max-width: 767px) {
  .about .c-hl-01 {
    margin-right: calc(var(--wrap-padding) * -1);
  }
}
@media screen and (max-width: 374px) {
  .about .c-hl-01 {
    font-size: 7.46vw;
  }
}
.about .c-hl-01__ja {
  line-height: 1.667;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .about .c-hl-01__ja {
    line-height: 1.429;
  }
}
.about__desc {
  margin-top: 43px;
  width: 88.68%;
  color: #fff;
  font-weight: 400;
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.05em;
}
@supports (text-align-last: left) {
  .about__desc {
    text-align: justify;
    text-align-last: left;
  }
}
@media screen and (max-width: 1024px) {
  .about__desc {
    margin-top: 12px;
    width: auto;
  }
}

/* ==============================================
 * .merit
 */
.merit {
  background: #1b4899;
  padding-top: 123px;
  padding-bottom: 127px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .merit {
    padding-top: max(92px, min(24.53vw, 120px));
    padding-bottom: max(66px, min(17.6vw, 143px));
  }
}
.merit::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  background: left center/auto 88.3% no-repeat url("../img/merit_point_txt.svg");
  opacity: 0.15;
}
@media screen and (max-width: 767px) {
  .merit::before {
    width: min(24.8vw, 93px);
    top: min(16vw, 60px);
    left: min(3.73vw, 14px);
    background-position: center top;
    background-size: contain;
  }
}
.merit > .c-wrap {
  position: relative;
}
.merit__slider {
  width: 100%;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .merit__slider {
    width: auto;
    max-width: none;
    margin-top: 35px;
    margin-left: calc(var(--wrap-padding) * -1);
    margin-right: calc(var(--wrap-padding) * -1);
  }
}
@media screen and (max-width: 767px) {
  .merit .c-cards__item:nth-child(2) {
    width: 345px;
    padding-left: 30px;
  }
}
@media screen and (max-width: 374px) {
  .merit .c-cards__item:nth-child(2) {
    width: 92vw;
    padding-left: 8vw;
  }
}

/* ==============================================
 * .message
 */
.message {
  position: relative;
  margin-top: -1px;
  padding-bottom: 120px;
  background-color: #1b4899;
}
@media screen and (max-width: 767px) {
  .message {
    padding-bottom: max(60px, min(16vw, 120px));
  }
}
.message .c-hl-01__en img {
  height: 12px;
}
@media screen and (max-width: 1024px) {
  .message .c-hl-01__en img {
    height: 15px;
  }
}
.message .c-box-01::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 90px;
  right: 0;
  width: 25.18vw;
  height: 93.05%;
  background: right bottom/contain no-repeat url("../img/message_point_illust.svg");
  opacity: 0.15;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .message .c-box-01::before {
    content: none;
  }
}
.message .c-box-01__lcol,
.message .c-box-01__rcol {
  position: static;
  z-index: 2;
}
.message .c-box-01__lcol {
  max-width: 425px;
}
.message .c-box-01__rcol {
  width: 387px;
}
@media screen and (max-width: 1024px) {
  .message .c-box-01__rcol {
    width: auto;
  }
}

/* ==============================================
 * .pmenu
 */
@keyframes animTabFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.pmenu {
  position: relative;
  padding-top: 93px;
  padding-bottom: 127px;
}
@media screen and (max-width: 767px) {
  .pmenu {
    padding-top: max(47px, min(12.53vw, 93px));
    padding-bottom: max(67px, min(17.86vw, 92px));
  }
}
.pmenu::before,
.pmenu::after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  z-index: -1;
}
.pmenu::before {
  background-color: #1b4899;
  opacity: 0.2;
}
@media screen and (max-width: 767px) {
  .pmenu::before {
    opacity: 0.3;
  }
}
.pmenu::after {
  background-color: #00266a;
  mix-blend-mode: overlay;
}
.pmenu__top {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 92px;
  flex-wrap: wrap;
  gap: 10px 0;
}
@media screen and (max-width: 1024px) {
  .pmenu__top {
    flex-direction: column;
    align-items: start;
  }
}
@media screen and (max-width: 480px) {
  .pmenu__top {
    row-gap: 23px;
    margin-bottom: 50px;
  }
}
.pmenu__nav {
  padding: 0.62em 0;
  list-style-type: none;
  background-color: #fff;
  border-radius: 9999px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  font-size: 16px;
  width: 496px;
  max-width: 100%;
}
@media screen and (max-width: 1130px) {
  .pmenu__nav {
    width: 450px;
  }
}
@media screen and (max-width: 1024px) {
  .pmenu__nav {
    margin-left: auto;
  }
}
@media screen and (max-width: 767px) {
  .pmenu__nav {
    margin-right: auto;
  }
}
@media screen and (max-width: 480px) {
  .pmenu__nav {
    margin-left: calc(var(--wrap-padding) * -1);
    margin-right: calc(var(--wrap-padding) * -1);
    width: 100vw;
    max-width: none;
    border-radius: 0px;
  }
}
@media screen and (max-width: 374px) {
  .pmenu__nav {
    font-size: 4.26vw;
  }
}
.pmenu__nav > li {
  font-size: inherit;
  border-right: 2px solid #1a4899;
}
.pmenu__nav > li.js-active a {
  color: #fff;
  background-color: #1a4899;
  font-weight: 900;
}
@media screen and (max-width: 480px) {
  .pmenu__nav > li.js-active a {
    color: #1a4899;
    background-color: transparent;
  }
}
.pmenu__nav > li:last-child {
  border-right-width: 0;
}
.pmenu__nav a {
  display: block;
  margin: -0.19em 0.43em;
  padding: 0.43em 0;
  text-decoration: none;
  font-size: inherit;
  color: #8dabde;
  text-align: center;
  transition: color 0.2s, background-color 0.2s;
  border-radius: 9999px;
  font-weight: bold;
}
.pmenu__nav a:hover {
  color: #1a4899;
}
@media screen and (max-width: 767px) {
  .pmenu__tab {
    margin-left: calc(var(--wrap-padding) * -1);
    margin-right: calc(var(--wrap-padding) * -1);
  }
}
.pmenu__slider {
  display: none;
  width: 1060px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .pmenu__slider {
    width: auto;
    max-width: none;
  }
}
.pmenu__slider.js-active {
  display: block;
  animation: 0.3s linear forwards animTabFadeIn;
}
.pmenu .c-cards__desc {
  min-height: 6.85em;
}

/* ==============================================
 * .activation
 */
.activation {
  position: relative;
  background-color: #1b4899;
  margin-top: -1px;
  padding-top: 120px;
  padding-bottom: 116px;
}
@media screen and (max-width: 767px) {
  .activation {
    padding-top: max(50px, min(13.33vw, 120px));
    padding-bottom: max(50px, min(13.33vw, 116px));
  }
}
.activation::before {
  content: "";
  display: block;
  position: absolute;
  top: 110px;
  right: 18px;
  width: 81.55vw;
  height: 10.83vw;
  background: center center/contain no-repeat url("../img/activation_point_txt.svg");
  opacity: 0.15;
}
@media screen and (max-width: 767px) {
  .activation::before {
    content: none;
  }
}
.activation .c-wrap {
  position: relative;
}
.activation__slider {
  margin-top: 76px;
}
@media screen and (max-width: 767px) {
  .activation__slider {
    margin-top: 60px;
  }
}
.activation__slider.splide {
  visibility: visible;
}
.activation__slider.splide.is-initialized:not(.is-active) .splide__list {
  display: flex;
  justify-content: center;
  gap: 0 40px;
}
@media screen and (max-width: 767px) {
  .activation__slider.splide.is-initialized:not(.is-active) .splide__list {
    gap: 0 0;
  }
}
.activation__slider .activation__item {
  width: 355px;
  padding-left: 40px;
}
@media screen and (max-width: 767px) {
  .activation__slider .activation__item {
    width: 315px;
    padding-left: 0;
  }
}
@media screen and (max-width: 374px) {
  .activation__slider .activation__item {
    width: 84vw;
  }
}
.activation__slider .activation__item:first-child {
  width: calc(315px + var(--wrap-padding));
  padding-left: var(--wrap-padding);
}
@media screen and (max-width: 374px) {
  .activation__slider .activation__item:first-child {
    width: calc(84vw + var(--wrap-padding));
  }
}
.activation__slider .activation__item:last-child {
  width: calc(355px + var(--wrap-padding));
  padding-left: 40px;
  padding-right: var(--wrap-padding);
}
@media screen and (max-width: 767px) {
  .activation__slider .activation__item:last-child {
    width: calc(315px + var(--wrap-padding));
    padding-left: 0;
  }
}
@media screen and (max-width: 374px) {
  .activation__slider .activation__item:last-child {
    width: calc(84vw + var(--wrap-padding));
  }
}
.activation__item {
  display: flex;
  flex-direction: column;
}
.activation__photo {
  border-radius: 12px;
  overflow: hidden;
}
.activation__photo img {
  width: 100%;
  display: block;
}
.activation__logo-area {
  margin-top: 30px;
}
.activation__logo img {
  width: 212px;
  margin: 0 auto;
  display: block;
}
@media screen and (max-width: 767px) {
  .activation__logo img {
    width: 260px;
  }
}
.activation__company {
  margin-top: 2.28em;
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 1.429;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .activation__company {
    margin-top: 1.42em;
  }
}
.activation__lead {
  margin-top: 1em;
  margin-bottom: 1.3em;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.4;
  min-height: 2.8em;
}
.activation__desc {
  flex: 1;
  font-size: 14px;
  line-height: 1.714;
}
.activation .c-tags {
  margin-top: 20px;
  margin-right: 3px;
  justify-self: end;
}
.activation .splide__pagination {
  margin-top: 52px;
}
@media screen and (max-width: 767px) {
  .activation .splide__pagination {
    margin-top: 10px;
    margin-bottom: 27px;
  }
}
.activation__item--main {
  margin-top: 81px;
  margin-left: auto;
  margin-right: auto;
  gap: 0 5.09%;
  width: 1060px;
  max-width: 100%;
  align-items: center;
  flex-direction: row;
}
@media screen and (max-width: 767px) {
  .activation__item--main {
    flex-direction: column;
    margin-top: 44px;
    row-gap: 30px;
  }
}
.activation__item--main .activation__photo {
  width: 50.94%;
}
@media screen and (max-width: 767px) {
  .activation__item--main .activation__photo {
    width: 100vw;
    margin-left: calc(var(--wrap-padding) * -1);
    margin-right: calc(var(--wrap-padding) * -1);
  }
}
.activation__item--main .activation__txt-col {
  flex: 1;
}
.activation__item--main .activation__logo-area {
  margin-top: 0;
  display: flex;
  gap: 20px 37px;
  justify-content: start;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .activation__item--main .activation__logo-area {
    flex-direction: column;
  }
}
.activation__item--main .activation__logo {
  width: 212px;
}
@media screen and (max-width: 767px) {
  .activation__item--main .activation__logo {
    width: 260px;
    height: 68px;
    background-color: #fff;
    display: grid;
    place-content: center;
  }
}
@media screen and (max-width: 767px) {
  .activation__item--main .activation__logo img {
    width: 212px;
  }
}
.activation__item--main .activation__company {
  margin-top: 0;
}
.activation__item--main .activation__lead {
  margin-top: 2.25em;
  margin-bottom: 1em;
  min-height: 0;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .activation__item--main .activation__lead {
    margin-top: 20px;
    margin-bottom: 28px;
    letter-spacing: 0em;
  }
}
.activation__item--main .activation__desc {
  letter-spacing: 0.05em;
}
.activation__item--main .c-tags {
  justify-self: start;
  column-gap: 0.92em;
}
.activation__item--main .c-tags > li {
  padding-left: 0.64em;
  padding-right: 0.64em;
}
.activation__btm {
  margin-top: 98px;
}
@media screen and (max-width: 767px) {
  .activation__btm {
    margin-top: max(58px, min(15.46vw, 140px));
  }
}

/* ==============================================
 * .cv
 */
.cv {
  padding-top: 100px;
  padding-bottom: 100px;
  margin-top: -1px;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .cv {
    padding-top: max(66px, min(17.6vw, 100px));
    padding-bottom: max(67px, min(17.86vw, 100px));
  }
}
.cv .c-hl-01__ja {
  color: #184796;
}
@media screen and (max-width: 767px) {
  .cv .c-hl-01--center .c-hl-01__ja {
    font-size: 32px;
    white-space: nowrap;
  }
}
@media screen and (max-width: 374px) {
  .cv .c-hl-01--center .c-hl-01__ja {
    font-size: 8.53vw;
  }
}
.cv__btn {
  margin-top: 44px;
}
@media screen and (max-width: 767px) {
  .cv__btn {
    margin-top: 36px;
  }
}
.cv__btn a {
  position: relative;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 24.47em;
  height: 3.8em;
  max-width: 100%;
  background: #a99148;
  color: #fff;
  font-size: 1.12rem;
  font-size: clamp(1.12rem, 1.05rem + 0.3027245207vw, 1.31rem); /* 18px @375px - 21px @1366px */
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border-radius: 9999px;
  letter-spacing: 0.05em;
  transition: background-color 0.2s;
}
@media screen and (max-width: 767px) {
  .cv__btn a {
    line-height: 1.222;
    justify-content: start;
    text-align: left;
    width: 17.5em;
    height: 4.44em;
    padding-left: 1.94em;
  }
}
.cv__btn a:hover {
  background: #bda55a;
}
.cv__btn a::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 1.28em;
  width: 0.76em;
  height: 0.66em;
  background: center center/contain no-repeat url("../img/cv_arrow.svg");
}
@media screen and (max-width: 767px) {
  .cv__btn a::before {
    right: 1.5em;
    width: 0.77em;
    height: 0.66em;
  }
}

/* ==============================================
 * .asset
 */
.asset {
  margin-top: -1px;
  padding-top: 125px;
  padding-bottom: 118px;
  background: #1b4899;
  position: relative;
}
@media screen and (max-width: 767px) {
  .asset {
    padding-top: max(60px, min(16vw, 125px));
    padding-bottom: max(64px, min(17.06vw, 118px));
  }
}
.asset::before,
.asset::after {
  content: "";
  display: block;
  position: absolute;
  width: min(10.83vw, 148px);
  height: min(115.08vw, 1572px);
  background: center center/contain no-repeat url("../img/asset_point_txt.svg");
  opacity: 0.15;
}
@media screen and (max-width: 767px) {
  .asset::before,
  .asset::after {
    width: 95px;
    height: 1045px;
  }
}
.asset::before {
  top: 97px;
  left: 0;
}
@media screen and (max-width: 767px) {
  .asset::before {
    top: 40px;
    left: 3.2vw;
  }
}
.asset::after {
  bottom: 98px;
  right: 0;
}
@media screen and (max-width: 767px) {
  .asset::after {
    content: none;
  }
}
.asset .c-wrap {
  position: relative;
}
.asset .c-hl-01--center .c-hl-01__ja {
  font-size: 1.75rem;
  font-size: clamp(1.75rem, 1.7rem + 0.2018163471vw, 1.87rem); /* 28px @375px - 30px @1366px */
}
@media screen and (max-width: 767px) {
  .asset .c-hl-01--center .c-hl-01__ja {
    margin-top: 0.67em;
  }
}
.asset__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 38px 0;
}
@media screen and (max-width: 1024px) {
  .asset__row {
    flex-direction: column;
  }
}
.asset__txt-col {
  flex: 1;
}
@media screen and (max-width: 1024px) {
  .asset__txt-col {
    min-width: 0;
  }
}
.asset__desc {
  margin-top: 24px;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 1.625;
  width: 270px;
  max-width: 100%;
}
@supports (text-align-last: left) {
  .asset__desc {
    text-align: justify;
    text-align-last: left;
  }
}
@media screen and (max-width: 1024px) {
  .asset__desc {
    margin-top: 28px;
    margin-left: auto;
    margin-right: auto;
    width: min(100%, 500px);
    text-align: left;
  }
}
.asset__fig-col {
  width: 67.92%;
}
@media screen and (max-width: 1024px) {
  .asset__fig-col {
    width: 80%;
    padding-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .asset__fig-col {
    width: 400px;
    max-width: 100%;
  }
}
.asset__fig-col img {
  display: block;
  margin: 0 auto;
}
.asset__row--01 {
  margin-top: 112px;
}
@media screen and (max-width: 1024px) {
  .asset__row--01 {
    margin-top: max(49px, min(13.06vw, 112px));
  }
}
.asset__row--02 {
  margin-top: 123px;
}
@media screen and (max-width: 1024px) {
  .asset__row--02 {
    margin-top: max(54px, min(14.4vw, 123px));
    row-gap: 26px;
  }
}
.asset__row--03 {
  margin-top: 138px;
}
@media screen and (max-width: 1024px) {
  .asset__row--03 {
    margin-top: max(53px, min(14.13vw, 138px));
  }
}
.asset__row--04 {
  margin-top: 123px;
  row-gap: 28px;
}
@media screen and (max-width: 1024px) {
  .asset__row--04 {
    margin-top: max(58px, min(15.46vw, 123px));
  }
}
.asset__row--04 .asset__fig-col {
  padding-left: 7.35%;
  padding-right: 4.24%;
}
@media screen and (max-width: 1024px) {
  .asset__row--04 .asset__fig-col {
    padding-left: 0;
    padding-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .asset__row--04 .asset__fig-col {
    margin-left: -2.67vw;
    margin-right: -2.67vw;
    width: 89.33vw;
    max-width: 400px;
  }
}
.asset__row--04 .asset__fig-col ul {
  padding-left: 0;
  list-style-type: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-content: space-between;
  align-items: flex-start;
  gap: 42px 7.71%;
}
@media screen and (max-width: 767px) {
  .asset__row--04 .asset__fig-col ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 5.98%;
  }
}
.asset__row--04 .asset__fig-col a {
  transition: opacity 0.2s;
}
.asset__row--04 .asset__fig-col a:hover {
  opacity: 0.7;
}
.asset__row--04 .asset__fig-col img {
  width: 100%;
  max-width: 168px;
}
.asset__row--05 {
  margin-top: 130px;
}
@media screen and (max-width: 1024px) {
  .asset__row--05 {
    margin-top: max(53px, min(14.13vw, 130px));
  }
}

/* ==============================================
 * .sponsor
 */
.sponsor {
  margin-top: -1px;
  padding-top: 80px;
  background: #16329a;
}
@media screen and (max-width: 767px) {
  .sponsor {
    padding-bottom: max(58px, min(15.46vw, 80px));
  }
}
.sponsor__list {
  margin: 70px auto 0;
  padding-left: 0;
  list-style-type: none;
  width: 1112px;
  max-width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media screen and (max-width: 1024px) {
  .sponsor__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .sponsor__list {
    margin-top: 35px;
    grid-template-columns: repeat(2, 1fr);
    gap: 13px 21px;
    margin-left: -2.67vw;
    margin-right: -2.67vw;
    max-width: 89.33vw;
  }
}
.sponsor__item {
  background: #fff;
  aspect-ratio: 520/160;
}
.sponsor__item a,
.sponsor__item img {
  display: block;
}
.sponsor__btn {
  margin-top: 69px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .sponsor__btn {
    margin-top: 56px;
  }
}

/* ==============================================
 * .support
 */
.support {
  padding-top: 120px;
  padding-bottom: 80px;
  background-color: #1b4899;
}
@media screen and (max-width: 767px) {
  .support {
    padding-top: max(60px, min(16vw, 120px));
    padding-bottom: max(48px, min(12.8vw, 80px));
  }
}
@media screen and (max-width: 767px) {
  .support .c-box-01 {
    padding-bottom: 44px;
  }
}
.support__btm {
  margin-top: 116px;
  --linear-slide-width: 2691px;
}
@media screen and (max-width: 767px) {
  .support__btm {
    margin-top: max(70px, min(18.66vw, 116px));
  }
}
.support__btm .c-linear-slider__slide {
  background-image: url("../img/support_btm.webp");
}
.support__btm .c-linear-slider__slide::before {
  padding-bottom: 6.68%;
}
.support__btm--cv {
  padding-top: 120px;
  padding-bottom: 80px;
  margin-top: 80px;
  background: #194899;
}
@media screen and (max-width: 767px) {
  .support__btm--cv {
    padding-top: max(57px, min(15.2vw, 120px));
    padding-bottom: max(50px, min(13.33vw, 80px));
    margin-top: max(48px, min(12.8vw, 80px));
  }
}
/*# sourceMappingURL=style.css.map */
