@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  max-width: 1200px;
  overflow-x: hidden;
  width: 100%;
  margin: 0 auto;
  scroll-behavior: smooth;
  scroll-padding-top: 10rem;
  font-size: 0.8333vw;
  font-size: clamp(6px, 0.8333vw, 10px);
}
@media (max-width: 1280px) {
  html {
    font-size: 0.78125vw;
  }
}
@media (max-width: 1024px) {
  html {
    font-size: 0.9765vw;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 1.30208vw;
    scroll-padding-top: 8rem;
  }
}
@media (max-width: 576px) {
  html {
    font-size: 1.7361vw;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 10px;
    scroll-padding-top: 7rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: #2F3E5C;
  word-break: break-word;
}
@media (max-width: 576px) {
  body {
    font-size: 14px;
  }
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
figure {
  margin: 0;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
}

input,
textarea {
  font: inherit;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

address {
  font-style: normal;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  max-width: 1110px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .container {
    padding: 0 10px;
  }
}

.pc-only {
  display: block;
}
@media (max-width: 768px) {
  .pc-only {
    display: none;
  }
}

.sp-only {
  display: none;
}
@media (max-width: 768px) {
  .sp-only {
    display: block;
  }
}

.heading-line {
  display: block;
  height: auto;
  object-fit: contain;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left center;
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.heading-line.is-visible {
  opacity: 1;
  transform: scaleX(1);
}
@media (prefers-reduced-motion: reduce) {
  .heading-line {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.highlight-line {
  position: relative;
}
.highlight-line::after {
  content: "";
  position: absolute;
  bottom: var(--highlight-bottom, 0.3rem);
  left: var(--highlight-left, 50%);
  width: var(--highlight-width, 32.5rem);
  height: var(--highlight-height, 1.2rem);
  margin-left: var(--highlight-margin-left, calc(var(--highlight-width, 32.5rem) / -2));
  background-color: var(--highlight-color, #FFE084);
  z-index: -1;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left center;
  transition: opacity 1.2s ease, transform 1.2s ease;
}
.highlight-line.is-visible::after {
  opacity: 1;
  transform: scaleX(1);
}
@media (prefers-reduced-motion: reduce) {
  .highlight-line::after {
    opacity: 1;
    transform: scaleX(1);
    transition: none;
  }
}

.floating-cta {
  position: fixed;
  top: 50%;
  right: 0;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  width: 60px;
  height: 240px;
  padding: 2.4rem 1rem;
  background-color: #E07A8A;
  border-radius: 2.5rem 0 0 2.5rem;
  box-shadow: -2px 4px 12px rgba(47, 62, 92, 0.2);
  border: 2px solid #3A4A6B;
  color: #fff;
  text-decoration: none;
  opacity: 0;
  pointer-events: none;
  transform: translate(100%, -50%);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.floating-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate(0, -50%);
}
.floating-cta__main {
  writing-mode: vertical-rl;
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.floating-cta__sub {
  writing-mode: vertical-rl;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .floating-cta {
    display: none;
  }
}

@keyframes stagger-pop {
  0% {
    opacity: 0;
    transform: scale(0.75) translateY(1.2rem);
  }
  55% {
    opacity: 1;
    transform: scale(1.06) translateY(-0.2rem);
  }
  75% {
    transform: scale(0.98) translateY(0);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
.stagger-pop > .stagger-pop__item {
  opacity: 0;
}
.stagger-pop.is-visible > .stagger-pop__item {
  animation: stagger-pop 0.75s ease forwards;
}
.stagger-pop.is-visible > .stagger-pop__item:nth-child(1) {
  animation-delay: 0s;
}
.stagger-pop.is-visible > .stagger-pop__item:nth-child(2) {
  animation-delay: 0.2s;
}
.stagger-pop.is-visible > .stagger-pop__item:nth-child(3) {
  animation-delay: 0.4s;
}
.stagger-pop.is-visible > .stagger-pop__item:nth-child(4) {
  animation-delay: 0.6s;
}
.stagger-pop.is-visible > .stagger-pop__item:nth-child(5) {
  animation-delay: 0.8s;
}
.stagger-pop.is-visible > .stagger-pop__item:nth-child(6) {
  animation-delay: 1s;
}
.stagger-pop.is-visible > .stagger-pop__item:nth-child(7) {
  animation-delay: 1.2s;
}
.stagger-pop.is-visible > .stagger-pop__item:nth-child(8) {
  animation-delay: 1.4s;
}
.stagger-pop.is-visible > .stagger-pop__item:nth-child(9) {
  animation-delay: 1.6s;
}
.stagger-pop.is-visible > .stagger-pop__item:nth-child(10) {
  animation-delay: 1.8s;
}
.stagger-pop.is-visible > .stagger-pop__item:nth-child(11) {
  animation-delay: 2s;
}
.stagger-pop.is-visible > .stagger-pop__item:nth-child(12) {
  animation-delay: 2.2s;
}
@media (prefers-reduced-motion: reduce) {
  .stagger-pop > .stagger-pop__item {
    opacity: 1;
    animation: none;
  }
}

.fade-up > .fade-up__item {
  opacity: 0;
  transform: translateY(2.4rem);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.is-visible > .fade-up__item {
  opacity: 1;
  transform: translateY(0);
}
.fade-up.is-visible > .fade-up__item:nth-child(1) {
  transition-delay: 0s;
}
.fade-up.is-visible > .fade-up__item:nth-child(2) {
  transition-delay: 0.12s;
}
.fade-up.is-visible > .fade-up__item:nth-child(3) {
  transition-delay: 0.24s;
}
.fade-up.is-visible > .fade-up__item:nth-child(4) {
  transition-delay: 0.36s;
}
.fade-up.is-visible > .fade-up__item:nth-child(5) {
  transition-delay: 0.48s;
}
.fade-up.is-visible > .fade-up__item:nth-child(6) {
  transition-delay: 0.6s;
}
.fade-up.is-visible > .fade-up__item:nth-child(7) {
  transition-delay: 0.72s;
}
.fade-up.is-visible > .fade-up__item:nth-child(8) {
  transition-delay: 0.84s;
}
.fade-up.is-visible > .fade-up__item:nth-child(9) {
  transition-delay: 0.96s;
}
.fade-up.is-visible > .fade-up__item:nth-child(10) {
  transition-delay: 1.08s;
}
.fade-up.is-visible > .fade-up__item:nth-child(11) {
  transition-delay: 1.2s;
}
.fade-up.is-visible > .fade-up__item:nth-child(12) {
  transition-delay: 1.32s;
}

.fade-up--self {
  opacity: 0;
  transform: translateY(2.4rem);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up--self.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .fade-up > .fade-up__item,
  .fade-up--self {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: #fff;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.4rem;
  min-height: 70px;
  padding-top: 1.6rem;
  padding-bottom: 1.6rem;
}
@media (max-width: 768px) {
  .header__inner {
    padding-top: 1.2rem;
    padding-bottom: 1.2rem;
  }
}
@media (max-width: 375px) {
  .header__inner {
    gap: 1.2rem;
    min-height: 60px;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
  min-width: 0;
}
.header__logo img {
  width: 38px;
  height: 40px;
  flex-shrink: 0;
  object-fit: contain;
}
.header__logo-text {
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
  color: #2F3E5C;
  letter-spacing: 0;
  white-space: nowrap;
}
@media (max-width: 375px) {
  .header__logo-text {
    font-size: 10px;
    line-height: 1.35;
    max-width: 15rem;
  }
}
.header__nav {
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .header__nav {
    display: none;
  }
}
.header__nav-list {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.header__nav-item a {
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  color: #2F3E5C;
  white-space: nowrap;
  transition: color 0.2s ease, opacity 0.2s ease;
  letter-spacing: 0;
}
.header__nav-item a:hover {
  color: #2F3E5C;
}
.header__menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  width: 4rem;
  height: 4rem;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .header__menu-btn {
    display: flex;
  }
}
.header__menu-bar {
  display: block;
  width: 2.4rem;
  height: 0.2rem;
  background-color: #2F3E5C;
  border-radius: 0.1rem;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.header__menu-btn[aria-expanded=true] .header__menu-bar:nth-child(1) {
  transform: translateY(0.7rem) rotate(45deg);
}
.header__menu-btn[aria-expanded=true] .header__menu-bar:nth-child(2) {
  opacity: 0;
}
.header__menu-btn[aria-expanded=true] .header__menu-bar:nth-child(3) {
  transform: translateY(-0.7rem) rotate(-45deg);
}
.header__drawer {
  display: none;
  background-color: #fff;
  border-top: 1px solid #E0E0E0;
}
@media (max-width: 768px) {
  .header__drawer.is-open {
    display: block;
  }
}
.header__drawer-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 1.6rem 0 2.4rem;
}
.header__drawer-list a {
  display: block;
  padding: 1.4rem 2rem;
  font-size: 15px;
  font-weight: 500;
  color: #2F3E5C;
  border-bottom: 1px solid #E0E0E0;
  transition: color 0.2s ease, background-color 0.2s ease;
}
.header__drawer-list a:hover {
  color: #2F3E5C;
  background-color: #E0E0E0;
}
.header__drawer-list li:last-child a {
  border-bottom: none;
}

.hero {
  position: relative;
  width: 100%;
  margin-top: 85px;
  height: 580px;
  overflow: hidden;
  background-color: #E8C7CE;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  clip-path: ellipse(72% 100% at bottom);
}
@media (max-width: 768px) {
  .hero {
    margin-top: 7rem;
    height: auto;
    overflow: hidden;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 40px;
    clip-path: ellipse(96% 100% at bottom);
  }
}
@media (max-width: 375px) {
  .hero {
    margin-top: 6.4rem;
    overflow: hidden;
    align-items: center;
    clip-path: ellipse(96% 100% at bottom);
  }
}
.hero::before {
  content: "";
  position: absolute;
  top: 1.4rem;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/hero-bg.png);
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  clip-path: ellipse(75% 100% at bottom);
  z-index: 0;
}
@media (max-width: 768px) {
  .hero::before {
    top: 0;
    clip-path: ellipse(98% 100% at bottom);
    background-position: 75% center;
  }
}
@media (max-width: 375px) {
  .hero::before {
    top: 0;
    clip-path: ellipse(98% 100% at bottom);
    background-position: 75% center;
    background-size: cover;
  }
}
.hero__inner {
  position: relative;
  z-index: 1;
}
.hero__content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 65rem;
  width: 100%;
}
@media (max-width: 576px) {
  .hero__content {
    max-width: 100%;
    gap: 1.2rem;
  }
}
.hero__box--main {
  padding: 1rem 0;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 3rem;
}
@media (max-width: 768px) {
  .hero__box--main {
    padding-top: 3.6rem;
  }
}
@media (max-width: 576px) {
  .hero__box--main {
    padding: 2rem 2rem;
    border-radius: 2.4rem;
  }
}
@media (max-width: 375px) {
  .hero__box--main {
    padding: 3.2rem 1.2rem 1.6rem;
    border-radius: 2rem;
  }
}
.hero__box--sub {
  padding: 2.7rem 3.4rem;
  background-color: #fff;
  border: 2px solid #E07A8A;
  border-radius: 1.7rem;
}
@media (max-width: 576px) {
  .hero__box--sub {
    padding: 1.4rem 1.6rem;
    margin-top: 40px;
    background-color: rgba(255, 255, 255, 0.65);
  }
}
@media (max-width: 375px) {
  .hero__box--sub {
    padding: 1.2rem 1.4rem;
    border-radius: 1.4rem;
  }
}
.hero__heading {
  font-size: 5rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 3%;
  color: #2F3E5C;
}
@media (max-width: 768px) {
  .hero__heading {
    font-size: 3.4rem;
  }
}
@media (max-width: 576px) {
  .hero__heading {
    font-size: 3rem;
  }
}
@media (max-width: 375px) {
  .hero__heading {
    font-size: 2.4rem;
  }
}
.hero__heading span {
  position: relative;
  font-size: 60px;
  letter-spacing: 9%;
  color: #E07A8A;
}
@media (max-width: 768px) {
  .hero__heading span {
    font-size: 3.8rem;
  }
}
@media (max-width: 576px) {
  .hero__heading span {
    font-size: 3.4rem;
  }
}
@media (max-width: 375px) {
  .hero__heading span {
    font-size: 3rem;
  }
}
.hero__heading span::before {
  content: "";
  position: absolute;
  top: -3.4rem;
  left: 50%;
  transform: translateX(-50%);
  width: 7.2rem;
  height: 4.4rem;
  background-image: url(../images/hero_heading_mask.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}
@media (max-width: 576px) {
  .hero__heading span::before {
    top: -2.8rem;
    width: 6rem;
    height: 3.6rem;
  }
}
@media (max-width: 375px) {
  .hero__heading span::before {
    top: -2.2rem;
    width: 5.2rem;
    height: 3.2rem;
  }
}
.hero__lead {
  padding: 0 3rem;
  margin-top: 1.2rem;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
  color: #2F3E5C;
}
@media (max-width: 768px) {
  .hero__lead {
    padding: 0 1.6rem;
    font-size: 1.8rem;
  }
}
@media (max-width: 375px) {
  .hero__lead {
    padding: 0;
    font-size: 1.4rem;
  }
}
.hero__lead span {
  font-weight: 700;
}
.hero__sub {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
  color: #2F3E5C;
  letter-spacing: 0;
}
@media (max-width: 375px) {
  .hero__sub {
    font-size: 1.4rem;
  }
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2.2rem;
}
@media (max-width: 375px) {
  .hero__actions {
    gap: 1.2rem;
    padding-bottom: 0.4rem;
  }
}
.hero__btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 260px;
  height: 55px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0.3rem 0.2rem 0 #3A4A6B;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.hero__btn:hover {
  box-shadow: unset;
  transform: translateY(0.2rem);
}
.hero__btn span {
  font-size: 20px;
}
@media (max-width: 375px) {
  .hero__btn span {
    font-size: 1.8rem;
  }
}
@media (max-width: 576px) {
  .hero__btn {
    min-width: 0;
    flex: 1 1 100%;
  }
}
@media (max-width: 375px) {
  .hero__btn {
    width: 100%;
    height: 5rem;
    font-size: 1.4rem;
  }
}
.hero__btn--primary {
  color: #fff;
  background-color: #E07A8A;
  border: 1px solid #FFFFFF;
}
.hero__btn--secondary {
  color: #E07A8A;
  background-color: #fff;
  border: 1px solid #E07A8A;
}

.problem {
  position: relative;
  padding: 8rem 0;
}
@media (max-width: 768px) {
  .problem {
    padding: 6rem 0;
  }
}
@media (max-width: 375px) {
  .problem {
    padding: 4.8rem 0;
  }
}
.problem::before {
  content: "";
  width: 100%;
  height: 580px;
  position: absolute;
  top: -418px;
  left: 0;
  background-color: #E8C7CE;
  clip-path: ellipse(72% 100% at top);
  z-index: -1;
}
@media (max-width: 375px) {
  .problem::before {
    height: 42rem;
    top: -30rem;
  }
}
.problem__inner {
  position: relative;
  z-index: 1;
}
.problem__heading {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0;
  color: #2F3E5C;
  text-align: center;
  --highlight-width: 32.5rem;
}
@media (max-width: 768px) {
  .problem__heading {
    font-size: 2.8rem;
    --highlight-width: min(32.5rem, 100%);
  }
}
@media (max-width: 375px) {
  .problem__heading {
    font-size: 2.2rem;
  }
}
.problem__list {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 13.6rem;
  margin-bottom: 3.5rem;
}
@media (max-width: 768px) {
  .problem__list {
    justify-content: center;
    margin-top: 6rem;
  }
}
@media (max-width: 375px) {
  .problem__list {
    margin-top: 4rem;
    margin-bottom: 2.4rem;
    align-items: center;
  }
}
.problem__item:nth-child(1) {
  width: 26.8rem;
}
.problem__item:nth-child(2) {
  width: 24.6rem;
}
.problem__item:nth-child(3) {
  width: 25rem;
}
.problem__item:nth-child(4) {
  width: 23.9rem;
}
@media (max-width: 768px) {
  .problem__item:nth-child(n) {
    width: calc(50% - 1rem);
    max-width: 20rem;
  }
}
@media (max-width: 375px) {
  .problem__item:nth-child(n) {
    max-width: none;
    height: 200px;
    overflow: hidden;
  }
  .problem__item:nth-child(2) {
    height: 170px;
  }
}
.problem__item img {
  width: 100%;
  height: 100%;
}
.problem__cta {
  position: relative;
  margin: 0 auto;
  width: 346px;
  height: 57px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #E07A8A;
  border-radius: 999px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  letter-spacing: 2%;
  border: 1px solid #FFFFFF;
  text-decoration: none;
  box-shadow: 0.3rem 0.2rem 0 #3A4A6B;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
@media (max-width: 768px) {
  .problem__cta {
    width: min(100%, 34.6rem);
  }
}
@media (max-width: 375px) {
  .problem__cta {
    width: 100%;
    height: 5.2rem;
    font-size: 1.6rem;
  }
  .problem__cta span {
    font-size: 1.4rem;
  }
}
.problem__cta:hover {
  box-shadow: unset;
  transform: translateY(0.2rem);
}
.problem__cta span {
  font-size: 16px;
}

.concept {
  position: relative;
  padding: 8rem 0;
  overflow: hidden;
}
@media (max-width: 768px) {
  .concept {
    padding: 6rem 0;
  }
}
@media (max-width: 375px) {
  .concept {
    padding: 4.8rem 0;
  }
}
.concept::before {
  content: "";
  width: 54.5rem;
  height: 66.6rem;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(232, 199, 206, 0.2);
  clip-path: polygon(66% 0, 100% 25%, 75% 100%, 0 84%, 0 0);
  z-index: -1;
}
.concept::after {
  content: "";
  width: 41.7rem;
  height: 34.8rem;
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: rgba(232, 199, 206, 0.2);
  clip-path: polygon(46% 0, 100% 0, 100% 99%, 11% 100%, 0 29%);
  z-index: -1;
}
.concept__inner {
  position: relative;
  z-index: 1;
}
.concept__ribbon {
  position: relative;
  width: 264px;
  height: 60px;
  margin: 0 auto;
}
@media (max-width: 375px) {
  .concept__ribbon {
    width: min(100%, 26.4rem);
    height: auto;
  }
}
.concept__ribbon img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.concept__heading {
  max-width: 620px;
  width: 100%;
  font-size: 31px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0;
  color: #2F3E5C;
  text-align: center;
  margin-top: 43px;
  margin-bottom: 25px;
  margin-right: auto;
  margin-left: auto;
}
@media (max-width: 768px) {
  .concept__heading {
    font-size: 2.4rem;
    margin-top: 3rem;
  }
}
@media (max-width: 375px) {
  .concept__heading {
    font-size: 17px;
  }
}
.concept__body {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 4rem;
}
@media (max-width: 768px) {
  .concept__body {
    flex-direction: column;
    align-items: center;
  }
}
.concept__visual {
  max-width: 430px;
  width: 100%;
  height: 300px;
  box-shadow: 2px 3px 9.8px 0 rgba(47, 62, 92, 0.1490196078);
}
@media (max-width: 375px) {
  .concept__visual {
    height: auto;
    aspect-ratio: 43/30;
  }
}
.concept__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.concept__content {
  max-width: 480px;
  width: 100%;
  height: fit-content;
}
.concept__lead {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  color: #2F3E5C;
  letter-spacing: 0;
}
@media (max-width: 768px) {
  .concept__lead {
    font-size: 1.8rem;
  }
}
@media (max-width: 375px) {
  .concept__lead {
    font-size: 1.6rem;
  }
}
.concept__text {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: #2F3E5C;
  letter-spacing: 0;
  margin-top: 20px;
}
@media (max-width: 375px) {
  .concept__text {
    font-size: 1.4rem;
  }
}

.features {
  position: relative;
  padding: 8rem 0 0;
  overflow-x: hidden;
}
@media (max-width: 768px) {
  .features {
    padding-top: 6rem;
  }
}
@media (max-width: 375px) {
  .features {
    padding-top: 4.8rem;
  }
}
.features__watermark {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Poppins", sans-serif;
  font-size: 23rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 3%;
  color: rgba(232, 199, 206, 0.3);
  opacity: 0.3;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
@media (max-width: 768px) {
  .features__watermark {
    font-size: 14rem;
  }
}
@media (max-width: 375px) {
  .features__watermark {
    font-size: 9rem;
    top: 0;
  }
}
.features__inner {
  position: relative;
  z-index: 1;
}
.features__intro {
  position: relative;
  margin-bottom: 4.6rem;
}
.features__heading {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  color: #2F3E5C;
  text-align: center;
  letter-spacing: 0;
}
@media (max-width: 375px) {
  .features__heading {
    font-size: 1.6rem;
  }
}
.features__heading-line {
  width: 137px;
}
.features__grid {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.8rem;
  width: 100%;
  margin-top: 2.3rem;
  list-style: none;
  padding: 0;
}
@media (max-width: 1024px) {
  .features__grid {
    flex-wrap: wrap;
    justify-content: center;
    gap: 4rem 3.2rem;
  }
}
@media (max-width: 768px) {
  .features__grid {
    flex-direction: column;
    align-items: center;
    gap: 2.4rem;
    margin-top: 4rem;
  }
}
.features__card {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  max-width: none;
  padding: 2.7rem 4.6rem 2.7rem 0;
}
@media (max-width: 1024px) {
  .features__card {
    flex: 1 1 calc(50% - 3.2rem);
    max-width: 30rem;
  }
}
@media (max-width: 768px) {
  .features__card {
    flex: 1 1 100%;
    max-width: 36rem;
    width: 100%;
    padding: 2.7rem 0 4.5rem;
  }
}
.features__card::before, .features__card::after {
  content: "";
  width: 20px;
  height: 20px;
  border-right: 2px solid #E8C7CE;
  border-bottom: 2px solid #E8C7CE;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}
.features__card::before {
  right: 5px;
}
@media (max-width: 768px) {
  .features__card::before {
    top: auto;
    bottom: 1.2rem;
    left: 50%;
    right: auto;
    transform: translateX(-50%) rotate(45deg);
  }
}
.features__card::after {
  right: 13px;
}
@media (max-width: 768px) {
  .features__card::after {
    top: auto;
    bottom: 2.2rem;
    left: 50%;
    right: auto;
    transform: translateX(-50%) rotate(45deg);
  }
}
.features__card:nth-child(4)::before, .features__card:nth-child(4)::after {
  content: none;
}
.features__card-content {
  position: relative;
  padding-left: 2rem;
  padding-right: 0;
}
.features__label {
  position: absolute;
  top: 0;
  left: 0;
  writing-mode: vertical-rl;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
  color: #D9AEB7;
  letter-spacing: 0;
  transform: rotate(180deg);
}
.features__number {
  font-family: "Poppins", sans-serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 1;
  color: #D9AEB7;
  letter-spacing: 0;
}
.features__title {
  width: 100%;
  height: 70px;
  border-bottom: 1px solid #E8C7CE;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.45;
  color: #2F3E5C;
  letter-spacing: 0;
}
@media (max-width: 576px) {
  .features__title {
    height: auto;
    padding-bottom: 10px;
  }
}
.features__desc {
  margin-top: 1rem;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  color: #2F3E5C;
  letter-spacing: 0;
}
.features__course {
  padding-bottom: 2.5rem;
}
.features__course-ribbon {
  display: flex;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.features__course-ribbon img {
  width: min(28.9rem, 100%);
  height: auto;
}
.features__table-wrapper {
  overflow: hidden;
  border: 3px solid rgba(232, 199, 206, 0.8);
  border-radius: 2rem;
}
.features__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  color: #2F3E5C;
  letter-spacing: 0;
}
.features__table thead th {
  padding: 2.4rem 1.2rem;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  color: #2F3E5C;
  background-color: #E8C7CE;
}
.features__table thead th:nth-child(1) {
  width: 18%;
}
.features__table thead th:nth-child(2) {
  width: 40%;
  border-left: 2px solid #FAF7F8;
  border-right: 2px solid #FAF7F8;
}
.features__table tbody th,
.features__table tbody td {
  padding: 2rem 3rem;
  vertical-align: middle;
  border-bottom: 2px solid #E8C7CE;
}
.features__table tbody th:not(:last-child),
.features__table tbody td:not(:last-child) {
  border-right: 2px solid #E8C7CE;
}
@media (max-width: 768px) {
  .features__table tbody th:not(:last-child),
  .features__table tbody td:not(:last-child) {
    border-right: unset;
  }
}
.features__table tbody tr:last-child th,
.features__table tbody tr:last-child td {
  border-bottom: none;
}
.features__table tbody th {
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
}
.features__table tbody td {
  font-size: 16px;
  font-weight: 500;
  text-align: left;
}
@media (max-width: 768px) {
  .features__table {
    display: block;
  }
  .features__table thead {
    display: none;
  }
  .features__table tbody {
    display: block;
  }
  .features__table tbody tr {
    display: block;
    padding: 1.6rem 1rem;
    border-bottom: 2px solid #E8C7CE;
  }
  .features__table tbody tr:last-child {
    border-bottom: none;
  }
  .features__table tbody th,
  .features__table tbody td {
    display: block;
    width: 100%;
    padding: 0;
    border: none;
    background: transparent;
    text-align: left;
  }
  .features__table tbody th {
    margin-bottom: 0.8rem;
    font-size: 16px;
  }
  .features__table tbody td {
    font-size: 14px;
  }
  .features__table tbody td:not(:last-child) {
    margin-bottom: 0.8rem;
  }
  .features__table tbody td::before {
    display: block;
    margin-bottom: 0.2rem;
    font-size: 15px;
    font-weight: 700;
    color: #E07A8A;
  }
  .features__table tbody td:nth-child(2)::before {
    content: "テーマ";
  }
  .features__table tbody td:nth-child(3)::before {
    content: "期待できる変化";
  }
}
.features__recommend {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5.8rem 0 8rem;
}
@media (max-width: 375px) {
  .features__recommend {
    padding: 4rem 0 6rem;
  }
}
.features__recommend::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 140%;
  height: 100%;
  transform: translateX(-50%);
  background-color: rgba(58, 74, 107, 0.1);
  clip-path: ellipse(55% 100% at 50% 100%);
  z-index: -1;
}
@media (max-width: 768px) {
  .features__recommend::before {
    clip-path: ellipse(100% 100% at 50% 100%);
  }
}
.features__recommend-heading {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  color: #2F3E5C;
  letter-spacing: 0;
  text-align: center;
}
@media (max-width: 375px) {
  .features__recommend-heading {
    font-size: 1.6rem;
  }
}
.features__recommend-heading-line {
  width: 137px;
}
.features__recommend-icon {
  position: absolute;
  top: 0.2rem;
  right: -3.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .features__recommend-icon {
    right: -2.4rem;
  }
}
@media (max-width: 576px) {
  .features__recommend-icon {
    right: -2.8rem;
  }
}
@media (max-width: 375px) {
  .features__recommend-icon {
    display: none;
  }
}
.features__recommend-note {
  position: relative;
  max-width: 600px;
  width: 100%;
  margin: 3.2rem auto 2.6rem;
  padding: 2.4rem 2.4rem;
  background-color: #E8C7CE;
  border-bottom-right-radius: 30px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.7;
  color: #2F3E5C;
  letter-spacing: 0;
}
@media (max-width: 576px) {
  .features__recommend-note {
    font-size: 1.6rem;
    padding: 2rem 1rem;
  }
}
.features__recommend-note::before {
  content: "";
  position: absolute;
  top: -1.6rem;
  left: -1.6rem;
  width: 100%;
  height: 100%;
  border: 1px solid #E07A8A;
  border-top-left-radius: 30px;
  z-index: 1;
}
@media (max-width: 768px) {
  .features__recommend-note::before {
    top: -0.8rem;
    left: -0.8rem;
  }
}
@media (max-width: 375px) {
  .features__recommend-note::before {
    top: -0.6rem;
    left: -0.6rem;
  }
}
.features__audience {
  width: 100%;
  display: grid;
  grid-template-columns: auto auto;
  gap: 1rem;
  list-style: none;
  padding: 0;
  text-align: left;
}
@media (max-width: 768px) {
  .features__audience {
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 40rem;
    margin: 0 auto;
  }
}
.features__audience-card {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 340px;
  padding: 3rem 2.8rem;
  border-radius: 30px;
  background-size: cover;
  background-position: center;
}
@media (max-width: 768px) {
  .features__audience-card {
    min-height: auto;
    padding: 2.4rem 2rem;
  }
}
@media (max-width: 375px) {
  .features__audience-card {
    padding: 2rem 1.2rem;
  }
}
.features__audience-card--individual {
  outline: 2px dashed #E07A8A;
  outline-offset: -7px;
  background-image: linear-gradient(rgba(250, 247, 248, 0.8), rgba(250, 247, 248, 0.8)), url(../images/recommend1.jpg);
  color: #E07A8A;
}
.features__audience-card--corporate {
  outline: 2px solid #fff;
  outline-offset: -7px;
  background-image: linear-gradient(rgba(58, 74, 107, 0.74), rgba(58, 74, 107, 0.74)), url(../images/recommend2.jpg);
}
.features__audience-label {
  position: relative;
  padding: 5px 34px;
  font-size: 30px;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: 0;
  text-align: center;
  border-top-left-radius: 25px;
  border-bottom-right-radius: 25px;
  color: #fff;
  background-color: #E07A8A;
}
@media (max-width: 768px) {
  .features__audience-label {
    font-size: 2.4rem;
  }
}
@media (max-width: 375px) {
  .features__audience-label {
    font-size: 2rem;
    padding: 0.4rem 2rem;
  }
}
.features__audience-label::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: -3px;
  left: -4px;
  border-top-left-radius: 25px;
  border-bottom-right-radius: 25px;
  z-index: 1;
  border: 1px solid #E8C7CE;
}
.features__audience-card--corporate .features__audience-label {
  color: #3A4A6B;
  background-color: #fff;
}
.features__audience-card--corporate .features__audience-label::after {
  border: 1px solid #3A4A6B;
}
.features__audience-list {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  width: 100%;
  max-width: 40rem;
  margin-top: 1.6rem;
  list-style: none;
  padding: 0;
}
.features__audience-list li {
  position: relative;
  padding-left: 2.4rem;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0;
  color: #E07A8A;
}
@media (max-width: 375px) {
  .features__audience-list li {
    font-size: 1.4rem;
  }
}
.features__audience-list li::before {
  content: "";
  position: absolute;
  top: 0.45rem;
  left: 0;
  width: 1.4rem;
  height: 0.8rem;
  border-bottom: 2px solid currentColor;
  border-left: 2px solid currentColor;
  transform: rotate(-45deg);
}
.features__audience-card--corporate .features__audience-list li {
  color: #fff;
}
.features__audience-arrow {
  animation: arrow-bounce-down 1300ms ease infinite;
}
@media (prefers-reduced-motion: reduce) {
  .features__audience-arrow {
    animation: none;
  }
}
.features__audience-arrow > span {
  display: flex;
  width: 20px;
  height: 20px;
  border-right: 2px solid #E8C7CE;
  border-bottom: 2px solid #E8C7CE;
  transform: rotate(45deg);
}
.features__audience-arrow > span:nth-child(2) {
  margin-top: -10px;
}
.features__audience-card--corporate .features__audience-arrow span {
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
}
.features__audience-result {
  width: 100%;
  min-height: 60px;
  margin-top: 10px;
  border-radius: 999px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
  color: #2F3E5C;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  animation: dokundokun 1300ms ease infinite;
}
@media (prefers-reduced-motion: reduce) {
  .features__audience-result {
    animation: none;
  }
}
@media (max-width: 768px) {
  .features__audience-result {
    font-size: 1.6rem;
  }
}
@media (max-width: 375px) {
  .features__audience-result {
    font-size: 1.4rem;
    min-height: 5.2rem;
  }
}
.features__audience-card--corporate .features__audience-result {
  font-size: 18px;
}
@media (max-width: 768px) {
  .features__audience-card--corporate .features__audience-result {
    font-size: 1.6rem;
  }
}
@media (max-width: 375px) {
  .features__audience-card--corporate .features__audience-result {
    font-size: 1.4rem;
    min-height: 5.2rem;
  }
}

.cta-banner {
  position: relative;
  padding: 1rem 0;
  overflow: hidden;
  background-color: #E07A8A;
}
.cta-banner::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-image: url(../images/cta_mask.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.cta-banner__inner {
  position: relative;
  width: 100%;
  padding-top: 3rem;
  padding-bottom: 3rem;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  z-index: 2;
}
@media (max-width: 375px) {
  .cta-banner__inner {
    padding-top: 2.4rem;
    padding-bottom: 2.4rem;
  }
}
.cta-banner__inner .container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1.5rem;
}
.cta-banner--dual .cta-banner__inner .container {
  gap: 2.4rem;
}
.cta-banner__heading {
  font-size: 24px;
  line-height: 1.3;
  letter-spacing: 0;
  font-weight: 700;
  color: #fff;
  text-align: center;
}
@media (max-width: 768px) {
  .cta-banner__heading {
    font-size: 2rem;
  }
}
@media (max-width: 375px) {
  .cta-banner__heading {
    font-size: 1.6rem;
  }
}
.cta-banner--dual .cta-banner__heading {
  font-size: 24px;
  line-height: 1.4;
  letter-spacing: 0;
}
@media (max-width: 768px) {
  .cta-banner--dual .cta-banner__heading {
    font-size: 24px;
  }
}
@media (max-width: 375px) {
  .cta-banner--dual .cta-banner__heading {
    font-size: 1.6rem;
  }
}
.cta-banner__btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 40rem);
  height: 7rem;
  padding: 1.2rem;
  background-color: #fff;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0.3rem 0.2rem 0 #3A4A6B;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
@media (max-width: 768px) {
  .cta-banner__btn {
    height: 6.4rem;
    padding: 1rem 4.8rem 1rem 1.2rem;
  }
}
@media (max-width: 375px) {
  .cta-banner__btn {
    height: 5.8rem;
    padding-right: 4rem;
  }
}
.cta-banner__btn:hover {
  box-shadow: unset;
  transform: translateY(0.2rem);
}
.cta-banner--dual .cta-banner__btn {
  width: min(100%, 40rem);
  height: 7rem;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
@media (max-width: 768px) {
  .cta-banner--dual .cta-banner__btn {
    padding-right: 4.8rem;
  }
}
@media (max-width: 375px) {
  .cta-banner--dual .cta-banner__btn {
    height: 6.8rem;
  }
}
.cta-banner--dual .cta-banner__btn:hover {
  box-shadow: unset;
  transform: translateY(0.2rem);
}
.cta-banner__btn--individual {
  box-shadow: 0.3rem 0.2rem 0 #E07A8A;
}
.cta-banner__btn--individual:hover {
  box-shadow: unset;
  transform: translateY(0.2rem);
}
.cta-banner__btn--corporate {
  box-shadow: 0.3rem 0.2rem 0 #3A4A6B;
}
.cta-banner__btn--corporate:hover {
  box-shadow: unset;
  transform: translateY(0.2rem);
}
.cta-banner__btn-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 4px;
}
.cta-banner--dual .cta-banner__btn .cta-banner__btn-label {
  display: none;
}
.cta-banner__btn-sub {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  color: #D9AEB7;
  letter-spacing: 2%;
}
.cta-banner__btn-sub span {
  font-size: 24px;
  font-style: italic;
  letter-spacing: 0;
  line-height: 1;
}
.cta-banner__btn-text {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  color: #D9AEB7;
  letter-spacing: 0;
}
@media (max-width: 375px) {
  .cta-banner__btn-text {
    font-size: 1.6rem;
  }
}
.cta-banner--dual .cta-banner__btn .cta-banner__btn-text {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
  color: #2F3E5C;
  letter-spacing: 0;
}
.cta-banner--dual .cta-banner__btn .cta-banner__btn-text span {
  font-size: 20px;
}
@media (max-width: 375px) {
  .cta-banner--dual .cta-banner__btn .cta-banner__btn-text span {
    font-size: 1.6rem;
  }
}
@media (max-width: 375px) {
  .cta-banner--dual .cta-banner__btn .cta-banner__btn-text {
    font-size: 1.4rem;
  }
}
.cta-banner--dual .cta-banner__btn--individual .cta-banner__btn-text {
  color: #D9AEB7;
}
.cta-banner--dual .cta-banner__btn--individual .cta-banner__btn-text span {
  color: #D9AEB7;
}
.cta-banner__btn--corporate .cta-banner__btn-text {
  color: #2F3E5C;
}
.cta-banner__btn-icon {
  position: absolute;
  top: 50%;
  right: 4rem;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 1.5rem solid transparent;
  border-bottom: 1.5rem solid transparent;
  border-left: 1.2rem solid #3A4A6B;
}
@media (max-width: 768px) {
  .cta-banner__btn-icon {
    right: 2.4rem;
  }
}
@media (max-width: 375px) {
  .cta-banner__btn-icon {
    right: 1.6rem;
    border-top-width: 1.2rem;
    border-bottom-width: 1.2rem;
    border-left-width: 1rem;
  }
}
.cta-banner--dual .cta-banner__btn .cta-banner__btn-icon {
  right: 3.5rem;
  border-top-width: 1.5rem;
  border-bottom-width: 1.5rem;
  border-left-width: 1.2rem;
}
@media (max-width: 768px) {
  .cta-banner--dual .cta-banner__btn .cta-banner__btn-icon {
    right: 2rem;
  }
}
.cta-banner__btn--individual .cta-banner__btn-icon {
  border-left-color: #E07A8A;
}
.cta-banner__btn--corporate .cta-banner__btn-icon {
  border-left-color: #3A4A6B;
}
.cta-banner--dual {
  background: linear-gradient(to right, #D9AEB7 0%, rgba(0, 78, 143, 0.4) 100%);
}
.cta-banner--dual::after {
  content: none;
}
.cta-banner__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  text-align: center;
}
.cta-banner__lead {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
}
.cta-banner__lead-text {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  color: #fff;
  letter-spacing: 0;
}
@media (max-width: 768px) {
  .cta-banner__lead-text {
    font-size: 16px;
  }
}
@media (max-width: 375px) {
  .cta-banner__lead-text {
    font-size: 1.6rem;
  }
}
.cta-banner__spark {
  position: relative;
  flex-shrink: 0;
  width: 36px;
  height: 40px;
}
.cta-banner__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.6rem;
  width: 100%;
}

#bg-triangle {
  position: relative;
  overflow: hidden;
}
#bg-triangle::before {
  content: "";
  width: 51rem;
  height: 150rem;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: rgba(58, 74, 107, 0.1);
  clip-path: polygon(0 0, 0% 100%, 100% 100%);
}
#bg-triangle::after {
  content: "";
  width: 51rem;
  height: 150rem;
  position: absolute;
  top: 0;
  right: 0;
  transform: translateX(50%);
  background-color: rgba(58, 74, 107, 0.1);
  clip-path: polygon(0 0, 100% 100%, 100% 0);
}

.management {
  position: relative;
  padding: 8rem 0;
}
@media (max-width: 768px) {
  .management {
    padding: 6rem 0;
  }
}
.management__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.management__badge {
  position: relative;
  width: 264px;
  height: 60px;
}
.management__badge img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.management__heading {
  font-size: 31px;
  color: #2F3E5C;
  line-height: 1.3;
  letter-spacing: 0;
  font-weight: 700;
  text-align: center;
  margin-top: 4.3rem;
  margin-bottom: 2.1rem;
}
@media (max-width: 768px) {
  .management__heading {
    font-size: 2.4rem;
    margin-top: 3rem;
  }
}
@media (max-width: 375px) {
  .management__heading {
    font-size: 20px;
    line-height: 1.6;
  }
}
.management__heading .number {
  font-size: 40px;
  line-height: 1;
}
@media (max-width: 768px) {
  .management__heading .number {
    font-size: 3.2rem;
  }
}
@media (max-width: 375px) {
  .management__heading .number {
    font-size: 3rem;
  }
}
.management__char {
  position: relative;
}
.management__char::after {
  content: "";
  position: absolute;
  top: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 1rem;
  height: 1rem;
  background-color: #E07A8A;
  border-radius: 50%;
}
@media (max-width: 768px) {
  .management__char::after {
    width: 0.6rem;
    height: 0.6rem;
    top: -0.3rem;
  }
}
.management__desc {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  color: #2F3E5C;
  letter-spacing: 0;
  text-align: center;
}
@media (max-width: 768px) {
  .management__desc {
    font-size: 16px;
  }
}
.management__circles {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 5rem;
  margin-top: 6.75rem;
  list-style: none;
  padding: 0;
}
@media (max-width: 768px) {
  .management__circles {
    flex-direction: column;
    gap: 2.2rem;
    margin-top: 3rem;
  }
}
.management__circle {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  color: #fff;
  text-align: center;
}
@media (max-width: 375px) {
  .management__circle {
    width: 22rem;
    height: 22rem;
  }
}
.management__circle--practice {
  background: linear-gradient(to right, #085078 0%, #85D8CE 100%);
}
.management__circle--order {
  background: linear-gradient(to right, #004E8F 0%, #72C6EF 100%);
}
.management__circle-sub {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0;
}
.management__circle-line {
  display: block;
  width: 90px;
  height: 1px;
  background-color: #fff;
}
.management__circle-main {
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  margin-bottom: 24px;
}
@media (max-width: 375px) {
  .management__circle-main {
    font-size: 2rem;
  }
}

.method {
  position: relative;
  padding: 8rem 0;
  min-height: 1000px;
}
@media (max-width: 768px) {
  .method {
    min-height: unset;
  }
}
.method__label {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 0 45px;
  margin: 0 auto;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  color: #2F3E5C;
  letter-spacing: 0;
  white-space: nowrap;
}
@media (max-width: 375px) {
  .method__label {
    font-size: 1.5rem;
    padding: 0 3rem;
  }
}
.method__label::before {
  left: 0;
}
.method__label::after {
  right: 0;
}
.method__label::before, .method__label::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-image: url(../images/method_label_arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 30px;
  height: 20px;
}
.method__heading {
  margin-top: 4rem;
  font-size: 31px;
  font-weight: 700;
  line-height: 1.3;
  color: #2F3E5C;
  text-align: center;
  letter-spacing: 0;
}
@media (max-width: 768px) {
  .method__heading {
    font-size: 2.4rem;
    margin-bottom: 4rem;
  }
}
.method__item {
  position: relative;
  width: fit-content;
  z-index: 1;
}
@media (max-width: 768px) {
  .method__item {
    position: static;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 48rem;
    margin: 0 auto;
    width: 100%;
    margin-bottom: 4rem;
  }
}
.method__item--1 {
  position: absolute;
  top: 144px;
  left: 0;
}
@media (max-width: 768px) {
  .method__item--1 {
    position: unset;
    top: unset;
    left: unset;
  }
}
.method__item--2 {
  position: absolute;
  top: 218px;
  right: 65px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  flex-direction: column;
}
@media (max-width: 768px) {
  .method__item--2 {
    position: unset;
    top: unset;
    right: unset;
  }
}
.method__item--3 {
  position: absolute;
  bottom: 58px;
  left: 100px;
}
@media (max-width: 768px) {
  .method__item--3 {
    position: unset;
    top: unset;
    left: unset;
  }
}
.method__item--4 {
  position: absolute;
  bottom: 71px;
  right: 0;
}
@media (max-width: 768px) {
  .method__item--4 {
    position: unset;
    top: unset;
    right: unset;
  }
}
.method__photo {
  position: relative;
  width: 375px;
  height: 270px;
  z-index: 1;
}
@media (max-width: 768px) {
  .method__photo {
    width: 100%;
    max-height: 24rem;
    overflow: hidden;
    height: auto;
  }
}
.method__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.method__item--2 .method__photo {
  width: 281px;
  height: 311px;
}
@media (max-width: 768px) {
  .method__item--2 .method__photo {
    width: 100%;
    max-height: 24rem;
    overflow: hidden;
    height: auto;
  }
}
.method__item--3 .method__photo {
  width: 341px;
  height: 193px;
}
@media (max-width: 768px) {
  .method__item--3 .method__photo {
    width: 100%;
    max-height: 24rem;
    overflow: hidden;
    height: auto;
  }
}
.method__item--4 .method__photo {
  width: 389px;
  height: 257px;
}
@media (max-width: 768px) {
  .method__item--4 .method__photo {
    width: 100%;
    max-height: 24rem;
    overflow: hidden;
    height: auto;
  }
}
.method__card {
  position: relative;
  width: 400px;
  z-index: 3;
  padding: 2.5rem 3.5rem;
  border: 3px solid transparent;
  border-radius: 42px;
  background-color: #fff;
  background-image: linear-gradient(#fff, #fff), linear-gradient(90deg, #085078 0%, #85D8CE 100%);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  margin-top: -92px;
  margin-left: 65px;
}
@media (max-width: 768px) {
  .method__card {
    width: 100%;
    margin-top: -4rem;
    margin-left: 0;
    margin-right: 0;
    padding: 2rem;
  }
}
@media (max-width: 375px) {
  .method__card {
    margin-top: 1rem;
    border-radius: 2.4rem;
    padding: 1.6rem;
  }
}
.method__item--2 .method__card {
  margin-top: -92px;
  margin-right: 148px;
  margin-left: unset;
}
@media (max-width: 768px) {
  .method__item--2 .method__card {
    width: 100%;
    margin-top: -4rem;
    margin-left: 0;
    margin-right: 0;
    padding: 2rem;
  }
}
.method__item--3 .method__card {
  margin-top: -92px;
  margin-left: 247px;
}
@media (max-width: 768px) {
  .method__item--3 .method__card {
    width: 100%;
    margin-top: -4rem;
    margin-left: 0;
    margin-right: 0;
    padding: 2rem;
  }
}
.method__card-head {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}
@media (max-width: 375px) {
  .method__card-head {
    gap: 1.2rem;
  }
}
.method__card-icon {
  flex-shrink: 0;
  width: 5rem;
  height: 5rem;
}
.method__card-title {
  flex: 1;
  min-width: 0;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
  color: #2F3E5C;
  letter-spacing: 0;
}
@media (max-width: 375px) {
  .method__card-title {
    font-size: 1.7rem;
  }
}
.method__card-line {
  display: block;
  width: 100%;
  height: 2px;
  margin: 1.5rem 0;
  background: linear-gradient(90deg, rgba(8, 80, 120, 0.3) 0%, rgba(133, 216, 206, 0.5) 100%);
}
.method__card-text {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  color: #2F3E5C;
  letter-spacing: 0;
}
@media (max-width: 375px) {
  .method__card-text {
    font-size: 1.4rem;
  }
}

.stage {
  position: relative;
  padding: 5rem 0 4rem;
  background-color: #3A4A6B;
  overflow: hidden;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
}
@media (max-width: 768px) {
  .stage {
    padding: 4rem 0 3rem;
  }
}
@media (max-width: 375px) {
  .stage {
    border-top-left-radius: 2rem;
    border-top-right-radius: 2rem;
  }
}
.stage::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-image: url(../images/cta_mask.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.stage__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.stage__header {
  text-align: center;
  color: #fff;
}
.stage__lead {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
}
.stage__heading {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0;
}
@media (max-width: 375px) {
  .stage__heading {
    font-size: 2rem;
  }
}
.stage__flow {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 1.5rem;
  width: 100%;
  margin-top: 2.8rem;
}
@media (max-width: 768px) {
  .stage__flow {
    flex-direction: column;
    align-items: center;
    gap: 1.6rem;
  }
}
.stage__card {
  flex: 1 1 0;
  min-width: 0;
  max-width: 240px;
  height: 150px;
  padding: 2.4rem 2rem;
  background-color: #fff;
  border-radius: 25px;
  border: 2px solid #B0A8A8;
}
@media (max-width: 1024px) {
  .stage__card {
    flex: 1 1 calc(50% - 3rem);
  }
}
@media (max-width: 768px) {
  .stage__card {
    flex: none;
    width: 100%;
    max-width: 32rem;
    height: auto;
    min-height: 15rem;
  }
}
.stage__card-head {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  min-height: 40px;
  padding-left: 1.8rem;
  padding-top: 2px;
}
.stage__label {
  position: absolute;
  top: 0;
  left: 0;
  writing-mode: vertical-rl;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  background: linear-gradient(to right, #004E8F 0%, #72C6EF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  letter-spacing: 0;
  transform: rotate(180deg);
}
.stage__number {
  flex-shrink: 0;
  font-family: "Poppins", sans-serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 1;
  background: linear-gradient(to right, #004E8F 0%, #72C6EF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  letter-spacing: 0;
}
.stage__title {
  flex: 1;
  min-width: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  color: #2F3E5C;
  letter-spacing: 0;
}
.stage__line {
  display: block;
  width: 100%;
  height: 2px;
  margin: 1.1rem 0;
  background: linear-gradient(to right, rgba(0, 78, 143, 0.25) 0%, rgba(114, 198, 239, 0.55) 100%);
}
.stage__desc {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
  color: #2F3E5C;
  letter-spacing: 0;
  padding-left: 1rem;
}
.stage__arrow {
  flex-shrink: 0;
  align-self: center;
  width: 0;
  height: 0;
  border-top: 1.5rem solid transparent;
  border-bottom: 1.5rem solid transparent;
  border-left: 1.2rem solid #fff;
}
@media (max-width: 1024px) {
  .stage__arrow {
    display: none;
  }
}
.stage__cta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 390px);
  min-height: 70px;
  margin-top: 4.8rem;
  background-color: #fff;
  border-radius: 999px;
  text-decoration: none;
  transition: opacity 0.2s ease;
  animation: dokundokun 1300ms ease infinite;
  box-shadow: 0.35rem 0.25rem 0 0 #2F3E5C;
}
@media (prefers-reduced-motion: reduce) {
  .stage__cta {
    animation: none;
  }
}
@media (max-width: 768px) {
  .stage__cta {
    width: min(100%, 39rem);
    margin-top: 3.2rem;
  }
}
@media (max-width: 375px) {
  .stage__cta {
    min-height: 6.4rem;
  }
}
.stage__cta-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.stage__cta-sub {
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  color: #2F3E5C;
  letter-spacing: 2%;
}
.stage__cta-sub span {
  font-size: 24px;
  font-style: italic;
  letter-spacing: 0;
}
.stage__cta-text {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  color: #2F3E5C;
  letter-spacing: 2%;
}
.stage__cta-text span {
  font-size: 20px;
}
@media (max-width: 375px) {
  .stage__cta-text span {
    font-size: 1.6rem;
  }
}
@media (max-width: 375px) {
  .stage__cta-text {
    font-size: 1.2rem;
  }
}
.stage__cta-icon {
  position: absolute;
  top: 50%;
  right: 3.5rem;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 1.5rem solid transparent;
  border-bottom: 1.5rem solid transparent;
  border-left: 1.2rem solid #E8C7CE;
}
@media (max-width: 375px) {
  .stage__cta-icon {
    right: 2rem;
  }
}

@keyframes dokundokun {
  0% {
    transform: scale(1);
  }
  15% {
    transform: scale(1.08);
  }
  30% {
    transform: scale(1);
  }
  45% {
    transform: scale(1.08);
  }
  70% {
    transform: scale(1);
  }
}
@keyframes arrow-bounce-down {
  0% {
    transform: translateY(0);
  }
  15% {
    transform: translateY(6px);
  }
  30% {
    transform: translateY(0);
  }
  45% {
    transform: translateY(6px);
  }
  70% {
    transform: translateY(0);
  }
}
.reason {
  position: relative;
  padding: 8rem 0;
  overflow-x: hidden;
}
@media (max-width: 768px) {
  .reason {
    padding: 6rem 0;
  }
}
.reason__watermark {
  position: absolute;
  top: 6rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Poppins", sans-serif;
  font-size: 23rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 3%;
  color: rgba(232, 199, 206, 0.35);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  opacity: 0.3;
}
@media (max-width: 768px) {
  .reason__watermark {
    font-size: 14rem;
  }
}
@media (max-width: 375px) {
  .reason__watermark {
    font-size: 10rem;
  }
}
.reason__inner {
  position: relative;
  z-index: 1;
}
.reason__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.reason__heading {
  display: flex;
  gap: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  color: #2F3E5C;
  letter-spacing: 0;
}
@media (max-width: 1024px) {
  .reason__heading {
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 0.4rem;
  }
}
@media (max-width: 375px) {
  .reason__heading {
    font-size: 1.6rem;
  }
  .reason__heading span {
    font-size: 1.8rem;
  }
}
.reason__heading span {
  position: relative;
  font-size: 20px;
  letter-spacing: 0;
}
.reason__heading span::before {
  content: "";
  position: absolute;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #E07A8A;
}
.reason__heading-line {
  width: 13.7rem;
  margin-top: 0.4rem;
}
@media (max-width: 576px) {
  .reason__heading-line {
    width: 11rem;
  }
}
.reason__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.reason__item {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 9rem;
  margin-top: 6.4rem;
}
@media (max-width: 375px) {
  .reason__item {
    margin-top: 4rem;
  }
}
@media (max-width: 1024px) {
  .reason__item {
    gap: 3rem;
  }
}
@media (max-width: 768px) {
  .reason__item {
    flex-direction: column;
    margin-top: 5rem;
    gap: 2.4rem;
  }
}
.reason__item--reverse {
  flex-direction: row-reverse;
}
@media (max-width: 768px) {
  .reason__item--reverse {
    flex-direction: column;
  }
}
.reason__content {
  flex: 1;
  min-width: 0;
  max-width: 45rem;
  width: 100%;
}
.reason__head {
  display: flex;
  align-items: flex-start;
  gap: 1.4rem;
}
@media (max-width: 768px) {
  .reason__head {
    align-items: center;
  }
}
.reason__meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  gap: 0.2rem;
}
.reason__label {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.2;
  color: #D9AEB7;
  letter-spacing: 0;
}
.reason__number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: #E8C7CE;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  letter-spacing: 0;
}
.reason__title {
  flex: 1;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  color: #2F3E5C;
  letter-spacing: 0;
  max-width: 384px;
  width: 100%;
}
@media (max-width: 768px) {
  .reason__title {
    font-size: 2rem;
  }
}
.reason__text {
  max-width: 384px;
  width: 100%;
  margin-top: 1.6rem;
  padding-left: 6.2rem;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  color: #2F3E5C;
  letter-spacing: 0;
}
@media (max-width: 768px) {
  .reason__text {
    padding-left: 0;
  }
}
.reason__visual {
  position: relative;
  flex-shrink: 0;
  width: min(100%, 350px);
  max-width: 50%;
}
@media (max-width: 768px) {
  .reason__visual {
    max-width: 100%;
    width: 100%;
  }
}
.reason__visual::before {
  content: "";
  position: absolute;
  top: -0.5rem;
  left: -0.5rem;
  z-index: 2;
  width: 100%;
  height: 100%;
  border: 1px solid #E8C7CE;
  border-radius: 30px 0 0 0;
  pointer-events: none;
}
.reason__visual::after {
  content: "";
  position: absolute;
  right: -1.5rem;
  bottom: -1.5rem;
  z-index: 0;
  width: 100%;
  height: 100%;
  background-color: #E8C7CE;
  border-radius: 0 0 30px 0;
  pointer-events: none;
}
.reason__visual img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile {
  position: relative;
  padding: 8rem 0;
}
@media (max-width: 768px) {
  .profile {
    padding: 6rem 0;
  }
}
.profile__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.profile__badge {
  position: relative;
  width: 266px;
  height: 62px;
}
@media (max-width: 375px) {
  .profile__badge {
    width: min(100%, 26.6rem);
    height: auto;
  }
}
.profile__badge img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.profile__heading {
  margin-top: 4rem;
  font-size: 31px;
  font-weight: 700;
  line-height: 1.4;
  color: #2F3E5C;
  text-align: center;
  letter-spacing: 0;
}
@media (max-width: 768px) {
  .profile__heading {
    font-size: 2.4rem;
    margin-top: 3rem;
  }
}
@media (max-width: 375px) {
  .profile__heading {
    font-size: 2rem;
  }
}
.profile__heading span {
  font-size: 34px;
  font-weight: 900;
  font-style: italic;
}
@media (max-width: 768px) {
  .profile__heading span {
    font-size: 2.8rem;
  }
}
@media (max-width: 375px) {
  .profile__heading span {
    font-size: 2.4rem;
  }
}
.profile__main {
  display: flex;
  align-items: flex-start;
  gap: 4rem;
  width: 100%;
  margin-top: 4rem;
}
@media (max-width: 1024px) {
  .profile__main {
    gap: 3rem;
  }
}
@media (max-width: 768px) {
  .profile__main {
    flex-direction: column;
    align-items: center;
    margin-top: 3.2rem;
  }
}
.profile__photo {
  width: 35rem;
  height: auto;
}
@media (max-width: 768px) {
  .profile__photo {
    width: min(100%, 35rem);
  }
}
.profile__photo img {
  width: 100%;
  height: auto;
}
.profile__content {
  flex: 1;
  min-width: 0;
  width: fit-content;
}
.profile__lead {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  color: #2F3E5C;
  letter-spacing: 0;
  width: fit-content;
}
@media (max-width: 768px) {
  .profile__lead {
    font-size: 20px;
  }
}
@media (max-width: 375px) {
  .profile__lead {
    font-size: 2rem;
  }
}
.profile__message {
  max-width: 616px;
  width: 100%;
  margin-top: 2rem;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  color: #2F3E5C;
  letter-spacing: 0;
}
.profile__bio {
  max-width: 600px;
  width: 100%;
  margin-top: 3rem;
  padding: 3rem 2.4rem;
  background-color: #FAF7F8;
  border-radius: 3rem;
}
@media (max-width: 768px) {
  .profile__bio {
    padding: 2rem;
  }
}
.profile__name {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  color: #2F3E5C;
  letter-spacing: 0;
}
.profile__name span {
  font-size: 18px;
  font-weight: 400;
}
.profile__name-en {
  margin-top: 0.4rem;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0;
}
.profile__career {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2.4rem;
  margin-top: 1.6rem;
}
@media (max-width: 768px) {
  .profile__career {
    flex-direction: column;
    gap: 2rem;
  }
}
.profile__career-main {
  flex: 1;
  max-width: 220px;
  width: 100%;
}
@media (max-width: 768px) {
  .profile__career-main {
    max-width: 100%;
  }
}
.profile__career-text {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.4;
  color: #2F3E5C;
  letter-spacing: 0;
}
.profile__milestones {
  flex-shrink: 0;
  width: min(100%, 30rem);
  display: flex;
  flex-direction: column;
  gap: 0;
  list-style: none;
  padding: 0;
  margin: 0;
}
.profile__milestone {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  color: #2F3E5C;
  letter-spacing: 0;
}
.profile__milestone::before {
  content: "";
  flex-shrink: 0;
  width: 0.8rem;
  height: 0.8rem;
  margin-top: 1rem;
  background-color: #2F3E5C;
}
.profile__milestone-year {
  flex-shrink: 0;
  min-width: 4.8rem;
  font-weight: 400;
}
.profile__milestone-text {
  flex: 1;
  min-width: 0;
}
.profile__reasons {
  display: grid;
  align-items: center;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3.2rem;
  width: 100%;
  margin-top: 2.6rem;
}
@media (max-width: 768px) {
  .profile__reasons {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 4rem;
  }
}
.profile__reason--boxed {
  padding: 3.4rem 2.4rem;
  background-color: #FAF7F8;
  border: 3px solid #E8C7CE;
  outline: 3px dashed #E8C7CE;
  outline-offset: -7px;
  border-radius: 30px;
}
@media (max-width: 375px) {
  .profile__reason--boxed {
    padding: 2.4rem 1.6rem;
  }
}
@media (max-width: 375px) {
  .profile__reason--highlight {
    padding: 2.4rem 1.6rem;
  }
}
.profile__reason-title {
  width: fit-content;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  color: #2F3E5C;
  letter-spacing: 0;
  --highlight-left: 0;
  --highlight-margin-left: 0;
  --highlight-width: 100%;
  --highlight-height: 0.9rem;
  --highlight-bottom: 0.2rem;
}
@media (max-width: 768px) {
  .profile__reason-title {
    font-size: 18px;
  }
}
@media (max-width: 375px) {
  .profile__reason-title {
    font-size: 16px;
  }
}
.profile__reason--boxed .profile__reason-title {
  font-size: 18px;
}
.profile__reason--highlight .profile__reason-title {
  --highlight-color: #E07A8A;
}
.profile__reason-text {
  margin-top: 1.6rem;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  color: #2F3E5C;
  letter-spacing: 0;
}

.mid-banner {
  position: relative;
  padding: 4rem 0 5rem;
  background-image: url(../images/mid_banner.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  .mid-banner {
    padding: 3.2rem 0 4rem;
  }
}
.mid-banner .container {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 2rem;
}
@media (max-width: 375px) {
  .mid-banner .container {
    gap: 1.2rem;
  }
}
.mid-banner__heading {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  color: #fff;
  letter-spacing: 0;
}
@media (max-width: 768px) {
  .mid-banner__heading {
    font-size: 2rem;
  }
}
@media (max-width: 375px) {
  .mid-banner__heading {
    font-size: 1.7rem;
  }
}
.mid-banner__text {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  color: #fff;
  letter-spacing: 0;
}
@media (max-width: 375px) {
  .mid-banner__text {
    font-size: 1.4rem;
  }
}

.voice {
  position: relative;
  padding: 8rem 0;
  overflow: hidden;
}
@media (max-width: 375px) {
  .voice {
    padding: 4.8rem 0;
  }
}
.voice::before {
  content: "";
  position: absolute;
  bottom: 4.7rem;
  right: 0;
  width: 41.7rem;
  height: 34.8rem;
  background-color: rgba(232, 199, 206, 0.2);
  clip-path: polygon(49% 0, 100% 0, 100% 100%, 16% 100%, 0 30%);
  z-index: -1;
}
.voice::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 54.5rem;
  height: 66.6rem;
  background-color: rgba(232, 199, 206, 0.2);
  clip-path: polygon(54% 0, 100% 38%, 63% 100%, 0 84%, 0 0);
  z-index: -1;
}
.voice .container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.voice__heading {
  width: fit-content;
  margin-bottom: 4rem;
}
.voice__heading img {
  width: 288px;
  height: 82px;
  object-fit: contain;
}
@media (max-width: 375px) {
  .voice__heading img {
    width: min(100%, 28.8rem);
    height: auto;
  }
}
.voice__sub {
  font-size: 31px;
  font-weight: 700;
  line-height: 1.3;
  color: #2F3E5C;
  letter-spacing: 0;
  text-align: center;
  margin-bottom: 3.5rem;
}
@media (max-width: 768px) {
  .voice__sub {
    font-size: 2.2rem;
    margin-bottom: 2.8rem;
  }
}
@media (max-width: 375px) {
  .voice__sub {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
}
.voice__slider {
  width: 100%;
  overflow: hidden;
  padding-bottom: 0.4rem;
}
.voice__slider .swiper-wrapper {
  transition-timing-function: linear !important;
}
.voice__slider .swiper-slide {
  width: 28rem;
  height: auto;
}
@media (max-width: 768px) {
  .voice__slider .swiper-slide {
    width: 24rem;
  }
}
@media (max-width: 375px) {
  .voice__slider .swiper-slide {
    width: 26rem;
  }
}
.voice__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  min-height: 37.5rem;
  padding: 3.7rem 2rem 1.4rem 2rem;
  border: 1px solid #E07A8A;
  border-radius: 3rem;
  background-color: white;
}
@media (max-width: 375px) {
  .voice__card {
    min-height: 34rem;
    padding: 2.4rem 1.6rem 1.2rem;
  }
}
.voice__avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15rem;
  height: 15rem;
  margin: 0;
}
.voice__avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.voice__info {
  margin-top: 2rem;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  color: #2F3E5C;
  text-align: center;
  letter-spacing: 0;
}
.voice__text {
  width: 100%;
  margin-top: 1.2rem;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: #2F3E5C;
  text-align: left;
  letter-spacing: 0;
}

.faq {
  position: relative;
  padding: 8rem 0;
  background-color: #E8C7CE;
}
@media (max-width: 768px) {
  .faq {
    padding: 6rem 0;
  }
}
.faq__watermark {
  position: absolute;
  top: 6rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Poppins", sans-serif;
  font-size: 23rem;
  font-weight: 600;
  line-height: 1;
  color: rgba(255, 255, 255, 0.3);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  opacity: 0.3;
}
@media (max-width: 768px) {
  .faq__watermark {
    font-size: 14rem;
  }
}
@media (max-width: 375px) {
  .faq__watermark {
    font-size: 9rem;
    top: 3rem;
  }
}
.faq__inner {
  position: relative;
  z-index: 1;
}
.faq__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 0 45px;
  margin: 0 auto;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  color: #2F3E5C;
  letter-spacing: 0;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .faq__title {
    padding: 0 3.6rem;
    white-space: normal;
  }
}
@media (max-width: 375px) {
  .faq__title {
    font-size: 1.6rem;
    padding: 0 3rem;
  }
  .faq__title::before, .faq__title::after {
    width: 2.4rem;
  }
}
.faq__title-text {
  display: inline-block;
  --highlight-left: 0;
  --highlight-margin-left: 0;
  --highlight-width: 100%;
  --highlight-height: 0.9rem;
  --highlight-bottom: 0.1rem;
}
.faq__title::before {
  left: 0;
}
.faq__title::after {
  right: 0;
}
.faq__title::before, .faq__title::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-image: url(../images/faq_label_arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 30px;
  height: 20px;
}
.faq__lead {
  margin-top: 2rem;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  color: #2F3E5C;
  letter-spacing: 0;
  text-align: center;
}
@media (max-width: 375px) {
  .faq__lead {
    font-size: 1.4rem;
  }
}
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 4.5rem;
  max-width: 100rem;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 375px) {
  .faq__list {
    margin-top: 3rem;
    gap: 1.2rem;
  }
}
.faq__item {
  background-color: #fff;
  border: 2px solid #E07A8A;
  border-radius: 2rem;
  overflow: hidden;
  padding: 0 2.8rem;
}
@media (max-width: 768px) {
  .faq__item {
    padding: 0 2rem;
  }
}
.faq__question {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  width: 100%;
  padding: 2.8rem 0 2.4rem 0;
  border: none;
  background: none;
  cursor: pointer;
  text-align: left;
}
@media (max-width: 768px) {
  .faq__question {
    gap: 1.2rem;
    padding: 2rem 0 1.6rem;
  }
}
.faq__mark--q {
  flex-shrink: 0;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  color: #E07A8A;
  letter-spacing: 0;
}
.faq__question-text {
  flex: 1;
  min-width: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  color: #2F3E5C;
  letter-spacing: 0;
}
@media (max-width: 768px) {
  .faq__question-text {
    font-size: 1.6rem;
  }
}
.faq__icon {
  flex-shrink: 0;
  width: 12px;
  height: 12px;
  margin-left: 0.8rem;
  border-right: 3px solid #E07A8A;
  border-bottom: 3px solid #E07A8A;
  transform: rotate(45deg);
  transition: transform 0.25s ease;
}
.faq__item.is-open .faq__icon {
  transform: rotate(-135deg);
}
.faq__answer {
  display: none;
  align-items: flex-start;
  gap: 2.5rem;
  padding: 2rem 0 2.4rem 0;
  border-top: 1px solid #B0A8A8;
}
@media (max-width: 768px) {
  .faq__answer {
    gap: 1.2rem;
    padding: 1.6rem 0 2rem;
  }
}
.faq__item.is-open .faq__answer {
  display: flex;
}
.faq__mark--a {
  flex-shrink: 0;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  color: #3A4A6B;
  letter-spacing: 0;
}
.faq__answer-text {
  flex: 1;
  min-width: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: #2F3E5C;
  letter-spacing: 0;
}

.inquiry {
  position: relative;
  padding: 8rem 0 4rem;
  overflow: hidden;
}
@media (max-width: 768px) {
  .inquiry {
    padding: 6rem 0 3rem;
  }
}
.inquiry::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(128rem, 135%);
  height: 70rem;
  background-color: #FAF7F8;
  z-index: 0;
  clip-path: ellipse(50% 50% at 50% 50%);
}
.inquiry__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.inquiry__badge {
  position: relative;
  width: 266px;
  height: 62px;
}
@media (max-width: 375px) {
  .inquiry__badge {
    width: min(100%, 26.6rem);
    height: auto;
  }
}
.inquiry__badge img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.inquiry__heading {
  margin-top: 4rem;
  font-size: 31px;
  font-weight: 700;
  line-height: 1.35;
  color: #E07A8A;
  text-align: center;
  letter-spacing: 0;
}
@media (max-width: 768px) {
  .inquiry__heading {
    font-size: 2.4rem;
    margin-top: 3rem;
  }
}
@media (max-width: 375px) {
  .inquiry__heading {
    font-size: 2rem;
  }
}
.inquiry__content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6rem;
  width: 100%;
  margin-top: 2.4rem;
}
@media (max-width: 768px) {
  .inquiry__content {
    flex-direction: column;
    gap: 2.5rem;
  }
}
.inquiry__photo {
  width: min(100%, 45rem);
  margin: 0;
  overflow: hidden;
}
@media (max-width: 768px) {
  .inquiry__photo {
    width: 100%;
    max-width: 46rem;
  }
}
.inquiry__photo img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}
.inquiry__text {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.65;
  color: #2F3E5C;
  letter-spacing: 0;
}
@media (max-width: 375px) {
  .inquiry__text {
    font-size: 1.4rem;
  }
}
.inquiry__points {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  width: 100%;
  margin-top: 2.8rem;
  list-style: none;
  padding: 0;
}
@media (max-width: 768px) {
  .inquiry__points {
    flex-direction: column;
    gap: 2rem;
  }
}
.inquiry__point {
  width: 24rem;
  height: 24rem;
  padding: 3rem;
  border-radius: 50%;
  background: linear-gradient(to right, #77A1D3 0%, #79CBCA 100%);
  color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(28px) scale(0.94);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
@media (max-width: 768px) {
  .inquiry__point {
    width: min(100%, 24rem);
    height: min(100%, 24rem);
    aspect-ratio: 1;
  }
}
@media (max-width: 375px) {
  .inquiry__point {
    width: min(100%, 22rem);
    height: min(100%, 22rem);
    padding: 2rem;
  }
}
.is-animated .inquiry__point {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.inquiry__point:nth-child(1) {
  transition-delay: 0s;
}
.inquiry__point:nth-child(2) {
  transition-delay: 0.12s;
  margin-top: 5rem;
}
@media (max-width: 768px) {
  .inquiry__point:nth-child(2) {
    margin-top: 0;
  }
}
.inquiry__point:nth-child(3) {
  transition-delay: 0.24s;
}
@media (prefers-reduced-motion: reduce) {
  .inquiry__point {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
.inquiry__point-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
  padding-bottom: 1.8rem;
  position: relative;
}
@media (max-width: 375px) {
  .inquiry__point-title {
    font-size: 2rem;
  }
}
.inquiry__point-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background-color: #fff;
}
.inquiry__point-text {
  padding-top: 1rem;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0;
}
.inquiry__point:nth-child(1) .inquiry__point-text {
  text-align: left;
}

.application {
  padding: 8rem 0 4.5rem;
}
@media (max-width: 768px) {
  .application {
    padding: 6rem 0 4rem;
  }
}
.application__inner {
  max-width: 78rem;
}
.application__heading {
  margin: 0 auto;
  width: fit-content;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  color: #2F3E5C;
  text-align: center;
  letter-spacing: 0;
}
@media (max-width: 768px) {
  .application__heading {
    font-size: 2rem;
  }
}
@media (max-width: 375px) {
  .application__heading {
    font-size: 1.7rem;
  }
}
.application__heading-main {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
@media (max-width: 375px) {
  .application__heading-main {
    gap: 0.6rem;
  }
}
.application__heading-sub {
  margin-top: 0.2rem;
}
.application__spark {
  width: 36px;
  height: 40px;
}
@media (max-width: 375px) {
  .application__spark {
    width: 2.8rem;
    height: 3.2rem;
  }
}
.application__form {
  margin: 3.8rem auto 0;
  max-width: 820px;
}
.application__row {
  display: grid;
  grid-template-columns: 120px 1fr;
  align-items: start;
  column-gap: 1.8rem;
}
@media (max-width: 768px) {
  .application__row {
    grid-template-columns: 1fr;
    row-gap: 0.6rem;
  }
}
.application__row + .application__row {
  margin-top: 1.8rem;
}
.application__label {
  display: flex;
  align-items: center;
  padding-top: 1.2rem;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  color: #E07A8A;
  letter-spacing: 0;
}
@media (max-width: 768px) {
  .application__label {
    font-size: 14px;
    padding-top: 0;
  }
}
.application__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 45px;
  height: 20px;
  margin-left: 0.6rem;
  padding: 0 0.5rem;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}
@media (max-width: 768px) {
  .application__badge {
    font-size: 12px;
  }
}
.application__badge.is-required {
  color: #fff;
  background-color: #E07A8A;
}
.application__badge.is-optional {
  color: #E07A8A;
  border: 1px solid #E07A8A;
  background-color: #fff;
}
.application__control {
  width: 100%;
  height: 60px;
  padding: 0 3rem;
  border: 2px solid #E07A8A;
  border-radius: 3rem;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: #2F3E5C;
  background-color: #FAF7F8;
  outline: none;
}
@media (max-width: 768px) {
  .application__control {
    height: 5.4rem;
    padding: 0 2rem;
    font-size: 14px;
  }
}
@media (max-width: 375px) {
  .application__control {
    height: 5rem;
    border-radius: 2.4rem;
  }
}
.application__control::placeholder {
  color: rgba(47, 62, 92, 0.35);
}
.application__control:focus {
  border-color: #3A4A6B;
  box-shadow: 0 0 0 2px rgba(58, 74, 107, 0.12);
}
.application__control--select {
  appearance: none;
  padding-right: 4.8rem;
  cursor: pointer;
}
.application__control--textarea {
  height: 210px;
  border-radius: 3rem;
  padding: 2rem 3rem;
  resize: vertical;
  min-height: 210px;
}
@media (max-width: 768px) {
  .application__control--textarea {
    min-height: 16rem;
    padding: 1.6rem 2rem;
  }
}
.application__select-wrap {
  position: relative;
}
.application__select-wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 2.4rem;
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 10px solid #E07A8A;
  transform: translateY(-40%);
  pointer-events: none;
  transition: transform 0.2s ease;
}
.application__select-wrap.is-open::after {
  transform: translateY(-50%) rotate(180deg);
}
.application__select-trigger {
  width: 100%;
  height: 58px;
  padding: 0 5rem 0 3rem;
  border: 2px solid #E07A8A;
  border-radius: 999px;
  background-color: #FAF7F8;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  color: #2F3E5C;
  text-align: left;
  cursor: pointer;
}
@media (max-width: 768px) {
  .application__select-trigger {
    padding: 0 2rem;
    font-size: 14px;
  }
}
.application__select-text {
  display: block;
  font-size: 16px;
  line-height: 1;
  transform: translateY(2px);
}
@media (max-width: 768px) {
  .application__select-text {
    font-size: 14px;
  }
}
.application__select-options {
  position: absolute;
  top: calc(100% + 4px);
  left: 1.2rem;
  right: 1.2rem;
  margin: 0;
  padding: 0.8rem 0;
  list-style: none;
  border-radius: 2.6rem;
  background-color: #f6f3f4;
  z-index: 10;
}
.application__select-option {
  margin: 0;
  padding: 0.8rem 2.2rem;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  color: #2F3E5C;
  cursor: pointer;
}
@media (max-width: 768px) {
  .application__select-option {
    font-size: 14px;
  }
}
.application__select-option.is-selected {
  margin: 0 1.1rem 0.4rem;
  border-radius: 999px;
  background-color: #b4afb1;
  color: #fff;
  padding: 0.8rem 1.4rem;
}
.application__submit-wrap {
  margin-top: 2.4rem;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.application__submit {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 390px);
  min-height: 70px;
  margin-top: 4.8rem;
  background-color: #E07A8A;
  border-radius: 30px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0.35rem 0.25rem 0 #3A4A6B;
  transition: box-shadow 0.3s ease, transform 0.3s ease, opacity 0.2s ease;
  animation: dokundokun 1300ms ease infinite;
}
@media (prefers-reduced-motion: reduce) {
  .application__submit {
    animation: none;
  }
}
@media (max-width: 768px) {
  .application__submit {
    width: min(100%, 39rem);
    margin-top: 3.2rem;
  }
}
@media (max-width: 375px) {
  .application__submit {
    min-height: 6rem;
  }
}
.application__submit:hover:not(:disabled) {
  box-shadow: unset;
  transform: translateY(0.2rem);
}
.application__submit::after {
  content: none;
}
.application__submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  animation: none;
}
.application__submit-label {
  font-size: 20px;
  font-weight: 700;
  color: white;
  letter-spacing: 2%;
}
@media (max-width: 375px) {
  .application__submit-label {
    font-size: 1.8rem;
  }
}
.application__submit-icon {
  position: absolute;
  top: 50%;
  right: 3.5rem;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 1.5rem solid transparent;
  border-bottom: 1.5rem solid transparent;
  border-left: 1.2rem solid #fff;
}
.application__result {
  margin-top: 2rem;
  padding: 1.4rem 2rem;
  border-radius: 8px;
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
}
.application__result.is-success {
  background-color: #e6f4ea;
  color: #2d6a4f;
  border: 1px solid #95d5b2;
}
.application__result.is-error {
  background-color: #fdecea;
  color: #b71c1c;
  border: 1px solid #f5c6cb;
}

.footer {
  position: relative;
}
.footer__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.footer__nav {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.6rem 0;
  list-style: none;
  background-color: #3A4A6B;
  gap: 5rem;
  border-radius: 3rem 3rem 0 0;
}
@media (max-width: 768px) {
  .footer__nav {
    flex-wrap: wrap;
    gap: 2rem 3.2rem;
    padding: 2rem 1.6rem;
    border-radius: 2rem 2rem 0 0;
  }
}
@media (max-width: 375px) {
  .footer__nav {
    gap: 1.2rem 2rem;
  }
}
.footer__nav a {
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  line-height: 1;
  text-decoration: none;
  letter-spacing: 0;
}
@media (max-width: 375px) {
  .footer__nav a {
    font-size: 1.3rem;
  }
}
.footer__top-btn {
  position: absolute;
  top: 2.4rem;
  right: max(2rem, 50% - 55.5rem + 2rem);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #fff;
  color: #3A4A6B;
  text-decoration: none;
  box-shadow: 0 0.2rem 0.8rem rgba(0, 0, 0, 0.18);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.footer__top-btn:hover {
  opacity: 0.9;
  transform: translateY(-0.2rem);
}
@media (max-width: 768px) {
  .footer__top-btn {
    top: 1.6rem;
    right: 1.6rem;
    width: 5.6rem;
    height: 5.6rem;
  }
}
.footer__top-icon_ellipse {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background-color: currentColor;
}
.footer__top-icon_line {
  width: 1px;
  height: 13px;
  background-color: currentColor;
}
.footer__top-text {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
  margin-top: 3px;
}
.footer__body {
  position: relative;
  width: 100%;
  padding-top: 5.6rem;
  padding-bottom: 1rem;
  overflow: hidden;
  background-color: #2F4F6F;
}
@media (max-width: 768px) {
  .footer__body {
    padding-top: 4rem;
  }
}
.footer__body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 65%;
  height: 100%;
  background-image: url(../images/cta_mask.svg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.footer__body .container {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  gap: 5rem;
}
@media (max-width: 768px) {
  .footer__body .container {
    flex-direction: column;
    gap: 1.8rem;
  }
}
.footer__left {
  flex: 0 0 38rem;
}
@media (max-width: 768px) {
  .footer__left {
    flex: none;
    width: 100%;
  }
}
.footer__logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 6.4rem;
  height: 6.4rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.95);
}
.footer__logo img {
  width: 4.8rem;
  height: auto;
  display: block;
}
.footer__tagline {
  margin-top: -4.2rem;
  margin-left: 8.4rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.45;
}
@media (max-width: 375px) {
  .footer__tagline {
    margin-left: 7rem;
    font-size: 1.4rem;
  }
}
.footer__company {
  margin-top: 8rem;
  color: #fff;
  font-size: 16px;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .footer__company {
    margin-top: 4rem;
  }
}
.footer__company .url {
  font-size: 15px;
}
.footer__right {
  flex: 1;
  padding-top: 2rem;
}
.footer__message {
  margin: 0;
  color: #fff;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0;
}
@media (max-width: 768px) {
  .footer__message {
    font-size: 2.2rem;
  }
}
@media (max-width: 375px) {
  .footer__message {
    font-size: 1.6rem;
  }
}
.footer__message span {
  font-size: 40px;
  font-weight: 700;
}
@media (max-width: 768px) {
  .footer__message span {
    font-size: 2.8rem;
  }
}
@media (max-width: 375px) {
  .footer__message span {
    font-size: 2.2rem;
  }
}
.footer__bottom {
  width: 100%;
}
.footer__bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.8rem;
}
@media (max-width: 768px) {
  .footer__bottom .container {
    align-items: flex-end;
    flex-direction: column-reverse;
    gap: 1rem;
  }
}
.footer__copyright {
  font-family: "Poppins", sans-serif;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0;
}
@media (max-width: 375px) {
  .footer__copyright {
    font-size: 12px;
    text-align: center;
  }
}
.footer__privacy {
  font-family: "Poppins", sans-serif;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  text-decoration: none;
  letter-spacing: 0;
}
@media (max-width: 375px) {
  .footer__privacy {
    text-align: right;
    margin-top: 4rem;
  }
}

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