@charset "UTF-8";
:root {
  --fontFamilyBase: "Noto Sans JP", sans-serif;
  --fontFamilyEn: "mundial", sans-serif;
  --fontFamilyMincho: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  --fontWeightLight: 300;
  --fontWeightRegular: 400;
  --fontWeightMedium: 500;
  --fontWeightSemiBold: 600;
  --textPrimary: #ffffff;
  --bgPrimary: #000000;
  --AccentTundora: #444444;
  --AccentSanMarino: #4272A3;
  --AccentSteelBlue: #5489BF;
}

/*----------------------------------------------------------*/
/*----------------------------------------------------------*/
/*----------------------------------------------------------*/
/*----------------------------------------------------------*/
/*----------------------------------------------------------*/
/*----------------------------------------------------------*/
/*----------------------------------------------------------*/
/*----------------------------------------------------------*/
/*----------------------------------------------------------*/
/*----------------------------------------------------------*/
/*----------------------------------------------------------*/
/*----------------------------------------------------------*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  font-size: 1rem;
  font-weight: var(--fontWeightLight);
  font-family: var(--fontFamilyBase);
  color: var(--textPrimary);
  background: var(--bgPrimary);
  line-height: 1.6;
}

a {
  display: inline-block;
  text-decoration: none;
  color: inherit;
}

li,
ol,
summary {
  list-style: none;
}

img {
  width: 100%;
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  font-style: italic;
  background-repeat: no-repeat;
  background-size: cover;
}

button {
  touch-action: manipulation;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

button,
input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  text-transform: none;
  border-radius: 0;
}

.inner__primary {
  padding-inline: 20px;
}

.section-title {
  position: relative;
  padding-bottom: 2px;
  display: flex;
  align-items: baseline;
  gap: 15px;
  border-bottom: 1px solid var(--AccentTundora);
}
.section-title .is-ja,
.section-title .is-en {
  text-shadow: 0 0 2px rgba(255, 255, 255, 0.7), 0 0 6px rgba(255, 255, 255, 0.5), 0 0 12px rgba(255, 255, 255, 0.3);
}
.section-title .is-ja {
  font-size: 0.875rem;
  letter-spacing: 1.4px;
}
.section-title .is-en {
  font-size: 2.1875rem;
  font-family: var(--fontFamilyEn);
  letter-spacing: 1.75px;
}

.bg {
  position: relative;
}
.bg::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../../public/image/_common/pc/bg.webp);
  background-position: top left 20%;
  background-repeat: no-repeat;
  background-size: cover;
  display: none;
}
@media screen and (min-width: 768px) {
  .bg::before {
    display: block;
  }
}
@media screen and (min-width: 1200px) {
  .bg {
    background-position: top;
  }
}
.bg .grid {
  position: relative;
}
@media screen and (min-width: 390px) {
  .bg .grid {
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: 1fr;
  }
}
@media screen and (min-width: 768px) {
  .bg .grid {
    grid-template-columns: 1fr 390px 1fr;
  }
}
.bg .grid .grid__left {
  position: relative;
}
.bg .grid .grid__left .grid__left--logo {
  position: fixed;
  top: 20px;
  left: 20px;
  width: clamp(7.5rem, 0.8091647332rem + 13.9211136891vw, 11.25rem);
  display: none;
}
@media screen and (min-width: 768px) {
  .bg .grid .grid__left .grid__left--logo {
    display: block;
  }
}
.bg .grid .grid__main {
  position: relative;
  z-index: 100;
  background: var(--bgPrimary);
}
.bg .grid .grid__right {
  position: relative;
}
.bg .grid .grid__right .grid__right--inner {
  display: none;
}
@media screen and (min-width: 1200px) {
  .bg .grid .grid__right .grid__right--inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
.bg .grid .grid__right .grid__right--content {
  position: fixed;
  top: 30%;
  height: 100vh;
  text-align: center;
}
.bg .grid .grid__right .grid__right--head {
  width: 470px;
  width: clamp(21.25rem, 9.037077597rem + 16.2703379224vw, 29.375rem);
  max-width: 100%;
  margin-inline: auto;
}
.bg .grid .grid__right .grid__right--text {
  margin-top: 60px;
  font-size: 1.25rem;
  font-size: clamp(1.125rem, 0.9371088861rem + 0.2503128911vw, 1.25rem);
  font-family: var(--fontFamilyMincho);
  letter-spacing: 0.1em;
}
.bg .grid .grid__right .grid__right--boxes {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  max-width: 336px;
  width: 100%;
  margin-inline: auto;
}
.bg .grid .grid__right .grid__right--box {
  display: flex;
  flex-direction: column-reverse;
  gap: 10px;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
}
.bg .grid .grid__right--recommendation {
  position: fixed;
  bottom: 20px;
  right: 20px;
  text-align: right;
  font-family: var(--fontFamilyMincho);
}
.bg .grid .grid__right--recommendation--text,
.bg .grid .grid__right--recommendation--copy-right {
  letter-spacing: 0.05em;
}
.bg .grid .grid__right--recommendation--text {
  font-size: 0.75rem;
}
.bg .grid .grid__right--recommendation--copy-right {
  margin-top: 6px;
  font-size: 0.625rem;
}

.header {
  padding: 10px 0 0 15px;
}
.header .header__logo {
  width: 62px;
}

.scroll-image {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  max-width: 100%;
  width: 100%;
  height: 100dvh;
  pointer-events: none;
  overflow: hidden;
  z-index: -1;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 20vh;
  opacity: 0.7;
}
.scroll-image img {
  width: 100%;
  height: auto;
}
@media screen and (min-width: 768px) {
  .scroll-image {
    max-width: 390px;
  }
}

.fv {
  padding-top: 15px;
}
.fv .fv__inner {
  display: flex;
  flex-direction: column-reverse;
  gap: 48px;
}
.fv .fv__title {
  position: relative;
  text-align: center;
  font-size: 1.5625rem;
  font-style: italic;
  line-height: 1.2;
  font-weight: var(--fontWeightMedium);
  z-index: 10;
}
.fv .fv__logo {
  position: relative;
  z-index: 1;
  margin-top: -70px;
}
.fv .fv__text {
  position: relative;
  z-index: 10;
}
.fv .fv__text.is-primary {
  width: 272px;
  max-width: 100%;
  margin-inline: auto;
  margin-top: -80px;
}
.fv .fv__video video {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

.about {
  padding-top: 50px;
}
.about .about__content {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.about .about__description {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.about .about__description p {
  letter-spacing: 1.6px;
}

.merit {
  padding-top: 50px;
}
.merit .merit__head {
  position: relative;
  z-index: 10;
}
.merit .merit__description {
  display: flex;
  flex-direction: column-reverse;
}
.merit .merit__description--text {
  margin-top: -28px;
}
.merit .merit__description--image {
  margin-top: -24px;
}
.merit .merit__boxes {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.merit .merit__box {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: url(../../public/image/index/merit_card-bg.webp) no-repeat center center/cover;
  border-radius: 20px;
  padding: 30px 14px;
}
.merit .merit__box--title {
  text-align: center;
  font-size: 1.25rem;
  font-style: italic;
  font-weight: var(--fontWeightMedium);
  line-height: 1.3;
}

.privilege {
  padding-top: 100px;
}
.privilege .privilege__boxes {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.privilege .privilege__box--head--title {
  position: relative;
  text-align: center;
  padding-block: 8px;
  font-size: 1.125rem;
  font-weight: var(--fontWeightRegular);
  background: var(--AccentSanMarino);
  line-height: 1.4444444444;
  letter-spacing: 1.8px;
  border-radius: 10px;
}
.privilege .privilege__box--head--title::before {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  border-top: 8px solid var(--AccentSanMarino);
  border-bottom: 0;
}
.privilege .privilege__box--items {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.privilege .privilege__action {
  margin-top: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 1.125rem;
  font-weight: var(--fontWeightMedium);
}
.privilege .privilege__action p {
  letter-spacing: 1.8px;
}
.privilege .privilege__action p span {
  padding: 2px 4px;
  background: var(--AccentSanMarino);
}

.sns {
  padding-top: 100px;
}
.sns .sns__head--description {
  margin-top: 18px;
  letter-spacing: 1px;
}
.sns .sns__content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.sns .sns__items {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.sns .sns__item a {
  transition: all 0.3s ease;
}
@media (any-hover: hover), (hover: hover) and (pointer: fine) {
  .sns .sns__item a:hover, .sns .sns__item a:focus {
    transform: translateY(-2px);
  }
}

.strength {
  padding-top: 100px;
}
.strength .strength__content {
  margin-top: 30px;
}
.strength .strength__boxes {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.strength .strength__box {
  display: flex;
  flex-direction: column-reverse;
}
.strength .strength__box:nth-child(even) {
  gap: 10px;
}
.strength .strength__box--body--head--number {
  width: 135px;
}
.strength .strength__box--body--head--title {
  margin-top: 10px;
  font-size: 1.25rem;
  font-weight: var(--fontWeightMedium);
  line-height: 1.5;
  letter-spacing: 1px;
}
.strength .strength__box--body--text {
  margin-top: 20px;
}
.strength .strength__box--body--text p {
  letter-spacing: 1px;
}
.strength .strength__box--body--items {
  margin-top: 20px;
  display: grid;
  gap: 5px;
}
.strength .strength__box--body--items.is-4-column {
  grid-template-columns: repeat(4, 1fr);
}
.strength .strength__box--body--items.is-4-column .strength__box--body--item {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
  line-height: 1.4285714286;
}
.strength .strength__box--body--items.is-2-column {
  grid-template-columns: repeat(2, 1fr);
}
.strength .strength__box--body--items.is-2-column .strength__box--body--item {
  padding-block: 15px;
  line-height: 1.1;
}
.strength .strength__box--body--items.is-3-column {
  grid-template-columns: repeat(3, 1fr);
}
.strength .strength__box--body--items.is-3-column .strength__box--body--item {
  padding-block: 15px;
  line-height: 1.1;
}
.strength .strength__box--body--items.is-3-column .strength__box--body--item.is-center {
  padding-block: 10px 0;
  line-height: 1.5;
}
.strength .strength__box--body--item {
  position: relative;
  text-align: center;
  font-size: 0.875rem;
  font-weight: var(--fontWeightRegular);
  border-radius: 5px;
  background: linear-gradient(to bottom left, var(--AccentSteelBlue) 50%, var(--AccentSanMarino) 50%);
}
.strength .strength__box--body--item .is-bigger {
  font-size: 2.1875rem;
  font-family: var(--fontFamilyEn);
  font-weight: var(--fontWeightSemiBold);
}
.strength .strength__map {
  margin-top: 18px;
}

.message {
  padding-top: 100px;
}
.message .message__content {
  margin-top: 20px;
  display: flex;
  flex-direction: column-reverse;
  gap: 20px;
}
.message .message__text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.entry {
  padding-top: 100px;
}
.entry .entry__head {
  text-align: center;
}
.entry .entry__head--title {
  display: flex;
  flex-direction: column-reverse;
}
.entry .entry__head--title .is-title,
.entry .entry__head--title .is-sub-title {
  text-shadow: 0 0 2px rgba(255, 255, 255, 0.7), 0 0 6px rgba(255, 255, 255, 0.5), 0 0 12px rgba(255, 255, 255, 0.3);
}
.entry .entry__head--title .is-title {
  font-size: 2.1875rem;
  font-family: var(--fontFamilyEn);
  letter-spacing: 1.7px;
}
.entry .entry__head--title .is-sub-title {
  font-size: 0.75rem;
  letter-spacing: 1.2px;
}
.entry .entry__buttons {
  margin-top: 35px;
  max-width: 250px;
  width: 100%;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.entry .entry__button {
  transition: all 0.3s ease;
}
@media (any-hover: hover), (hover: hover) and (pointer: fine) {
  .entry .entry__button:hover, .entry .entry__button:focus {
    transform: translateY(-2px);
  }
}

.footer {
  padding-block: 100px 70px;
}
.footer .footer__logo {
  width: 195px;
  max-width: 100%;
  margin-inline: auto;
}
.footer .copy-right {
  margin-top: 60px;
  text-align: center;
  font-size: 0.625rem;
  font-family: var(--fontFamilyEn);
  letter-spacing: 0.5px;
}

.cta {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 50px;
  z-index: 999;
  display: flex;
  font-size: 0.875rem;
  font-weight: var(--fontWeightRegular);
  letter-spacing: 1px;
  background: linear-gradient(105deg, var(--AccentSteelBlue) 50%, var(--AccentSanMarino) 50%);
  transform: translate(-50%, 150%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
}
@media screen and (min-width: 768px) {
  .cta {
    width: 390px;
  }
}
.cta.is-active {
  transform: translate(-50%, 0);
  opacity: 1;
  pointer-events: auto;
}
.cta .cta__left,
.cta .cta__right {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.cta .cta__left a,
.cta .cta__right a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.cta .cta__left span,
.cta .cta__right span {
  position: relative;
  left: 14px;
}
.cta .cta__left span::before,
.cta .cta__right span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -32px;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: url(../../public/image/_common/icon/line.svg) no-repeat center center/contain;
}