@charset "UTF-8";
html {
  --color-primary: #005f9f;
  --color-gradi: linear-gradient(90deg, #00abc2 0%, #b14ddf 100%);
  --color-black: #111111;
  --color-white: #ffffff;
  height: 100%;
  font-family: Noto Sans JP, sans-serif;
  font-weight: normal;
  color: var(--color-text);
  line-height: 1.4;
  letter-spacing: 0.02em;
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  min-width: 37.5rem;
  margin: 0 auto;
  padding: 0;
  background-color: var(--color-white);
  font-size: 1.6rem;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  position: relative;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 1.5rem;
  }
}

/*-------------------------
共通
-------------------------*/
img,
.img-placeholder {
  width: 100%;
}

.img-placeholder {
  height: 14.4rem;
  border-radius: 1.6rem;
  background-color: #ccc;
}

p {
  line-height: 1.5;
}

a {
  transition: all 0.3s ease;
}
a:hover {
  opacity: 0.8;
}

br.pc {
  display: block;
}
@media screen and (max-width: 768px) {
  br.pc {
    display: none;
  }
}
br.sp {
  display: none;
}
@media screen and (max-width: 768px) {
  br.sp {
    display: block;
  }
}

.logo-indent {
  width: 13.6rem;
  height: 6rem;
  text-indent: -9999px;
  background: url("../../img/lp/logo.png") no-repeat center center/cover;
}
@media screen and (max-width: 768px) {
  .logo-indent {
    width: 10rem;
    height: 4.6rem;
  }
}

.color-gradi {
  display: inline-block;
  background: var(--color-gradi);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}

a.form-button.blue button {
  background: var(--color-primary);
}
a.form-button button {
  width: 100%;
  height: 5.6rem;
  background: var(--color-gradi);
  border: #f3daff 1px solid;
  border-radius: 4rem;
  padding: 1.6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.08rem;
}
a.form-button button .button__icon {
  width: 1.6rem;
  height: 1.6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
a.form-button button .button__icon svg {
  width: 100%;
  height: 100%;
}
a.form-button button .button__label .button__label-text {
  font-size: 1.6rem;
  letter-spacing: 0.02em;
  font-weight: bold;
  color: var(--color-white);
}

p.title-en {
  font-family: "Roboto", sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  p.title-en {
    font-size: 1.6rem;
    margin-bottom: 1.4rem;
  }
}

h2 {
  font-size: 4.8rem;
  line-height: 1.2;
  font-weight: bold;
  color: var(--color-black);
}
@media screen and (max-width: 768px) {
  h2 {
    font-size: 2.4rem;
  }
}

/*-------------------------
  メニュー
-------------------------*/
aside {
  position: fixed;
  top: -100%;
  left: 0;
  z-index: 9;
  width: 100vw;
  height: 80vh;
  background-color: rgba(255, 255, 255, 0.3);
  -webkit-backdrop-filter: blur(24px);
          backdrop-filter: blur(24px);
  padding-bottom: 7.3rem;
  transition: top 0.3s ease;
}
@media screen and (max-width: 768px) {
  aside.active {
    top: 0;
  }
}
aside .aside__header {
  padding: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.6rem;
}
aside .aside__header .aside__close {
  cursor: pointer;
  transition: all 0.3s ease;
}
aside .aside__header .aside__close:hover {
  opacity: 0.8;
}
aside .aside__header .aside__close .header__nav__close {
  width: 4.2rem;
  height: 0.2rem;
  transform: rotate(30deg);
  background-color: var(--color-primary);
  margin-bottom: 0.4rem;
  position: relative;
}
aside .aside__header .aside__close .header__nav__close::before {
  content: "";
  position: absolute;
  transform: rotate(-60deg);
  width: 4.2rem;
  height: 0.2rem;
  background-color: var(--color-primary);
}
aside .aside__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.8rem;
  margin-top: 5.8rem;
  margin-bottom: 4.8rem;
}
aside .aside__list li a {
  font-weight: 600;
  font-size: 1.6rem;
  transition: opacity 0.3s ease;
}
aside .aside__list li a:hover {
  opacity: 0.8;
}
aside .aside__button__area {
  width: 32.7rem;
  margin: 0 auto;
}

/*-------------------------
ヘッダー
-------------------------*/
header {
  position: fixed;
  z-index: 5;
  top: 0;
  left: 0;
  width: 100%;
}
header .header__container {
  padding: 1.6rem 2.4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 1.2rem;
}
@media screen and (max-width: 812px) {
  header .header__container {
    padding: 0.8rem;
    flex-wrap: nowrap;
  }
}
header .header__container nav {
  width: min(100%, 790px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 1.2rem;
}
@media screen and (max-width: 812px) {
  header .header__container nav {
    width: inherit;
  }
}
header .header__container nav .header__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem 3.2rem;
  font-size: 1.4rem;
  font-weight: bold;
}
@media screen and (max-width: 812px) {
  header .header__container nav .header__nav {
    display: none;
  }
}
header .header__container nav .header__nav-link {
  font-weight: bold;
  transition: all 0.3s ease;
}
header .header__container nav .header__nav-link:hover {
  opacity: 0.8;
}
@media screen and (max-width: 812px) {
  header .header__container nav .header__nav-link {
    display: none;
  }
}
header .header__container nav .header__nav-link button {
  padding: 1.85rem 2.25rem 1.75rem 3.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.9rem;
  background: url("../../img/lp/button-bg.png") center center/cover no-repeat;
  border-radius: 0.8rem;
}
header .header__container nav .header__nav-link button .button__label {
  font-size: 1.8rem;
  color: #f0cb00;
}
header .header__container nav .header__nav-link button .button__icon {
  display: flex;
  justify-content: center;
  align-items: center;
}
header .header__container nav .header__nav__humberger {
  display: none;
}
@media screen and (max-width: 812px) {
  header .header__container nav .header__nav__humberger {
    display: block;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  header .header__container nav .header__nav__humberger:hover {
    opacity: 0.8;
  }
}
header .header__container nav .header__nav__humberger .header__nav__humberger__line {
  width: 4.2rem;
  height: 0.2rem;
  background-color: var(--color-primary);
  margin-bottom: 0.4rem;
  position: relative;
}
header .header__container nav .header__nav__humberger .header__nav__humberger__line::before, header .header__container nav .header__nav__humberger .header__nav__humberger__line::after {
  content: "";
  position: absolute;
  width: 4.2rem;
  height: 0.2rem;
  background-color: var(--color-primary);
}
header .header__container nav .header__nav__humberger .header__nav__humberger__line::before {
  top: -0.8rem;
}
header .header__container nav .header__nav__humberger .header__nav__humberger__line::after {
  bottom: -0.8rem;
}
header .header__container nav .form-button {
  width: 24.7rem;
}
@media screen and (max-width: 812px) {
  header .header__container nav .form-button {
    display: none;
  }
}

/*-------------------------
メインコンテンツ
-------------------------*/
main {
  padding-top: 9.2rem;
}

.main__container {
  margin: 0 auto;
}

section.first-view {
  max-width: 144rem;
  margin: 0 auto;
  padding: 4rem 0 0 0;
}
@media screen and (max-width: 768px) {
  section.first-view {
    padding: 0;
  }
}
section.first-view .first-view__content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  row-gap: 4rem;
}
@media screen and (max-width: 768px) {
  section.first-view .first-view__content {
    flex-direction: column;
    align-items: center;
    row-gap: 2.4rem;
  }
}
section.first-view .first-view__content .first-view__text {
  min-width: 50%;
  max-width: 80rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
section.first-view .first-view__content .first-view__text .first-view__text__container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4rem;
}
@media screen and (max-width: 768px) {
  section.first-view .first-view__content .first-view__text .first-view__text__container {
    gap: 2.4rem;
  }
}
section.first-view .first-view__content .first-view__text .first-view__title {
  color: var(--color-primary);
  font-size: 5.6rem;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  section.first-view .first-view__content .first-view__text .first-view__title {
    padding: 0 0.4rem;
    font-size: 3.6rem;
    letter-spacing: 0.02em;
  }
}
section.first-view .first-view__content .first-view__text .first-view__lead {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  section.first-view .first-view__content .first-view__text .first-view__lead {
    padding: 0 0.8rem;
    letter-spacing: 0.02em;
    font-size: 1.5rem;
  }
}
section.first-view .first-view__content .first-view__text .form-button {
  width: 32.7rem;
}
@media screen and (max-width: 768px) {
  section.first-view .first-view__content .first-view__text .form-button {
    display: none;
  }
}
section.first-view .first-view__content .first-view__text .form-button button {
  box-shadow: 0 0.4rem 3.2rem rgba(20, 78, 93, 0.32);
}
section.first-view .first-view__content .first-view__image {
  flex: 1;
  max-width: 50%;
  min-width: 64rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4.2rem;
}
@media screen and (max-width: 768px) {
  section.first-view .first-view__content .first-view__image {
    max-width: 100%;
    min-width: 0;
  }
}
section.first-view .first-view__content .first-view__image .first-view__hero.mobile {
  width: 22.1rem;
}
@media screen and (max-width: 768px) {
  section.first-view .first-view__content .first-view__image .first-view__hero.mobile {
    display: none;
  }
}
section.first-view .first-view__content .first-view__image .first-view__hero.sinage {
  width: 26rem;
  overflow: hidden;
  position: relative;
}
section.first-view .first-view__content .first-view__image .first-view__hero.sinage img {
  transform: translateY(1.9rem);
}
section.first-view .first-view__content .first-view__image .first-view__hero.sinage .first-view__video {
  width: 24.1rem;
  height: 31.5rem;
  position: absolute;
  top: 5.2rem;
  left: 1rem;
  overflow: hidden;
  border: 1px solid #C7CFED;
  border-radius: 0.4rem;
}
section.first-view .first-view__content .first-view__image .first-view__hero.sinage .first-view__video video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

section.logo {
  padding: 2.4rem 0;
  overflow: hidden;
}
section.logo .logo__list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3.2rem;
}
@media screen and (max-width: 768px) {
  section.logo .logo__list {
    gap: 0.8rem;
  }
}
section.logo .logo__list .logo__item {
  flex-shrink: 0;
  width: 14rem;
}
@media screen and (max-width: 768px) {
  section.logo .logo__list .logo__item {
    width: 10rem;
  }
}

section.news-media,
section.creative {
  background-color: #ebf4ff;
  padding: 8rem 5%;
  border-radius: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 4rem;
}
section.news-media .title-en,
section.creative .title-en {
  margin-bottom: 2.4rem;
}
section.news-media h2,
section.creative h2 {
  margin-bottom: 4rem;
}
section.news-media .c_card-grid,
section.creative .c_card-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem 2.4rem;
  margin-bottom: 4rem;
}
section.news-media .c_card-grid .c_card,
section.creative .c_card-grid .c_card {
  width: 24.55rem;
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 0 0 8px 8px;
  background: #fff;
  box-shadow: 0 1px 4px rgba(12, 12, 13, 0.1);
  color: inherit;
  text-decoration: none;
  transition: 0.3s ease;
}
section.news-media .c_card-grid .c_card:hover,
section.creative .c_card-grid .c_card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}
section.news-media .c_card-grid .c_card .c_card-imgwrap,
section.creative .c_card-grid .c_card .c_card-imgwrap {
  overflow: hidden;
  aspect-ratio: 1/0.594;
}
section.news-media .c_card-grid .c_card .c_card-imgwrap .c_card-img,
section.creative .c_card-grid .c_card .c_card-imgwrap .c_card-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
section.news-media .c_card-grid .c_card .c_card-body,
section.creative .c_card-grid .c_card .c_card-body {
  position: relative;
  padding: 14px 16px;
}
section.news-media .c_card-grid .c_card .c_card-body .c_card-date,
section.creative .c_card-grid .c_card .c_card-body .c_card-date {
  display: block;
  margin-bottom: 8px;
  color: #757575;
  font-size: 12px;
}
section.news-media .c_card-grid .c_card .c_card-body .c_card-text,
section.creative .c_card-grid .c_card .c_card-body .c_card-text {
  margin-bottom: 8px;
  min-height: 40px;
  font-weight: 400;
  font-size: 14px;
}
section.news-media .c_card-grid .c_card .c_card-body .c_card-tags,
section.creative .c_card-grid .c_card .c_card-body .c_card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
section.news-media .c_card-grid .c_card .c_card-body .c_card-tags .c_card-tag,
section.creative .c_card-grid .c_card .c_card-body .c_card-tags .c_card-tag {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 9999px;
  background: #1f2d49;
  color: #fff;
  font-size: 12px;
}
section.news-media .c_card-grid .c_card .c_card-body .c_card-share,
section.creative .c_card-grid .c_card .c_card-body .c_card-share {
  position: absolute;
  top: -36px;
  right: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  padding: 5px;
  border-radius: 50%;
  background: #fff;
  font-size: 18px;
  transition: 0.3s ease;
}
section.news-media .cta__button .form-button button,
section.creative .cta__button .form-button button {
  width: 24.2rem;
}

.section__wrapper {
  background: var(--color-gradi);
  padding: 0 5.56% 12rem 5.56%;
  border-radius: 8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 8rem;
  color: var(--color-white);
  margin-bottom: 4rem;
}
@media screen and (max-width: 768px) {
  .section__wrapper {
    padding: 0 2rem 4rem 2rem;
    border-radius: 2.4rem;
    flex-wrap: nowrap;
  }
}
.section__wrapper h2 {
  color: var(--color-white);
}
.section__wrapper section.about {
  padding-top: 12rem;
  max-width: 144rem;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row-reverse;
  flex-wrap: wrap;
  gap: 4rem;
  padding: 12rem 5% 0 5%;
}
@media screen and (max-width: 768px) {
  .section__wrapper section.about {
    padding: 6rem 0 0 0;
    max-width: 100%;
    flex-direction: column;
    align-items: center;
    margin: 0;
  }
}
.section__wrapper section.about .about__img {
  flex: 1;
  max-width: 58.3rem;
  min-width: 40rem;
}
@media screen and (max-width: 768px) {
  .section__wrapper section.about .about__img {
    max-width: 100%;
    min-width: 0;
  }
}
.section__wrapper section.about .about__text__block {
  flex: 1;
  max-width: 48.9rem;
  min-width: 36.8rem;
}
@media screen and (max-width: 768px) {
  .section__wrapper section.about .about__text__block {
    max-width: 100%;
    min-width: 0;
  }
}
.section__wrapper section.about .about__text__block .title-en {
  margin-bottom: 2.4rem;
}
.section__wrapper section.about .about__text__block h2 {
  margin-bottom: 4rem;
}
@media screen and (max-width: 768px) {
  .section__wrapper section.about .about__text__block h2 {
    margin-bottom: 3rem;
  }
}
.section__wrapper section.about .about__text__block .about__text {
  line-height: 2;
}
.section__wrapper section.contents {
  max-width: 144rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  gap: 4rem;
}
@media screen and (max-width: 768px) {
  .section__wrapper section.contents {
    margin: 0;
    padding: 0;
  }
}
.section__wrapper section.contents .contents__title__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}
.section__wrapper section.contents .contents__title__wrapper::before, .section__wrapper section.contents .contents__title__wrapper::after {
  position: absolute;
  content: "";
  top: 50%;
  width: 300%;
  height: 1px;
  background-color: var(--color-white);
}
.section__wrapper section.contents .contents__title__wrapper::before {
  right: calc(100% + 4rem);
}
.section__wrapper section.contents .contents__title__wrapper::after {
  left: calc(100% + 4rem);
}
.section__wrapper section.contents .contents__title__wrapper h2 {
  font-size: 2.4rem;
  line-height: 1.2;
}
.section__wrapper section.contents .contents__block {
  width: 100%;
  color: var(--color-black);
  padding: 4rem 3.47%;
  border-radius: 1.6rem;
  background-color: var(--color-white);
}
.section__wrapper section.contents .contents__block.coming-soon {
  background-color: #afd2dd;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 2.4rem;
  font-weight: bold;
}
.section__wrapper section.contents .contents__block .contents__block__wrapper {
  display: flex;
  gap: 2.4rem;
  margin-bottom: 4rem;
}
@media screen and (max-width: 768px) {
  .section__wrapper section.contents .contents__block .contents__block__wrapper {
    flex-direction: column;
    padding: 2.4rem;
  }
}
.section__wrapper section.contents .contents__block .contents__block__wrapper .contents__block__img__area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
}
.section__wrapper section.contents .contents__block .contents__block__wrapper .contents__block__img__area .logo {
  width: 24rem;
  border-radius: 1.6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 2.3rem;
}
.section__wrapper section.contents .contents__block .contents__block__wrapper .contents__block__img__area .logo:has(.img-placeholder) {
  padding: 0;
}
.section__wrapper section.contents .contents__block .contents__block__wrapper .contents__block__img__area h3 {
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.4;
}
.section__wrapper section.contents .contents__block .contents__block__wrapper .contents__text__list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.section__wrapper section.contents .contents__block .contents__block__wrapper .contents__text__list .contents__text__list__item {
  display: flex;
  width: 100%;
  gap: 0.8rem;
  padding-bottom: 1.6rem;
  border-bottom: 1px solid #c7dbe7;
}
.section__wrapper section.contents .contents__block .cta__button {
  display: flex;
  align-items: center;
  justify-content: center;
}
.section__wrapper section.contents .contents__block .cta__button .form-button {
  width: 31.1rem;
}

section.cta {
  color: var(--color-white);
  margin-top: 6rem;
  padding-bottom: 8rem;
  position: relative;
}
section.cta .cta__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 39.318rem;
  background: url("../../img/lp/bg-noize.png") center center/cover no-repeat;
  z-index: -1;
}
@media screen and (max-width: 1194px) {
  section.cta .cta__bg {
    height: 100%;
  }
}
section.cta .cta__content {
  padding-top: 6.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2.4rem;
  margin-bottom: 3.6rem;
}
@media screen and (max-width: 1194px) {
  section.cta .cta__content {
    padding: 3.2rem 2rem;
  }
}
section.cta .cta__content .cta__text__block {
  min-width: 54.4rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4rem;
}
@media screen and (max-width: 1194px) {
  section.cta .cta__content .cta__text__block {
    min-width: 100%;
    align-items: center;
  }
}
section.cta .cta__content .cta__text__block h2 {
  font-size: 5.6rem;
  color: var(--color-white);
  letter-spacing: 0.08em;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  section.cta .cta__content .cta__text__block h2 {
    font-size: 3.6rem;
    letter-spacing: 0.02em;
    line-height: 1.5;
  }
}
section.cta .cta__content .cta__text__block .cta__text__item {
  font-size: 1.8rem;
  line-height: 2;
  margin-bottom: 4.2rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  section.cta .cta__content .cta__text__block .cta__text__item {
    font-size: 1.5rem;
    letter-spacing: 0.02em;
    line-height: 1.6;
    margin-bottom: 2.4rem;
  }
}
@media screen and (max-width: 1194px) {
  section.cta .cta__content .cta__text__block .cta__button {
    display: none;
  }
}
section.cta .cta__content .cta__img__block {
  margin-top: 5rem;
  width: 62.653rem;
}
@media screen and (max-width: 1194px) {
  section.cta .cta__content .cta__img__block {
    margin-top: 0;
  }
}
section.cta .cta__content .cta__img__block video {
  width: 100%;
  border: 1.6rem solid rgba(255, 255, 255, 0.4);
  border-radius: 0.8rem;
  box-shadow: 0 1.6rem 4rem rgba(77, 107, 138, 0.25);
}
@media screen and (max-width: 768px) {
  section.cta .cta__content .cta__img__block video {
    border: 0.8rem solid rgba(255, 255, 255, 0.4);
  }
}
section.cta .cta__button {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
section.cta .cta__button.sp {
  display: none;
}
@media screen and (max-width: 1194px) {
  section.cta .cta__button.sp {
    display: flex;
    width: 100%;
    justify-content: center;
    margin-top: 3.2rem;
  }
}
section.cta .cta__button .form-button {
  width: 32.7rem;
}
section.cta .cta__button .form-button button {
  box-shadow: 0 0.4rem 3.2rem rgba(20, 78, 93, 0.32);
}

.flow {
  background-color: #ebf4ff;
  border-radius: 4rem;
}
.flow .flow__container {
  max-width: 144rem;
  margin: 0 auto;
  padding: 8rem 5%;
}
.flow .flow__container .title-en {
  margin-bottom: 2.4rem;
}
.flow .flow__container h2 {
  margin-bottom: 4rem;
}
.flow .flow__container h2 strong {
  color: var(--color-primary);
}
.flow .flow__container .flow__contents__area .flow__contents__note {
  margin-bottom: 4rem;
}
.flow .flow__container .flow__contents__area .flow__contents__image {
  width: 100%;
  max-width: 118rem;
  margin: 0 auto 4.4rem;
}
.flow .flow__container .flow__contents__area .flow__list {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  gap: 4rem;
  width: 100%;
  max-width: 118rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .flow .flow__container .flow__contents__area .flow__list {
    width: 89.33%;
    gap: 2.4rem;
  }
}
.flow .flow__container .flow__contents__area .flow__list .flow__list__item {
  background-color: var(--color-white);
  padding: 2rem 3.5rem;
  border-radius: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.6rem 4.3rem;
}
@media screen and (max-width: 768px) {
  .flow .flow__container .flow__contents__area .flow__list .flow__list__item {
    padding: 1.6rem;
  }
}
.flow .flow__container .flow__contents__area .flow__list .flow__list__item .flow__list__item__caption {
  width: 20.7rem;
  display: flex;
  align-items: center;
  gap: 2.4rem;
}
.flow .flow__container .flow__contents__area .flow__list .flow__list__item .flow__list__item__caption .flow__list__item__num {
  font-family: "Roboto", sans-serif;
  font-size: 3.7rem;
  font-weight: bold;
  line-height: 1;
}
.flow .flow__container .flow__contents__area .flow__list .flow__list__item .flow__list__item__caption .flow__list__item__caption__text {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.5;
  color: var(--color-primary);
}
.flow .flow__container .flow__contents__area .flow__list .flow__list__item .flow__list__item__list {
  padding-left: 2em;
  max-width: 82.3rem;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  list-style: disc;
}
@media screen and (max-width: 768px) {
  .flow .flow__container .flow__contents__area .flow__list .flow__list__item .flow__list__item__list {
    padding-left: 1.2em;
  }
}
.flow .flow__container .flow__contents__area .flow__list .flow__list__item .flow__list__item__list .flow__list__item__text {
  line-height: 1.6;
  color: var(--color-text);
}
@media screen and (max-width: 768px) {
  .flow .flow__container .flow__contents__area .flow__list .flow__list__item .flow__list__item__list .flow__list__item__text {
    font-size: 1.5rem;
  }
}

.faq {
  padding: 8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .faq {
    padding: 4rem 2rem;
  }
}
.faq .title-en {
  margin-bottom: 2.4rem;
}
.faq h2 {
  margin-bottom: 4rem;
}
@media screen and (max-width: 768px) {
  .faq h2 {
    margin-bottom: 3rem;
  }
}
.faq .faq__list {
  display: flex;
  flex-direction: column;
  row-gap: 2.4rem;
  width: 90%;
  max-width: 95.9rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .faq .faq__list {
    width: 100%;
  }
}
.faq .faq__list .faq__list-item {
  display: flex;
  flex-direction: column;
  padding-bottom: 2.4rem;
  border-bottom: 1px solid #ddd;
}
.faq .faq__list .faq__list-item .faq__list-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 768px) {
  .faq .faq__list .faq__list-item .faq__list-item__question {
    align-items: flex-start;
    margin-bottom: 1.2rem;
  }
}
.faq .faq__list .faq__list-item .faq__list-item__question:hover {
  opacity: 0.8;
}
.faq .faq__list .faq__list-item .faq__list-item__question .faq__list-item__question__text {
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  gap: 1.75rem;
}
@media screen and (max-width: 768px) {
  .faq .faq__list .faq__list-item .faq__list-item__question .faq__list-item__question__text {
    align-items: flex-start;
  }
}
.faq .faq__list .faq__list-item .faq__list-item__question .faq__list-item__question__text .faq__list-item__q {
  flex-shrink: 0;
  width: 4rem;
  height: 4rem;
  background: var(--color-gradi);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--color-white);
  font-family: "Inter", sans-serif;
  font-size: 1.8rem;
  font-weight: bold;
}
.faq .faq__list .faq__list-item .faq__list-item__question .open-button {
  width: 2rem;
  height: 0.4rem;
  background: var(--color-gradi);
  border-radius: 0.2rem;
  cursor: pointer;
  position: relative;
}
@media screen and (max-width: 768px) {
  .faq .faq__list .faq__list-item .faq__list-item__question .open-button {
    flex-shrink: 0;
    margin-top: 1.8rem;
  }
}
.faq .faq__list .faq__list-item .faq__list-item__question .open-button::before {
  transition: all 0.3s ease;
  opacity: 1;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  width: 2rem;
  height: 0.4rem;
  transform: rotate(90deg);
  background: var(--color-gradi);
  border-radius: 0.2rem;
}
.faq .faq__list .faq__list-item .faq__list-item__question .open-button.active::before {
  opacity: 0;
  transform: rotate(0deg);
}
.faq .faq__list .faq__list-item .faq__list-item__question .open-button input {
  display: none;
}
.faq .faq__list .faq__list-item .faq__list-item__answer {
  height: 0;
  background-color: var(--color-primary-bg);
  border-radius: 1.2rem;
  transition: height 0.3s ease;
}
.faq .faq__list .faq__list-item .faq__list-item__answer .faq__list-item__answer__text {
  display: none;
  font-size: 1.6rem;
  line-height: 1.6;
}
.faq .faq__list .faq__list-item .faq__list-item__answer .faq__list-item__answer__text .faq__list-item__A {
  flex-shrink: 0;
  width: 4rem;
  height: 4rem;
  background: #ebf4ff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-family: "Inter", sans-serif;
  font-size: 1.8rem;
  font-weight: bold;
}
.faq .faq__list .faq__list-item .faq__list-item__answer.active {
  height: auto;
}
.faq .faq__list .faq__list-item .faq__list-item__answer.active .faq__list-item__answer__text {
  display: flex;
  gap: 1.2rem;
}

.form {
  border-radius: 8rem;
  background: var(--color-gradi);
  padding: 8rem 5%;
}
@media screen and (max-width: 768px) {
  .form {
    padding: 4rem 2rem;
    border-radius: 2.4rem;
  }
}
.form .form__content__wrapper {
  max-width: 80rem;
  margin: 0 auto;
}
.form .form__content {
  width: 100%;
  background-color: var(--color-white);
  border-radius: 2.4rem;
  padding: 8rem 10%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .form .form__content {
    padding: 4rem 2rem;
    border-radius: 2.4rem;
  }
}
.form .form__content .title-en {
  color: var(--color-primary);
  margin-bottom: 2.4rem;
}
.form .form__content h2 {
  margin-bottom: 6.4rem;
}
.form .form__content .form__container {
  width: 100%;
}
.form .form__content .form__container form {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .form .form__content .form__container form {
    gap: 2.4rem;
  }
}
@media screen and (max-width: 768px) {
  .form .form__content .form__container form .form__area {
    width: 100%;
  }
}
.form .form__content .form__container form .form__area label {
  display: inline-block;
  width: 16rem;
}
.form .form__content .form__container form .form__area input {
  width: calc(95% - 16rem);
  padding: 1.6rem;
  background-color: #ecf7ff;
}
@media screen and (max-width: 768px) {
  .form .form__content .form__container form .form__area input {
    width: 100%;
  }
}
.form .form__content .form__container form .error-msg {
  display: none;
  color: red;
  font-size: 1.2rem;
  text-align: right;
  width: 95%;
}
.form .form__content .form__container form .checkbox__area .checkbox__wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}
.form .form__content .form__container form .checkbox__area .checkbox__wrapper label input[type=checkbox] {
  cursor: pointer;
  width: 1.8rem;
  height: 1.8rem;
  border: 2px solid #222;
}
.form .form__content .form__container form .checkbox__area .checkbox__wrapper label span {
  display: none;
}
.form .form__content .form__container form .checkbox__area .checkbox__wrapper .checkbox__label a {
  text-decoration: underline;
}
.form .form__content .form__container form .submit-button {
  display: none;
  width: 22.5rem;
  margin: 2.4rem auto 0;
  transition: all 0.3s ease;
}
.form .form__content .form__container form .submit-button.active {
  display: block;
}
.form .form__content .form__container form .submit-button:hover {
  opacity: 0.8;
}
.form .form__content .form__container form .submit-button input[type=submit],
.form .form__content .form__container form .submit-button .validate-button {
  cursor: pointer;
  box-shadow: 0 0.4rem 3.2rem rgba(20, 78, 93, 0.32);
  width: 100%;
  height: 5.6rem;
  background: var(--color-gradi);
  color: var(--color-white);
  border: #f3daff 1px solid;
  border-radius: 4rem;
  padding: 1.6rem;
  text-align: center;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.02em;
}

.fixed__button__area {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  height: 8.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 10;
}
.fixed__button__area .form-button {
  width: 32.7rem;
}

footer {
  padding: 8rem 4.44%;
}
@media screen and (max-width: 768px) {
  footer {
    padding: 4rem 2rem 12rem 2rem;
  }
}
footer .borderline {
  width: 100%;
  height: 0.1rem;
  background: var(--color-gradi);
  margin-bottom: 3.2rem;
}
footer .footer-content__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
footer .footer-content__wrapper nav .footer__nav {
  font-family: Roboto, sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2.4rem;
}
footer .footer-content__wrapper nav .footer__nav .footer__nav-item a {
  text-decoration: underline;
}
footer .footer-content__wrapper nav .footer__nav .footer__nav-item small {
  font-size: 1.2rem;
}

/*-------------------------
  アニメーション
-------------------------*/
.fadeIn {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fadeIn.show {
  opacity: 1;
  transform: translateY(0);
}

/*-------------------------
  サンクスページ
-------------------------*/
section.thanks {
  height: calc(100vh - 9.2rem - 25.3rem);
  background: var(--color-gradi);
  color: var(--color-white);
  padding-top: 14rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 768px) {
  section.thanks {
    padding: 4rem 2rem;
  }
}
section.thanks h2 {
  color: var(--color-white);
}
section.thanks p {
  margin-top: 4rem;
}/*# sourceMappingURL=main.css.map */