body {
  font-size: 16px;
  line-height: 1.7;
  color: #ffffff;
  font-family: "Noto Sans JP", sans-serif;
  background: #1c1c1c;
}

@media screen and (max-width: 767px) {
  .hidden-sp {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .hidden-pc {
    display: none;
  }
}

.inline-block {
  display: inline-block;
  font-weight: inherit;
}

.inner {
  padding-left: 15px;
  padding-right: 15px;
}
@media screen and (min-width: 768px) {
  .inner {
    padding-left: 30px;
    padding-right: 30px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }
}

.heading {
  text-align: center;
  font-family: "Montserrat", sans-serif;
}

.heading__en {
  font-size: 38px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 3.8px;
}
@media screen and (min-width: 768px) {
  .heading__en {
    font-size: 50px;
    letter-spacing: 5px;
  }
}

.heading__ja {
  font-size: 14px;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 1.12px;
  margin-top: 14px;
}
@media screen and (min-width: 768px) {
  .heading__ja {
    font-size: 16px;
    letter-spacing: 1.28px;
  }
}

.button {
  font-weight: 700;
  letter-spacing: 0.48px;
  padding: 8px 28px;
  display: inline-block;
  border-radius: 60px;
  border: 2px solid currentColor;
  background: #1c1c1c;
  font-size: 16px;
  line-height: 1.7;
  color: #ffffff;
  min-width: 150px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}
.button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}
.button:hover::before {
  width: 300px;
  height: 300px;
}
.button:hover {
  background-color: #525252;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}
.button:active {
  transform: translateY(-1px);
}
.button--mv {
  animation: buttonPulse 2s ease-in-out infinite;
}
@keyframes buttonPulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
  }
}
.button--cta {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.05);
}
.button--cta:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.8);
}
.button--type2 {
  background-color: #111;
  color: #fff;
}
.button--type2:hover {
  background-color: #fff;
  color: #111;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(28, 28, 28, 0.95);
  backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border-bottom: 1px solid transparent;
}
.header.is-scrolled {
  background: rgba(28, 28, 28, 0.98);
  border-bottom-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
.header__inner {
  display: flex;
  justify-content: space-between;
  padding: 22px 15px;
}
@media screen and (min-width: 768px) {
  .header__inner {
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 21px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (min-width: 768px) {
  .header__logo {
    padding-top: 6px;
  }
}
.header__logo a {
  display: block;
  transition: transform 0.3s ease;
}
.header__logo a:hover {
  transform: scale(1.05);
}
.header__logo a img {
  width: 100px;
  display: block;
  transition: filter 0.3s ease;
}
.header__logo a:hover img {
  filter: brightness(1.1);
}
@media screen and (min-width: 768px) {
  .header__logo a img {
    width: 135px;
  }
}

.header__nav {
  display: none;
}
@media screen and (min-width: 768px) {
  .header__nav {
    display: flex;
    align-items: center;
    gap: 40px;
  }
}

.header__link {
  font-weight: 700;
  letter-spacing: 0.48px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  padding: 4px 0;
}
.header__link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #ffffff;
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.header__link:hover {
  color: #ffffff;
  transform: translateY(-2px);
}
.header__link:hover::after {
  width: 100%;
}

.header__open {
  margin-top: 3px;
}
@media screen and (min-width: 768px) {
  .header__open {
    display: none;
  }
}

.drawer-icon {
  width: 36px;
  height: 21px;
  position: relative;
  z-index: 51;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(1) {
  top: 10px;
  transform: rotate(30deg);
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(2) {
  display: none;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(3) {
  top: 10px;
  transform: rotate(-30deg);
}

.drawer-icon__bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 36px;
  height: 3px;
  border-radius: 6px;
  background: #ffffff;
  transition: transform 0.3s linear, top 0.3s linear;
}
.drawer-icon__bar:nth-of-type(2) {
  top: 9px;
}
.drawer-icon__bar:nth-of-type(3) {
  top: 18px;
}

.drawer-content {
  width: 320px;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  background: #1c1c1c;
  z-index: 50;
  padding: 86px 40px 40px;
  transform: translateX(100%);
  transition: transform 0.3s linear;
}
.drawer-content.is-checked {
  transform: translateX(0);
}

.drawer-content__link {
  display: block;
  padding-top: 14px;
  padding-bottom: 14px;
  text-align: right;
  font-weight: 700;
  letter-spacing: 0.48px;
}

.drawer-content__button {
  margin-top: 14px;
  text-align: right;
}

.mv {
  border-radius: 20px;
  max-width: calc(100% - 30px);
  margin-left: auto;
  margin-right: auto;
  margin-top: 100px;
  background: linear-gradient(180deg, #323232 0%, #525252 100%);
}
@media screen and (min-width: 768px) {
  .mv {
    border-radius: 30px;
    max-width: calc(100% - 60px);
    margin-top: 120px;
  }
}

.mv__inner {
  padding: 50px 20px 50px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .mv__inner {
    padding-top: 110px;
    padding-bottom: 109px;
    padding-left: 30px;
    padding-right: 30px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
  }
}

.mv__lead1,
.mv__lead2 {
  font-feature-settings: "palt" on;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 2.2px;
  border-radius: 5px;
  background: #7b7b7b;
  padding: 10px;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.mv__lead1:hover,
.mv__lead2:hover {
  background: #8b8b8b;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}
@media screen and (min-width: 768px) {
  .mv__lead1,
  .mv__lead2 {
    margin-left: 0;
    margin-right: 0;
    font-size: 38px;
    letter-spacing: 3.8px;
    padding: 12px 16px;
  }
}

.mv__lead2 {
  margin-top: 8px;
}
@media screen and (min-width: 768px) {
  .mv__lead2 {
    margin-top: 14px;
  }
}

.mv__description {
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.48px;
  margin-top: 26px;
}
@media screen and (min-width: 768px) {
  .mv__description {
    text-align: left;
    margin-top: 20px;
    font-size: 18px;
    letter-spacing: 0.54px;
  }
}

.mv__button {
  margin-top: 22px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .mv__button {
    text-align: left;
    margin-top: 30px;
  }
}
.mv__image {
  position: absolute;
  right: 0;
  bottom: 30px;
  width: 100%;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .mv__image {
    width: 57.6923076923%;
    text-align: right;
    bottom: 370px;
  }
}
.mv__image img {
  width: 300px;
}
@media screen and (min-width: 768px) {
  .mv__image img {
    width: 600px;
  }
}

.case {
  margin-top: 108px;
  padding-top: 60px;
  padding-bottom: 60px;
}
@media screen and (min-width: 768px) {
  .case {
    margin-top: 88px;
    padding-top: 70px;
    padding-bottom: 50px;
  }
}

.case__inner {
  padding-left: 40px;
  padding-right: 40px;
}
@media screen and (min-width: 768px) {
  .case__inner {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
  }
}

.case__title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1; /* 18px */
  letter-spacing: 1.8px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .case__title {
    font-size: 20px;
    letter-spacing: 2px;
  }
}

.case__items {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px 15px;
}
@media screen and (min-width: 768px) {
  .case__items {
    margin-top: 54px;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px 40px;
  }
}

.case__item {
  text-align: center;
}
.news {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media screen and (min-width: 768px) {
  .news {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

.news__card {
  border-radius: 20px;
  background: linear-gradient(180deg, #323232 0%, #525252 100%);
  box-shadow: 0px 9px 30px 0px rgba(0, 0, 0, 0.3);
  padding: 40px 12px;
  margin-top: 100px;
}
@media screen and (min-width: 768px) {
  .news__card {
    border-radius: 30px;
    padding-top: 40px;
    padding-bottom: 34px;
    padding-left: 9.2105263158%;
    padding-right: 9.2105263158%;
  }
}

.news__title {
  font-family: "Montserrat", sans-serif;
  font-size: 38px;
  font-weight: 700;
  line-height: 1; /* 38px */
  letter-spacing: 3.8px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .news__title {
    font-size: 50px;
    letter-spacing: 5px;
    text-align: left;
  }
}

.news__lists {
  margin-top: 28px;
}
@media screen and (min-width: 768px) {
  .news__lists {
    margin-top: 30px;
  }
}
.news__lists > * + * {
  position: relative;
}
.news__lists > * + *::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  top: 0;
  left: 0;
  background: #e3e3e3;
}

.news__list:nth-child(n + 2) {
  position: relative;
}
.news__list:nth-child(n + 2)::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  top: 0;
  left: 0;
  background: #e3e3e3;
}

.news__link {
  text-align: right;
  margin-top: 22px;
}
@media screen and (min-width: 768px) {
  .news__link {
    margin-top: 20px;
  }
}
.news__link a {
  font-weight: 700;
  line-height: 100%;
  display: inline-block;
  border-bottom: 2px solid currentColor;
  padding-bottom: 8px;
  vertical-align: top;
  transition: color 0.3s;
}
.news__link a:hover {
  color: #a0a0a0;
}

.news-link {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding-top: 10px;
  padding-bottom: 10px;
  transition: background-color 0.3s;
}
@media screen and (min-width: 768px) {
  .news-link {
    flex-direction: row;
    padding-top: 12px;
    padding-bottom: 12px;
    gap: 0;
  }
}
.news-link:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.news-link__meta {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media screen and (min-width: 768px) {
  .news-link__meta {
    width: 247px;
    flex-shrink: 0;
    gap: 14px;
  }
}

.news-link__date {
  color: #ffffff;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .news-link__date {
    width: 119px;
  }
}

.news-link__label {
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 2px;
  background: #1c1c1c;
  min-width: 63px;
  text-align: center;
}
.news-link__label.is-news {
  background: #1c1c1c;
}
.news-link__label.is-column {
  background: #757575;
}
.news-link__label.is-event {
  background: #808080;
}

.about {
  padding-top: 60px;
  padding-bottom: 60px;
  overflow: hidden;
  margin-top: 100px;
  background: #1a1a1a;
  border-top: 1px solid #2a2a2a;
  border-bottom: 1px solid #2a2a2a;
  position: relative;
}
@media screen and (min-width: 768px) {
  .about {
    padding-top: 50px;
    padding-bottom: 100px;
  }
}

.about__title {
  text-align: center;
  position: relative;
  z-index: 2;
}
.about__title img {
  width: 180px;
  transition: transform 0.4s ease;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.3));
}
.about__title:hover img {
  transform: scale(1.05);
}
@media screen and (min-width: 768px) {
  .about__title img {
    width: 230px;
  }
}

.about__content {
  margin-top: 150px;
  position: relative;
  padding-top: 288px;
  padding-bottom: 105px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .about__content {
    margin-top: 176px;
    padding-top: 284px;
    padding-bottom: 100px;
  }
}
.about__content::before {
  content: "";
  width: 1100px;
  height: 1100px;
  border-radius: 50%;
  background: linear-gradient(180deg, #323232 0%, #525252 100%);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
  animation: pulseGlow 6s ease-in-out infinite;
}
@keyframes pulseGlow {
  0%, 100% {
    opacity: 1;
    transform: translateX(-50%) scale(1);
  }
  50% {
    opacity: 0.95;
    transform: translateX(-50%) scale(1.01);
  }
}
@media screen and (min-width: 768px) {
  .about__content::before {
    width: 800px;
    height: 800px;
  }
}

.about__image {
  position: absolute;
  text-align: center;
  top: -110px;
  left: 0;
  width: 100%;
  z-index: 1;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.about__image:hover {
  transform: translateY(-8px);
}
@media screen and (min-width: 768px) {
  .about__image {
    top: -126px;
  }
}
.about__image img {
  width: 320px;
  transition: filter 0.3s ease;
  filter: drop-shadow(0 8px 30px rgba(0, 0, 0, 0.4));
}
.about__image:hover img {
  filter: drop-shadow(0 12px 40px rgba(0, 0, 0, 0.5)) brightness(1.05);
}
@media screen and (min-width: 768px) {
  .about__image img {
    width: 330px;
  }
}

.about__text-wrapper {
  position: relative;
  z-index: 1;
}

.about__text {
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .about__text {
    line-height: 1.3;
  }
}

.about__pop {
  margin-top: 60px;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.about__pop-inner {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}
.about__pop-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.6s ease;
}
.about__pop-inner:hover::before {
  left: 100%;
}
.about__pop-inner:hover {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}
.about__pop-slash {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s ease;
}
.about__pop-inner:hover .about__pop-slash {
  color: rgba(255, 255, 255, 0.8);
}
.about__pop-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #ffffff;
  transition: color 0.3s ease;
}
.about__pop-inner:hover .about__pop-text {
  color: #ffffff;
}
@media screen and (min-width: 768px) {
  .about__pop {
    margin-top: 80px;
  }
  .about__pop-inner {
    padding: 16px 32px;
    gap: 12px;
  }
  .about__pop-slash {
    font-size: 16px;
  }
  .about__pop-text {
    font-size: 16px;
  }
}

.about__button {
  margin-top: 24px;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}
.button--story {
  position: relative;
  overflow: hidden;
  padding: 16px 40px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  color: #ffffff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.button--story::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.6s ease;
}
.button--story:hover::before {
  left: 100%;
}
.button--story:hover {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}
.button--story:active {
  transform: translateY(0);
}
.button__text {
  position: relative;
  z-index: 1;
}
.button__arrow {
  position: relative;
  z-index: 1;
  font-size: 18px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.button--story:hover .button__arrow {
  transform: translateX(4px);
}
@media screen and (min-width: 768px) {
  .about__button {
    margin-top: 32px;
  }
  .button--story {
    padding: 18px 48px;
    font-size: 16px;
  }
}

.movie__inner {
  padding-left: 15px;
  padding-right: 15px;
}

.movie__iframe {
  margin-top: 32px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .movie__iframe {
    margin-top: 56px;
  }
}
.movie__iframe iframe {
  width: 345px;
  max-width: 100%;
  height: auto;
  aspect-ratio: 345/194;
  vertical-align: top;
}
@media screen and (min-width: 768px) {
  .movie__iframe iframe {
    width: 640px;
    aspect-ratio: 640/360;
  }
}

.how-to-use {
  padding-top: 60px;
  padding-bottom: 60px;
  background: #1e1e1e;
  border-top: 1px solid #2c2c2c;
  border-bottom: 1px solid #2c2c2c;
}
@media screen and (min-width: 768px) {
  .how-to-use {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

.how-to-use__subtitle {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 100px;
}
@media screen and (min-width: 768px) {
  .how-to-use__subtitle {
    margin-top: 60px;
    margin-bottom: 120px;
  }
}
.how-to-use__subtitle p {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #ffffff;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .how-to-use__subtitle p {
    font-size: 28px;
    letter-spacing: 0.15em;
  }
}

.how-to-use__steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .how-to-use__steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 100px;
  }
}

.how-to-use__step {
  position: relative;
}

.step-card {
  position: relative;
  padding: 60px 30px;
  background: linear-gradient(180deg, #323232 0%, #525252 100%);
  border: 3px solid #111;
  border-radius: 30px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.step-card:hover {
  transform: translateY(-10px);
  border-color: #333;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}
@media screen and (min-width: 768px) {
  .step-card {
    padding: 80px 40px;
    border-radius: 40px;
  }
  .step-card:hover {
    transform: translateY(-15px);
  }
}

.step-number {
  font-family: "Montserrat", sans-serif;
  font-size: 120px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #ffffff;
  opacity: 0.15;
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.step-card:hover .step-number {
  opacity: 0.25;
}
@media screen and (min-width: 768px) {
  .step-number {
    font-size: 180px;
    top: -60px;
  }
}

.step-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 40px;
  position: relative;
  z-index: 1;
  border: 2px solid #ffffff;
  border-radius: 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.step-card:hover .step-icon {
  border-color: #ffffff;
  transform: scale(1.1);
}
@media screen and (min-width: 768px) {
  .step-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 50px;
  }
}

.step-icon--generate {
  width: 113px;
  height: 113px;
}
@media screen and (min-width: 768px) {
  .step-icon--generate {
    width: 141px;
    height: 141px;
  }
}

.step-icon--input::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border: 2px solid #ffffff;
  border-radius: 4px;
}
.step-icon--input::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border: 2px solid #ffffff;
  border-radius: 2px;
}
@media screen and (min-width: 768px) {
  .step-icon--input::before {
    width: 50px;
    height: 50px;
  }
  .step-icon--input::after {
    width: 25px;
    height: 25px;
  }
}

.step-icon--generate::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 40px;
  height: 40px;
  border: 2px solid #ffffff;
  border-radius: 4px;
}
.step-icon--generate::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 12px solid #ffffff;
}
@media screen and (min-width: 768px) {
  .step-icon--generate::before {
    width: 50px;
    height: 50px;
  }
  .step-icon--generate::after {
    border-left-width: 10px;
    border-right-width: 10px;
    border-bottom-width: 15px;
  }
}

.step-icon--train::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border: 2px solid #ffffff;
  border-radius: 50%;
}
.step-icon--train::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background: #ffffff;
  border-radius: 50%;
}
@media screen and (min-width: 768px) {
  .step-icon--train::before {
    width: 50px;
    height: 50px;
  }
  .step-icon--train::after {
    width: 25px;
    height: 25px;
  }
}

.step-title {
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #ffffff;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .step-title {
    font-size: 28px;
    letter-spacing: 0.15em;
    margin-bottom: 30px;
  }
}

.step-description {
  font-size: 15px;
  line-height: 2;
  color: #aaaaaa;
  font-weight: 400;
  letter-spacing: 0.05em;
  position: relative;
  z-index: 1;
  max-width: 320px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .step-description {
    font-size: 16px;
    line-height: 2.2;
    max-width: 100%;
  }
}

.merit {
  padding-top: 60px;
  padding-bottom: 60px;
  background: #1c1c1c;
  border-top: 1px solid #2a2a2a;
  border-bottom: 1px solid #2a2a2a;
}
@media screen and (min-width: 768px) {
  .merit {
    padding-top: 100px;
    padding-bottom: 98px;
  }
}

.merit__boxes {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media screen and (min-width: 768px) {
  .merit__boxes {
    margin-top: 60px;
    gap: 40px;
  }
}

.merit-box {
  border-radius: 20px;
  background: linear-gradient(180deg, #323232 0%, #525252 100%);
  padding: 10px 20px 24px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid transparent;
}
.merit-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 255, 255, 0.1);
}
@media screen and (min-width: 768px) {
  .merit-box {
    padding: 20px 18px;
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    gap: 50px;
  }
}
@media screen and (min-width: 768px) {
  .merit-box.is-reverse {
    flex-direction: row;
  }
}

@media screen and (min-width: 768px) {
  .merit-box__content {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    gap: 50px;
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 768px) {
  .is-reverse .merit-box__content {
    flex-direction: row;
  }
}

.merit-box__image {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .merit-box__image {
    width: 38.0434782609%;
  }
}
.merit-box__image img {
  width: 200px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.merit-box:hover .merit-box__image img {
  transform: scale(1.05);
}
@media screen and (min-width: 768px) {
  .merit-box__image img {
    width: 350px;
  }
}

.merit-box__body {
  margin-top: 18px;
}
@media screen and (min-width: 768px) {
  .merit-box__body {
    margin-top: 0;
    width: 56.5217391304%;
  }
}

.merit-box__head {
  display: flex;
  align-items: center;
  gap: 14px;
}
@media screen and (min-width: 768px) {
  .merit-box__head {
    gap: 28px;
  }
}

.merit-box__number {
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: 70px;
  font-weight: 600;
  line-height: 100%; /* 70px */
}
@media screen and (min-width: 768px) {
  .merit-box__number {
    font-size: 110px;
  }
}

.merit-box__title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  letter-spacing: 1.6px;
}
@media screen and (min-width: 768px) {
  .merit-box__title {
    font-size: 20px;
    letter-spacing: 2px;
  }
}

.merit-box__text {
  margin-top: 10px;
  font-size: 14px;
  line-height: 200%; /* 28px */
}
@media screen and (min-width: 768px) {
  .merit-box__text {
    margin-top: 16px;
    font-size: 15px;
  }
}

.features {
  padding-top: 60px;
  padding-bottom: 60px;
  background: #1c1c1c;
  border-top: 1px solid #2a2a2a;
  border-bottom: 1px solid #2a2a2a;
}
@media screen and (min-width: 768px) {
  .features {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

.features__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.features__title {
  margin-bottom: 80px;
}
@media screen and (min-width: 768px) {
  .features__title {
    margin-bottom: 100px;
  }
}

.features__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media screen and (min-width: 768px) {
  .features__cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
  }
}

.feature-card {
  background: linear-gradient(180deg, #323232 0%, #525252 100%);
  border-radius: 20px;
  padding: 40px 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
  transition: left 0.6s ease;
}
.feature-card:hover::before {
  left: 100%;
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 255, 255, 0.2);
}
@media screen and (min-width: 768px) {
  .feature-card {
    padding: 50px 40px;
  }
}

.feature-card__icon {
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .feature-card__icon {
    margin-bottom: 40px;
  }
}

.feature-icon {
  width: 80px;
  height: 80px;
  position: relative;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.feature-card:hover .feature-icon {
  border-color: rgba(255, 255, 255, 0.6);
  transform: scale(1.1) rotate(5deg);
}
@media screen and (min-width: 768px) {
  .feature-icon {
    width: 100px;
    height: 100px;
  }
}

.feature-icon--program::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border: 3px solid #ffffff;
  border-radius: 6px;
}
.feature-icon--program::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background: #ffffff;
  border-radius: 2px;
}
@media screen and (min-width: 768px) {
  .feature-icon--program::before {
    width: 50px;
    height: 50px;
  }
  .feature-icon--program::after {
    width: 25px;
    height: 25px;
  }
}

.feature-icon--max::before {
  content: "";
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 3px;
  background: #ffffff;
  border-radius: 2px;
}
.feature-icon--max::after {
  content: "";
  position: absolute;
  bottom: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 3px;
  background: #ffffff;
  border-radius: 2px;
}
@media screen and (min-width: 768px) {
  .feature-icon--max::before,
  .feature-icon--max::after {
    width: 40px;
  }
}

.feature-icon--pfc::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 35px;
  height: 35px;
  border: 3px solid #ffffff;
  border-radius: 50%;
}
.feature-icon--pfc::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 15px;
  height: 15px;
  background: #ffffff;
  border-radius: 50%;
}
@media screen and (min-width: 768px) {
  .feature-icon--pfc::before {
    width: 45px;
    height: 45px;
  }
  .feature-icon--pfc::after {
    width: 20px;
    height: 20px;
  }
}

.feature-card__title {
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #ffffff;
  margin-bottom: 20px;
  text-align: center;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .feature-card__title {
    font-size: 28px;
    margin-bottom: 24px;
  }
}

.feature-card__description {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 24px;
  text-align: center;
  position: relative;
  z-index: 1;
  flex-grow: 1;
}
@media screen and (min-width: 768px) {
  .feature-card__description {
    font-size: 15px;
    line-height: 2;
    margin-bottom: 30px;
  }
}

.feature-card__list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
  position: relative;
  z-index: 1;
}
.feature-card__list li {
  font-size: 13px;
  line-height: 2;
  color: rgba(255, 255, 255, 0.8);
  padding-left: 20px;
  position: relative;
  margin-bottom: 8px;
}
.feature-card__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #ffffff;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .feature-card__list li {
    font-size: 14px;
  }
}

.feature-card__link {
  text-align: center;
  position: relative;
  z-index: 1;
}

.button--feature {
  width: 100%;
  max-width: 200px;
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.05);
}
.button--feature:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}


.qa {
  padding-top: 60px;
  padding-bottom: 60px;
  background: #1a1a1a;
  border-top: 1px solid #2a2a2a;
  border-bottom: 1px solid #2a2a2a;
}
@media screen and (min-width: 768px) {
  .qa {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

@media screen and (min-width: 768px) {
  .qa__inner {
    padding-left: 30px;
    padding-right: 30px;
    max-width: 1000px;
  }
}

.qa__boxes {
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (min-width: 768px) {
  .qa__boxes {
    margin-top: 100px;
    gap: 32px;
  }
}

.qa-box {
  border-radius: 10px;
  border: 3px solid #111;
  background: linear-gradient(180deg, #777777 0%, #919191 100%);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}
.qa-box:hover {
  border-color: #333;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}
.qa-box.is-open {
  border-color: #111;
}
.qa-box.is-open .qa-box__head::after {
  transform: rotate(0deg);
}

.qa-box__head {
  padding: 20px 50px 20px 70px;
  position: relative;
  display: block;
  width: 100%;
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.qa-box__head:hover {
  background: rgba(255, 255, 255, 0.02);
}
@media screen and (min-width: 768px) {
  .qa-box__head {
    padding: 40px 80px 40px 100px;
  }
}
.qa-box__head::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%) rotate(180deg);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid #ffffff;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
@media screen and (min-width: 768px) {
  .qa-box__head::after {
    right: 40px;
    border-left-width: 8px;
    border-right-width: 8px;
    border-top-width: 10px;
  }
}

.qa-box__head-icon {
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 18px;
  border: 3px solid #111;
  background: #ffffff;
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  color: #000000;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.qa-box:hover .qa-box__head-icon {
  transform: translateY(-50%) scale(1.05);
}
@media screen and (min-width: 768px) {
  .qa-box__head-icon {
    width: 64px;
    height: 64px;
    font-size: 36px;
    left: 24px;
    border-radius: 22px;
  }
}

.qa-box__head-text {
  display: block;
  text-align: left;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #ffffff;
  line-height: 1.7;
  transition: color 0.3s ease;
  padding-right: 30px;
}
@media screen and (min-width: 768px) {
  .qa-box__head-text {
    font-size: 20px;
    letter-spacing: 0.08em;
    line-height: 1.5;
    padding-right: 0;
  }
}

.qa-box__body {
  padding: 0 20px 24px 70px;
  display: none;
  animation: fadeInDown 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.qa-box.is-open .qa-box__body {
  display: block;
}
@media screen and (min-width: 768px) {
  .qa-box__body {
    padding: 0 100px 50px 120px;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.qa-box__a {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
@media screen and (min-width: 768px) {
  .qa-box__a {
    gap: 32px;
  }
}

.qa-box__a-icon {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 18px;
  border: 3px solid #111;
  background: #525252;
  flex-shrink: 0;
  color: #ffffff;
  transition: all 0.3s ease;
}
.qa-box:hover .qa-box__a-icon {
  transform: scale(1.05);
}
@media screen and (min-width: 768px) {
  .qa-box__a-icon {
    width: 56px;
    height: 56px;
    font-size: 32px;
    border-radius: 22px;
  }
}

.qa-box__a-text {
  display: block;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.02em;
  flex-grow: 1;
  padding-top: 4px;
  color: #ffffff;
  line-height: 1.8;
  transition: color 0.3s ease;
}
@media screen and (min-width: 768px) {
  .qa-box__a-text {
    font-size: 16px;
    line-height: 2.2;
    letter-spacing: 0.08em;
    font-weight: 700;
    padding-top: 10px;
  }
}


.contact {
  padding-top: 60px;
  padding-bottom: 60px;
  background: #1a1a1a;
  border-top: 1px solid #2a2a2a;
  border-bottom: 1px solid #2a2a2a;
}
@media screen and (min-width: 768px) {
  .contact {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

.contact__box {
  border-radius: 30px;
  background: linear-gradient(180deg, #323232 0%, #525252 100%);
  padding: 60px 20px;
}
@media screen and (min-width: 768px) {
  .contact__box {
    padding-left: 30px;
    padding-right: 30px;
  }
}

.contact__form {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .contact__form {
    margin-top: 50px;
    max-width: 612px;
    margin-left: auto;
    margin-right: auto;
  }
}

.contact__fields {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact__privacy {
  margin-top: 29px;
  text-align: center;
}

.contact__button {
  margin-top: 29px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .contact__button {
    margin-top: 38px;
  }
}

.contact__content {
  margin-top: 40px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .contact__content {
    margin-top: 60px;
  }
}

.contact__text {
  font-size: 16px;
  line-height: 1.8;
  color: #ffffff;
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .contact__text {
    font-size: 18px;
    margin-bottom: 40px;
  }
}

@media screen and (min-width: 768px) {
  .form-field {
    display: flex;
    gap: 32px;
  }
}

.form-field__head {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .form-field__head {
    width: 180px;
    flex-shrink: 0;
    justify-content: flex-end;
  }
}

.form-field__label {
  font-weight: 700;
  line-height: 1.4375;
}

.form-field__tag {
  display: inline-block;
  border-radius: 2px;
  background: #525252;
  padding: 6px 8px 5px 8px;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  line-height: 100%; /* 11px */
  letter-spacing: 1.98px;
}
.form-field__tag.is-option {
  background-color: #323232;
}

.form-field__item {
  margin-top: 15px;
  flex-grow: 1;
}
@media screen and (min-width: 768px) {
  .form-field__item {
    margin-top: 0;
  }
}
.form-field__item .form-text {
  width: 100%;
  border-radius: 5px;
  border: 3px solid #111;
  background: #fff;
  padding: 12px 13px 11px;
  transition: border-color 0.3s;
  color: #1c1c1c;
}
.form-field__item .form-text:hover,
.form-field__item .form-text:focus {
  border-color: #808080;
  outline: none;
}
.form-field__item .form-radio {
  line-height: 1.4375;
}
.form-field__item .form-radio:hover .form-radio__text::before {
  border-color: #808080;
}

.form-radio__input {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}
.form-radio__input:checked + .form__radio-text::after {
  opacity: 1;
}
.form-radio__input:focus + .form__radio-text::before {
  border-color: #808080;
}

.form__radio-text {
  font-weight: 700;
  position: relative;
  padding-left: 28px;
}
.form__radio-text::before,
.form__radio-text::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
}
.form__radio-text::before {
  width: 24px;
  height: 24px;
  border: 3px solid #111;
  left: 0;
  transition: border-color 0.3s;
}
.form__radio-text::after {
  width: 10px;
  height: 10px;
  left: 7px;
  background: #808080;
  opacity: 0;
}

.form-select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  border-radius: 5px;
  border: 3px solid #111;
  background: #fff;
  font-weight: 700;
  padding: 12px 43px 11px 13px;
  background: url(../images/select-arrow.png) no-repeat center right 14px/13.217px
    10.182px;
  transition: border-color 0.3s;
}
.form-select:hover,
.form-select:focus {
  border-color: #808080;
  outline: none;
}

.form-textarea {
  border-radius: 5px;
  border: 3px solid #111;
  background: #fff;
  width: 100%;
  height: 180px;
  padding: 13px;
  transition: border-color 0.3s;
  color: #1c1c1c;
}
.form-textarea:hover,
.form-textarea:focus {
  border-color: #808080;
  outline: none;
}

.form-field__radios {
  display: flex;
  flex-direction: column;
  gap: 17px;
}
@media screen and (min-width: 768px) {
  .form-field__radios {
    flex-direction: row;
    gap: 30px;
  }
}

.form-checkbox:hover .form-checkbox__text::before {
  border-color: #808080;
}

.form-checkbox__input {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}
.form-checkbox__input:checked + .form-checkbox__text::after {
  opacity: 1;
}
.form-checkbox__input:focus + .form-checkbox__text::before {
  border-color: #808080;
}

.form-checkbox__text {
  position: relative;
  padding-left: 30px;
  font-size: 14px;
  font-weight: 700;
}
.form-checkbox__text::before,
.form-checkbox__text::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.form-checkbox__text::before {
  width: 20px;
  height: 20px;
  border-radius: 1px;
  border: 1px solid #111;
  transition: border-color 0.3s;
}
@media screen and (min-width: 768px) {
  .form-checkbox__text::before {
    margin-top: 2px;
  }
}
.form-checkbox__text::after {
  width: 23px;
  height: 17.53px;
  left: -1px;
  margin-top: -1.2px;
  background: url(../images/checkbox-icon.png) no-repeat center center/contain;
  opacity: 0;
}
@media screen and (min-width: 768px) {
  .form-checkbox__text::after {
    margin-top: 0.8px;
  }
}
.form-checkbox__text a {
  text-decoration-line: underline;
  font-weight: 700;
  transition: color 0.3s;
}
.form-checkbox__text a:hover {
  color: #a0a0a0;
}

.cta {
  background: linear-gradient(180deg, #323232 0%, #525252 100%);
  text-align: center;
  padding-top: 50px;
  padding-bottom: 50px;
  border-top: 1px solid #404040;
  border-bottom: 1px solid #404040;
}
@media screen and (min-width: 768px) {
  .cta {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.cta__text {
  font-weight: 700;
  line-height: 200%; /* 32px */
  letter-spacing: 0.48px;
}
.cta__text .inline-block {
  display: inline-block;
  transition: transform 0.3s ease;
}
.cta__text:hover .inline-block {
  transform: translateY(-2px);
}
@media screen and (min-width: 768px) {
  .cta__text {
    font-size: 18px;
    letter-spacing: 0.54px;
  }
}

.cta__button {
  margin-top: 16px;
}

.footer {
  background: #111;
  padding-top: 8px;
  padding-bottom: 12px;
  text-align: center;
}

.footer__copyright {
  color: #f5f5f5;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 0.96px;
}

.footer__nav {
  margin-bottom: 10px;
}

.footer__menu {
  list-style: none;
  display: flex;
  gap: 15px;
  padding: 0;
  justify-content: center;
}

.footer__menu li {
  display: inline;
}

.footer__menu a {
  text-decoration: none;
  color: #ffffff;
  font-size: 14px;
  transition: color 0.3s;
}

.footer__menu a:hover {
  color: #cccccc;
}

.pagetop {
  position: fixed;
  right: 10px;
  bottom: 10px;
  width: min(13.3333333333%, 50px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  transform: translateY(20px);
  z-index: 40;
}
.pagetop:hover {
  transform: translateY(-5px);
}
.pagetop img {
  transition: filter 0.3s ease;
}
.pagetop:hover img {
  filter: brightness(1.2);
}
@media screen and (min-width: 768px) {
  .pagetop {
    right: 16px;
    bottom: 30px;
    width: 76px;
  }
}
.pagetop.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.about-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  max-width: calc(100% - 40px);
  max-height: calc(100dvh - 40px);
  width: 100%;
  height: auto;
  overflow: hidden;
  padding: 0;
  border-radius: 24px;
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  z-index: 60;
  animation: modalFadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: none;
}
.about-modal[open] {
  display: block;
}
@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
@media screen and (min-width: 768px) {
  .about-modal {
    max-width: 900px;
    max-height: calc(100vh - 80px);
    border-radius: 32px;
  }
}
.about-modal::backdrop {
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  animation: backdropFadeIn 0.4s ease;
}
@keyframes backdropFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* iOS Safari用のbackdrop代替 */
.about-modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  z-index: 59;
  display: none;
  animation: backdropFadeIn 0.4s ease;
}
.about-modal-backdrop.is-active {
  display: block;
}

.about-modal__container {
  display: flex;
  flex-direction: column;
  max-height: calc(100dvh - 40px);
  height: auto;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .about-modal__container {
    max-height: calc(100vh - 80px);
  }
}

.about-modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 24px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}
@media screen and (min-width: 768px) {
  .about-modal__header {
    padding: 40px 60px 30px;
  }
}

.about-modal__title {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #ffffff;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .about-modal__title {
    font-size: 28px;
  }
}

.about-modal__close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  position: relative;
  transition: transform 0.3s ease;
  padding: 0;
}
.about-modal__close:hover {
  transform: rotate(90deg);
}
.about-modal__close-line {
  position: absolute;
  width: 20px;
  height: 2px;
  background: rgba(255, 255, 255, 0.8);
  transition: background 0.3s ease;
}
.about-modal__close-line:first-child {
  transform: rotate(45deg);
}
.about-modal__close-line:last-child {
  transform: rotate(-45deg);
}
.about-modal__close:hover .about-modal__close-line {
  background: #ffffff;
}

.about-modal__body {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 24px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
  -webkit-overflow-scrolling: touch;
}
.about-modal__body::-webkit-scrollbar {
  width: 6px;
}
.about-modal__body::-webkit-scrollbar-track {
  background: transparent;
}
.about-modal__body::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
}
.about-modal__body::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.3);
}
@media screen and (min-width: 768px) {
  .about-modal__body {
    padding: 40px 60px;
  }
}

.about-modal__content {
  max-width: 100%;
  animation: contentFadeIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}
@keyframes contentFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about-modal__paragraph {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 2.2;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}
.about-modal__paragraph:nth-child(n + 2) {
  margin-top: 32px;
}
@media screen and (min-width: 768px) {
  .about-modal__paragraph {
    font-size: 16px;
    line-height: 2.4;
  }
  .about-modal__paragraph:nth-child(n + 2) {
    margin-top: 40px;
  }
}

.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-in-up.is-in-view {
  opacity: 1;
  transform: translateY(0);
}
.about__title.fade-in-up {
  transition-delay: 0.1s;
}
.about__image.fade-in-up {
  transition-delay: 0.2s;
}
.about__text-wrapper.fade-in-up {
  transition-delay: 0.3s;
}
.about__pop.fade-in-up {
  transition-delay: 0.5s;
}
.about__button.fade-in-up {
  transition-delay: 0.6s;
}

.fade-in-down {
  opacity: 0;
  transform: translateY(-24px);
  transition: opacity 1s, transform 1s;
}
.fade-in-down.is-in-view {
  opacity: 1;
  transform: translateY(0);
}
.fade-in {
  opacity: 0;
  transition: opacity 1s;
}
.fade-in.is-in-view {
  opacity: 1;
}

/* Policy Page Styles */
.policy-page {
  padding-top: 100px;
  padding-bottom: 100px;
  background: #1a1a1a;
  border-top: 1px solid #2a2a2a;
  border-bottom: 1px solid #2a2a2a;
  min-height: calc(100vh - 200px);
}
@media screen and (min-width: 768px) {
  .policy-page {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}

.policy-page__inner {
  max-width: 1200px;
}

.policy-page__content {
  background: linear-gradient(180deg, #323232 0%, #525252 100%);
  border-radius: 24px;
  padding: 40px 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
@media screen and (min-width: 768px) {
  .policy-page__content {
    padding: 60px 80px;
    border-radius: 32px;
  }
}

.policy-page__title {
  font-family: "Montserrat", sans-serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #ffffff;
  text-align: center;
  margin: 0 0 40px;
  padding-bottom: 20px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}
@media screen and (min-width: 768px) {
  .policy-page__title {
    font-size: 36px;
    margin-bottom: 60px;
    padding-bottom: 30px;
  }
}

.policy-page__body {
  color: rgba(255, 255, 255, 0.9);
}

.policy-page__heading {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #ffffff;
  margin-top: 40px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
@media screen and (min-width: 768px) {
  .policy-page__heading {
    font-size: 24px;
    margin-top: 50px;
    margin-bottom: 24px;
    padding-bottom: 16px;
  }
}
.policy-page__heading:first-of-type {
  margin-top: 0;
}

.policy-page__paragraph {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 2.2;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 24px;
}
@media screen and (min-width: 768px) {
  .policy-page__paragraph {
    font-size: 16px;
    line-height: 2.4;
    margin-bottom: 28px;
  }
}

.policy-page__list {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 2.2;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 24px;
  padding-left: 24px;
  list-style: none;
  position: relative;
}
@media screen and (min-width: 768px) {
  .policy-page__list {
    font-size: 16px;
    line-height: 2.4;
    margin-bottom: 28px;
    padding-left: 32px;
  }
}

.policy-page__list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
}
@media screen and (min-width: 768px) {
  .policy-page__list li {
    padding-left: 24px;
    margin-bottom: 16px;
  }
}

.policy-page__list li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 700;
}

/*# sourceMappingURL=style.css.map */

