@charset "UTF-8";

/* ==========  Font  ========== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans+JP:wght@100..900&display=swap');



/* ========== Variables ========== */
:root {
  --color-orange: #ff6b00;
  --color-orange-dark: #e65f00;
  --color-black: #000000;
  --color-navy: #1a1a2e;
  --color-text: #333333;
  --color-muted: #5c5c66;
  --color-white: #fff;
  --color-beige: #fff9f5;
  --color-beige-alt: #f9f3ee;
  --color-line: #e8e4df;
  --color-card: #f5f5f5;
  --font: "Noto Sans JP", system-ui, -apple-system, sans-serif;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow-card: 0 8px 28px rgba(26, 26, 46, 0.08);
  --header-h: 64px;
  --header-pad-x: clamp(16px, 4.2vw, 56px);
  /* --header-nav-gap: clamp(0.65rem, 2vw, 1.75rem); */
  --header-nav-gap: clamp(0.95rem, 2.2vw, 2.75rem);
  --color-header-cyan: #6ee7ff;
  --header-max: 1400px;
  --max: 1240px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 10px;
}

body {
  margin: 0;
  font-family: var(--font);
  line-height: 1.5;
  color: var(--color-text);
  background: var(--color-white);
}

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

a {
  color: inherit;
  text-decoration: none;
}
/*
h1, h2, h3, p {
  margin: 0 0 0.75rem;
}
*/
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

.mont{
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
}

.text-accent {
  color: var(--color-orange);
}


@media (min-width: 1024px) {
  .nonePC{
    display: none !important;
  }
}
@media (max-width: 1023px) {
  .noneSP{
    display: none !important;
  }
}




/* ========== Header ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-black);
  /* box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06); */
}

.site-header__inner {
  width: 100%;
  max-width: var(--header-max);
  margin: 0 auto;
  padding: 0 var(--header-pad-x);
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: clamp(8px, 1.5vw, 16px);
  min-width: 0;
}

/* 余白が足りないときはロゴ側から縮む（max 350px 上限は維持） */
.site-header__logo {
  display: inline-flex;
  align-items: center;
  flex: 0 1 auto;
  min-width: 0;
  max-width: min(350px, 44vw);
  line-height: 0;
}

.site-header__logo img {
  display: block;
  width: auto;
  height: calc(var(--header-h) - 14px);
  max-height: calc(var(--header-h) - 14px);
  max-width: 100%;
  object-fit: contain;
  object-position: left center;
}

.site-header__cluster {
  display: none;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(0.75rem, 1.8vw, 1.5rem);
  margin-left: auto;
  min-width: 0;
  flex-shrink: 0;
}

.site-nav {
  display: none;
  min-width: 0;
}

.site-nav__list {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
  column-gap: var(--header-nav-gap);
  align-items: center;
}

.site-nav a {
  /*font-size: clamp(0.7rem, 0.95vw + 0.55rem, 0.875rem);*/
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--color-white);
  white-space: nowrap;
  transition: color 0.2s var(--ease);
}

.site-nav a:hover {
  color: var(--color-orange);
}


.menu-toggle {
  margin-left: auto;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.menu-toggle__bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-orange);
  border-radius: 1px;
  transition: transform 0.25s var(--ease), opacity 0.2s;
}

.site-header.is-open .menu-toggle__bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.site-header.is-open .menu-toggle__bar:nth-child(2) {
  opacity: 0;
}

.site-header.is-open .menu-toggle__bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.drawer {
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: rgba(26, 26, 46, 0.45);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  display: flex;
  justify-content: flex-end;
  transition: opacity 0.25s var(--ease), visibility 0.25s;
}

.site-header.is-open .drawer {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.drawer__nav {
  background: #2f3034;
  width: min(88vw, 380px);
  height: 100%;
  padding: 36px 24px 32px;
  box-shadow: -8px 0 24px rgba(0, 0, 0, 0.3);
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.3s var(--ease);
  display: flex;
  flex-direction: column;
}

.site-header.is-open .drawer__nav {
  transform: translateX(0);
}

.drawer__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.drawer__list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  font-weight: 700;
  font-size: 3rem;
  color: #fff;
  letter-spacing: 0.02em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.drawer__list a::after {
  content: "›";
  font-size: 4rem;
  line-height: 1;
  font-weight: 300;
  color: #fff;
}

.drawer__list a:hover {
  color: var(--color-orange);
}

.drawer__list a:hover::after {
  color: var(--color-orange);
}

.drawer__brand {
  width: min(260px, 95%);
  margin-top: 42px;
}

.drawer__brand img {
  width: 100%;
  height: auto;
}

@media (min-width: 1024px) {
  .site-header__logo {
    max-width: min(350px, 36vw);
  }

  .site-header__cluster {
    display: flex;
  }

  .site-nav {
    display: flex;
  }

  .menu-toggle {
    display: none;
    margin-left: 0;
  }

  .drawer {
    display: none !important;
  }
}

/* 中間幅：ナビだけ間隔を詰めて1行を維持 */
@media (min-width: 1024px) and (max-width: 1180px) {
  .site-nav__list {
    column-gap: clamp(0.9rem, 1.8vw, 1.6rem);
  }

  .site-nav a {
    font-size: 1.4125rem;
  }

  .site-header__cluster {
    gap: 0.75rem;
  }
}

@media  (max-width: 1023px) {

  .drawer__list a {
    font-size: clamp(1.8rem, 2.4vw, 2.1rem);
    padding: 7px 0;
  }

  .drawer__list a::after {
    font-size: 2.6rem;
  }
}
/* ========== Buttons ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-weight: 700;
  font-size: 0.9375rem;
  border-radius: 999px;
  border: 2px solid transparent;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease), opacity 0.2s var(--ease), transform 0.15s;
}

.btn:active {
  transform: scale(0.98);
}

.btn--sm {
  padding: 8px 18px;
  font-size: 0.8125rem;
}

.btn--lg {
  padding: 0.4em 3em;
  /* font-size: 0.9375rem; */
  font-size: clamp(14px, 1.9cqw, 20px);
}

.btn--xl {
  padding: 18px 32px;
  font-size: 1rem;
}

.btn--block {
  width: 100%;
}

.btn--primary {
  background: var(--color-orange);
  color: var(--color-white);
  border-color: var(--color-orange);
  text-align: center;
}

.btn--primary:hover {
  opacity: 0.8;
}

.btn--outline {
  background: var(--color-white);
  color: #333333;
  border-color: var(--color-orange);
}

.hero .btn--outline:hover {
  opacity: 0.8;
}



/* anchor
***************************************************************/

.anchor {
  position: absolute;
  visibility: hidden !important;
  height: 0px !important;
  pointer-events: none !important;
  /*  margin-top: -120px !important;*/
}
@media (max-width: 1023px) {
  .anchor {
    margin-top: -60px !important;
  }
}



/* ========== Hero ========== */
.hero {
  position: relative;
  /* min-height: min(92vh, 720px); */
  display: flex;
  align-items: flex-end;
  padding: calc(var(--header-h) + 32px) 20px clamp(10px, 3.5cqw, 50px);
  overflow: hidden;
  height: 57vw;
  max-height: 720px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("../assets/mv.jpg") center/cover no-repeat;
}
.hero__title-line:not(.hero__title-line2) {
  display: block;
  color: var(--color-white);
}

/* 「AI研修が解決します。」のみ — 下側〜60%にラインマーカー（Aの上端などは背景に抜ける） */
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
}

.hero__lead {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.875rem;
  max-width: 36em;
  margin-bottom: 16px;
}

.hero__title {
  margin-bottom: 0;
  position: absolute;
  /* letter-spacing: 0.02em;
  font-weight: 900; */
}

/* 見出しブロック。「それ、」は白文字 / マーカーは .hero__title-line2 参照 */
.hero__title-band {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(4px, 1vw, 10px);
  max-width: 100%;
}

.hero__title-line {
  font-size: clamp(1.75rem, 5.5vw, 2.85rem);
  line-height: 0.95;
}
.hero__title-line2 {
  display: inline-block;
  max-width: 100%;
  color: #333333;
  padding: 0 0em 0.3em 0.4em;
  background-repeat: no-repeat;
  background-position: left bottom, left top;
  background-size: 100% 62%, 100% 100%;
  background: linear-gradient(transparent 41%, #fff 41%, #fff 100%, transparent 100%);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.hero__title-em {
  color: var(--color-orange);
  font-weight: 900;
  font-size: 220%;
}
.hero__sub {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9375rem;
  max-width: 32em;
  margin-bottom: 28px;
}

.hero__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}


.hero__fab {
  position: absolute;
  right: 16px;
  bottom: 100px;
  width: clamp(140px, 20vw,200px);
  height: clamp(140px, 20vw,200px);
  border-radius: 50%;
  background: var(--color-orange);
  color: var(--color-white);
  font-size: clamp(14px, 2vw, 20px);
  font-weight: 700;
  line-height: 1.35;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 8px 24px rgba(255, 107, 0, 0.45);
  z-index: 2;
  transition: transform 0.2s var(--ease), box-shadow 0.2s;
}

.hero__fab:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 32px rgba(255, 107, 0, 0.5);
}

@media (min-width: 768px) {
  .hero__actions {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  .hero__fab {
    /* right: max(20px, calc(50vw - var(--max) / 2 + 20px)); */
    bottom: 48px;
    position: fixed;
  }
}


@media (min-width: 768px) {
  .hero__actions2 {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .hero {
    padding: 0;
    height: auto;
    max-height: initial;
    aspect-ratio: 1 / 1.36;
  }
  .hero__bg {
    background: url("../assets/mv_sp.jpg") center/cover no-repeat;
  }

  .hero__actions:not(.hero__actions2) {
    display: none !important;
  }

  .hero__actions {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    gap: 10px;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff7f2;
    padding: 3% 5%;
  }

  .hero__actions .btn {
    flex: 1 1 0;
    min-width: 0;
    width: auto;
  }

  .hero__actions .btn--primary {
    flex: 1.4 1 0;
  }
  .site-header__inner {
    padding-right: 0;
  }
  .menu-toggle {
    margin-left: auto;
    width: 64px;
    height: 64px;
  }
  .drawer__nav {
    width: min(72vw, 420px);
    padding: 34px 28px 32px;
  }
  .drawer__list a {
    font-size: clamp(1.7rem, 2.2vw, 2rem);
    padding: 7px 0;
  }
  .drawer__list a::after {
    font-size: 2.4rem;
  }
  .drawer__brand {
    margin-top: 56px;
  }
  .btn--lg {
    font-size: clamp(12px, 1.9cqw, 20px);
    padding: 0.5em 0em;
  }
}

/* ========== Sections ========== */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px;
  container-type: inline-size;
}

.section {
  padding: 100px 0;
}

.section--white {
  background: var(--color-white);
}

.section--beige {
  background: var(--color-beige);
}

.section__label {
  font-size: clamp(1.5rem, 3vw, 2.0rem);
  color: var(--color-orange);
  display: flex;
  align-items: center;
  margin-bottom: 1em;
  position: relative;
}

.section__label::after{
  content: '';
  width: 300px;
  height: 2px;
  background-color: var(--color-orange);
  margin-left: 1em;
}
.section__title {
  font-size: clamp(3.5rem, 6vw, 6.0rem);
  line-height: 1.3;
  font-weight: 900;
  text-align: left;

  span{
    color: var(--color-orange);
  }
}

@media (max-width: 1023px) {
  .container {
    padding: 0 5%;
  }

  .section {
    padding: 50px 0;
  }

  .section__label {
    margin-bottom: 0.5em;
  }

  .section__label::after{
    width: 50%;
    max-width: 300px;
  }
  .section__title {
    font-size: clamp(3.5rem, 9vw, 6.0rem);
  }

}


/* Problem cards */
.cards-3 {
  display: flex;
  justify-content: space-between;
  padding: 0 4.2%;
  margin-top: 140px;
}

.card-problem {
  width: 31%;
  background-color: var(--color-card);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 2.5% 35px;
}

.card-problem__icon {
  width: 221px;
  margin: -60px auto 0;
}

.card-problem__title {
  /*font-size: 2.0rem;*/
  font-size: clamp(1.5rem, 4vw, 2.0rem);
  font-weight: 700;
  color: var(--color-orange);
  text-align: center;
  margin-top: 1.5em;
}

.card-problem__text {
  /*font-size: 1.6rem;*/
  font-size: clamp(1.3rem, 3vw, 1.6rem);
  line-height: 1.75;
  text-align: justify;
  margin-top: 1.5em;
}

.card-problem strong {
  font-weight: 700;
  color: var(--color-text);
}

@media (max-width: 1023px) {
  .cards-3 {
    max-width: 520px;
    display: block;
    padding: 0;
    margin: clamp(60px, 16vw, 140px) auto 0;
  }

  .card-problem {
    width: 100%;
    border-radius: 10px;
    padding: 0 5% 25px;

    > div{
      display: flex;
      justify-content: center;
    }
  }
  .card-problem + .card-problem {
    margin-top: 10.7vw;
  }

  .card-problem__icon {
    width: 52%;
    margin: -7vw 0 0;
    max-width: 170px;
  }

  .card-problem__title {
    text-align: left;
    margin-left: 1em;
    margin-top: 1em;
    /*padding: 0 5% clamp(25px, 5.7vw, 35px);*/
    padding: 0;
  }

  .card-problem__text {
    margin-top: 1em;
  }

}


/* Feature cards */
.cards-feature {
  display: flex;
  justify-content: space-between;
  padding: 0 4.2%;
  margin-top: 75px;
}

.card-feature{
  width: 31%;
}

.card-feature__title {
  height: 3em;
  font-size: clamp(1.5rem, 4vw, 2.0rem);
  font-weight: 700;
  color: var(--color-orange);
  text-align: center;
  margin-top: 1.5em;
}

.card-feature__text {
  width: 78%;
  font-size: clamp(1.3rem, 3vw, 1.6rem);
  line-height: 1.75;
  text-align: justify;
  margin: 1.5em auto 0;

  span{
    color: var(--color-orange);
    font-weight: 700;
  }
}

@media (max-width: 1023px) {
  .cards-feature {
    display: block;
    padding: 0;
    margin-top: clamp(40px, 9.7vw, 50px);
  }

  .card-feature{
    width: 100%;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }
  .card-feature + .card-feature{
    margin-top: clamp(40px, 9.7vw, 50px);
  }

  .card-feature__title {
    height: initial;
  }

  .card-feature__text {
    width: 100%;
  }

}


/* Split + weapons */
.split-head {
  display: flex;
  justify-content: space-between;
}

.split-head__lead {
  font-size: clamp(1.3rem, 3vw, 1.6rem);
  line-height: 2.2;
  margin-top: 65px;

  span{
    color: var(--color-orange);
    font-weight: 700;
  }
}

.split-head__media {
  width: 48.3%;
}

.weapon-list {
  margin: 0 8.3%;
}

.weapon-item {
  background-color: var(--color-card);
  border-radius: 20px;
  margin-top: 120px;
  position: relative;
}
.weapon-item + .weapon-item{
  margin-top: 60px;
}

.weapon-item__num {
  font-size: clamp(4.0rem, 9vw, 6.0rem);
  font-weight: 700;
  color: var(--color-orange);
  position: absolute;
  top: -0.75em;
  left: 0.75em;
}

.weapon-item__body{
  display: flex;
  padding: 40px 4%;
}

.weapon-item__icon {
  width: 180px;
  flex-shrink: 0;
}
.weapon-item__box{
  margin-left: 8%;
}
.weapon-item__box > div{
  display: flex;
  align-items: flex-end;
}

.weapon-item__title {
  font-size: clamp(2.5rem, 4.5vw, 4.0rem);
  font-weight: 700;
}

.weapon-item__desc {
  font-size: clamp(1.3rem, 3vw, 1.6rem);
  line-height: 2.2;
  margin-top: 1.5em;
}
.weapon-item__tags {
  display: flex;
  margin-top: 2.5em;

  div + div{
    margin-left: 20px;
  }
}

.weapon-item__badge{
  width: clamp(70px, 17.9vw, 90px);
  margin-left: 5%;
}


@media (max-width: 1023px) {


  .split-head {
    display: block;
  }

  .split-head__lead {
    margin-top: clamp(30px, 8vw, 40px);
  }

  .split-head__media {
    width: 100%;
    margin-top: clamp(40px, 9.7vw, 50px);
  }

  .weapon-list {
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
  }

  .weapon-item {
    border-radius: 10px;
    margin-top: clamp(60px, 10.2vw, 70px);
  }
  .weapon-item + .weapon-item{
    margin-top: clamp(40px, 9.7vw, 50px);
  }

  .weapon-item__body{
    flex-direction: column;
    align-items: center;
    padding: clamp(30px, 7.7vw, 40px) 5% 5%;
  }

  .weapon-item__icon {
    width: 36vw;
    max-width: 180px;
  }
  .weapon-item__box{
    margin-left: 0;
  }
  .weapon-item__box > div{
    display: block;
    position: relative;
  }

  .weapon-item__title {
    margin-top: 1em;
    text-align: center;
  }

  .weapon-item__desc {
    margin-top: 1em;
  }
  .weapon-item__tags {
    flex-direction: column;

    div + div{
      margin-left: 0;
      margin-top: 1em;
    }
  }

  .weapon-item__badge{
    margin-left: 0;
    position: absolute;
    bottom: 0;
    right: 0;
  }


}


/* Case + plans */
.plan_wrap{
  max-width: 1000px;
  margin: 100px auto 0;
}
.case-study {
  background-color: var(--color-white);
  border-radius: 20px;
  padding-bottom: 40px;
}
.case-study__eyebrow {
  font-size: clamp(2.0rem, 4.5vw, 3.0rem);
  line-height: 1;
  font-weight: 700;
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-orange);
  border-radius: 20px 20px 0 0;
  padding: 0.8em 0;

}

.case-study__body {
  display: flex;
  margin-top: clamp(30px, 8vw, 40px);
  padding: 0 4%;
}
.case-study__body > div:last-child{
  margin-left: 6.6%;
}

.case-study__media {
  width: 50%;
}
.case-study_txt1{
  min-width: 200px;
  border-radius: 17px;
  font-size: clamp(1.5rem, 4vw, 2.0rem);
  font-weight: 700;
  color: var(--color-white);
  background: var(--color-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.1em 1em;
}
.case-study_txt2{
  font-size: clamp(1.5rem, 4vw, 2.0rem);
  font-weight: 700;
  line-height: 1;
  margin-top: 0.6em;

  span{
    font-size: clamp(3.5rem, 6vw, 6.0rem);
    font-weight: 700;
  }
}
.case-study_txt3{
  font-size: clamp(1.3rem, 3vw, 1.6rem);
  margin-top: 0.7em;
}

.case-study__title {
  font-size: clamp(1.5rem, 4vw, 2.0rem);
  font-weight: 700;
  color: var(--color-orange);
  margin-top: 0.5em;
}
.case-study__list{
  margin-top: 2.5em; 
}
.case-study__list > li{
  display: flex;
  font-size: clamp(1.3rem, 3vw, 1.6rem);
  position: relative;
}
.case-study__list > li::before{
  content: '';
  width: 20px;
  background: url(../assets/check.svg) center / 100% no-repeat;
  margin-right: 1em;
}
.case-study__list > li + li{
  margin-top: 1em;
}

.case-option__title{
  font-size: clamp(1.5rem, 4vw, 2.0rem);
  font-weight: 700;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 90px;
}
.case-option__title::before,
.case-option__title::after{
  content: '';
  width: 36%;
  height: 2px;
  background: var(--color-text);
}

.plans-grid {
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
}


.plan-card {
  width: 46%;
  background-color: var(--color-white);
  border-radius: 20px;
  padding-bottom: 40px;
}

.plan-card__head {
  font-size: clamp(1.5rem, 4vw, 2.0rem);
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffb080;
  border-radius: 20px 20px 0 0;
  padding: 0.5em 0;
}

.plan-card__body {
 display: flex;
 flex-direction: column;
 align-items: center;

 .case-study_txt1{
  margin-top: 2em;
 }
 .case-study__list{
  border-top: 2px solid var(--color-black);
  margin-top: 3em;
  padding-top: 3em;

 }
}

.section__cta-wrap {
  text-align: center;
  margin-top: 100px;

  .btn--xl {
    font-size: 2.0em;
    padding: 8px 78px;
  }
}



@media (max-width: 1023px) {

  .plan_wrap{
    margin: 50px auto 0;
  }
  .case-study {
    border-radius: 10px;
    padding-bottom: 30px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }
  .case-study__eyebrow {
    border-radius: 10px 10px 0 0;
  }

  .case-study__body {
    display: block;
    align-items: center;
    padding: 0 5%;
  }
  .case-study__body > div:last-child{
    margin-left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .case-study__media {
    width: 100%;
  }
  .case-study_txt1{
    min-width: 150px;
    margin-top: clamp(40px, 9.7vw, 50px);
  }
  .case-study_txt2{
    margin-top: 1em;

  }

  .case-study__list > li::before{
    width: 4.1vw;
    max-width: 20px;
    flex-shrink: 0;
  }

  .case-option__title{
    margin-top: clamp(40px, 9.7vw, 50px);
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }
  .case-option__title::before,
  .case-option__title::after{
    width: 22%;
  }

  .plans-grid {
    display: block;
    margin-top: clamp(40px, 8.7vw, 50px);
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }


  .plan-card {
    width: 100%;
    border-radius: 10px;
    padding-bottom: clamp(40px, 9.7vw, 50px);
  }

  .plan-card + .plan-card{
    margin-top: clamp(40px, 8.7vw, 50px);
  }

  .plan-card__head {
    border-radius: 10px 10px 0 0;
  }

  .plan-card__body {

    .case-study_txt1{
      margin-top: 1.5em;
    }
    .case-study__list{
      border-top: 1px solid var(--color-black);
      margin-top: 2em;
      padding-top: 2em;
    }
  }

}

/* Voices */
.voices {
  max-width: 1000px;
  margin: 75px auto 0;
}

.voice {
  display: flex;
  justify-content: space-between;
  background-color: var(--color-beige);
  border-radius: 20px;
  padding: 20px 25px;
}
.voice + .voice{
  margin-top: 40px;
}

.voice__avatar {
  width: 19.2%;
}

.voice__content{
  width: 76.9%;
}
.voice__name {
  /*font-size: 2.0rem;*/
  font-size: clamp(1.5rem, 4vw, 2.0rem);
  font-weight: 700;
  color: var(--color-orange);
}

.voice__text {
  /*font-size: 1.6rem;*/
  font-size: clamp(1.3rem, 3vw, 1.6rem);
  text-align: justify;
  margin-top: 1em;
}

@media (max-width: 1023px) {
  .voices {
    margin: 10.7vw auto 0;
  }

  .voice {
    display: block;
    border-radius: 10px;
    padding: 0 5% clamp(30px, 7.7vw, 40px);
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }
  .voice + .voice{
    margin-top: clamp(40px, 9.7vw, 50px);
  }

  .voice__avatar {
    width: 30%;
    max-width: 180px;
    margin: 0 auto;
    transform: translateY(-5vw);
  }

  .voice__content{
    width: 100%;
  }
  .voice__name {
    text-align: center;
  }


}

/* Pre-form + contact */
.pre-form{
  .split-head__lead {
    margin-top: 1.8em;
  }
}
.pre-form_ttl{
  font-size: clamp(2.5rem, 6.5vw, 4.0rem);
  font-weight: 700;
  color: var(--color-orange);
  margin-top: 0.9em;
}

.pre-form_toku{
  width: 500px;
  border-radius: 20px;
  border: 4px solid var(--color-orange);
  background-color: var(--color-white);
  padding: 1.25em 0;
  margin-top: 50px;

  dt{
    font-size: clamp(1.5rem, 3vw, 2.0rem);
    font-weight: 700;
    color: var(--color-orange);
    text-align: center;
  }
  dd{
    font-size: clamp(1.3rem, 3vw, 1.6rem);
    text-align: center;
    margin-top: 0.75em;
  }
}

@media (max-width: 1023px) {
  .pre-form{
    .split-head__lead {
    margin-top: 0.9em;
    text-align: center;
    }
  }

  .pre-form_ttl{
    text-align: center;
  }

  .pre-form_toku{
    width: 90%;
    max-width: 520px;
    border-radius: 10px;
    border: 2px solid var(--color-orange);
    margin: clamp(30px, 9.7vw, 50px) auto 0;

    dd{
      margin-top: 0.5em;
    }
  }

}


/* form */
form{
  max-width: 520px;
  margin-right: 2.5%;
  width: 100%;
}

#form {
  scroll-margin-top: calc(var(--header-h, 64px) + 12px);
}

.form-block{
  margin-top: 100px;

  .form-sent {
    margin: 0 0 1.25rem;
    padding: 0.85rem 1rem;
    border-radius: 6px;
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.35);
    color: #166534;
    font-size: 0.95rem;
    font-weight: 500;
  }

  .form-block_txt{
    font-size: clamp(1.3rem, 3vw, 1.6rem);
    margin-top: 4em;
  }
  .btn--xl {
    padding: 1.2em;
    font-size: clamp(1.5rem, 3vw, 2.0rem);
  }
}

.field {
  margin-bottom: 3em;
}

.field label {
  display: block;
  font-size: clamp(1.3rem, 3vw, 1.6rem);
  font-weight: 700;
  margin-bottom: 0.5em;
  color: #333;
}

.req {
  color: var(--color-orange);
  font-size: 1.6rem;
}

.field input,
.field textarea {
  width: 100%;
  padding: 0.9em;
  font-size: clamp(1.5rem, 3vw, 2.0rem);
  /*font-size: 2rem;*/
  border: 1px solid #333;
  border-radius: 10px;
  /*font-family: inherit;*/
  /*transition: border-color 0.2s, box-shadow 0.2s;*/
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--color-orange);
  box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.15);
}

.field textarea {
  resize: vertical;
  min-height: 120px;
}

.field--consent {
  margin-bottom: 7.5em;
}

.field__consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--color-navy);
  cursor: pointer;

}

.field__consent input[type="checkbox"] {
  width: auto;
  margin: 0.2em 0 0;
  flex-shrink: 0;
  accent-color: var(--color-orange);
  cursor: pointer;
}

.field__consent-text a {
  color: var(--color-orange);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.field__consent-text a:hover {
  text-decoration-thickness: 2px;
}


@media (max-width: 1023px) {
  form{
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
  }

  .form-block{
    margin-top: 50px;

    .form-block_txt{
      margin-top: 2em;
    }

    .btn--xl{
      display: block;
      width: 80%;
      max-width: 520px;
      margin-left: auto;
      margin-right: auto;
    }

  }

  .contact-form{
    margin-top: 3em;
  }
  .field--consent {
    margin-bottom: 4em;
  }

  .field input,
  .field textarea {
    border-radius: 5px;
    padding: 1.2em 0.9em;
  }

}

/* Footer */
.site-footer {
  background: var(--color-text);
  color: var(--color-white);
  padding: 20px 0 15px;
}

.site-footer__inner {
  display: flex;
  justify-content: space-between;
}

.site-footer__logo {
  width: 350px;
}

.site-footer__copy {
  font-size: 1.6rem;
  letter-spacing: 0.05em;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
