:root {
  --fontNotoSansSerif: "Noto Serif", serif;
  --fontCormorantGaramond: "Cormorant Garamond", serif;
  --fontNautica: "nautica", sans-serif;
  --colorTextPrimary: #F7F4F4;
  --colorTextTertiary: #CEC6C6;
  --colorBgPrimary: transparent linear-gradient(90deg, #0D0D0D 0%, #4d1d1d 47%, #0D0D0D 100%) 0% 0% no-repeat padding-box;
  --colorBgSecondary: #000000;
  --colorBgTertiary: #170909;
  --colorBgQuaternary: #520B0B;
  --colorBgQuinary: #0D0D0D;
  --colorButtonPrimary: #1D9676;
  --fontWight700: 700;
  --letterSpacingBase: 0.08em;
}

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

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

body {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.7;
  font-family: var(--fontNotoSansSerif);
  color: var(--colorTextPrimary);
  background: var(--colorBgPrimary);
}

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;
  shape-margin: 0.75rem;
}

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;
}

.main {
  padding-top: 60px;
}

.inner__primary {
  padding-inline: 20px;
}

.grid {
  position: relative;
}
.grid::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../image/_common/bg.png) no-repeat top left 40%/cover;
  z-index: -1;
}
@media screen and (min-width: 1200px) {
  .grid::before {
    background-position: center center;
  }
}
.grid::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
}
@media screen and (min-width: 768px) {
  .grid {
    display: grid;
    grid-template-columns: 1fr 420px 1fr;
    grid-template-rows: 1fr;
  }
}
.grid .gird__left {
  position: relative;
  z-index: 500;
}
.grid .gird__left .gird__left--logo {
  display: none;
}
@media screen and (min-width: 1200px) {
  .grid .gird__left .gird__left--logo {
    position: fixed;
    display: block;
    top: 40px;
    left: 20px;
    width: 160px;
  }
}
.grid .grid__main {
  position: relative;
  background: var(--colorBgPrimary);
  z-index: 500;
}
.grid .grid__right {
  position: relative;
  z-index: 500;
}
.grid .grid__right .grid__right--inner {
  display: none;
}
@media screen and (min-width: 1200px) {
  .grid .grid__right .grid__right--inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
.grid .grid__right .grid__right--content {
  position: fixed;
  top: 30%;
  height: 100vh;
  text-align: center;
  margin-inline: auto;
  width: clamp(20rem, -11.25rem + 41.6666666667vw, 26.25rem);
}
.grid .grid__right .grid__right--head--text {
  margin-top: 20px;
  font-size: 1.25rem;
  letter-spacing: 0.1em;
}
.grid .grid__right .grid__right--boxes {
  margin-top: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: clamp(16.875rem, -8.125rem + 33.3333333333vw, 21.875rem);
  width: 100%;
  margin-inline: auto;
  gap: 80px;
  gap: clamp(3.125rem, -6.25rem + 12.5vw, 5rem);
}
.grid .grid__right .grid__right--box {
  display: flex;
  flex-direction: column-reverse;
  gap: 16px;
}
.grid .grid__right .grid__right--box--text {
  flex-grow: 1;
  font-size: clamp(0.875rem, 0.25rem + 0.8333333333vw, 1rem);
  font-weight: var(--fontWight700);
  line-height: 1.5;
  letter-spacing: 0.1em;
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: var(--colorBgPrimary);
  z-index: 999;
  box-shadow: 0px 0px 11px 0 #000000;
}
@media screen and (min-width: 768px) {
  .header {
    max-width: 420px;
    left: 50%;
    transform: translateX(-50%);
  }
}
.header .header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: inherit;
  padding-left: 20px;
}
.header .header__logo {
  width: 100px;
}
.header .header__entry {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  line-height: 1.2;
  width: 140px;
  height: 100%;
  background: var(--colorBgSecondary);
}
.header .header__entry .is-en {
  font-size: 1.6875rem;
  font-weight: var(--fontWight700);
  font-family: var(--fontCormorantGaramond);
  letter-spacing: 0.08em;
}
.header .header__entry .is-ja {
  font-size: 0.75rem;
}

.fv {
  padding-top: 20px;
}
.fv .fv__inner {
  padding-inline: 25px;
}
.fv .fv__content {
  position: relative;
  display: flex;
  flex-direction: column-reverse;
}
.fv .fv__head {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column-reverse;
}
.fv .fv__head--heading1 {
  font-size: 4.625rem;
  font-family: var(--fontCormorantGaramond);
  font-weight: var(--fontWight700);
  line-height: 1.3;
}
.fv .fv__head--description {
  width: 240px;
  margin-inline: auto;
}
.fv .fv__head--description p:nth-of-type(1) {
  font-size: 1.625rem;
  letter-spacing: 5.4px;
}
.fv .fv__head--description p:nth-of-type(2) {
  position: relative;
  margin-top: 16px;
  text-align: left;
  font-size: 1rem;
  letter-spacing: 0.1em;
}
.fv .fv__head--description p:nth-of-type(2)::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateX(-50%);
  right: 0;
  width: 75px;
  max-width: 100%;
  height: 1px;
  background-color: #707070;
}
.fv .fv__cta {
  text-align: center;
  padding-block: 36px;
  border-top: 1px solid rgba(165, 166, 168, 0.5);
  background: var(--colorBgSecondary);
  border-radius: 0 0 10px 10px;
}
.fv .fv__cta--text {
  font-size: 1rem;
  letter-spacing: 5.4px;
  font-weight: var(--fontWight700);
}
.fv .fv__cta--button {
  width: 276px;
  max-width: 100%;
  margin-inline: auto;
  margin-top: 40px;
}
.fv .fv__cta--button a {
  position: relative;
  width: 100%;
  padding-block: 10px;
  background: #870001;
  line-height: 1;
  border-radius: 100vmax;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: all 0.3s;
}
.fv .fv__cta--button a::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 30px;
  width: 16px;
  height: 16px;
  background: url(../image/_common/icon/icon_arrow.png) no-repeat center center/contain;
  transition: all 0.3s;
}
.fv .fv__cta--button a .is-en {
  font-size: 2rem;
  font-family: var(--fontCormorantGaramond);
  font-weight: var(--fontWight700);
  letter-spacing: 0.08em;
}
@media (any-hover: hover), (hover: hover) and (pointer: fine) {
  .fv .fv__cta--button a:hover, .fv .fv__cta--button a:focus {
    opacity: 0.8;
  }
  .fv .fv__cta--button a:hover::after, .fv .fv__cta--button a:focus::after {
    right: 24px;
  }
}
.fv .fv__image img {
  border-radius: 10px 10px 0 0;
}

.about {
  padding-block: 100px 180px;
}
.about .about__inner {
  padding-inline: 20px;
}
.about .about__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.about .about__title .is-cursive {
  font-size: 2rem;
  font-family: var(--fontNautica);
  color: var(--colorTextTertiary);
}
@media screen and (max-width: 374px) {
  .about .about__title .is-cursive {
    font-size: 1.75rem;
  }
}
.about .about__title .is-en {
  font-size: 2.625rem;
}
.about .about__explanation--text {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-top: 20px;
  font-size: 1rem;
  color: var(--colorTextTertiary);
  line-height: 2;
  letter-spacing: 0.1em;
}
.about .about__boxes {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.about .about__box {
  display: flex;
  flex-direction: column-reverse;
}
.about .about__box--body {
  text-align: center;
  margin-top: 20px;
}
.about .about__box--body--name {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 12px;
  line-height: 1;
}
.about .about__box--body--name .is-name {
  font-size: 1.125rem;
  font-weight: var(--fontWight700);
  letter-spacing: 0.1em;
}
.about .about__box--body--name .is-position {
  font-size: 0.875rem;
  color: var(--colorTextTertiary);
}
.about .about__box__image img {
  border-radius: 10px;
}
.about .about__pickup {
  margin-top: 60px;
  padding: 20px 20px 40px 20px;
  display: flex;
  flex-direction: column-reverse;
  gap: 20px;
  background: var(--colorBgTertiary);
  border-radius: 10px;
}
.about .about__pickup--text {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
  letter-spacing: 0.1em;
}
.about .about__pickup--text p:nth-of-type(2) span {
  font-size: 1rem;
}

.merit {
  position: relative;
  padding-bottom: 100px;
  background: var(--colorBgQuaternary);
}
.merit .merit__title {
  display: flex;
  flex-direction: column-reverse;
}
.merit .merit__title--heading2 {
  display: flex;
  align-items: center;
  gap: 24px;
  line-height: 1.3;
}
.merit .merit__title--heading2 .is-cursive {
  font-size: 2rem;
  font-family: var(--fontNautica);
  color: var(--colorTextTertiary);
}
.merit .merit__title--heading2 .is-en {
  font-size: 2.625rem;
}
.merit .merit__title--sub-title {
  font-size: 1rem;
  letter-spacing: 0.1em;
}
.merit .merit__head--text {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.merit .merit__head--text p {
  letter-spacing: 0.1em;
}
.merit .merit__boxes {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.merit .merit__box {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px 14px;
  box-shadow: 20px 20px 50px rgba(0, 0, 0, 0.6);
  background: var(--colorBgQuinary);
  border-radius: 10px;
}
.merit .merit__box--head {
  display: flex;
  align-items: center;
  gap: 10px;
}
.merit .merit__box--head--number {
  width: 50px;
}
.merit .merit__box--head--heading3 {
  width: calc(100% - 50px);
  font-size: clamp(1rem, 0.8807251908rem + 0.5089058524vw, 1.125rem);
  font-weight: var(--fontWight700);
}
.merit .merit__image {
  position: relative;
  margin: auto;
  top: -80px;
  width: 90%;
}
.merit .merit__image img {
  border-radius: 10px;
}

.privilege {
  padding-top: 60px;
}
.privilege .privilege__head {
  text-align: center;
  line-height: 1.3;
}
.privilege .privilege__head .is-title {
  font-size: 2.625rem;
  font-family: var(--fontCormorantGaramond);
  font-weight: var(--fontWight700);
  letter-spacing: 0.05em;
}
.privilege .privilege__head .is-sub-title {
  font-size: 1rem;
  letter-spacing: 0.1em;
}
.privilege .privilege__boxes {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.privilege .privilege__box {
  padding: 30px 15px;
  background: var(--colorBgQuaternary);
  box-shadow: 20px 20px 50px rgba(0, 0, 0, 0.6);
  border-bottom: 1px solid rgba(247, 244, 244, 0.3803921569);
  border-radius: 10px;
}
.privilege .privilege__box--title {
  text-align: center;
  font-size: 1.25rem;
  font-weight: var(--fontWight700);
  letter-spacing: 0.1em;
}
.privilege .privilege__box--title span {
  font-size: 1.625rem;
}
.privilege .privilege__box--title .is-number {
  font-size: 2.5rem;
  line-height: 1;
}
.privilege .privilege__box--title .is-number.--fontCormorantGaramond {
  font-size: 3.75rem;
  font-family: var(--fontCormorantGaramond);
}
.privilege .privilege__box--body {
  text-align: center;
}
.privilege .privilege__box--body--example {
  margin-top: 10px;
  font-size: 1rem;
}
.privilege .privilege__box--body--price {
  font-size: 1.5rem;
  letter-spacing: 0.1em;
}
.privilege .privilege__box--body--price span {
  margin-right: 6px;
  padding: 2px;
  background: #222222;
  border-radius: 4px;
}

.number {
  margin-top: 80px;
  padding-block: 60px;
  background: var(--colorBgQuaternary);
}
.number .number__title {
  display: flex;
  flex-direction: column-reverse;
  letter-spacing: 0.1em;
}
.number .number__title--heading2 {
  display: flex;
  align-items: center;
  gap: 24px;
  line-height: 1.3;
}
.number .number__title--heading2 .is-cursive {
  font-size: 2rem;
  font-family: var(--fontNautica);
  color: var(--colorTextTertiary);
}
@media screen and (max-width: 374px) {
  .number .number__title--heading2 .is-cursive {
    font-size: 1.5rem;
  }
}
.number .number__title--heading2 .is-en {
  font-size: 2.625rem;
}
@media screen and (max-width: 374px) {
  .number .number__title--heading2 .is-en {
    font-size: 2.375rem;
  }
}
.number .merit__title--sub-title {
  font-size: 1rem;
  letter-spacing: 0.1em;
}
.number .number__boxes {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.number .number__box {
  padding-bottom: 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 36px;
  border-bottom: 1px solid rgba(247, 244, 244, 0.3803921569);
}
.number .number__box--heading3 {
  font-size: 1.125rem;
}
.number .number__box--heading3 .is-number {
  font-size: 6.875rem;
  font-family: var(--fontCormorantGaramond);
  line-height: 0.5;
}
.number .number__box--heading3 .bigger {
  font-size: 2.375rem;
}
.number .number__box--text {
  text-align: left;
}

.strength {
  padding-top: 40px;
  padding-bottom: 80px;
}
.strength .strength__head {
  text-align: center;
  display: flex;
  flex-direction: column-reverse;
  gap: 10px;
}
.strength .strength__head--heading2 {
  line-height: 1.3;
}
.strength .strength__head--heading2 .is-cursive,
.strength .strength__head--heading2 .is-en {
  display: block;
  letter-spacing: 0.05em;
}
.strength .strength__head--heading2 .is-cursive {
  font-size: 2rem;
  font-family: var(--fontNautica);
  color: var(--colorTextTertiary);
}
.strength .strength__head--heading2 .is-en {
  font-size: 2.625rem;
  font-family: var(--fontCormorantGaramond);
  font-weight: var(--fontWight700);
}
@media screen and (max-width: 374px) {
  .strength .strength__head--heading2 .is-en {
    font-size: 2.375rem;
  }
}
.strength .strength__head--sub-title {
  font-size: 1.125rem;
  letter-spacing: 0.1em;
}
.strength .strength__boxes {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.strength .strength__box {
  display: flex;
  flex-direction: column-reverse;
}
.strength .strength__box--body {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
}
.strength .strength__box--body--head--number {
  font-size: 1.25rem;
  font-family: var(--fontCormorantGaramond);
  line-height: 1;
}
.strength .strength__box--body--head--number span {
  font-size: 1.875rem;
}
.strength .strength__box--body--head--heading3 {
  margin-top: 12px;
  font-size: 1.25rem;
  font-weight: var(--fontWight700);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.strength .strength__box--body--head--heading3.--fontSize-small {
  font-size: 1.1875rem;
}
.strength .strength__box--body--text {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.strength .strength__box--body--items {
  margin-top: 24px;
  display: grid;
  gap: 10px;
  text-align: center;
}
.strength .strength__box--body--items.--4column {
  grid-template-columns: repeat(4, 1fr);
}
@media screen and (max-width: 374px) {
  .strength .strength__box--body--items.--4column {
    grid-template-columns: repeat(2, 1fr);
  }
}
.strength .strength__box--body--items.--4column .strength__box--body--item {
  place-items: center;
}
.strength .strength__box--body--items.--3column {
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 374px) {
  .strength .strength__box--body--items.--3column {
    grid-template-columns: repeat(2, 1fr);
  }
}
.strength .strength__box--body--items.--3column .strength__box--body--item {
  display: block;
  padding-block: 25px;
}
.strength .strength__box--body--items.--2column {
  grid-template-columns: repeat(2, 1fr);
}
.strength .strength__box--body--items.--2column .strength__box--body--item {
  display: block;
}
.strength .strength__box--body--item {
  display: grid;
  padding-block: 15px;
  font-size: 0.8125rem;
  background: transparent linear-gradient(180deg, #870001 0%, rgba(68, 0, 1, 0) 100%) 0% 0% no-repeat padding-box;
  border-radius: 50%;
  line-height: 1.3;
  letter-spacing: 0.1em;
}
.strength .strength__box--body--item span {
  font-size: 1.375rem;
}
.message {
  padding-top: 300px;
  position: relative;
  background-image: url(../image/index/message/message.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: top right 10%;
}
.message .message__content {
  position: relative;
}
.message .message__head {
  position: absolute;
  top: -46px;
}
.message .message__head--heading2,
.message .message__head--text {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 12px;
  font-weight: var(--fontWight700);
  background: var(--colorBgQuinary);
  line-height: 1;
}
.message .message__head--heading2 {
  font-size: 3.5rem;
  font-family: var(--fontCormorantGaramond);
}
.message .message__head--text {
  font-size: 1.125rem;
}
.message .message__text {
  padding: 120px 15px 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: rgba(135, 0, 1, 0.831372549);
}
.message .message__text p {
  letter-spacing: 0.1em;
}
.message .message__text p:nth-last-of-type(1) {
  margin-top: 10px;
  text-align: right;
  font-size: 1.25rem;
}

.cta {
  padding-block: 60px;
}
.cta .cta__head {
  text-align: center;
  display: flex;
  flex-direction: column-reverse;
}
.cta .cta__head--heading2 {
  font-size: 2.625rem;
  font-weight: var(--fontWight700);
  font-family: var(--fontCormorantGaramond);
  letter-spacing: 0.05em;
  line-height: 1.3;
}
.cta .cta__head--text {
  font-size: 0.875rem;
  letter-spacing: 0.1em;
}
.cta .cta__buttons {
  margin-top: 40px;
  max-width: 320px;
  width: 100%;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.cta .cta__button a {
  position: relative;
  padding-inline: 15px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--colorButtonPrimary);
  border-radius: 100vmax;
  transition: all 0.3s;
}
.cta .cta__button a::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 30px;
  width: 16px;
  height: 16px;
  background: url(../image/_common/icon/icon_arrow.png) no-repeat center center/contain;
  transition: all 0.3s;
}
.cta .cta__button a .cta__button--icon img {
  height: 100%;
}
.cta .cta__button a .cta__button--icon.--size1 {
  width: 64px;
  height: 54px;
}
@media screen and (max-width: 374px) {
  .cta .cta__button a .cta__button--icon.--size1 {
    width: 54px;
    height: 44px;
  }
}
.cta .cta__button a .cta__button--icon.--size2 {
  width: 52px;
  height: 36px;
}
.cta .cta__button a .cta__button--icon.--size2.cta__button--text {
  width: calc(100% - 54px);
}
.cta .cta__button a .cta__button--text {
  display: flex;
  flex-direction: column;
  width: calc(100% - 64px);
}
.cta .cta__button a .cta__button--text .is-label {
  font-size: 1.5rem;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 374px) {
  .cta .cta__button a .cta__button--text .is-label {
    font-size: 1.25rem;
  }
}
.cta .cta__button a .cta__button--text .is-name {
  letter-spacing: 0.1em;
}
@media (any-hover: hover), (hover: hover) and (pointer: fine) {
  .cta .cta__button a:hover, .cta .cta__button a:focus {
    background: var(--colorBgSecondary);
  }
  .cta .cta__button a:hover::after, .cta .cta__button a:focus::after {
    right: 24px;
  }
}

.footer {
  padding-block: 40px;
  background: var(--colorBgQuinary);
}
.footer .footer__buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.footer .footer__button a {
  padding: 8px 15px;
  border: 1px solid #F7F4F4;
  border-radius: 20px;
}