@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&display=swap");
:root {
  --font-en: "Cormorant Garamond", serif;
  --font-min: "Noto Serif JP", serif;
  --color-main: #002546;
  --color-black: #222222;
  --color-sky: #33A3B6;
  --color-sky-2: #09B2BC;
  --gradation-green-bg: linear-gradient(121deg, var(--color-sky-2) 0%, #94E5B4 100%);
  --gradation-green-2: linear-gradient(98deg, #C7E8D6 0%, #F0F8DC 100%);
  --orange-gradation: linear-gradient(135deg, #F7E542 0%, #F2A13E 100%);
  --gradation-yellow: linear-gradient(125deg, rgba(237, 207, 56, 1) 0%, rgba(231, 212, 109, 1) 49%, rgba(244, 212, 54, 1) 100%);
}

html, body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #1e1e1e;
  line-height: 1.3;
  letter-spacing: 0.03em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%; /* Safari */
  padding-top: 90px;
}
@media (max-width: 992px) {
  body {
    padding-top: 60px;
  }
}

* {
  box-sizing: border-box;
}

a {
  color: #1e1e1e;
  text-decoration: none;
  transition: 0.3s;
}

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

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

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

@media (max-width: 767.98px) {
  .tablet {
    display: none;
  }
}

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

.container {
  width: 100%;
  max-width: 1130px;
  padding-left: 25px;
  padding-right: 25px;
  margin-inline: auto;
}
@media (max-width: 992px) {
  .container {
    max-width: 720px;
    padding-left: 20px;
    padding-right: 20px;
  }
}

[id] {
  scroll-margin-top: 240px;
}
@media (max-width: 679px) {
  [id] {
    scroll-margin-top: 120px;
  }
}

.footer-cta {
  background: var(--gradation-green-bg);
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 4.7vw;
  padding: 34px 68px;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, filter 0.3s ease;
  z-index: 10;
}
@media (max-width: 1200px) {
  .footer-cta {
    gap: 2vw;
    padding: 34px 20px;
  }
}
@media (max-width: 992px) {
  .footer-cta {
    padding: 16px 12px;
    transition: opacity 0.4s ease;
  }
}
.footer-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.footer-cta-button {
  display: grid;
  place-items: center;
  position: relative;
  width: 390px;
  height: 60px;
  color: #FFF;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  filter: drop-shadow(5px 5px 10px rgba(7, 52, 58, 0.2));
  transition: filter 0.3s ease;
  border-radius: 3px;
}
@media (max-width: 992px) {
  .footer-cta-button {
    font-size: 16px;
    width: 100%;
  }
}
.footer-cta-button:hover {
  filter: brightness(1.1);
}
.footer-cta-button::after {
  content: "";
  display: block;
  width: 14px;
  height: 29px;
  background: url("../images/icons/icon-arrow-outlined.svg") center center no-repeat;
  background-size: contain;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 992px) {
  .footer-cta-button::after {
    display: none;
  }
}
.footer-cta-button__contact {
  background: var(--gradation-green-bg);
}
.footer-cta-button__request {
  background: var(--orange-gradation);
}
.footer-cta-button__line {
  background: #36C755;
}
.footer-cta-button__line .line-icon {
  position: absolute;
  left: 20px;
}
@media (max-width: 992px) {
  .footer-cta-button__line .line-icon {
    display: none;
  }
}
.footer-cta-button__line .line-icon img {
  display: block;
}

.footer {
  padding-bottom: 160px;
}
@media (max-width: 992px) {
  .footer {
    padding-bottom: 120px;
  }
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .footer-inner {
    flex-direction: column;
    margin-bottom: 32px;
  }
}
.footer-logo {
  width: 162px;
}
@media (max-width: 992px) {
  .footer-logo {
    margin-bottom: 2em;
  }
}
.footer-link {
  display: flex;
  align-items: center;
  gap: 35px;
  font-size: 1.5rem;
}
@media (max-width: 992px) {
  .footer-link {
    flex-direction: column;
    gap: 1em;
    font-size: 1.4rem;
  }
}
.footer-link a {
  position: relative;
  padding-right: 23px;
}
.footer-link a::after {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  position: absolute;
  right: 0;
  bottom: 1px;
  background: url("../images/icons/icon-new-window.svg") center center no-repeat;
  background-size: contain;
}

.copyright {
  font-family: var(--font-en);
  font-size: 1.4rem;
  letter-spacing: 0.03em;
  text-align: center;
  line-height: 1.7;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  background: white;
  z-index: 100;
}
@media (max-width: 992px) {
  .header {
    height: 60px;
  }
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  padding-left: 30px;
}
.header-logo {
  width: 170px;
  margin: 0;
  padding-top: 5px;
}
@media (max-width: 992px) {
  .header-logo {
    width: 120px;
  }
}
.header-btns {
  display: flex;
  padding-right: 90px;
}
@media (max-width: 992px) {
  .header-btns {
    padding-right: 60px;
  }
}
.header-btn-contact {
  display: grid;
  place-items: center;
  width: 130px;
  height: 90px;
  background: var(--gradation-green-bg);
  font-size: 1.5rem;
  color: white;
}
@media (max-width: 992px) {
  .header-btn-contact {
    height: 60px;
    width: auto;
    padding: 0 1em;
  }
}
.header-btn-hamburger {
  width: 90px;
  height: 90px;
  background: white;
  border: none;
  border-radius: 0;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 2000;
  transition: opacity 0.3s ease, filter 0.3s ease;
  cursor: pointer;
}
@media (max-width: 992px) {
  .header-btn-hamburger {
    height: 60px;
    width: 60px;
  }
}
.header-btn-hamburger:hover {
  background: var(--gradation-green-2);
}
.header-btn-hamburger .bar {
  width: 46px;
  height: 1px;
  background: var(--color-black);
  position: absolute;
  left: 22px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
@media (max-width: 992px) {
  .header-btn-hamburger .bar {
    width: 30px;
    left: 15px;
  }
}
.header-btn-hamburger .bar:nth-child(1) {
  top: 34px;
}
@media (max-width: 992px) {
  .header-btn-hamburger .bar:nth-child(1) {
    top: 20px;
  }
}
.header-btn-hamburger .bar:nth-child(2) {
  top: 45px;
}
@media (max-width: 992px) {
  .header-btn-hamburger .bar:nth-child(2) {
    top: 31px;
  }
}
.header-btn-hamburger .bar:nth-child(3) {
  top: 56px;
}
@media (max-width: 992px) {
  .header-btn-hamburger .bar:nth-child(3) {
    top: 42px;
  }
}
.header-btn-hamburger.is-open {
  background: transparent;
}
.header-btn-hamburger.is-open .bar:nth-child(1) {
  transform: translateY(12px) rotate(30deg);
}
.header-btn-hamburger.is-open .bar:nth-child(2) {
  opacity: 0;
}
.header-btn-hamburger.is-open .bar:nth-child(3) {
  transform: translateY(-10px) rotate(-30deg);
}

.hamburger-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  background: var(--gradation-green-2);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, filter 0.3s ease;
}
@media (max-width: 679px) {
  .hamburger-menu {
    width: 100%;
    height: 100dvh;
    max-height: 100%;
  }
}
.hamburger-menu.is-open {
  opacity: 1;
  pointer-events: auto;
}
.hamburger-menu__inner {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 40px;
  width: 100%;
  height: 100%;
  overflow: auto;
  padding: 132px 74px 80px;
}
@media (max-width: 679px) {
  .hamburger-menu__inner {
    padding: 48px 48px 40px;
  }
}
.hamburger-menu .navigation-menu {
  display: flex;
  width: 300px;
  flex-direction: column;
  align-items: flex-start;
}
@media (max-width: 679px) {
  .hamburger-menu .navigation-menu {
    width: 100%;
  }
}
.hamburger-menu .navigation-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}
.hamburger-menu .navigation-menu ul li {
  border-bottom: 1px solid #41BFD4;
  position: relative;
}
.hamburger-menu .navigation-menu ul li::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #41BFD4;
  position: absolute;
  left: 8px;
  top: calc(50% - 5px);
}
.hamburger-menu .navigation-menu ul li a {
  display: block;
  width: 100%;
  padding: 16px 8px 16px 24px;
}
.hamburger-menu .navigation-menu ul li a:hover {
  color: #41BFD4;
}
.hamburger-menu-buttons {
  display: grid;
  gap: 16px;
}
@media (max-width: 679px) {
  .hamburger-menu-buttons {
    width: 100%;
  }
}
.hamburger-menu-contact {
  display: grid;
  place-items: center;
  position: relative;
  width: 300px;
  max-width: 100%;
  height: 52px;
  color: #FFF;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  filter: drop-shadow(5px 5px 10px rgba(7, 52, 58, 0.2));
  transition: filter 0.3s ease;
  border-radius: 3px;
  background: var(--gradation-green-bg);
}
@media (max-width: 679px) {
  .hamburger-menu-contact {
    width: 100%;
    font-size: 16px;
  }
}
.hamburger-menu-contact:hover {
  filter: brightness(1.1);
}
.hamburger-menu-contact--request {
  background: var(--orange-gradation);
  display: none;
}
@media (max-width: 679px) {
  .hamburger-menu-contact--request {
    display: grid;
  }
}
.hamburger-menu-contact--line {
  background: #36C755;
  position: relative;
  padding-left: 14px;
  display: none;
}
@media (max-width: 679px) {
  .hamburger-menu-contact--line {
    padding-left: 30px;
    display: grid;
  }
}
.hamburger-menu-contact--line .line-icon {
  position: absolute;
  left: 12px;
}
@media (max-width: 679px) {
  .hamburger-menu-contact--line .line-icon {
    left: 10px;
  }
}
.hamburger-menu-contact--line .line-icon img {
  display: block;
}
.hamburger-menu-logo {
  width: 200px;
}

.hero {
  padding-inline: 4vw;
  padding-bottom: 80px;
  margin-bottom: 160px;
  position: relative;
}
@media (max-width: 992px) {
  .hero {
    padding-bottom: 40px;
    margin-bottom: 80px;
  }
}
@media (max-width: 679px) {
  .hero {
    padding-bottom: 26px;
  }
}
.hero::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 450px;
  background: var(--gradation-green-2);
}
.hero__image {
  display: block;
  width: 100%;
  height: 700px;
  position: relative;
}
@media (max-width: 992px) {
  .hero__image {
    height: 460px;
  }
}
@media (max-width: 679px) {
  .hero__image {
    height: 400px;
  }
}
.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .hero__image img {
    object-position: 85% 100%;
  }
}
.hero-container {
  position: absolute;
  top: 120px;
  left: 6vw;
}
@media (max-width: 992px) {
  .hero-container {
    top: 170px;
  }
}
@media (max-width: 679px) {
  .hero-container {
    left: 7vw;
    top: 68px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 92px;
  }
}
.hero-title {
  max-width: 686px;
}
@media (max-width: 992px) {
  .hero-title {
    width: 430px;
    max-width: 85vw;
    margin: 0;
    position: relative;
  }
}
@media (max-width: 679px) {
  .hero-title {
    margin: 10px auto;
  }
}
.hero-sub-title {
  font-family: var(--font-min);
  font-size: 4rem;
  font-weight: 600;
  color: white;
  line-height: 1;
  background: var(--gradation-green-bg);
  display: inline-block;
  padding: 20px;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .hero-sub-title {
    font-size: 2rem;
    padding: 8px 12px;
    margin-bottom: 0;
    line-height: 1.3;
  }
}
@media (max-width: 679px) {
  .hero-sub-title {
    writing-mode: vertical-rl;
    font-size: 1.6rem;
  }
}
.hero-feature {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: -140px;
  position: relative;
}
@media (max-width: 992px) {
  .hero-feature {
    margin-top: -70px;
    gap: 26px;
  }
}
@media (max-width: 679px) {
  .hero-feature {
    gap: 6px;
    margin-top: -30px;
  }
}
@media (max-width: 679px) {
  .hero-feature {
    margin-top: -10px;
  }
}
.hero-feature-item {
  background: url("../images/hero/bg_hero_feature.png") center center no-repeat;
  background-size: 100%;
  width: 280px;
  height: 280px;
  padding-top: 58px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #393407;
  text-align: center;
  letter-spacing: -0.05em;
  position: relative;
}
@media (max-width: 992px) {
  .hero-feature-item {
    display: grid;
    place-content: center;
    gap: 8px;
    width: 200px;
    height: 200px;
    padding-top: 0;
  }
}
@media (max-width: 679px) {
  .hero-feature-item {
    height: auto;
    aspect-ratio: 1;
  }
}
.hero-feature-item::after {
  content: "";
  width: 160px;
  height: 20px;
  background: url("../images/icons/deco_line_1.svg") center center no-repeat;
  background-size: contain;
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
@media (max-width: 992px) {
  .hero-feature-item::after {
    width: 100px;
    height: 16px;
    bottom: 20px;
  }
}
@media (max-width: 679px) {
  .hero-feature-item::after {
    width: 50px;
    height: 16px;
    bottom: 4px;
  }
}
.hero-feature-item__sub {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.4;
  height: 88px;
  display: grid;
  place-content: center;
}
@media (max-width: 992px) {
  .hero-feature-item__sub {
    font-size: 1.3rem;
    height: auto;
  }
}
@media (max-width: 679px) {
  .hero-feature-item__sub {
    display: none;
  }
}
.hero-feature-item__main {
  font-size: 2.1rem;
  font-weight: bold;
  line-height: 1.4;
  position: relative;
  z-index: 5;
}
@media (max-width: 992px) {
  .hero-feature-item__main {
    font-size: 1.6rem;
  }
}
@media (max-width: 679px) {
  .hero-feature-item__main {
    font-size: 1.3rem;
  }
}

.section-title__has-en {
  text-align: center;
  font-size: 3.6rem;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 0.08em;
  position: relative;
}
@media (max-width: 992px) {
  .section-title__has-en {
    font-size: 2.6rem;
  }
}
@media (max-width: 992px) {
  .section-title__has-en {
    font-size: 2.2rem;
  }
}

.square-button {
  display: grid;
  place-items: center;
  background: var(--gradation-green-bg);
  font-size: 2.5rem;
  font-weight: bold;
  color: white;
  width: 470px;
  height: 70px;
  position: relative;
  filter: drop-shadow(5px 5px 10px rgba(7, 52, 58, 0.2));
}
@media (max-width: 992px) {
  .square-button {
    font-size: 1.8rem;
    width: 280px;
    height: 46px;
  }
}
.square-button:hover {
  --gradation-green-bg: linear-gradient(121deg, #94E5B4 0%, var(--color-sky-2) 100%);
}
.square-button::after {
  content: "";
  width: 16px;
  height: 31px;
  background: url("../images/icons/arrow-outlined.svg") center center no-repeat;
  background-size: contain;
  position: absolute;
  right: 26px;
  top: 50%;
  transform: translateY(-50%);
}

.accent-image {
  position: relative;
  width: 100%;
  height: 480px;
  overflow: hidden;
}
@media (max-width: 992px) {
  .accent-image {
    height: 260px;
  }
}
.accent-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.accent-image-text {
  color: rgba(247, 254, 255, 0.65);
  font-family: var(--font-en);
  font-size: 15.8rem;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  position: absolute;
  left: 50%;
  bottom: -30px;
  transform: translateX(-50%);
}
@media (max-width: 992px) {
  .accent-image-text {
    font-size: 11vw;
    bottom: 4px;
  }
}
.accent-image--02 {
  margin-bottom: 200px;
}
@media (max-width: 992px) {
  .accent-image--02 {
    margin-bottom: 100px;
  }
}
@media (max-width: 992px) {
  .accent-image--02 .accent-image-text {
    font-size: 9vw;
  }
}

.problem {
  margin-bottom: 226px;
}
@media (max-width: 992px) {
  .problem {
    margin-bottom: 100px;
  }
}
.problem-container {
  background: #EAF0EF;
  max-width: 1340px;
  margin-inline: auto;
  padding: 68px 32px 78px;
  position: relative;
}
@media (max-width: 992px) {
  .problem-container {
    max-width: 100%;
    padding: 40px 20px 40px;
  }
}
.problem-container::after {
  content: "";
  width: 130px;
  height: 45px;
  background: url("../images/icons/arrow-down-green.svg") center center no-repeat;
  background-size: contain;
  position: absolute;
  left: 50%;
  bottom: -25px;
  transform: translateX(-50%);
}
@media (max-width: 992px) {
  .problem-container::after {
    width: 80px;
    height: 30px;
    bottom: -18px;
  }
}
.problem-balloon {
  position: absolute;
  top: -42px;
  left: 50%;
  transform: translateX(-50%);
  width: 518px;
}
@media (max-width: 992px) {
  .problem-balloon {
    width: 348px;
    max-width: 100%;
  }
}
.problem-balloon img {
  display: block;
}
@media (max-width: 992px) {
  .problem-balloon img {
    width: 100%;
  }
}
.problem-header {
  text-align: center;
  font-size: 3.5rem;
  font-weight: 500;
  line-height: 130%;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .problem-header {
    font-size: 2.2rem;
  }
}
.problem-header span {
  font-size: 4.5rem;
  color: var(--color-sky);
}
@media (max-width: 992px) {
  .problem-header span {
    font-size: 2.8rem;
  }
}
.problem-manga {
  max-width: 840px;
  margin: 0 auto 74px;
}
@media (max-width: 992px) {
  .problem-manga {
    margin-bottom: 40px;
    display: none;
  }
}
.problem p {
  font-size: 2.8rem;
  font-weight: bold;
  color: var(--color-sky);
  text-align: center;
  margin-top: 0.6em;
}
@media (max-width: 992px) {
  .problem p {
    font-size: 1.6rem;
  }
}
.problem-bottom-title {
  text-align: center;
  font-size: 3.5rem;
  font-weight: 500;
  line-height: 130%;
  letter-spacing: 0.05em;
  margin-bottom: 52px;
}
@media (max-width: 992px) {
  .problem-bottom-title {
    font-size: 2.2rem;
    margin-bottom: 30px;
  }
}
.problem-bottom-title span {
  font-size: 4.5rem;
  color: var(--color-sky);
}
@media (max-width: 992px) {
  .problem-bottom-title span {
    font-size: 2.8rem;
  }
}
.problem-items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px;
  margin-bottom: 52px;
}
@media (max-width: 992px) {
  .problem-items {
    gap: 16px;
    margin-bottom: 30px;
  }
}
@media (max-width: 768px) {
  .problem-items {
    grid-template-columns: 1fr;
    width: 440px;
    max-width: 100%;
    margin-inline: auto;
  }
}
.problem-item {
  background: var(--gradation-green-bg);
  padding: 20px 20px;
  color: white;
  line-height: 1.7;
  position: relative;
}
@media (max-width: 992px) {
  .problem-item {
    padding: 16px 12px;
  }
}
.problem-item::before {
  content: "";
  display: block;
  width: 160px;
  height: 20px;
  position: absolute;
  right: 24px;
  bottom: 9px;
  background: url("../images/icons/deco_line_2.svg") center center no-repeat;
  background-size: contain;
}
@media (max-width: 768px) {
  .problem-item::before {
    width: 100px;
    height: 14px;
    bottom: 5px;
  }
}
.problem-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
@media (max-width: 679px) {
  .problem-footer {
    gap: 0;
  }
}
.problem-footer-text {
  background: white;
  padding: 10px 18px;
  text-align: center;
}
@media (max-width: 679px) {
  .problem-footer-text {
    width: 100%;
  }
}
@media (max-width: 679px) {
  .problem-footer-text:nth-child(1) {
    padding-top: 16px;
    padding-bottom: 0;
  }
}
@media (max-width: 679px) {
  .problem-footer-text:nth-child(2) {
    padding-top: 0;
    padding-bottom: 16px;
  }
}
.problem-footer span {
  font-size: 4rem;
  font-weight: bold;
  line-height: 1;
  background: var(--green_gradation, linear-gradient(121deg, var(--color-sky-2) 0%, #94E5B4 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 992px) {
  .problem-footer span {
    font-size: 2rem;
    line-height: 1.3;
  }
}
.problem-face {
  position: absolute;
  bottom: 511px;
}
@media (max-width: 992px) {
  .problem-face {
    display: none;
  }
}
.problem-face__1 {
  width: 150px;
  left: -75px;
}
.problem-face__2 {
  width: 147px;
  right: -75px;
}

.manga-slider {
  position: relative;
  flex: 1;
  min-width: 0; /* flexのはみ出し防止 */
}
.manga-slider-wrap {
  display: none;
}
@media (max-width: 992px) {
  .manga-slider-wrap {
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
}
.manga-slider__item img {
  width: 100%;
  height: auto;
  display: block;
}
.manga-slider__arrow {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--color-sky);
  -webkit-tap-highlight-color: transparent;
  z-index: 100;
}
.manga-slider__arrow--prev {
  left: -15px;
}
.manga-slider__arrow--next {
  right: -15px;
}

.manga-slider__arrow:disabled {
  opacity: 0.3;
  pointer-events: none;
}

.section-title-solution {
  font-size: 4rem;
  font-weight: 500;
  text-align: center;
  background: url("../images/title-solve-it.svg") center top no-repeat;
  background-size: 621px;
  padding-top: 192px;
  position: relative;
  top: -97px;
}
@media (max-width: 992px) {
  .section-title-solution {
    font-size: 2.6rem;
    background-size: 320px;
    padding-top: 104px;
    top: -58px;
  }
}
.section-title-solution .em {
  background: var(--green_gradation, linear-gradient(121deg, var(--color-sky-2) 0%, #94E5B4 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 1.5em;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.08em;
}
.section-title-solution .balloon {
  position: absolute;
  left: 50%;
  top: 154px;
  transform: translateX(-50%);
  width: 190px;
  height: 60px;
}
@media (max-width: 992px) {
  .section-title-solution .balloon {
    top: 62px;
    width: 100px;
    height: 42px;
  }
}
.section-title-solution::after {
  content: "";
  display: block;
  width: 186px;
  height: 35px;
  background: url("../images/icons/deco_line_3.svg") center center no-repeat;
  background-size: contain;
  margin: 24px auto 0;
}
@media (max-width: 992px) {
  .section-title-solution::after {
    height: 20px;
    margin-top: 4px;
  }
}

.solution {
  background: var(--gradation-green-2);
  padding-bottom: 80px;
}
@media (max-width: 992px) {
  .solution {
    padding-bottom: 22px;
  }
}
.solution-content {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .solution-content {
    margin-bottom: 18px;
  }
}
.solution-content:first-of-type {
  margin-top: -96px;
}
@media (max-width: 992px) {
  .solution-content:first-of-type {
    margin-top: -60px;
  }
}
.solution-content-title {
  font-size: 3rem;
  text-align: center;
  color: var(--color-sky);
  letter-spacing: 0.08em;
  position: relative;
}
@media (max-width: 992px) {
  .solution-content-title {
    font-size: 1.8rem;
  }
}
.solution-content-title::before {
  content: "";
  display: block;
  width: 110px;
  height: 110px;
  background: url("../images/icons/icon_point.svg") center center no-repeat;
  background-size: contain;
  margin: 0 auto 30px;
}
@media (max-width: 992px) {
  .solution-content-title::before {
    width: 70px;
    height: 70px;
    margin-bottom: 16px;
  }
}
.solution-score {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
}
@media (max-width: 768px) {
  .solution-score {
    flex-direction: column;
    gap: 14px;
  }
}
.solution-score-image {
  flex: 1;
}
.solution-score-content {
  flex: 1;
  line-height: 1.8;
}
.solution-score-content__sub {
  font-size: 1.8rem;
}
@media (max-width: 992px) {
  .solution-score-content__sub {
    font-size: 1.6rem;
  }
}
.solution-score-content__main {
  font-size: 2.6rem;
}
@media (max-width: 992px) {
  .solution-score-content__main {
    font-size: 1.8rem;
    margin-bottom: 0;
  }
}
.solution-score-content .em {
  background: white;
  margin-inline: 0.3em;
  padding-inline: 0.1em;
}
.solution-score-content .em span {
  font-weight: bold;
  line-height: 1;
  background: var(--green_gradation, linear-gradient(121deg, var(--color-sky-2) 0%, #94E5B4 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}
.solution-support {
  display: flex;
  justify-content: center;
  gap: 30px;
}
@media (max-width: 992px) {
  .solution-support {
    gap: 18px;
  }
}
@media (max-width: 768px) {
  .solution-support {
    flex-direction: column;
  }
}
.solution-support-item {
  flex: 1;
  background: white;
  padding: 30px;
}
@media (max-width: 992px) {
  .solution-support-item {
    padding: 18px;
  }
}
.solution-support-item__image {
  width: 100%;
  aspect-ratio: 72/33;
  margin-bottom: 18px;
}
.solution-support-item__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.solution-support-item__title {
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  margin-top: 0;
  margin-bottom: 14px;
}
@media (max-width: 992px) {
  .solution-support-item__title {
    font-size: 1.9rem;
  }
}
.solution-support-item__desc {
  font-size: 1.7rem;
  font-weight: normal;
  line-height: 1.7;
  margin: 0;
}
@media (max-width: 992px) {
  .solution-support-item__desc {
    font-size: 1.6rem;
  }
}
.solution-footer {
  text-align: center;
  font-size: 3.2rem;
  line-height: 2;
  padding-top: 80px;
}
@media (max-width: 992px) {
  .solution-footer {
    font-size: 1.9rem;
    padding-top: 40px;
  }
}
.solution-footer .lg {
  background: white;
  margin-inline: 0.4em;
}
.solution-footer .lg span {
  font-size: 1.25em;
  font-weight: bold;
  line-height: 1;
  background: var(--green_gradation, linear-gradient(121deg, var(--color-sky-2) 0%, #94E5B4 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

.movie {
  padding-top: 80px;
  margin-bottom: 180px;
}
@media (max-width: 992px) {
  .movie {
    padding-top: 40px;
    margin-bottom: 100px;
  }
}
.movie-title {
  font-size: 3rem;
  text-align: center;
  margin-top: 0;
  background: var(--green-gradation, linear-gradient(121deg, var(--color-sky-2) 0%, #94E5B4 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}
@media (max-width: 992px) {
  .movie-title {
    font-size: 1.8rem;
  }
}
.movie-title::after {
  content: "";
  display: block;
  width: 200px;
  height: 24px;
  background: url("../images/icons/deco_line_2.svg") center center no-repeat;
  background-size: contain;
  margin: auto;
}
.movie-items {
  display: flex;
  justify-content: center;
  gap: 60px;
}
@media (max-width: 992px) {
  .movie-items {
    gap: 12px;
  }
}
@media (max-width: 679px) {
  .movie-items {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
}
.movie-item {
  display: block;
  width: 510px;
  max-width: 100%;
  padding: 30px;
}
@media (max-width: 992px) {
  .movie-item {
    padding: 0 10px;
  }
}
.movie-item__thumb {
  margin-bottom: 18px;
  position: relative;
  cursor: pointer;
  overflow: hidden;
}
@media (max-width: 679px) {
  .movie-item__thumb {
    margin-bottom: 10px;
  }
}
.movie-item__thumb img {
  display: block;
  transition: 0.3s ease;
}
.movie-item__thumb:hover img {
  transform: scale(1.05);
}
.movie-item__thumb:hover .icon-movie-play img {
  transform: scale(1);
}
.movie-item__thumb .icon-movie-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  cursor: pointer;
}
.movie-item__desc {
  margin: 0;
  font-size: 2rem;
  text-align: center;
}
@media (max-width: 992px) {
  .movie-item__desc {
    font-size: 1.5rem;
  }
}

.support {
  background: var(--gradation-green-2);
  padding-bottom: 94px;
  margin-bottom: 120px;
}
@media (max-width: 992px) {
  .support {
    padding-bottom: 48px;
    margin-bottom: 60px;
  }
}
.support .container {
  margin-top: -98px;
}
@media (max-width: 992px) {
  .support .container {
    margin-top: -66px;
  }
}
.support .section-title {
  background: url("../images/title-support.svg") center top no-repeat;
  background-size: 649px;
  padding-top: 180px;
  top: -111px;
}
@media (max-width: 992px) {
  .support .section-title {
    background-size: 334px;
    padding-top: 110px;
    top: -80px;
  }
}
.support-items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 30px;
}
@media (max-width: 679px) {
  .support-items {
    gap: 16px;
  }
}
.support-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 340px;
  background: white;
  padding: 38px 30px 30px;
}
@media (max-width: 992px) {
  .support-item {
    padding: 16px 20px;
    width: 40vw;
  }
}
@media (max-width: 679px) {
  .support-item {
    width: 100%;
  }
}
.support-item__icon {
  width: 100px;
  aspect-ratio: 100/98;
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .support-item__icon {
    width: 60px;
    margin-bottom: 8px;
  }
}
.support-item__icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.support-item__title {
  font-size: 2.6rem;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 8px;
}
@media (max-width: 992px) {
  .support-item__title {
    font-size: 2rem;
  }
}
.support-item__desc {
  margin: 0;
  font-size: 17px;
  font-weight: normal;
  line-height: 1.7;
}
@media (max-width: 992px) {
  .support-item__desc {
    font-size: 1.6rem;
  }
}
.support-footer {
  font-size: 1.6rem;
  font-weight: normal;
  line-height: 1.7;
  text-align: center;
  margin-bottom: 220px;
}
@media (max-width: 992px) {
  .support-footer {
    font-size: 1.6rem;
    margin-bottom: 110px;
  }
}
.support .section-data .section-title {
  background: url("../images/title-data.svg") center top no-repeat;
  background-size: 456px;
  padding-top: 135px;
}
@media (max-width: 992px) {
  .support .section-data .section-title {
    background-size: 235px;
    padding-top: 85px;
  }
}
.support .section-data-title {
  font-size: 3rem;
  font-weight: 500;
  line-height: 1;
  position: relative;
}
@media (max-width: 992px) {
  .support .section-data-title {
    font-size: 2.2rem;
  }
}
.support .section-data-title span {
  position: relative;
}
.support .section-data-title::before {
  content: "";
  display: block;
  width: 200px;
  height: 24px;
  background: url("../images/icons/deco_line_2.svg") center center no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  bottom: -16px;
}
.support .section-data .data-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: white;
  width: 530px;
  max-width: 100%;
  padding: 40px 24px 24px;
}
@media (max-width: 992px) {
  .support .section-data .data-card {
    width: 40vw;
  }
}
@media (max-width: 679px) {
  .support .section-data .data-card {
    width: 100%;
    padding-top: 24px;
  }
}
.support .section-data .data-card-title {
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
  background: var(--green_gradation, linear-gradient(121deg, var(--color-sky-2) 0%, #94E5B4 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .support .section-data .data-card-title {
    font-size: 2rem;
    margin-bottom: 18px;
  }
}
@media (max-width: 679px) {
  .support .section-data .data-card-title {
    margin-bottom: 14px;
  }
}
.support .section-data .data-card-fig {
  flex: 1;
  display: grid;
  place-items: center;
}
.support .data-participants-items, .support .data-questionnaire-items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}
@media (max-width: 679px) {
  .support .data-participants, .support .data-questionnaire {
    gap: 16px;
  }
}
.support .data-participants {
  margin-top: -68px;
}
.support-section-footer {
  font-size: 2.6rem;
  line-height: 2;
  text-align: center;
  letter-spacing: -0.05em;
  padding-top: 100px;
  position: relative;
}
@media (max-width: 992px) {
  .support-section-footer {
    font-size: 1.8rem;
    padding-top: 48px;
  }
}
.support-section-footer::after {
  content: "";
  display: block;
  width: 333px;
  height: 26px;
  max-width: 100%;
  background: url("../images/icons/deco_line_1.svg") center top no-repeat;
  background-size: contain;
  margin: auto;
  bottom: -30px;
  position: relative;
}
.support-section-footer.container {
  margin-top: 0;
}
.support-section-footer span.lg {
  background: white;
  margin-inline: 0.4em;
}
.support-section-footer span.lg span {
  font-size: 1.3em;
  font-weight: bold;
  line-height: 1;
  background: var(--green_gradation, linear-gradient(121deg, var(--color-sky-2) 0%, #94E5B4 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}
.support-section-footer span.md {
  font-size: 2.8rem;
  font-weight: 500;
}
@media (max-width: 992px) {
  .support-section-footer span.md {
    font-size: 1.8rem;
  }
}

.voice .section-title {
  background: url("../images/title-voice.svg") center top no-repeat;
  background-size: 411px;
  padding-top: 137px;
}
@media (max-width: 992px) {
  .voice .section-title {
    background-size: 211px;
    padding-top: 94px;
  }
}
.voice-footer {
  font-size: 3.4rem;
  line-height: 1.7;
  text-align: center;
  position: relative;
  padding: 50px 20px 120px;
}
@media (max-width: 992px) {
  .voice-footer {
    font-size: 2.2rem;
    padding: 24px 0 54px;
  }
}
.voice-footer::before, .voice-footer::after {
  content: "";
  display: block;
  width: 304px;
  height: 38px;
  background: url("../images/icons/deco_line_4.svg") center center no-repeat;
  background-size: contain;
  position: absolute;
  top: 78px;
  z-index: -1;
}
@media (max-width: 992px) {
  .voice-footer::before, .voice-footer::after {
    width: 144px;
    top: 68px;
  }
}
.voice-footer::before {
  right: calc(50% - 0.6em);
}
.voice-footer::after {
  left: calc(50% + 1em);
}

.voice-block {
  background: #F4F8F1;
  padding: 40px 50px;
  margin-bottom: 70px;
  border-radius: 20px;
  position: relative;
}
@media (max-width: 992px) {
  .voice-block {
    padding: 20px 24px;
    margin-bottom: 40px;
    border-radius: 10px;
  }
}
@media (max-width: 679px) {
  .voice-block {
    padding-bottom: 22px;
  }
}
.voice-block__header {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media (max-width: 992px) {
  .voice-block__header {
    gap: 25px;
  }
}
@media (max-width: 679px) {
  .voice-block__header {
    gap: 16px;
  }
}
.voice-block__thumb {
  position: relative;
  width: 190px;
  flex-shrink: 0;
}
@media (max-width: 992px) {
  .voice-block__thumb {
    width: 100px;
  }
}
@media (max-width: 679px) {
  .voice-block__thumb {
    width: 68px;
  }
}
.voice-block .voice-text {
  position: absolute;
  top: 0;
  left: 0;
}
.voice-block__title {
  font-size: 2.7rem;
  line-height: 1.5;
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .voice-block__title {
    font-size: 1.7rem;
  }
}
@media (max-width: 679px) {
  .voice-block__title {
    font-size: 1.6rem;
    margin-bottom: 10px;
  }
}
.voice-block__meta {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 679px) {
  .voice-block__meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
.voice-block__course {
  background: var(--gradation-green-2);
  padding: 8px 20px 8px 13px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.voice-block__course-icons {
  display: flex;
  gap: 10px;
}
.voice-block__course-icons img {
  width: 26px;
  display: block;
}
.voice-block__course p {
  margin: 0;
  font-size: 1.6rem;
  font-weight: normal;
  line-height: 1.3;
}
@media (max-width: 992px) {
  .voice-block__course p {
    font-size: 1.3rem;
  }
}
.voice-block__name {
  font-size: 1.8rem;
}
@media (max-width: 992px) {
  .voice-block__name {
    font-size: 1.6rem;
  }
}
.voice-block__main {
  padding-left: 230px;
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows 0.3s ease;
}
@media (max-width: 992px) {
  .voice-block__main {
    padding-left: 124px;
  }
}
@media (max-width: 679px) {
  .voice-block__main {
    padding-left: 0;
  }
}
.voice-block__main > .voice-block__main-inner {
  min-height: 0;
}
.voice-block__main[aria-hidden=false] {
  grid-template-rows: 1fr;
  padding-top: 27px;
}
@media (max-width: 992px) {
  .voice-block__main[aria-hidden=false] {
    padding-top: 24px;
  }
}
.voice-block__message {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .voice-block__message {
    margin-bottom: 18px;
  }
}
.voice-block__message-title {
  font-size: 1.6rem;
  line-height: 150%;
  text-align: center;
  border-radius: 50px;
  display: flex;
  width: 220px;
  padding: 10px;
  align-items: center;
  background: var(--orange-gradation, linear-gradient(135deg, #F7E542 0%, #F2A13E 100%));
}
@media (max-width: 992px) {
  .voice-block__message-title {
    padding: 8px;
  }
}
.voice-block__message p {
  font-size: 1.7rem;
  font-weight: normal;
  line-height: 1.8;
}
@media (max-width: 992px) {
  .voice-block__message p {
    font-size: 1.6rem;
  }
}
.voice-block__point {
  background: white;
  padding: 30px;
  border-radius: 15px;
}
@media (max-width: 992px) {
  .voice-block__point {
    padding: 16px;
    border-right: 10px;
  }
}
.voice-block__point-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 2rem;
  font-weight: bold;
  line-height: 180%;
  letter-spacing: 0.03em;
  margin-bottom: 20px;
  position: relative;
  background: url("../images/icons/deco_line_5.svg") bottom left 10px no-repeat;
}
@media (max-width: 992px) {
  .voice-block__point-title {
    font-size: 1.6rem;
  }
}
.voice-block__point-title::before {
  content: "";
  display: block;
  width: 38px;
  height: 50px;
  background: url("../images/icons/icon_finger.svg") center top no-repeat;
  background-size: contain;
  padding-bottom: 9px;
}
.voice-block__point-list {
  margin: 0;
  padding: 0;
  list-style: none;
  color: #33A3B6;
  font-size: 17px;
  line-height: 150%;
}
@media (max-width: 992px) {
  .voice-block__point-list {
    font-size: 1.4rem;
  }
}
.voice-block__point-list li {
  margin-bottom: 18px;
  padding-left: 31px;
  position: relative;
}
.voice-block__point-list li:last-of-type {
  margin-bottom: 0;
}
.voice-block__point-list li::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background: url("../images/icons/icon_check.svg") center top no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  top: 2px;
}
.voice-block__toggle {
  position: absolute;
  bottom: -26px;
  left: 50%;
  transform: translateX(-50%);
  width: 172px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: none;
  border-radius: 50px;
  background: #FFF;
  box-shadow: 0 0 20px 0 rgba(7, 52, 58, 0.1);
  cursor: pointer;
}
@media (max-width: 992px) {
  .voice-block__toggle {
    font-size: 1.3rem;
    width: 130px;
    height: 40px;
  }
}
.voice-block__toggle:hover {
  background: var(--gradation-green-bg);
}
.voice-block__toggle .status-icon {
  width: 17px;
}

.course {
  background: #F4F8F1;
  padding-bottom: 100px;
}
@media (max-width: 992px) {
  .course {
    padding-bottom: 48px;
  }
}
.course .container {
  max-width: 1230px;
}
.course .section-title {
  background: url("../images/title-course.svg") center top no-repeat;
  background-size: 515px;
  padding-top: 142px;
  top: -87px;
}
@media (max-width: 992px) {
  .course .section-title {
    background-size: 265px;
    padding-top: 90px;
    top: -55px;
  }
}
.course-header {
  font-size: 3.4rem;
  text-align: center;
  line-height: 1.7;
  margin-top: -56px;
  margin-bottom: 80px;
  position: relative;
}
@media (max-width: 992px) {
  .course-header {
    font-size: 1.8rem;
    margin-bottom: 40px;
  }
}
.course-header::before, .course-header::after {
  content: "";
  display: block;
  position: absolute;
  background: url("../images/icons/deco_line_4.svg") center top no-repeat;
}
.course-header::before {
  background-size: contain;
  width: 394px;
  height: 38px;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 992px) {
  .course-header::before {
    width: 230px;
    height: 22px;
    top: 20px;
  }
}
.course-header::after {
  width: 670px;
  max-width: 100%;
  height: 58px;
  background-size: contain;
  left: 6em;
  top: 85px;
}
@media (max-width: 992px) {
  .course-header::after {
    width: 400px;
    height: 34px;
    top: 52px;
    left: 0;
  }
}
@media (max-width: 679px) {
  .course-header::after {
    top: 92px;
  }
}
.course-header span {
  font-size: 4rem;
}
@media (max-width: 992px) {
  .course-header span {
    font-size: 2.3rem;
  }
}
.course-header__inner {
  position: relative;
  z-index: 1;
}

.course-roadmap {
  background: white;
  margin: 0 auto 70px;
  padding: 48px 50px 50px;
  position: relative;
}
@media (max-width: 992px) {
  .course-roadmap {
    padding: 38px 24px 24px;
    margin-bottom: 25px;
  }
}
@media (max-width: 679px) {
  .course-roadmap {
    padding-top: 88px;
  }
}
.course-roadmap .ribbon {
  position: absolute;
  width: 161px;
  right: -14px;
  top: 18px;
}
@media (max-width: 992px) {
  .course-roadmap .ribbon {
    width: 100px;
    right: -10px;
    top: 1px;
  }
}
@media (max-width: 679px) {
  .course-roadmap .ribbon {
    top: 20px;
  }
}
.course-roadmap__header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  color: #33A3B6;
  font-size: 2.4rem;
  line-height: 1.5;
  letter-spacing: 0.06em;
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .course-roadmap__header {
    font-size: 1.8rem;
    gap: 14px;
  }
}
.course-roadmap__header span {
  color: #393407;
  font-size: 2.8rem;
}
@media (max-width: 992px) {
  .course-roadmap__header span {
    font-size: 2.1rem;
  }
}
.course-roadmap__header .point {
  display: grid;
  place-items: center;
  width: 108px;
  height: 108px;
  padding: 10px;
  border-radius: 50%;
  background: var(--green-gradation, linear-gradient(121deg, #09B2BC 0%, #94E5B4 100%));
  color: #FFF;
  text-align: center;
  font-family: var(--font-min);
  font-size: 22px;
  font-weight: bold;
  line-height: 1.3;
  letter-spacing: 0.03em;
  flex-shrink: 0;
}
@media (max-width: 992px) {
  .course-roadmap__header .point {
    width: 68px;
    height: 68px;
    font-size: 1.4rem;
  }
}
@media (max-width: 679px) {
  .course-roadmap__header .point {
    position: absolute;
    top: 15px;
    left: 20px;
  }
}
.course-roadmap__ex {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 52px;
}
@media (max-width: 992px) {
  .course-roadmap__ex {
    font-size: 1.5rem;
  }
}
@media (max-width: 679px) {
  .course-roadmap__ex {
    text-align: left;
  }
}
.course-roadmap__flow {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px;
}
@media (max-width: 992px) {
  .course-roadmap__flow {
    gap: 24px;
  }
}
@media (max-width: 679px) {
  .course-roadmap__flow {
    grid-template-columns: 1fr;
  }
}
.course-roadmap__card {
  background: var(--green-gradation-2, linear-gradient(98deg, #C7E8D6 0%, #F0F8DC 100%));
  padding: 40px 20px 10px 20px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  position: relative;
}
@media (max-width: 679px) {
  .course-roadmap__card {
    padding: 40px 15px 20px 15px;
  }
}
.course-roadmap__card:not(:last-child)::before {
  content: "";
  width: 26px;
  height: 46px;
  background: url("../images/icons/arrow.svg") center top no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: -46px;
  transform: translateY(-50%);
}
@media (max-width: 992px) {
  .course-roadmap__card:not(:last-child)::before {
    width: 10px;
    height: 20px;
    right: -19px;
  }
}
@media (max-width: 679px) {
  .course-roadmap__card:not(:last-child)::before {
    right: 50%;
    top: calc(100% - 9px);
    transform: rotate(90deg);
  }
}
.course-roadmap__card-title {
  display: grid;
  place-items: center;
  width: 180px;
  height: 40px;
  font-size: 1.9rem;
  border-radius: 60px;
  background: var(--green-gradation, linear-gradient(121deg, #09B2BC 0%, #94E5B4 100%));
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 992px) {
  .course-roadmap__card-title {
    width: 140px;
    height: 30px;
    font-size: 1.6rem;
    top: -14px;
  }
}
.course-roadmap__card-title--orange {
  border-radius: 60px;
  background: var(--orange-gradation, linear-gradient(135deg, #F7E542 0%, #F2A13E 100%));
}
.course-roadmap__card-step {
  background: white;
  font-size: 1.8rem;
  text-align: center;
  width: 100%;
  padding: 2px 8px;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .course-roadmap__card-step {
    font-size: 1.6rem;
  }
}
.course-roadmap__card-skill {
  text-align: center;
  margin-top: 0;
  margin-bottom: 22px;
}
.course-roadmap__card-wage {
  text-align: center;
  margin: 0;
}
.course-roadmap__card-wage--lg {
  font-size: 2.3rem;
  font-weight: bold;
  color: #F68C41;
}
@media (max-width: 992px) {
  .course-roadmap__card-wage--lg {
    font-size: 1.5rem;
  }
}

.course-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
@media (max-width: 992px) {
  .course-list {
    gap: 20px;
  }
}
@media (max-width: 679px) {
  .course-list {
    grid-template-columns: 1fr;
  }
}

.course-item {
  background: white;
  padding: 46px 30px 26px;
}
@media (max-width: 992px) {
  .course-item {
    padding: 16px 20px 20px;
  }
}
.course-item__title {
  display: grid;
  place-items: center;
  width: 100%;
  height: 44px;
  font-size: 2.2rem;
  color: white;
  background: var(--gradation-green-bg);
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .course-item__title {
    font-size: 1.8rem;
    height: 38px;
  }
}
.course-item__icon {
  margin-bottom: 36px;
}
@media (max-width: 992px) {
  .course-item__icon {
    margin-bottom: 16px;
  }
}
.course-item__icon img {
  display: block;
  height: 70px;
  margin: auto;
}
@media (max-width: 992px) {
  .course-item__icon img {
    height: 40px;
  }
}
.course-item__feature {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 1.7rem;
}
@media (max-width: 992px) {
  .course-item__feature {
    font-size: 1.6rem;
  }
}
.course-item__feature li {
  position: relative;
  padding-left: 32px;
}
@media (max-width: 679px) {
  .course-item__feature li {
    padding-left: 26px;
  }
}
.course-item__feature li:not(:last-child) {
  margin-bottom: 10px;
}
.course-item__feature li::before {
  content: "";
  width: 24px;
  height: 24px;
  background: url("../images/icons/icon_check_blue.svg") center top no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  top: 1px;
}
@media (max-width: 992px) {
  .course-item__feature li::before {
    width: 20px;
    height: 20px;
    top: 2px;
  }
}

.course-icon-plus {
  display: block;
  margin: 20px auto;
}
@media (max-width: 992px) {
  .course-icon-plus {
    width: 32px;
  }
}

.course-plus-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  background: var(--gradation-green-bg);
  padding: 48px 50px 32px;
  margin-bottom: 100px;
}
@media (max-width: 992px) {
  .course-plus-list {
    gap: 20px;
    padding: 24px 20px 20px;
    margin-bottom: 40px;
  }
}
@media (max-width: 679px) {
  .course-plus-list {
    grid-template-columns: 1fr;
  }
}

.course-plus__title {
  display: grid;
  place-items: center;
  width: 100%;
  height: 48px;
  background: rgba(255, 255, 255, 0.85);
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .course-plus__title {
    height: 38px;
  }
}
.course-plus__title span {
  font-size: 2.2rem;
  font-weight: bold;
  background: var(--green-gradation, linear-gradient(121deg, #09B2BC 0%, #94E5B4 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 992px) {
  .course-plus__title span {
    font-size: 2rem;
  }
}
.course-plus__desc {
  font-size: 1.8rem;
  text-align: center;
  margin: 0;
}
@media (max-width: 992px) {
  .course-plus__desc {
    font-size: 1.6rem;
  }
}

.course-case {
  margin-bottom: 70px;
}
@media (max-width: 679px) {
  .course-case {
    margin-bottom: 40px;
  }
}
.course-case__header {
  margin-bottom: 60px;
  position: relative;
}
@media (max-width: 992px) {
  .course-case__header {
    margin-bottom: 30px;
  }
}
.course-case__header::before {
  content: "";
  display: block;
  width: 304px;
  height: 38px;
  background: url("../images/icons/deco_line_4.svg") center top no-repeat;
  background-size: contain;
  position: absolute;
  bottom: 0;
  left: calc(50% - 9em);
}
.course-case-title {
  font-size: 3.4rem;
  line-height: 1.7;
  text-align: center;
  font-weight: 500;
  margin: 0;
  position: relative;
}
@media (max-width: 992px) {
  .course-case-title {
    font-size: 2.2rem;
  }
}
@media (max-width: 679px) {
  .course-case-title {
    font-size: 1.9rem;
  }
}

.course-case-ex-header {
  width: 715px;
  height: 72px;
  border-radius: 70px;
  background: var(--gradation-green-bg);
  margin: 0 auto 80px;
  display: grid;
  place-items: center;
  font-size: 3rem;
  color: white;
}
@media (max-width: 992px) {
  .course-case-ex-header {
    font-size: 2rem;
    width: 500px;
    max-width: 100%;
    height: 54px;
    margin-bottom: 40px;
  }
}
@media (max-width: 679px) {
  .course-case-ex-header {
    font-size: 1.6rem;
  }
}

.course-case-ex-card {
  max-width: 1080px;
  margin: 0 auto 30px;
  padding: 30px 30px 6px;
  border-radius: 4px;
  border: 4px solid var(--green-gradation, #09B2BC);
  background: rgba(255, 255, 255, 0.7);
}
@media (max-width: 992px) {
  .course-case-ex-card {
    padding: 20px 20px 6px;
  }
}
.course-case-ex-card__header {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 2.6rem;
  font-weight: bold;
  letter-spacing: 0.08em;
  background: var(--green-gradation, linear-gradient(121deg, #09B2BC 0%, #94E5B4 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 992px) {
  .course-case-ex-card__header {
    font-size: 1.8rem;
    gap: 16px;
  }
}
.course-case-ex-card__header-icon {
  display: grid;
  place-items: center;
  width: 140px;
  height: 58px;
  background: var(--gradation-green-bg);
  background-clip: border-box;
  -webkit-background-clip: border-box;
  -webkit-text-fill-color: currentColor;
  font-size: 2.4rem;
  color: white;
}
@media (max-width: 992px) {
  .course-case-ex-card__header-icon {
    font-size: 1.8rem;
    width: 90px;
    height: 36px;
    flex-shrink: 0;
  }
}
.course-case-ex-card__row {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 2.2rem;
  letter-spacing: 0.08em;
  padding: 20px 0;
}
@media (max-width: 992px) {
  .course-case-ex-card__row {
    font-size: 1.6rem;
    gap: 0;
  }
}
@media (max-width: 679px) {
  .course-case-ex-card__row {
    flex-direction: column;
    align-items: flex-start;
  }
}
.course-case-ex-card__row:last-child {
  border-top: 1px solid var(--green-gradation, #09B2BC);
}
.course-case-ex-card__row-header {
  font-weight: bold;
  width: 170px;
  flex-shrink: 0;
}
@media (max-width: 992px) {
  .course-case-ex-card__row-header {
    width: 120px;
  }
}
@media (max-width: 679px) {
  .course-case-ex-card__row-header {
    margin-bottom: 5px;
  }
}
.course-skill__header {
  position: relative;
  margin-bottom: 45px;
}
@media (max-width: 992px) {
  .course-skill__header {
    margin-bottom: 25px;
  }
}
.course-skill__header::before {
  content: "";
  display: block;
  width: 304px;
  height: 38px;
  background: url("../images/icons/deco_line_4.svg") center center no-repeat;
  background-size: contain;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.course-skill__title {
  font-size: 3.4rem;
  letter-spacing: 0.08em;
  text-align: center;
  position: relative;
}
@media (max-width: 992px) {
  .course-skill__title {
    font-size: 2.2rem;
  }
}
.course-skill__title span {
  background: var(--orange-gradation, linear-gradient(135deg, #F7E542 0%, #F2A13E 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 46px;
  font-weight: 700;
}
.course-skill__list {
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 0 12px 0 rgba(7, 52, 58, 0.03);
  max-width: 1080px;
  margin: auto;
  padding: 40px 40px 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  letter-spacing: 0.08em;
}
@media (max-width: 992px) {
  .course-skill__list {
    gap: 20px;
    padding: 20px;
  }
}
@media (max-width: 679px) {
  .course-skill__list {
    grid-template-columns: 1fr;
  }
}
.course-skill__item-header {
  display: flex;
  height: 90px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 9px;
  background: var(--gradation-green-bg);
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .course-skill__item-header {
    height: 72px;
    gap: 6px;
    margin-bottom: 12px;
  }
}
@media (max-width: 679px) {
  .course-skill__item-header {
    flex-direction: row;
    justify-content: flex-start;
    padding: 0 16px;
    height: 52px;
  }
}
.course-skill__item-box {
  background: #F2C83E;
  display: flex;
  width: 110px;
  height: 28px;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  color: white;
}
@media (max-width: 992px) {
  .course-skill__item-box {
    font-size: 1.4rem;
  }
}
.course-skill__item-title {
  font-size: 2.6rem;
  color: white;
  letter-spacing: 0.08em;
  text-align: center;
}
@media (max-width: 992px) {
  .course-skill__item-title {
    font-size: 1.7rem;
  }
}
.course-skill__item-desc {
  font-size: 1.7rem;
  font-weight: normal;
  line-height: 1.8;
  margin: 0;
}
@media (max-width: 992px) {
  .course-skill__item-desc {
    font-size: 1.6rem;
  }
}

.course-footer {
  background: url("../images/circle_bg.png") center bottom -30px no-repeat;
  padding-top: 56px;
  padding-bottom: 148px;
  margin-bottom: 140px;
}
@media (max-width: 992px) {
  .course-footer {
    padding-top: 15px;
    padding-bottom: 98px;
    margin-bottom: 80px;
  }
}
.course-footer-title {
  font-size: 3.6rem;
  line-height: 220%;
  letter-spacing: 0.08em;
  text-align: center;
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .course-footer-title {
    font-size: 2.2rem;
    margin-bottom: 0;
  }
}
.course-footer-price {
  margin: 0 auto 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}
@media (max-width: 992px) {
  .course-footer-price {
    margin-bottom: 10px;
  }
}
.course-footer-price__icon {
  display: grid;
  place-items: center;
  border-radius: 50%;
  width: 96px;
  height: 96px;
  background: var(--orange_gradation, linear-gradient(135deg, #F7E542 0%, #F2A13E 100%));
  color: #FFF;
  text-align: center;
  font-size: 2.7rem;
  font-weight: bold;
  line-height: 120%;
  letter-spacing: 0.03em;
}
@media (max-width: 992px) {
  .course-footer-price__icon {
    font-size: 1.5rem;
    width: 48px;
    height: 48px;
  }
}
.course-footer-price__num {
  display: flex;
  align-items: flex-end;
  font-size: 7.4rem;
  line-height: 100%;
  background: var(--orange_gradation, linear-gradient(135deg, #F7E542 0%, #F2A13E 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-bottom: 16px;
}
@media (max-width: 992px) {
  .course-footer-price__num {
    font-size: 3.8rem;
    padding-bottom: 6px;
  }
}
.course-footer-price__yen {
  font-size: 3.2rem;
  line-height: 1;
  text-align: center;
  padding-bottom: 7px;
}
@media (max-width: 992px) {
  .course-footer-price__yen {
    font-size: 2rem;
    padding-bottom: 2px;
  }
}
.course-footer-price__tax {
  font-size: 1.4rem;
  font-weight: bold;
}
@media (max-width: 992px) {
  .course-footer-price__tax {
    font-size: 1rem;
  }
}
.course-footer .square-button {
  margin: auto;
}

.faq {
  background: #F4F8F1;
  max-width: 1080px;
  margin-inline: auto;
}
.faq-container {
  margin-top: -100px;
  padding: 0 100px 100px;
}
@media (max-width: 992px) {
  .faq-container {
    margin-top: -56px;
    padding: 0 20px 40px;
  }
}
.faq .section-title {
  background: url("../images/title-faq.svg") center top no-repeat;
  background-size: 313px;
  padding-top: 158px;
  top: -105px;
}
@media (max-width: 992px) {
  .faq .section-title {
    background-size: 163px;
    padding-top: 112px;
    top: -60px;
  }
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.faq-item {
  background: white;
}
.faq-q {
  padding: 24px 98px;
  position: relative;
  font-size: 1.9rem;
  line-height: 1.5;
  cursor: pointer;
}
@media (max-width: 992px) {
  .faq-q {
    font-size: 1.6rem;
    padding: 18px 60px;
  }
}
.faq-q::before {
  content: "";
  display: block;
  width: 50px;
  height: 50px;
  background: url("../images/icons/icon_Q.svg") center center no-repeat;
  background-size: contain;
  position: absolute;
  left: 24px;
  top: 14px;
}
@media (max-width: 992px) {
  .faq-q::before {
    width: 30px;
    height: 30px;
    left: 15px;
    top: 17px;
  }
}
.faq .faq__toggle {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  display: grid;
  width: 40px;
  height: 40px;
  cursor: pointer;
  padding-top: 12px;
}
@media (max-width: 992px) {
  .faq .faq__toggle {
    right: 8px;
  }
}
.faq .faq__toggle .status-icon {
  width: 20px;
}
.faq-a {
  padding: 0 24px 0 98px;
  position: relative;
  font-size: 1.7rem;
  font-weight: normal;
  line-height: 1.7;
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows 0.3s ease;
}
@media (max-width: 992px) {
  .faq-a {
    font-size: 1.6rem;
    padding: 0 18px 0 60px;
  }
}
.faq-a::before {
  content: "";
  display: block;
  width: 50px;
  height: 50px;
  background: url("../images/icons/icon_a.svg") center center no-repeat;
  background-size: contain;
  position: absolute;
  left: 24px;
  top: 20px;
}
@media (max-width: 992px) {
  .faq-a::before {
    width: 30px;
    height: 30px;
    left: 15px;
    top: 16px;
  }
}
.faq-a .note {
  font-size: 1.4rem;
  font-weight: bold;
  display: block;
}
.faq-a__inner {
  min-height: 0;
}
.faq-a[aria-hidden=false] {
  grid-template-rows: 1fr;
  overflow: visible;
  padding: 0 24px 24px 98px;
}
@media (max-width: 992px) {
  .faq-a[aria-hidden=false] {
    padding: 0 18px 18px 60px;
  }
}
.faq-a ul + .note {
  padding-left: 17px;
  margin-top: -14px;
}

.try {
  margin-bottom: 24px;
}
.try .accent-image--try {
  height: 580px;
}
@media (max-width: 992px) {
  .try .accent-image--try {
    height: 300px;
  }
}
.try .accent-image-text {
  bottom: 50%;
  transform: translate(-50%, 50%);
}
.try .section-title {
  background: url("../images/titile-try-it.svg") center top no-repeat;
  background-size: 655px;
  padding-top: 231px;
  padding-bottom: 18px;
  margin-top: -150px;
  font-size: 3.8rem;
  letter-spacing: -0.02em;
}
@media (max-width: 992px) {
  .try .section-title {
    background-size: 334px;
    font-size: 2.2rem;
    padding-top: 114px;
    margin-top: -80px;
  }
}
.try-circle-section {
  background: url("../images/circle_bg.png") center bottom -30px no-repeat;
  padding-inline: 20px;
  padding-bottom: 100px;
}
.try-desc {
  font-size: 2rem;
  font-weight: 400;
  line-height: 170%;
  text-align: center;
}
@media (max-width: 992px) {
  .try-desc {
    font-size: 1.6rem;
  }
}
.try .square-button {
  margin: 0 auto;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.video-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.video-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
}

.video-modal__content {
  position: relative;
  z-index: 1;
  width: min(90%, 800px);
}

.video-modal__video {
  width: 100%;
}

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