/* ==========================================================================
   01. reset / base
   ========================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body, div, span, applet, object, iframe,
h1,h2,h3,h4,h5,h6,p,blockquote,pre,
a,abbr,acronym,address,big,cite,code,
del,dfn,em,img,ins,kbd,q,s,samp,
small,strike,strong,sub,sup,tt,var,
b,u,i,center,
dl,dt,dd,menu,ol,ul,li,
fieldset,form,label,legend,
caption,tbody,tfoot,thead,tr,th,td {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
}

body {
  font-family: var(--font-family-base);
  line-height: 1.6;
  color: #102c2c;
  background: var(--color-white);
  overflow-x: hidden;

  @media screen and (max-width: 1080px) {
    overflow-x: hidden;
  }
}

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

.l-page {
  width: 100%;
  min-height: 100vh;
  background: var(--color-white);

  @media screen and (max-width: 1080px) {
    min-height: auto;
  }
}

.l-page__viewport {
  width: 100%;
  overflow-x: hidden;

  @media screen and (max-width: 1080px) {
    overflow: hidden;
    height: var(--sp-canvas-height, auto);
  }
}

.l-page__scale {
  width: 100%;

  @media screen and (max-width: 1080px) {
    width: var(--sp-layout-width);
    margin-left: calc(50% - (var(--sp-layout-width) / 2));
    transform: scale(var(--sp-canvas-scale, 1));
    transform-origin: top center;
  }
}

.l-page__canvas {
  width: var(--max-layout);
  min-width: var(--max-layout);
  min-height: 100vh;
  margin-left: calc(50% - (var(--max-layout) / 2));
  background: var(--color-white);

  @media screen and (max-width: 1080px) {
    width: var(--sp-layout-width);
    min-width: var(--sp-layout-width);
    min-height: auto;
    margin-left: 0;
  }
}


/* ==========================================================================
   02. variables
   ========================================================================== */
:root {
  --color-primary: #00a99d;
  --color-secondary: #ff7300;
  --color-white: #fff;
  --color-text: #1b2c2c;
  --color-text-heading: #2f3132;
  --color-text-strong: #263a4c;
  --color-text-muted: #4a4a4a;
  --color-bg: #f6fffe;
  --color-brand-green: #29a89b;
  --color-accent-strong: #ff6d00;
  --color-section-reasons-bg: #d2ece9;
  --color-section-teacher-bg: #2faea3;
  --color-card-soft-bg: #eef8f7;
  --color-tag-pink: #ff4c8e;
  --color-tag-red: #ff3e3e;
  --color-tag-purple: #a643e2;
  --color-tag-blue: #2b67ce;
  --font-family-base: "Noto Sans JP", sans-serif;
  --font-size-base: 16px;
  --radius: 8px;
  --max-layout: 1920px;
  --max-content: 1200px;
  --content-width: 1100px;
  --sp-layout-width: 730px;
  --gap: 16px;
}

/* ==========================================================================
   03. utilities / shared wrappers
   ========================================================================== */
.u-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

/* セクションの full width  (1920pxキャンバス内で100%) */
.l-section__full {
  width: 100%;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}

/* 本文エリアなどを絞りたい場合の inner */
.l-section__inner {
  width: min(100%, var(--content-width));
  max-width: var(--content-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}
/* ==========================================================================
   04. shared layout: header / hero shell
   ========================================================================== */
/* Header */
.p-header {
  width: 100%;
  background-color: var(--color-white);
  border-bottom: 1px solid #e6f0ef;
  position: sticky;
  top: 0;
  z-index: 100;
}

.p-header__inner {
  width: min(100%, 1180px);
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;

  @media screen and (max-width: 1080px) {
    padding: 0 12px;
    justify-content: center;
    height: 60px;
  }
}

.p-header__logo {
  @media screen and (max-width: 1080px) {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

.p-header__logo img {
  width: 312px;
  max-width: 100%;
  height: auto;

  @media screen and (max-width: 1080px) {
    width: 230px;
  }
}

/* Hero shell */
.p-hero {
  padding: 0;
  position: relative;
  background: var(--color-white);
}

.p-hero__viewport {
  width: 100%;
  margin: 0 auto;

  @media screen and (max-width: 1080px) {
    width: 100%;
    margin: 0;
  }
}

.p-hero__inner {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  display: block;
  background-color: #e7fff8;
  overflow: hidden;

  @media screen and (max-width: 1080px) {
    width: 100%;
    padding: 0;
  }
}

.p-hero__picture {
  display: block;
  width: 100%;
}

.p-hero__image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Header CTA */
.p-header__cta-group {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  justify-content: flex-end;
  align-items: center;

  @media screen and (max-width: 1080px) {
    display: none;
  }
}

.p-header__cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  line-height: 0;
}

.p-header__cta-btn img {
  display: block;
  width: auto;
  max-width: none;
  height: 60px;

  @media screen and (max-width: 1080px) {
    height: 48px;
  }
}

/* ==========================================================================
   05. shared page components: CTA / fixed footer
   ========================================================================== */
/* CTA blocks */
.p-cta-top {
  position: relative;
  background: #fff;
  padding-top: 0;
  padding-bottom: 48px;
  overflow: hidden;

  @media screen and (max-width: 1080px) {
    padding-top: 0;
    padding-bottom: 32px;
  }
}

.p-cta-top::before {
  content: "";
  position: absolute;
  top: 10px;
  left: calc(50% + 218px);
  width: min(31vw, 290px);
  aspect-ratio: 361 / 227;
  background: url("../images/cta-world-logo.webp") center / contain no-repeat;
  pointer-events: none;

  @media screen and (max-width: 1080px) {
    top: 52px;
    left: calc(50% + 84px);
    width: min(66vw, 300px);
  }
}

.p-cta-top__inner {
  display: grid;
  justify-items: center;
  row-gap: 18px;
  padding-top: 0;
  padding-bottom: 16px;
  position: relative;
  z-index: 1;

  @media screen and (max-width: 1080px) {
    row-gap: 14px;
    padding-top: 0;
    padding-bottom: 14px;
  }
}

.p-cta-top__bubble-stage {
  position: relative;
  width: min(100%, 430px);
  padding-top: 0;

  @media screen and (max-width: 1080px) {
    width: min(100%, 520px);
  }
}

.p-cta-top__lead {
  margin: 0 0 1.1em;
  position: relative;
  top: auto;
  left: 0;
  width: 100%;
  color: #2f2f2f;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
  text-align: center;
}

.p-cta-top__bubble-wrap {
  position: relative;
  width: 100%;
}

.p-cta-top__bubble {
  display: block;
  width: 100%;
  height: auto;
}

.p-cta-top__bubble-text {
  position: absolute;
  inset: 0 0 18% 0;
  margin: 0;
  color: #fff;
  font-size: 32px;
  font-weight: bold;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  pointer-events: none;

  @media screen and (max-width: 1080px) {
    font-size: 36px;
  }
}

.p-cta-top__title-wrap {
  width: 100%;
  text-align: center;

  @media screen and (max-width: 1080px) {
    width: min(100%, 640px);
  }
}

.p-cta-top__title {
  display: inline-block;
  margin: 0;
  padding-bottom: 18px;
  color: #333;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: 0.02em;
  text-align: center;
  border-bottom: 6px dotted #ff7a00;

  @media screen and (max-width: 1080px) {
    font-size: 60px;
    padding-bottom: 12px;
    line-height: 1.2;
    border-bottom: 0;
  }
}

.p-cta-top__title-break {
  display: none;

  @media screen and (max-width: 1080px) {
    display: inline;
  }
}

.p-cta-top__title-line {
  display: inline;

  @media screen and (max-width: 1080px) {
    display: inline-block;
    padding-bottom: 12px;
    border-bottom: 4px dotted #ff7a00;
  }
}

.p-cta-top__buttons {
  width: min(100%, 930px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 16px;
  justify-items: center;
  align-items: start;
  padding-top: 8px;

  @media screen and (max-width: 1080px) {
    grid-template-columns: 1fr;
    width: 100%;
    gap: 6px;
    padding-top: 4px;
  }
}

.p-cta-top__button-link {
  display: block;
  width: 100%;
  max-width: 452px;

  @media screen and (max-width: 1080px) {
    grid-column: auto;
    max-width: 100%;
  }
}

.p-cta-top__button-link--docs {
  grid-column: 1 / -1;
  max-width: 436px;

  @media screen and (max-width: 1080px) {
    grid-column: auto;
    max-width: 100%;
  }
}

.p-cta-top__button-image {
  display: block;
  width: 100%;
  height: auto;
}

.p-fixed-footer-sp {
  display: none;

  @media screen and (max-width: 480px) {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 80;
    display: block;
    padding: 14px 4px calc(16px + env(safe-area-inset-bottom));
    margin-left: 9px;
    /* background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 -10px 24px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(8px); */
  }

  /* @media (max-width: 390px) {
    padding: 12px 8px calc(12px + env(safe-area-inset-bottom));
  } */
}

.p-cta-bottom {
  @media screen and (max-width: 1080px) {
    padding-top: 34px;
    padding-bottom: 16px;
  }
}

.p-footer {
  @media screen and (max-width: 1080px) {
    padding-top: 6px;
    padding-bottom: calc((132px / var(--sp-canvas-scale, 1)) + env(safe-area-inset-bottom));
  }

  @media (max-width: 390px) {
    padding-bottom: calc((144px / var(--sp-canvas-scale, 1)) + env(safe-area-inset-bottom));
  }
}

.p-footer__copy {
  @media screen and (max-width: 1080px) {
    font-size: 15px;
    line-height: 1.65;
  }

  @media (max-width: 390px) {
    font-size: 14px;
  }
}

.l-page__canvas {
  @media screen and (max-width: 1080px) {
    padding-bottom: calc((116px / var(--sp-canvas-scale, 1)) + env(safe-area-inset-bottom));
  }
}

.p-fixed-footer-sp__inner {
  @media screen and (max-width: 1080px) {
    display: flex;
    grid-template-columns: 2.2fr 1.2fr 1.2fr;
    gap: 4px;
    width: min(100%, 720px);
    margin: 0 auto;
    justify-content: center;
  }

  @media (max-width: 390px) {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 6px;
  }
}

/* .p-fixed-footer-sp__link {
  @media screen and (max-width: 1080px) {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 72px;
    padding: 10px 28px 10px 16px;
    border-radius: 18px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.14);
    text-decoration: none;
  }

  @media (max-width: 390px) {
    min-height: 64px;
    padding: 8px 22px 8px 10px;
    border-radius: 15px;
  }
}

.p-fixed-footer-sp__link::after {
  @media screen and (max-width: 1080px) {
    content: "";
    position: absolute;
    top: 50%;
    right: 12px;
    width: 11px;
    height: 11px;
    border-top: 3px solid currentColor;
    border-right: 3px solid currentColor;
    transform: translateY(-50%) rotate(45deg);
  }

  @media (max-width: 390px) {
    right: 10px;
    width: 10px;
    height: 10px;
  }
} */

/* .p-fixed-footer-sp__link--trial {
  background: #f83d3d;
  color: #fff;
}

.p-fixed-footer-sp__link--docs {
  background: #40b97a;
  color: #fff;
}

.p-fixed-footer-sp__link--corp {
  background: #53aae3;
  color: #fff;
} */

/* .p-fixed-footer-sp__text {
  @media screen and (max-width: 1080px) {
    font-family: var(--font-family-base);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.16;
    text-align: center;
    letter-spacing: 0;
    word-break: keep-all;
  }

  @media (max-width: 390px) {
    font-size: 12px;
    line-height: 1.08;
  }
}

.p-fixed-footer-sp__link--trial .p-fixed-footer-sp__text {
  @media screen and (max-width: 1080px) {
    font-size: 15px;
  }

  @media (max-width: 390px) {
    font-size: 13px;
  }
}

.p-fixed-footer-sp__link--corp .p-fixed-footer-sp__text {
  @media screen and (max-width: 1080px) {
    font-size: 14px;
  }

  @media (max-width: 390px) {
    font-size: 12px;
  }
} */

/* ==========================================================================
   06. page sections
   ========================================================================== */
/* Lead-in */
.p-lead-in__images {
  width: min(100%, 1500px);
  margin: 12px auto 0;
  display: grid;
  gap: clamp(18px, 2.4vw, 34px);

  @media screen and (max-width: 1080px) {
    gap: 38px;
  }
}

.p-lead-in__hero {
  position: relative;
  width: min(100%, 980px);
  margin: 0 auto;

  @media screen and (max-width: 1080px) {
    width: min(100%, 710px);
  }
}

.p-lead-in__hero-bg {
  display: block;
  width: 100%;
  height: auto;
}

.p-lead-in__hero-copy {
  position: absolute;
  inset: 0;
  color: #1b486b;
}

.p-lead-in__top-tag {
  position: absolute;
  margin: 0;
  font-size: clamp(25px, 4.4vw, 42px);
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;

  @media screen and (max-width: 1080px) {
    font-size: 44px;
  }
}

.p-lead-in__top-tag--government {
  top: 22.5%;
  left: 26%;

  @media screen and (max-width: 1080px) {
    top: 22.6%;
    left: 23.5%;
  }
}

.p-lead-in__top-tag--corporate {
  top: 22.5%;
  left: calc(49.6%);

  @media screen and (max-width: 1080px) {
    top: 22.6%;
    left: 47.3%;
  }
}

.p-lead-in__top-suffix {
  position: absolute;
  top: 24.1%;
  left: 63.4%;
  margin: 0;
  font-size: 38px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.02em;
  white-space: nowrap;

  @media screen and (max-width: 1080px) {
    top: 22.6%;
    left: 62.2%;
    font-size: 44px;
  }
}

.p-lead-in__top-main {
  position: absolute;
  top: 66%;
  left: 16%;
  margin: 0;
  font-size: clamp(24px, 5vw, 50px);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.02;
  white-space: nowrap;
  transform: translateY(-50%);

  @media screen and (max-width: 1080px) {
    top: 66.2%;
    left: 11.6%;
    font-size: 44px;
    white-space: nowrap;
  }
}

.p-lead-in__offer {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 714fr) minmax(0, 786fr);
  align-items: stretch;
  gap: 0;
  width: min(100%, 1500px);
  margin: 0 auto;

  @media screen and (max-width: 1080px) {
    grid-template-columns: 1fr;
    width: min(100%, 720px);
  }
}

.p-lead-in__photo,
.p-lead-in__panel {
  position: relative;
  overflow: hidden;
  border-radius: 18px;

  @media screen and (max-width: 1080px) {
    border-radius: 20px;
  }
}

.p-lead-in__photo-image,
.p-lead-in__panel-bg {
  display: block;
  width: 100%;
  height: auto;
}

.p-lead-in__photo-image {
  height: 100%;
  object-fit: cover;
}

.p-lead-in__panel-body {
  position: absolute;
  inset: 0;
  color: #233b4f;

  @media screen and (max-width: 1080px) {
    color: #233b4f;
  }
}

.p-lead-in__bottom-badge {
  position: absolute;
  top: -11.5%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 92px;
  aspect-ratio: 1;
  margin: 0;
  border-radius: 50%;
  background: #233b4f;
  color: #fff;
  font-size: 28px;
  font-weight: 600;
  line-height: 1;
  z-index: 4;
  transform: translateX(-50%);

  @media screen and (max-width: 1080px) {
    top: 8px;
    left: 50%;
    width: 120px;
    font-size: 32px;
    transform: translate(-50%, -50%);
  }
}

.p-lead-in__copy-block {
  position: absolute;
  top: 12.8%;
  left: 14.4%;
  width: 71%;
  height: 46%;

  @media screen and (max-width: 1080px) {
    left: 13%;
    width: 74%;
    top: 10.2%;
  }
}

.p-lead-in__bottom-line {
  margin: 0;
  font-weight: 600;
  line-height: 1.06;
}

.p-lead-in__bottom-line--top {
  position: absolute;
  top: 0;
  left: 3.8%;
  display: flex;
  align-items: baseline;
  gap: 0.08em;
  color: #233b4f;
  font-size: 24px;
  white-space: nowrap;

  @media screen and (max-width: 1080px) {
    left: 3%;
    top: 0;
    font-size: 30px;
  }
}

.p-lead-in__bottom-quote {
  position: relative;
  color: var(--color-white);
  font-size: 1.72em;
  line-height: 1;
  -webkit-text-stroke: 0.105em var(--color-secondary);
  paint-order: stroke fill;
  z-index: 2;
}

.p-lead-in__bottom-highlight {
  position: relative;
  display: inline-block;
  padding: 0.24em 0.48em 0.3em;
  color: var(--color-white);
  font-size: 1.72em;
  line-height: 1;
  z-index: 1;
}

.p-lead-in__bottom-highlight::before {
  content: "";
  position: absolute;
  inset: 0;
  left: -0.34em;
  right: -0.34em;
  background: var(--color-secondary);
  z-index: -1;
}

.p-lead-in__bottom-inline {
  color: #22384d;
  font-size: 1.12em;
}

.p-lead-in__bottom-line--main {
  position: absolute;
  top: 39.5%;
  left: 1.8%;
  font-size: 41px;
  letter-spacing: 0.01em;
  white-space: nowrap;
  background: linear-gradient(90deg, #ff6a00 0%, #ff8a00 50%, #ffb400 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;

  @media screen and (max-width: 1080px) {
    top: 39%;
    left: 50%;
    font-size: 58px;
    transform: translateX(-50%);
  }
}

.p-lead-in__bottom-line--sub {
  position: absolute;
  top: 72%;
  left: 50%;
  display: inline-block;
  padding: 0.12em 1.18em 0.22em;
  color: #17a5a1;
  font-size: 28px;
  line-height: 1;
  z-index: 0;
  transform: translateX(-50%);

  @media screen and (max-width: 1080px) {
    top: 80%;
    left: 50%;
    padding: 0.18em 1.54em 0.3em;
    font-size: 30px;
    transform: translateX(-50%);
  }
}

.p-lead-in__bottom-line--sub::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  clip-path: polygon(50% 100%, -8% 0, 108% 0);
  z-index: -1;
}

.p-lead-in,
.p-cta-top,
.p-reasons {
  padding: 48px 0;
}

.p-voice__list {
  display: grid;
  gap: 16px;
}

/* Shared section spacing / backgrounds */
.p-reasons {
  position: relative;
  overflow: hidden;
  background: var(--color-section-reasons-bg);
}

.p-trust {
  padding: 56px 0 60px;
  background: var(--color-brand-green);
  border-top: 1px solid var(--color-brand-green);
  border-bottom: 1px solid var(--color-brand-green);

  @media screen and (max-width: 1080px) {
    padding-top: 76px;
    padding-bottom: 60px;
  }
}

.p-cta-mid {
  padding: 56px 0 52px;

  @media screen and (max-width: 1080px) {
    padding: 42px 0 38px;
  }
}

.p-teacher {
  padding: 56px 0 52px;

  @media screen and (max-width: 1080px) {
    padding: 44px 0 40px;
  }
}

.p-voice {
  padding: 84px 0;

  @media screen and (max-width: 1080px) {
    padding: 84px 0 84px;
  }
}

.p-flow {
  padding: 84px 0 56px;

  @media screen and (max-width: 1080px) {
    padding: 84px 0 84px;
  }
}

.p-cta-bottom {
  padding-top: 56px;
  padding-bottom: 32px;

  @media screen and (max-width: 1080px) {
    padding-top: 40px;
    padding-bottom: 22px;
  }
}

.p-footer {
  padding-top: 12px;
  padding-bottom: 40px;
  background: var(--color-white);

  @media screen and (max-width: 1080px) {
    padding-top: 8px;
    padding-bottom: 28px;
  }
}

.p-footer__copy {
  margin: 0;
  text-align: center;
  font-family: var(--font-family-base);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.8;
  color: var(--color-text-muted);
}

/* Trust */
.p-trust__inner {
  position: relative;
  min-height: 910px;

  @media screen and (max-width: 1080px) {
    min-height: 1790px;
  }
}

.p-trust__mark {
  position: absolute;
  display: block;
  width: auto;
  height: auto;
}

.p-trust__mark--01 {
  top: 492px;
  right: 64px;
  width: 31px;
  z-index: 3;

  @media screen and (max-width: 1080px) {
    top: 840px;
    right: 28px;
    width: 40px;
  }
}

.p-trust__mark--02 {
  top: 494px;
  left: 64px;
  width: 32px;
  z-index: 3;

  @media screen and (max-width: 1080px) {
    top: 840px;
    left: 28px;
    width: 40px;
  }
}

.p-trust__mark--03 {
  top: 42px;
  left: 44px;
  width: min(57.75%, 495px);

  @media screen and (max-width: 1080px) {
    top: -18px;
    left: 50%;
    width: 70%;
    transform: translateX(-50%);
  }
}

.p-trust__mark--04 {
  top: 40px;
  right: 44px;
  width: min(53%, 455px);

  @media screen and (max-width: 1080px) {
    top: 204px;
    left: 50%;
    right: auto;
    width: 88%;
    transform: translateX(-50%);
  }
}

.p-trust__top-message {
  position: absolute;
  z-index: 1;
}

.p-trust__top-message {
  top: 82px;
  left: 26.8%;
  width: 36%;
  margin: 0;
  color: #fff;
  font-family: var(--font-family-base);
  font-size: 42px;
  font-weight: 700;
  line-height: 1.24;
  letter-spacing: 0.02em;
  text-align: center;
  transform: translateX(-50%);

  @media screen and (max-width: 1080px) {
    top: 20px;
    left: 50%;
    width: 62%;
    font-size: 45px;
    line-height: 1.22;
    transform: translateX(-50%);
  }
}

.p-trust__speech {
  position: absolute;
  left: 50%;
  top: 290px;
  display: block;
  width: 254px;
  height: auto;
  transform: translateX(-50%);
  z-index: 2;

  @media screen and (max-width: 1080px) {
    top: 516px;
    width: 290px;
  }
}

.p-trust__panel {
  position: absolute;
  left: 50%;
  top: 308px;
  width: min(100%, 1116px);
  min-height: 486px;
  background: #fff;
  border-radius: 30px;
  transform: translateX(-50%);
  padding: 82px 34px 34px;

  @media screen and (max-width: 1080px) {
    top: 550px;
    width: calc(100% - 20px);
    min-height: 1230px;
    border-radius: 24px;
    padding: 82px 20px 30px;
  }
}

.p-trust__speech-label {
  position: absolute;
  top: 299px;
  left: 50%;
  width: 174px;
  margin: 0;
  color: #fff;
  font-family: var(--font-family-base);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  transform: translateX(-50%);
  z-index: 3;

  @media screen and (max-width: 1080px) {
    top: 528px;
    width: 220px;
    font-size: 29px;
    white-space: nowrap;
  }
}

.p-trust__heading {
  margin: 0;
  color: #263a4c;
  font-family: var(--font-family-base);
  font-size: 48px;
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: 0.01em;
  text-align: center;

  @media screen and (max-width: 1080px) {
    margin-top: -2%;
    font-size: 42px;
    line-height: 1.34;
    text-align: center;
  }
}

.p-trust__heading br,
.p-trust__lead br {
  display: none;

  @media screen and (max-width: 1080px) {
    display: inline;
  }
}

.p-trust__heading-highlight {
  position: relative;
  display: inline-block;
  margin-right: 0.08em;
  padding: 0 12px 4px;
  color: #fff;
  z-index: 1;

  @media screen and (max-width: 1080px) {
    margin-right: 0;
    padding: 0 10px 4px;
  }
}

.p-trust__heading-highlight::before {
  content: "";
  position: absolute;
  inset: 0;
  left: -18px;
  right: -18px;
  background: var(--color-accent-strong);
  z-index: -1;

  @media screen and (max-width: 1080px) {
    left: -9px;
    right: -9px;
  }
}

.p-trust__heading-quote {
  position: relative;
  display: inline-block;
  margin: 0 0.06em;
  color: var(--color-white);
  -webkit-text-stroke: 4px var(--color-accent-strong);
  paint-order: stroke fill;
  z-index: 2;

  @media screen and (max-width: 1080px) {
    -webkit-text-stroke-width: 3.2px;
  }
}

.p-trust__lead {
  position: relative;
  margin: 26px 0 26px;
  color: #263a4c;
  font-family: var(--font-family-base);
  font-size: 25px;
  font-weight: 700;
  line-height: 1.7;
  text-align: center;

  @media screen and (max-width: 1080px) {
    margin: 28px 0 2px;
    font-size: 30px;
    line-height: 1.68;
  }
}

.p-trust__lead span {
  display: inline-block;
  padding: 0 0.1em;
  background: linear-gradient(transparent 64%, #ffe7a9 64%);
  font-size: 1.38em;
}

.p-trust__lesson-card {
  position: relative;
  display: block;
}

.p-trust__lesson-title {
  position: absolute;
  top: 6.8%;
  left: 50%;
  width: 82%;
  margin: 0;
  color: #008f95;
  font-family: var(--font-family-base);
  font-size: 23px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  transform: translateX(-50%);
  z-index: 1;

  @media screen and (max-width: 1080px) {
    width: 38%;
    font-size: 28px;
    line-height: 1.38;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
  }
}

.p-trust__lesson-card:nth-child(2) .p-trust__lesson-title br:first-of-type {
  display: none;

  @media screen and (max-width: 1080px) {
    display: inline;
  }
}

.p-trust__lessons {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;

  @media screen and (max-width: 1080px) {
    grid-template-columns: 1fr;
    gap: 0px;
  }
}

.p-trust__lesson {
  position: relative;
  display: block;
  width: 100%;
}

.p-trust__lesson-image {
  display: block;
  width: 100%;
  max-width: 300px;
  height: auto;
  margin: 0 auto;

  @media screen and (max-width: 1080px) {
    max-width: 100%;
    margin-top: -15px;
  }
}

.p-trust__lesson-card:nth-child(1) .p-trust__lesson-title {
  @media screen and (max-width: 1080px) {
    left: 6%;
    width: 42%;
  }
}

.p-trust__lesson-card:nth-child(2) .p-trust__lesson-title {
  @media screen and (max-width: 1080px) {
    left: auto;
    right: 8%;
  }
}

.p-trust__lesson-card:nth-child(3) .p-trust__lesson-title {
  @media screen and (max-width: 1080px) {
    left: 8%;
  }
}

/* Reasons */
.p-reasons::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: max(100%, 1440px);
  aspect-ratio: 2880 / 696;
  background: url("../images/reasons-bg-ellipse-pc.webp") center top / 100% 100% no-repeat;
  transform: translateX(-50%);
  z-index: 0;
  pointer-events: none;
}

.p-reasons__inner {
  position: relative;
  z-index: 1;
}

.p-reasons__hero {
  position: relative;
  width: min(100%, 1120px);
  margin: 0 auto;
  padding-top: 10px;
  text-align: center;
  z-index: 1;
}

.p-reasons__people {
  display: block;
  width: min(100%, 1490px);
  height: auto;
  margin: 0 auto -56px 24px;
  position: relative;
  z-index: 1;
}

.p-reasons__speech-wrap {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(100%, 470px);
  transform: translateX(-50%);
}

.p-reasons__speech {
  display: block;
  width: 100%;
  height: auto;
}

.p-reasons__speech-text {
  position: absolute;
  inset: 0;
  margin: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  color: #fff;
  font-family: var(--font-family-base);
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
  padding-top: 13px;
  text-align: center;
  white-space: nowrap;
}

.p-reasons__title {
  position: absolute;
  top: 120px;
  left: 50%;
  margin: 0;
  transform: translateX(-50%);
  color: var(--color-brand-green);
  font-family: var(--font-family-base);
  font-size: 82px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}

.p-reasons__cards {
  list-style: none;
  width: min(100%, 1120px);
  margin: -88px auto 0;
  padding: 0;
  display: grid;
  gap: 68px;
  position: relative;
  z-index: 3;
}

.p-reasons__card {
  position: relative;
  padding-top: 0;
}

.p-reasons__card-box {
  position: relative;
  z-index: 1;
  background: #fff;
  border: 3px solid #36b3a7;
  border-radius: 20px;
  box-shadow: 0 14px 34px rgba(16, 78, 75, 0.1);
  overflow: hidden;
}

.p-reasons__card-number {
  position: absolute;
  top: 0;
  left: 50%;
  width: 74px;
  height: 74px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  border-radius: 50%;
  background: #36b3a7;
  color: #fff;
  padding-top: 5px;
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.p-reasons__card-mark {
  position: absolute;
  top: 26px;
  width: 58px;
  height: auto;
  opacity: 0.9;
}

.p-reasons__card-mark--left {
  left: 28px;
}

.p-reasons__card-mark--right {
  right: 28px;
}

.p-reasons__card-body {
  min-height: 448px;
  padding: 34px 30px 30px;
}

.p-reasons__card-header--01 {
  position: absolute;
  top: 44px;
  left: 50%;
  width: calc(100% - 112px);
  height: 132px;
  transform: translateX(-50%);
  text-align: center;
}

.p-reasons__card-header--02 {
  position: absolute;
  top: 44px;
  left: 50%;
  width: calc(100% - 112px);
  height: 132px;
  transform: translateX(-50%);
  text-align: center;
}

.p-reasons__card-header--03 {
  position: absolute;
  top: 44px;
  left: 50%;
  width: calc(100% - 112px);
  height: 132px;
  transform: translateX(-50%);
  text-align: center;
}

.p-reasons__card-header--04 {
  position: absolute;
  top: 44px;
  left: 50%;
  width: calc(100% - 112px);
  height: 132px;
  transform: translateX(-50%);
  text-align: center;
}

.p-reasons__eyebrow {
  position: absolute;
  top: 6%;
  left: 50%;
  margin: 0;
  color: #263a4c;
  font-family: var(--font-family-base);
  font-size: clamp(18px, 2.7vw, 24px);
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
  transform: translateX(-50%);
}

.p-reasons__heading {
  position: absolute;
  top: 42%;
  left: 50%;
  margin: 0;
  color: #263a4c;
  font-family: var(--font-family-base);
  font-size: 40px;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  white-space: nowrap;
  transform: translateX(-50%);
}

.p-reasons__heading-highlight {
  display: inline-block;
  margin-right: 0.08em;
  padding: 0 0.08em;
  color: var(--color-accent-strong);
  background: linear-gradient(transparent 62%, #fff6c7 62%);
}

.p-reasons__heading-highlight--03 {
  margin-right: 0.04em;
}

.p-reasons__heading-highlight-word,
.p-reasons__heading-highlight-number {
  display: inline-block;
  line-height: 1;
}

.p-reasons__heading-highlight-word {
  font-size: 1.38em;
}

.p-reasons__heading-highlight-number {
  font-size: 1.74em;
}

.p-reasons__heading-connector,
.p-reasons__heading-rest {
  color: #263a4c;
}

.p-reasons__heading-line {
  display: inline;
}

.p-reasons__heading-line--03-primary {
  white-space: nowrap;
}

.p-reasons__heading-rest--inline {
  display: inline;
}

.p-reasons__heading-rest--block {
  display: inline;
}

.p-reasons__heading-rest--03-inline,
.p-reasons__heading-rest--03-block {
  white-space: nowrap;
}

.p-reasons__eyebrow--02 {
  top: 10%;
  left: 50%;
  font-size: clamp(18px, 2.7vw, 24px);
}

.p-reasons__heading--02 {
  top: 42%;
  left: 50%;
  font-size: 40px;
  letter-spacing: -0.03em;
}

.p-reasons__eyebrow--03 {
  top: 10%;
  left: 50%;
  font-size: clamp(18px, 2.7vw, 24px);
}

.p-reasons__heading--03 {
  top: 42%;
  left: 50%;
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.p-reasons__eyebrow--04 {
  top: 10%;
  left: 50%;
  font-size: clamp(18px, 2.7vw, 24px);
}

.p-reasons__heading--04 {
  top: 42%;
  left: 50%;
  font-size: 40px;
  letter-spacing: -0.03em;
}

.p-reasons__card-bottom--01 {
  width: 100%;
  margin-top: auto;
  padding-top: 168px;
  display: grid;
  grid-template-columns: 420px 474px;
  justify-content: center;
  column-gap: 20px;
  row-gap: 20px;
  align-items: end;
}

.p-reasons__bubble {
  position: relative;
}

.p-reasons__bubble--01,
.p-reasons__bubble--03 {
  justify-self: end;
}

.p-reasons__bubble--02,
.p-reasons__bubble--04 {
  justify-self: start;
}

.p-reasons__bubble--01 {
  width: 420px;
}

.p-reasons__bubble--02 {
  width: 474px;
}

.p-reasons__bubble--03 {
  width: 430px;
}

.p-reasons__bubble--04 {
  width: 392px;
}

.p-reasons__bottom-image {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

.p-reasons__bubble-text {
  position: absolute;
  margin: 0;
  font-family: var(--font-family-base);
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  transform: translate(-50%, -50%);
}

.p-reasons__bubble-text--01 {
  top: 50%;
  left: 62%;
  font-size: 19px;
  color: #fff;
  @media screen and (max-width: 1080px) {
  top: 50%;
  left: 58%;
  font-size: 21px;  
  }
}

.p-reasons__bubble-text--02 {
  top: 53%;
  left: 62%;
  font-size: 19px;
  color: #fff;
  @media screen and (max-width: 1080px) {
  top: 50%;
  left: 49%;
  line-height: 1.6;
  text-align: center;
  }
}

.p-reasons__bubble-text--03 {
  top: 49%;
  left: 36%;
  font-size: 19px;
  color: #263a4c;
@media screen and (max-width: 1080px) {
  top: 49%;
  left: 40%;
}
}

.p-reasons__bubble-text--04 {
  top: 49%;
  left: 34%;
  font-size: 19px;
  color: #263a4c;
  @media screen and (max-width: 1080px) {
  top: 49%;
  left: 44%;
  }
}

.p-reasons__card--02 .p-reasons__card-body {
  min-height: 680px;
}

.p-reasons__card-media--02 {
  position: absolute;
  left: 52px;
  bottom: 34px;
  width: min(100%, 41.9%);
  max-width: 460px;
}

.p-reasons__media-image {
  display: block;
  width: 100%;
  height: auto;
}

.p-reasons__schedule-label {
  position: absolute;
  top: 0.5%;
  left: 30%;
  margin: 0;
  color: var(--color-accent-strong);
  font-family: var(--font-family-base);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.1;
  white-space: nowrap;
}

.p-reasons__schedule-note {
  position: absolute;
  top: 11%;
  left: 33.5%;
  width: 55%;
  margin: 0;
  color: #263a4c;
  font-family: var(--font-family-base);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.35;
}

.p-reasons__copy--02 {
  margin-left: 500px;
  padding-top: 176px;
  color: #263a4c;
  font-family: var(--font-family-base);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.95;
}

.p-reasons__copy--02 p + p {
  margin-top: 0.7em;
  @media screen and (max-width: 1080px) {
  margin-top: 0;
  }
}

.p-reasons__copy-highlight {
  color: var(--color-accent-strong);
  font-weight: 700;
}

.p-reasons__card--03 .p-reasons__card-body {
  min-height: 750px;
}

.p-reasons__card-map--03 {
  width: min(100%, 870px);
  margin: 172px auto 0;
  position: relative;
}

.p-reasons__map-image {
  display: block;
  width: 100%;
  height: auto;
}

.p-reasons__map-note--03 {
  margin: 14px auto 0;
  color: #263a4c;
  font-family: var(--font-family-base);
  font-size: 26px;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
}

.p-reasons__map-button--03 {
  display: block;
  position: relative;
  width: min(100%, 500px);
  margin: 22px auto 18px;
  padding: 0;
  border: 0;
  background: transparent;
  font: inherit;
  cursor: pointer;
}

.p-reasons__map-button-image {
  display: block;
  width: 100%;
  height: auto;
}

.p-reasons__map-button-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--font-family-base);
  font-size: 38px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  pointer-events: none;
}

/* Language modal */
.p-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  z-index: 200;
}

.p-modal.is-open {
  display: flex;
}

.p-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(16, 44, 44, 0.72);
}

.p-modal__dialog {
  position: relative;
  width: min(100%, 920px);
  max-height: calc(100vh - 48px);
  overflow: auto;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
  z-index: 1;
}

.p-modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(16, 44, 44, 0.8);
  color: #fff;
  font-size: 29px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}

.p-modal__picture,
.p-modal__image {
  display: block;
  width: 100%;
  height: auto;
}

.p-reasons__card--04 .p-reasons__card-body {
  min-height: 540px;
}

.p-reasons__card-content--04 {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  align-items: start;
  gap: 18px;
  padding-top: 176px;
}

.p-reasons__copy--04 {
  color: var(--color-text-strong);
  font-family: var(--font-family-base);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.95;
  padding-left: 12px;
  padding-bottom: 22px;
}

.p-reasons__copy--04 p + p {
  margin-top: 0.65em;
  @media screen and (max-width: 1080px) {
  margin-top: 0;
}
}

.p-reasons__media--04 {
  justify-self: end;
  width: min(100%, 560px);
}

.p-reasons__professional-image {
  display: block;
  width: 100%;
  height: auto;
}

.p-reasons {
  @media screen and (max-width: 1080px) {
    padding-top: 92px;
    background: var(--color-section-reasons-bg);
  }
}

.p-reasons::before {
  @media screen and (max-width: 1080px) {
    width: 100%;
    aspect-ratio: 1125 / 560;
    background-image: url("../images/reasons-bg-ellipse-sp.webp");
  }
}

.p-reasons__hero {
  @media screen and (max-width: 1080px) {
    width: min(100%, 640px);
    padding-top: 0;
  }
}

.p-reasons__speech-wrap {
  @media screen and (max-width: 1080px) {
    width: min(100%, 489px);
    top: -120px;
  }
}

.p-reasons__speech-text {
  @media screen and (max-width: 1080px) {
    font-size: 36px;
    padding-top: 13px;
  }
}

.p-reasons__title {
  @media screen and (max-width: 1080px) {
    top: -10px;
    font-size: 78px;
  }
}

.p-reasons__people {
  @media screen and (max-width: 1080px) {
    width: 100%;
    max-width: none;
    margin: 71px auto -10px;
  }
}

.p-reasons__cards {
  @media screen and (max-width: 1080px) {
    width: auto;
    margin-top: -4px;
    gap: 80px;
  }
}

.p-reasons__card-box {
  @media screen and (max-width: 1080px) {
    border-width: 2px;
    border-radius: 16px;
    padding-top: 20px;
  }
}

.p-reasons__card-number {
  @media screen and (max-width: 1080px) {
    width: 58px;
    height: 58px;
    padding-top: 4px;
    font-size: 28px;
  }
}

.p-reasons__card-mark {
  @media screen and (max-width: 1080px) {
    top: 20px;
    width: 42px;
  }
}

.p-reasons__card-mark--left {
  @media screen and (max-width: 1080px) {
    left: 18px;
  }
}

.p-reasons__card-mark--right {
  @media screen and (max-width: 1080px) {
    right: 18px;
  }
}

.p-reasons__card-body {
  @media screen and (max-width: 1080px) {
    min-height: 396px;
    padding: 24px 18px 18px;
  }
}

.p-reasons__heading {
  @media screen and (max-width: 1080px) {
    top: 36%;
    width: 100%;
    white-space: normal;
    line-height: 1.18;
    text-align: center;
    font-size: 31px;
  }
}

.p-reasons__eyebrow {
  @media screen and (max-width: 1080px) {
    font-size: 12px;
  }
}

.p-reasons__heading-highlight {
  @media screen and (max-width: 1080px) {
    margin-right: 0;
  }
}

.p-reasons__heading-connector {
  @media screen and (max-width: 1080px) {
    display: inline;
  }
}

.p-reasons__heading-rest {
  @media screen and (max-width: 1080px) {
    display: block;
    margin-top: 0.12em;
  }
}

.p-reasons__card-header--01 {
  @media screen and (max-width: 1080px) {
    top: 34px;
    width: calc(100% - 64px);
    height: 124px;
  }
}

.p-reasons__card-header--01 .p-reasons__eyebrow {
  @media screen and (max-width: 1080px) {
    font-size: 25px;
  }
}

.p-reasons__card-header--01 .p-reasons__heading {
  @media screen and (max-width: 1080px) {
    width: 100%;
    font-size: 44px;
    line-height: 1.42;
  }
}

.p-reasons__card-header--02 {
  @media screen and (max-width: 1080px) {
    top: 34px;
    width: calc(100% - 64px);
    height: 136px;
  }
}

.p-reasons__eyebrow--02,
.p-reasons__card-header--02 .p-reasons__eyebrow--02 {
  @media screen and (max-width: 1080px) {
    top: 2%;
    left: 50%;
    font-size: 25px;
  }
}

.p-reasons__heading--02,
.p-reasons__card-header--02 .p-reasons__heading--02 {
  @media screen and (max-width: 1080px) {
    top: 28%;
    left: 50%;
    width: 100%;
    font-size: 48px;
    line-height: 1.42;
    letter-spacing: -0.03em;
    text-align: center;
  }
}

.p-reasons__heading--02 .p-reasons__heading-line {
  @media screen and (max-width: 1080px) {
    display: inline;
  }
}

.p-reasons__heading--02 .p-reasons__heading-rest--inline {
  @media screen and (max-width: 1080px) {
    display: inline;
    margin-top: 0;
  }
}

.p-reasons__heading--02 .p-reasons__heading-rest--block {
  @media screen and (max-width: 1080px) {
    display: block;
    margin-top: 0.16em;
  }
}

.p-reasons__card-header--03 {
  @media screen and (max-width: 1080px) {
    top: 34px;
    width: calc(100% - 64px);
    height: 128px;
  }
}

.p-reasons__card-header--03 .p-reasons__eyebrow--03 {
  @media screen and (max-width: 1080px) {
    top: 4%;
    left: 50%;
    font-size: 25px;
  }
}

.p-reasons__card-header--03 .p-reasons__heading--03 {
  @media screen and (max-width: 1080px) {
    top: 34%;
    left: 50%;
    width: 100%;
    font-size: 44px;
    line-height: 1.42;
    letter-spacing: -0.03em;
    text-align: center;
  }
}

.p-reasons__card-header--03 .p-reasons__heading-line,
.p-reasons__card-header--03 .p-reasons__heading-line--03-primary,
.p-reasons__card-header--03 .p-reasons__heading-rest--03-inline {
  @media screen and (max-width: 1080px) {
    display: inline;
  }
}

.p-reasons__card-header--03 .p-reasons__heading-line--03-primary {
  @media screen and (max-width: 1080px) {
    white-space: nowrap;
  }
}

.p-reasons__card-header--03 .p-reasons__heading-rest--03-block {
  @media screen and (max-width: 1080px) {
    display: block;
    margin-top: 0.02em;
  }
}

.p-reasons__card-header--04 {
  @media screen and (max-width: 1080px) {
    top: 34px;
    width: calc(100% - 64px);
    height: 128px;
  }
}

.p-reasons__card-header--04 .p-reasons__eyebrow--04 {
  @media screen and (max-width: 1080px) {
    top: 4%;
    left: 50%;
    font-size: 25px;
  }
}

.p-reasons__card-header--04 .p-reasons__heading--04 {
  @media screen and (max-width: 1080px) {
    top: 34%;
    left: 50%;
    width: 100%;
    font-size: 44px;
    line-height: 1.42;
    letter-spacing: -0.03em;
    text-align: center;
  }
}

.p-reasons__card-bottom--01 {
  @media screen and (max-width: 1080px) {
    padding-top: 200px;
    padding-bottom: 18px;
    grid-template-columns: 1fr;
    row-gap: 14px;
  }
}

.p-reasons__bubble--01,
.p-reasons__bubble--02,
.p-reasons__bubble--03,
.p-reasons__bubble--04 {
  @media screen and (max-width: 1080px) {
    width: min(100%, 100%);
    justify-self: center;
  }
}

.p-reasons__bubble--01 {
  @media screen and (max-width: 1080px) {
    order: 1;
    width: 90%;
    margin-left: 37px;
  }
}

.p-reasons__bubble--03 {
  @media screen and (max-width: 1080px) {
    order: 2;
    width: 85%;
  }
}

.p-reasons__bubble--02 {
  @media screen and (max-width: 1080px) {
    order: 3;
    width: 90%;
    margin-left: 39px;
  }
}

.p-reasons__bubble--04 {
  @media screen and (max-width: 1080px) {
    order: 4;
    width: 85%;
  }
}

.p-reasons__bubble-text--01,
.p-reasons__bubble-text--02,
.p-reasons__bubble-text--03,
.p-reasons__bubble-text--04 {
  @media screen and (max-width: 1080px) {
    font-size: 26px;
  }
}

.p-reasons__card--02 .p-reasons__card-body {
  @media screen and (max-width: 1080px) {
    min-height: 820px;
  }
}

.p-reasons__card-media--02 {
  @media screen and (max-width: 1080px) {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    width: min(94%, 620px);
    max-width: 620px;
    margin: 200px auto 0;
  }
}

.p-reasons__schedule-label {
  @media screen and (max-width: 1080px) {
    top: 1.6%;
    left: 30%;
    font-size: 25px;
    font-weight: 500;
  }
}

.p-reasons__schedule-note {
  @media screen and (max-width: 1080px) {
    top: 11.8%;
    left: 32%;
    width: 47%;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.42;
  }
}

.p-reasons__copy--02 {
  @media screen and (max-width: 1080px) {
    margin-left: 0;
    padding-top: 24px;
    padding-bottom: 20px;
    font-size: 28px;
    line-height: 1.9;
  }
}

.p-reasons__card--03 .p-reasons__card-body {
  @media screen and (max-width: 1080px) {
    min-height: 480px;
    padding-bottom: 28px;
  }
}

.p-reasons__card-map--03 {
  @media screen and (max-width: 1080px) {
    width: min(100%, 100%);
    margin-top: 200px;
  }
}

.p-reasons__map-note--03 {
  @media screen and (max-width: 1080px) {
    width: min(100%, 510px);
    margin-top: 16px;
    font-size: 28px;
    font-weight: 500;
  }
}

.p-reasons__map-button--03 {
  @media screen and (max-width: 1080px) {
    width: min(100%, 510px);
    margin: 20px auto 12px;
  }
}

.p-reasons__map-button-text {
  @media screen and (max-width: 1080px) {
    font-size: 38px;
    font-weight: 500;
  }
}

.p-reasons__card--04 .p-reasons__card-body {
  @media screen and (max-width: 1080px) {
    min-height: 440px;
    padding-bottom: 34px;
  }
}

.p-reasons__card-content--04 {
  @media screen and (max-width: 1080px) {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-top: 200px;
  }
}

.p-reasons__copy--04 {
  @media screen and (max-width: 1080px) {
    font-size: 28px;
    line-height: 1.9;
    padding-left: 0;
    padding-bottom: 10px;
  }
}

.p-reasons__media--04 {
  @media screen and (max-width: 1080px) {
    justify-self: center;
    width: min(100%, 100%);
  }
}

/* Teacher */
.p-teacher {
  background: var(--color-section-teacher-bg);
  overflow: hidden;
}

.p-teacher__stage {
  position: relative;
  padding: 28px 0 42px;
}

.p-teacher__header {
  position: relative;
  z-index: 1;
  width: min(100%, 360px);
  margin: 0 auto 22px;
  color: #fff;
  text-align: center;
}

.p-teacher__eyebrow {
  margin: 0 0 8px;
  font-family: var(--font-family-base);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}

.p-teacher__title {
  margin: 0;
  font-family: var(--font-family-base);
  font-size: 48px;
  font-weight: 700;
  line-height: 1.42;
}

.p-teacher__title-en {
  margin: 6px 0 0;
  font-family: var(--font-family-base);
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
}

.p-teacher__viewport {
  position: relative;
  z-index: 1;
  width: 100vw;
  max-width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
  overflow: hidden;
}

.p-teacher__slider {
  width: 100%;
  overflow: visible;
}

.p-teacher-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  padding: 36px 30px 28px;
  display: grid;
  grid-template-columns: 196px minmax(0, 1fr);
  column-gap: 28px;
  align-items: start;
}

.p-teacher-card__photo {
  width: 186px;
  aspect-ratio: 1;
  margin: 0;
  border-radius: 50%;
  display: block;
  object-fit: cover;
  object-position: center;
  background: linear-gradient(180deg, #cce9d1 0%, #eef7dc 100%);
  border: 1px solid #e2f1df;
}

.p-teacher-card__body {
  display: grid;
  row-gap: 18px;
  align-content: start;
}

.p-teacher-card__meta {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  flex-wrap: wrap;
}

.p-teacher-card__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 22px;
  border-radius: 999px;
  color: #fff;
  font-family: var(--font-family-base);
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
}

.p-teacher-card__tag--pink { background: var(--color-tag-pink); }
.p-teacher-card__tag--red { background: var(--color-tag-red); }
.p-teacher-card__tag--purple { background: var(--color-tag-purple); }
.p-teacher-card__tag--blue { background: var(--color-tag-blue); }

.p-teacher-card__name {
  margin: 0;
  color: var(--color-tag-pink);
  font-family: var(--font-family-base);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
}

.p-teacher-card--french .p-teacher-card__name { color: var(--color-tag-red); }
.p-teacher-card--thai .p-teacher-card__name { color: var(--color-tag-purple); }
.p-teacher-card--korean .p-teacher-card__name { color: var(--color-tag-blue); }

.p-teacher-card__text {
  margin: 0;
  color: var(--color-text-muted);
  font-family: var(--font-family-base);
  font-size: 15px;
  font-weight: 500;
  line-height: 2.1;
}

.p-teacher__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 16px;
  width: 100%;
}

.p-teacher__arrow {
  display: none;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 2px solid var(--color-white);
  border-radius: 50%;
  background: #ff7a00;
  color: var(--color-white);
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  cursor: default;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.14);
}

.p-teacher__dots {
  display: flex;
  align-items: center;
  gap: 14px;
}

.p-teacher__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.75);
  cursor: pointer;
}

.p-teacher__dot.is-active {
  background: #fff;
}

.p-modal {
  @media screen and (max-width: 1080px) {
    padding: 16px;
  }
}

.p-modal__dialog {
  @media screen and (max-width: 1080px) {
    width: min(80%, 680px);
    max-height: calc(100vh - 32px);
    border-radius: 20px;
  }
}

.p-modal__close {
  @media screen and (max-width: 1080px) {
    top: 12px;
    right: 12px;
  }
}

.p-teacher__stage {
  @media screen and (max-width: 1080px) {
    padding: 26px 0 34px;
  }
}

.p-teacher__header {
  @media screen and (max-width: 1080px) {
    width: 450px;
    margin-bottom: 50px;
  }
}

.p-teacher__eyebrow {
  @media screen and (max-width: 1080px) {
    font-size: 26px;
    white-space: nowrap;
    font-weight: bold;
  }
}

.p-teacher__title {
  @media screen and (max-width: 1080px) {
    font-size: min(52px, 11vw);
  }
}

.p-teacher__title-en {
  @media screen and (max-width: 1080px) {
    font-size: min(24px, 5.1vw);
  }
}

.p-teacher__viewport {
  @media screen and (max-width: 1080px) {
    width: calc(100% + 48px);
    max-width: none;
    margin-left: -24px;
    transform: none;
    overflow: hidden;
  }
}

.p-teacher__slider {
  @media screen and (max-width: 1080px) {
    width: 100%;
    overflow: visible;
  }
}

.p-teacher-card {
  @media screen and (max-width: 1080px) {
    display: block;
    min-height: 760px;
    padding: 34px 24px 42px;
    border-radius: 22px;
  }
}

.p-teacher-card__photo {
  @media screen and (max-width: 1080px) {
    width: 250px;
    margin: 0 auto 24px;
  }
}

.p-teacher-card__meta {
  @media screen and (max-width: 1080px) {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
  }
}

.p-teacher-card__tag {
  @media screen and (max-width: 1080px) {
    min-height: 38px;
    padding: 8px 16px;
    font-size: 24px;
  }
}

.p-teacher-card__name {
  @media screen and (max-width: 1080px) {
    text-align: center;
    font-size: 24px;
  }
}

.p-teacher-card__body {
  @media screen and (max-width: 1080px) {
    row-gap: 18px;
  }
}

.p-teacher-card__text {
  @media screen and (max-width: 1080px) {
    font-size: 22px;
    line-height: 1.8;
  }
}

.p-teacher__controls {
  @media screen and (max-width: 1080px) {
    margin-top: 24px;
    gap: 24px;
  }
}

.p-teacher__arrow {
  @media screen and (max-width: 1080px) {
    display: inline-flex;
    width: 38px;
    height: 38px;
    font-size: 44px;
    font-weight: 100;
    padding-bottom: 8px;
  }
}

.p-teacher__dots {
  @media screen and (max-width: 1080px) {
    gap: 12px;
  }
}

.p-teacher__dot {
  @media screen and (max-width: 1080px) {
    width: 10px;
    height: 10px;
  }
}

/* Voice */
.p-voice {
  background: var(--color-white);
}

.p-voice__header {
  margin: 0 0 40px;
  text-align: center;
}

.p-voice__title {
  margin: 0;
  color: #2d2d2d;
  font-family: var(--font-family-base);
  font-size: 57px;
  font-weight: 700;
  line-height: 1.15;
}

.p-voice__title-en {
  margin: 10px 0 0;
  color: #d7f1ef;
  font-family: var(--font-family-base);
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
}

.p-voice__list {
  display: grid;
  gap: 26px;
}

.p-voice-card {
  background: var(--color-card-soft-bg);
  border-radius: 20px;
  padding: 34px 34px 30px;
}

.p-voice-card__top {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  column-gap: 32px;
  align-items: start;
}

.p-voice-card__photo {
  width: 120px;
  aspect-ratio: 1;
  display: block;
  border-radius: 50%;
  object-fit: cover;
}

.p-voice-card__top-body {
  display: grid;
  justify-items: start;
  align-content: start;
  row-gap: 18px;
  padding-top: 2px;
}

.p-voice-card__tag {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 8px 28px;
  border-radius: 999px;
  color: #fff;
  font-family: var(--font-family-base);
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}

.p-voice-card__tag::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  transform: translateX(-50%);
}

.p-voice-card__tag--purple {
  background: var(--color-tag-purple);
}

.p-voice-card__tag--purple::after {
  border-top: 12px solid var(--color-tag-purple);
}

.p-voice-card__tag--pink {
  background: var(--color-tag-pink);
}

.p-voice-card__tag--pink::after {
  border-top: 12px solid var(--color-tag-pink);
}

.p-voice-card__tag--blue {
  background: var(--color-tag-blue);
}

.p-voice-card__tag--blue::after {
  border-top: 12px solid var(--color-tag-blue);
}

.p-voice-card__headline {
  margin: 0;
  color: #2d2d2d;
  font-family: var(--font-family-base);
  font-size: 31px;
  font-weight: 700;
  line-height: 1.45;
}

.p-voice-card__break {
  display: none;
}

.p-voice-card__text {
  margin: 22px 0 0 152px;
  color: #404040;
  font-family: var(--font-family-base);
  font-size: 18px;
  font-weight: 500;
  line-height: 2.05;
}

.p-voice__header {
  @media screen and (max-width: 1080px) {
    margin-bottom: 40px;
  }
}

.p-voice__title {
  @media screen and (max-width: 1080px) {
    font-size: 56px;
  }
}

.p-voice__title-en {
  @media screen and (max-width: 1080px) {
    margin-top: 8px;
    font-size: 24px;
  }
}

.p-voice__list {
  @media screen and (max-width: 1080px) {
    grid-template-columns: 1fr;
    gap: 66px;
  }
}

.p-voice-card {
  @media screen and (max-width: 1080px) {
    padding: 28px 24px 26px;
    border-radius: 22px;
  }
}

.p-voice-card__top {
  @media screen and (max-width: 1080px) {
    grid-template-columns: 200px minmax(0, 1fr);
    column-gap: 18px;
  }
}

.p-voice-card__photo {
  @media screen and (max-width: 1080px) {
    width: 174px;
  }
}

.p-voice-card__top-body {
  @media screen and (max-width: 1080px) {
    row-gap: 16px;
    padding-top: 6px;
  }
}

.p-voice-card__tag {
  @media screen and (max-width: 1080px) {
    min-height: 44px;
    padding: 12px 28px;
    font-size: 28px;
  }
}

.p-voice-card__tag::after {
  @media screen and (max-width: 1080px) {
    bottom: -8px;
    border-left-width: 8px;
    border-right-width: 8px;
  }
}

.p-voice-card__tag--purple::after,
.p-voice-card__tag--pink::after,
.p-voice-card__tag--blue::after {
  @media screen and (max-width: 1080px) {
    border-top-width: 10px;
  }
}

.p-voice-card__headline {
  @media screen and (max-width: 1080px) {
    font-size: 32px;
    line-height: 1.55;
  }
}

.p-voice-card__break {
  @media screen and (max-width: 1080px) {
    display: block;
  }
}

.p-voice-card__text {
  @media screen and (max-width: 1080px) {
    margin: 20px 0 0;
    font-size: 28px;
    line-height: 2;
  }
}

/* Flow */
.p-flow {
  background:
    radial-gradient(circle at 50% 100%, rgba(255, 236, 154, 0.72), transparent 32%),
    linear-gradient(180deg, #bfe9e6 0%, #d7f0e8 60%, #fff7cf 100%);
}

.p-flow__header {
  margin: 0 0 46px;
  text-align: center;
}

.p-flow__title {
  margin: 0;
  color: var(--color-text-heading);
  font-family: var(--font-family-base);
  font-size: 58px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.p-flow__title-en {
  margin: 10px 0 0;
  color: var(--color-brand-green);
  font-family: var(--font-family-base);
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
}

.p-flow__steps {
  width: min(100%, 1020px);
  margin: 0 auto;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 28px;
}

.p-flow-step {
  display: grid;
  grid-template-columns: 136px minmax(0, 1fr);
  column-gap: 30px;
  align-items: start;
}

.p-flow-step__side {
  display: grid;
  justify-items: center;
  align-content: start;
  margin-top: 7px;
} 

.p-flow-step__number {
  margin: 0 0 8px;
  color: var(--color-text-heading);
  font-family: var(--font-family-base);
  font-size: 28px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.p-flow-step__icon {
  display: block;
  width: 124px;
  height: 124px;
}

.p-flow-step__line {
  width: 3px;
  height: 34px;
  margin-top: 10px;
  background: var(--color-text-heading);
  border-radius: 999px;
}

.p-flow-step__line_01 {
  width: 4px;
  height: 34px;
  margin-top: 10px;
  background: var(--color-text-heading);
  border-radius: 999px;
}

.p-flow-step__line_02 {
  width: 4px;
  height: 34px;
  margin-top: 10px;
  background: var(--color-text-heading);
  border-radius: 999px;
}

.p-flow-step__line_03 {
  width: 4px;
  height: 34px;
  margin-top: 10px;
  background: var(--color-text-heading);
  border-radius: 999px;
}

.p-flow-step__line_04 {
  width: 4px;
  height: 34px;
  margin-top: 10px;
  background: var(--color-text-heading);
  border-radius: 999px;
}

.p-flow-step__main {
  display: grid;
  gap: 14px;
  padding-top: 6px;
}

.p-flow-step__title {
  margin: 0;
  color: var(--color-text-heading);
  font-family: var(--font-family-base);
  font-size: 31px;
  font-weight: 700;
  line-height: 1.35;
}

.p-flow-step__break {
  display: none;
}

.p-flow-step__panel {
  background: var(--color-white);
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(74, 110, 88, 0.08);
  padding: 24px 28px;
}

.p-flow-step__text {
  margin: 0;
  color: var(--color-text-heading);
  font-family: var(--font-family-base);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.9;
}

.p-flow__header {
  @media screen and (max-width: 1080px) {
    margin-bottom: 34px;
  }
}

.p-flow__title {
  @media screen and (max-width: 1080px) {
    font-size: 60px;
    font-weight: bolds;
  }
}

.p-flow__title-en {
  @media screen and (max-width: 1080px) {
    margin-top: 8px;
    font-size: 21px;
  }
}

.p-flow__steps {
  @media screen and (max-width: 1080px) {
    gap: 26px;
  }
}

.p-flow-step {
  @media screen and (max-width: 1080px) {
    grid-template-columns: 100px minmax(0, 1fr);
    column-gap: 18px;
  }
}

.p-flow-step__number {
  @media screen and (max-width: 1080px) {
    margin-bottom: 10px;
    font-size: 19px;
  }
}

.p-flow-step__icon {
  @media screen and (max-width: 1080px) {
    width: 90px;
    height: 90px;
  }
}

.p-flow-step__line {
  @media screen and (max-width: 1080px) {
    height: 169px;
    margin-top: 10px;
  }
}
.p-flow-step__line_01 {
  @media screen and (max-width: 1080px) {
    height: 169px;
    margin-top: 10px;
  }
}
.p-flow-step__line_02 {
  @media screen and (max-width: 1080px) {
    height: 216px;
    margin-top: 10px;
  }
}
.p-flow-step__line_03 {
  @media screen and (max-width: 1080px) {
    height: 225px;
    margin-top: 10px;
  }
}
.p-flow-step__line_04 {
  @media screen and (max-width: 1080px) {
    height: 274px;
    margin-top: 10px;
  }
}

.p-flow-step__main {
  @media screen and (max-width: 1080px) {
    gap: 12px;
    padding-top: 2px;
  }
}

.p-flow-step__title {
  @media screen and (max-width: 1080px) {
    font-size: 32px;
    line-height: 1.42;
  }
}

.p-flow-step__break {
  @media screen and (max-width: 1080px) {
    display: block;
  }
}

.p-flow-step__panel {
  @media screen and (max-width: 1080px) {
    border-radius: 18px;
    padding: 20px 20px 18px;
    margin-top: 10px;
  }
}

.p-flow-step__text {
  @media screen and (max-width: 1080px) {
    font-size: 28px;
    line-height: 1.85;
    font-weight: 600;
  }
}

.pc_hid{
    display: none;
}

@media screen and (max-width:1080px) {
    .pc_hid{
        display: block;
    }
}

.sp_hid{
    display: none;
}

@media screen and (min-width:1081px) {
    .sp_hid{
        display: block;
    }
}
