@charset "UTF-8";

/* ===================== RESET ===================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  color: var(--black);
  background: var(--white);
  line-height: 1.7;
}
body.is-loading {
  overflow: hidden;
}
body.is-loading > *:not(.loading) {
  visibility: hidden;
}

/* ===================== LOADING ===================== */
.loading {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--yellow);
  transition: opacity 0.4s ease;
}
.loading__logo {
  width: min(14vw, 200px);
  height: auto;
  animation: loading-pulse 1.2s ease-in-out infinite;
}
.loading.is-hidden {
  opacity: 0;
  pointer-events: none;
}
@keyframes loading-pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(0.94);
  }
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
ul,
ol {
  list-style: none;
}
button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

/* ===================== PC / SP SWITCH ===================== */
/* SP表示への切り替えは style_sp.css 側のメディアクエリで上書きする */
.sp {
  display: none;
}

/* ===================== CSS VARIABLES ===================== */
:root {
  --yellow: #fbd300;
  --teal: #1e9b8f;
  --jade: #259f95;
  --teal-light: #57B3B9;
  --black: #000000;
  --white: #FFFFFF;
  --gray-bg: #F2F2F2;
  --gray-text: #666666;
  --border: #E0E0E0;
  --green-line: #4CAF3D;

  --container: 70%;
  --section-padding: 6.25vw;
}

/* ===================== WRAPPER STRUCTURE ===================== */
.header__inner,
.why__inner,
.price__inner,
.instagram__inner,
.how__inner,
.strengths__inner,
.area__inner,
.voice__inner,
.line__inner,
.question__inner,
.specialist__inner,
.sns__inner,
.contact__inner,
.footer__inner {
  width: var(--container);
  margin-inline: auto;
}

section {
  padding-block: var(--section-padding);
  max-width: 1920px;
  margin-inline: auto;
}

/* ===================== COMMON ===================== */
.c-eyebrow {
  font-size: min(1.3542vw, 26px);
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--black);
  text-align: center;
  margin-bottom: 0.8333vw;
}
.c-title {
  font-size: min(2.6042vw, 50px);
  font-weight: 800;
  text-align: center;
  letter-spacing: 0.02em;
  margin-bottom: 0.8333vw;
}
.c-lead {
  font-size: min(1.3542vw, 26px);
  color: var(--black);
  text-align: center;
  margin-bottom: 2.9167vw;
}
.c-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4167vw;
  padding: 0.8333vw 2.0833vw;
  border-radius: 2.6042vw;
  font-size: min(0.7813vw, 15px);
  font-weight: 700;
  letter-spacing: 0.02em;
}
.c-btn--teal {
  background: var(--white);
  color: var(--teal);
  border: 1px solid var(--teal);
}
.c-btn--green {
  background: #06C755;
  color: var(--white);
}

/* ===================== HEADER ===================== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  max-width: 1920px;
  margin-inline: auto;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4vw;
}
.header__logo{
  height: 80%;
}
.header__logo img {
  height: 100%;
}
.header__drawer-input {
  display: none;
}
.header__hamburger,
.header__drawer-nav {
  display: none;
}
.header__nav {
  width: 50%;
}
.header__nav-list {
  display: flex;
  gap: 5%;
}
.header__nav-list a {
  font-size: min(1.3021vw, 25px);
  font-weight: 500;
}
.header__icons {
  display: flex;
  gap: 5%;
  height: 60%;
}
.header__icon {
  width: fit-content;
  height: 100%;
}
.header__icon img {
  height: 100%;
  object-fit: contain;
}

/* ===================== HERO ===================== */
.hero {
  position: relative;
  background: var(--yellow);
  padding-block: 0;
}
.hero__inner {
  display: flex;
  align-items: stretch;
  width: 100%;
  max-width: 1920px;
  margin-inline: auto;
  height: 93dvh;
}
.hero__content {
  width: 50%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6.25%;
}
.hero__badge {
  display: inline-block;
  background: var(--black);
  color: var(--white);
  font-size: min(1.5625vw, 30px);
  font-weight: 700;
  padding: 1% 4%;
  margin-bottom: 2.5%;
  clip-path: polygon(5% 0, 100% 0, 95% 100%, 0 100%);
  width: fit-content;
}
.hero__title {
  margin-bottom: 2.5%;
}
.hero__title-mark {
  display: inline-block;
  padding-right: 1.5vw;
  padding-left: 0.8vw;
  margin-right: -1.5vw;
  margin-left: -0.8vw;
  background-image: linear-gradient(#fdf3a8, #fdf3a8);
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 0% 33%;
  animation: hero-title-mark 0.6s ease-out 0.3s forwards;
  animation-play-state: paused;
}
.hero__title-mark--1 img {
  width: min(19.2708vw, 370px);
  height: auto;
}
.hero__title-mark--2 img {
  width: min(28.125vw, 540px);
  height: auto;
}
.hero__title-mark--2 {
  animation-delay: 0.6s;
}
body.is-loaded .hero__title-mark {
  animation-play-state: running;
}
@keyframes hero-title-mark {
  to {
    background-size: 100% 33%;
  }
}
.hero__text {
  font-size: min(1.3021vw, 25px);
  font-weight: 500;
  margin-bottom: 3%;
}
.hero__buttons {
  display: flex;
  gap: 1.6667%;
  margin-bottom: 3.75%;
}
.hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 5%;
  padding: 1.6667% 3.3333%;
  border-radius: 0.5vw;
  font-size: min(1.4583vw, 28px);
  font-weight: 700;
  white-space: nowrap;
}
.hero__btn--line {
  background: linear-gradient(90deg, #509800 0%, #8dc700 100%);
  color: var(--white);
}
.hero__btn--white {
  background: var(--white);
  color: var(--black);
}
.hero__btn-icon {
  width: min(1.4583vw, 28px);
  height: auto;
  flex-shrink: 0;
  object-fit: contain;
}
.hero__stats {
  display: flex;
  gap: 4.1667%;
  margin-bottom: 2.5%;
}
.hero__stats-num {
  display: block;
  font-size: min(3.2813vw, 63px);
  font-weight: 800;
  line-height: 1;
}
.hero__stats-num small {
  font-size: min(1.875vw, 36px);
  font-weight: 600;
}
.hero__stats-label {
  display: block;
  font-size: min(0.7813vw, 15px);
  font-weight: 500;
  margin-top: 0.625%;
}
.hero__notes {
  font-size: min(1.0417vw, 20px);
  font-weight: 500;
  color: var(--black);
}
.hero__image {
  width: 50%;
  flex-shrink: 0;
  border-radius: 2.0833vw 0 0 2.0833vw;
  overflow: hidden;
}
.hero__image img,
.hero__image video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 6.25vw;
  height: 3.125vw;
  background: var(--gray-bg);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.hero__scroll-icon {
  width: 25%;
  height: 35%;
  margin-top: 20%;
  object-fit: contain;
}

/* ===================== PROBLEM ===================== */
.problem {
  background: var(--gray-bg);
}
.problem__inner {
  width: 70%;
  margin-inline: auto;
}
.problem__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 4.1667%;
  column-gap: 1.7%;
  row-gap: 1vw;
}
.problem__card {
  background: var(--white);
  border-radius: 0.8333vw;
  padding: 2.9762% 2.0833%;
  text-align: center;
  width: calc((100% - 1.7857% * 2) / 3);
  display: flex;
  flex-direction: column;
}
.problem__icon {
  width: 10.4167vw;
  height: 10.4167vw;
  object-fit: contain;
  margin: 0 auto 1.0417vw;
}
.problem__heading {
  font-size: min(1.4583vw, 28px);
  font-weight: 700;
  color: var(--teal);
  margin-top: auto;
  margin-bottom: 0.625vw;
  line-height: 1.3;
}
.problem__text {
  font-size: min(1.0417vw, 20px);
  color: var(--black);
  margin-top: auto;
}

/* ===================== WHY ===================== */
.why .c-title strong {
  font-size: min(3.5417vw, 68px);
}

.why__inner {
  width: 100%;
  max-width: 1920px;
}

.why__list {
  margin-top: 2.9167%;
  display: flex;
  flex-direction: column;
}
.why__item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 16.6667vw;
}
.why__item--yellow .why__body {
  background: var(--yellow);
}
.why__item--teal .why__body {
  background: var(--teal-light);
  color: var(--black);
}
.why__media {
  overflow: hidden;
}
.why__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.why__body {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.why__item--teal .why__bg-num {
  color: #59c5bc;
}
.why__bg-num {
  position: absolute;
  right: 0;
  top: -5%;
  font-size: min(10.4167vw, 200px);
  font-weight: 800;
  color: #f0d000;
  line-height: 1;
  pointer-events: none;
}
.why__content {
  width: 65%;
  margin-left: auto;
  margin-right: auto;
}
.why__heading {
  font-size: min(2.7083vw, 52px);
  font-weight: 700;
  margin-bottom: 2.5641%;
  position: relative;
}
.why__text {
  font-size: min(1.3021vw, 25px);
  font-weight: 500;
  line-height: 1.85;
  margin-bottom: 8.0128%;
  position: relative;
  letter-spacing: 0.05em;
}
.why__note {
  font-size: min(1.3021vw, 25px);
  font-weight: 500;
  text-align: center;
  background: rgba(255, 255, 255, 0.5);
  display: block;
  padding: 6.4103% 2.2436%;
  border-radius: 4px;
  position: relative;
  line-height: 1;
}

/* ===================== PRICE ===================== */
.price__inner {
  width: 70%;
}

.price__tabs {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: fit-content;
  margin-inline: auto;
  margin-bottom: 3.125vw;
  padding: 0.3125vw;
  border-radius: 2.0833vw;
  background: var(--gray-bg);
}
.price__tab-indicator {
  position: absolute;
  top: 0.3125vw;
  left: 0.3125vw;
  width: calc((100% - 0.625vw) / 3);
  height: calc(100% - 0.625vw);
  border-radius: 1.5625vw;
  background: var(--yellow);
  transition: transform 0.3s ease;
}
.price__tab {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4167vw;
  padding: 0.5208vw 1.25vw;
  font-size: min(1.3542vw, 26px);
  font-weight: 500;
  color: var(--gray-text);
  background: transparent;
  transition: color 0.3s ease;
}
.price__tab.is-active {
  color: var(--black);
}
.price__tab-icon {
  width: 1.3542vw;
  height: 1.3542vw;
  object-fit: contain;
}
.price__panel {
  display: none;
}
.price__panel.is-active {
  display: block;
}
.price__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3393%;
  width: 100%;
}
.price__card {
  background: #EAF0F7;
  border: 1px solid var(--jade);
  border-radius: 0.8333vw;
  padding: 8.9286% 5.3571% 4.4643%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.price__card--popular {
  border: 3px solid var(--yellow);
}
.price__badge {
  position: absolute;
  top: -3.125%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--yellow);
  color: var(--black);
  font-size: min(1.3021vw, 25px);
  font-weight: 600;
  line-height: 1;
  padding: 2.2321% 6.6964%;
  border-radius: 0.5208vw;
  white-space: nowrap;
}
.price__plan {
  font-size: min(1.3542vw, 26px);
  font-weight: 600;
  color: var(--jade);
  text-align: center;
  margin-bottom: 2.6786%;
}
.price__amount {
  font-size: min(2.7083vw, 52px);
  font-weight: 700;
  margin-bottom: 3.125%;
}
.price__amount span {
  font-size: min(1.4063vw, 27px);
  font-weight: 500;
  color: var(--black);
  margin-left: 4px;
}
.price__desc {
  font-size: min(1.0417vw, 20px);
  font-weight: 500;
  color: var(--black);
  margin-bottom: 4.0179%;
  width: 90%;
}

.price__features {
  width: 90%;
}

.price__features li {
  display: flex;
  align-items: center;
  gap: 1.7857%;
  font-size: min(1.0417vw, 20px);
  font-weight: 500;
  color: var(--black);
  padding: 1.3393% 0;
}
.price__features li:first-child {
  border-top: none;
}
.price__features li::before {
  content: "";
  width: 1.1979vw;
  height: 1.1979vw;
  flex-shrink: 0;
  background: url("../assets/img/checkmark.png") no-repeat center / contain;
}
.price__attention {
  font-size: min(1.0417vw, 20px);
  font-weight: 500;
  line-height: 1;
  color: var(--jade);
  margin-top: auto;
  padding-top: 3.5714%;
  white-space: nowrap;
}
.price__more {
  text-align: center;
  margin-top: 3.7202%;
}
.price__more .c-btn--teal {
  background: #EAF0F7;
  color: var(--jade);
  border: 1px solid var(--jade);
  padding: 0.8333vw 3.125vw;
  font-size: min(1.1979vw, 23px);
  font-weight: 500;
  line-height: 1;
}

/* ===================== SERVICE ===================== */
.service {
  background: var(--gray-bg);
}
.service__inner {
  width: 50%;
  margin-inline: auto;
}
.service__grid.pc {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6667%;
  margin-top: 5.8333%;
  width: 100%;
}
.service__card {
  background: var(--jade);
  border-radius: 0.625vw;
  text-align: center;
  color: var(--white);
  aspect-ratio: 1 / 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 4px solid var(--white);
  padding: 0 6.6667%;
}
.service__card img {
  width: 5.7292vw;
  height: 5.7292vw;
  object-fit: contain;
  margin: 0 auto 3.3333%;
  filter: brightness(0) invert(1);
}
.service__card img.service__icon--plain {
  filter: none;
}
.service__name {
  font-size: min(1.0938vw, 21px);
  font-weight: 700;
  line-height: 1.3;
  display: flex;
  align-items: center;
  margin-bottom: 2.5%;
}
.service__sub {
  font-size: min(0.8854vw, 17px);
  font-weight: 500;
  line-height: 1.3;
  min-height: calc(0.8854vw * 1.3 * 2);
  display: flex;
  align-items: flex-start;
  text-align: left;
}

/* ===================== INSTAGRAM ===================== */
.instagram {
  background: var(--yellow);
  padding-block: 1.5625vw;
  overflow-y: hidden;
}
.instagram__inner {
  position: relative;
  height: 100%;
}
.instagram__image {
  position: absolute;
  left: 0;
  bottom: -5%;
  height: 30%;
}
.instagram__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.instagram__body {
  width: 100%;
  text-align: center;
}
.instagram__heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.1161%;
  font-size: min(1.9271vw, 37px);
  font-weight: 700;
  margin-bottom: 1.1905%;
}
.instagram__heading-line {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 1.1161%;
  white-space: nowrap;
}
.instagram__heading-icon {
  width: 2.6042vw;
  height: 2.6042vw;
}
.instagram__text {
  font-size: min(1.1979vw, 23px);
  font-weight: 500;
  margin-bottom: 1.7857%;
}
.instagram__btn {
  display: inline-block;
  background: var(--gray-bg);
  border: 2px solid var(--jade);
  color: var(--jade);
  padding: 1.0417% 2.9762%;
  border-radius: 1.5625vw;
  font-size: min(1.1979vw, 23px);
  font-weight: 500;
  line-height: 1;
}

/* Instagram feed grid */
.instagram__feed {
  margin-top: 2%;
  width: 60%;
  margin-bottom: 5%;
  margin-inline: auto;
}
#instagram-feed {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5%;
}
.insta-item {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  cursor: pointer;
}
.insta-item img,
.insta-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.insta-item:hover img,
.insta-item:hover video {
  transform: scale(1.05);
}

/* Popup overlay */
#insta-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
#insta-popup-content {
  max-width: 90vw;
  max-height: 90vh;
}
#insta-popup-content img,
#insta-popup-content video {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  display: block;
}
#popup-close-btn {
  position: fixed;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
}
.popup-carousel {
  position: relative;
}
.popup-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.3);
  border: none;
  color: #fff;
  font-size: 2rem;
  padding: 0.5rem 0.8rem;
  cursor: pointer;
  border-radius: 4px;
}
.popup-arrow--left { left: 0.5rem; }
.popup-arrow--right { right: 0.5rem; }
.popup-arrow:disabled { opacity: 0.2; cursor: default; }
.popup-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 8px;
}
.popup-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
}
.popup-dot.active { background: #fff; }

/* ===================== HOW ===================== */
.how__inner {
  width: 50%;
}
.how__timeline {
  margin-top: 5.8333%;
  display: flex;
  flex-direction: column;
  gap: 2.3vw;
  margin-inline: auto;
  border: 4px solid var(--yellow);
  padding: 3.3333% 3.3333% 3.3333% 5.8333%;
}
.how__step {
  position: relative;
  display: grid;
  grid-template-columns: 3.3333vw 1fr;
  align-items: center;
  gap: 3.125%;
  background: var(--yellow);
  padding: 2.5% 5.2083% 2.5% 6.25%;
}
.how__step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1.875vw;
  transform: translateX(-50%);
  width: 1.25vw;
  height: 1.25vw;
  background: url("../assets/img/allow_5.svg") no-repeat center / contain;
}
.how__num {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 9%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: #2b324e;
  color: var(--white);
  font-size: min(1.4583vw, 28px);
  font-weight: 700;
  line-height: 1;
  text-align: center;
}
.how__num small {
  font-size: min(0.8333vw, 16px);
  font-weight: 500;
}
.how__icon {
  width: 3.3333vw;
  height: 3.3333vw;
  object-fit: contain;
}
.how__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}
.how__heading {
  font-size: min(1.4063vw, 27px);
  font-weight: 700;
  margin-bottom: 0.8333%;
}
.how__text {
  font-size: min(1.0938vw, 21px);
  font-weight: 500;
  margin-bottom: 1.25%;
}
.how__tag {
  display: inline-block;
  background: var(--gray-bg);
  border: 1px solid var(--jade);
  color: var(--jade);
  font-size: min(0.8333vw, 16px);
  font-weight: 500;
  padding: 0vw 1vw;
  border-radius: 1vw;
  width: fit-content;
  letter-spacing: 0.05vw;
}

/* ===================== strengths ===================== */
.strengths {
  background: var(--gray-bg);
}
.strengths .c-title strong {
  font-size: min(3.5417vw, 68px);
}
.strengths__list {
  margin-top: 4.1667%;
  display: flex;
  flex-direction: column;
  gap: 2vw;
}
.strengths__item {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 2.9762%;
  align-items: center;
}
.strengths__item--reverse {
  grid-template-columns: 2fr 3fr;
}
.strengths__item--reverse .strengths__media {
  order: -1;
}
.strengths__title {
  display: flex;
  align-items: center;
  gap: 1.9841%;
  margin-bottom: 1.9841%;
}
.strengths__num {
  display: block;
  width: 5.7292vw;
  flex-shrink: 0;
}
.strengths__heading {
  font-size: min(2.0833vw, 40px);
  font-weight: 800;
  margin-top: 0.7813vw;
  line-height: 1;
}
.strengths__text {
  font-size: min(1.1979vw, 23px);
  font-weight: 500;
  color: var(--black);
  width: 85%;
  margin-left: 4.9603%;
}
.strengths__media img {
  width: 100%;
  object-fit: cover;
}

/* ===================== AREA ===================== */
.area {
  position: relative;
  overflow: hidden;
}
.area__inner {
  width: 55%;
}
.area__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.area__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.area__grid.pc {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4.7348%;
  margin-top: 5.303%;
  width: 100%;
}
.area__card {
  background: var(--white);
  padding: 6.0606% 5.303%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.area__heading {
  font-size: min(2.0313vw, 39px);
  font-weight: 700;
  margin-bottom: 1.8939%;
}
.area__text {
  font-size: min(1.25vw, 24px);
  line-height: 1.4;
  color: var(--black);
  margin-top: auto;
  margin-bottom: auto;
  padding-left: 4.5%;
  padding-right: 4.5%;
}
.area__tag {
  display: inline-block;
  background: var(--jade);
  color: var(--white);
  font-size: min(1.0417vw, 20px);
  font-weight: 400;
  padding: 1.5152% 4.7348%;
  border-radius: 0.3125vw;
  white-space: nowrap;
  margin-top: 3.7879%;
}

/* ===================== VOICE ===================== */
.voice {
  background: var(--yellow);
  text-align: center;
}
.voice__icon {
  width: 4.6875vw;
  object-fit: contain;
  margin: 0 auto 0.8333vw;
}
.voice__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.7857%;
  margin-top: 4.1667%;
  text-align: left;
}
.voice__card {
  background: var(--white);
  border-radius: 0.2604vw;
  padding: 7.1429% 6.25%;
  display: flex;
  flex-direction: column;
}
.voice__tag {
  display: inline-block;
  background: var(--teal);
  color: var(--white);
  font-size: min(0.7292vw, 14px);
  font-weight: 400;
  padding: 4px 3.1250%;
  border-radius: 3px;
  margin-bottom: 1.1161%;
  width: fit-content;
}
.voice__stars {
  display: block;
  color: var(--yellow);
  font-size: min(1.8229vw, 35px);
  margin-bottom: 2.2321%;
}
.voice__text {
  font-size: min(1.0417vw, 20px);
  font-weight: 500;
  margin-bottom: 3.3482%;
}
.voice__author {
  display: flex;
  align-items: center;
  gap: 3.1250%;
  margin-top: auto;
}
.voice__author img {
  width: 3.3333vw;
  height: 3.3333vw;
  object-fit: contain;
}
.voice__author-name {
  font-size: min(0.9375vw, 18px);
  font-weight: 500;
}
.voice__author-sub {
  font-size: min(0.7292vw, 14px);
  font-weight: 500;
}

/* ===================== LINE BANNER ===================== */
.line__inner {
  width: 50%;
}
.line__banner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 2.5%;
  background: linear-gradient(40deg, #509800 0%, #8dc700 100%);
  border-radius: 1.0417vw;
  padding: 2.9167% 4.1667% 2.9167% 3.125%;
  overflow: hidden;
}
.line__icon {
  width: 20%;
  flex-shrink: 0;
  align-self: flex-end;
  margin-bottom: -3.3333%;
}
.line__body {
  flex: 1;
  align-self: center;
}
.line__heading {
  font-size: min(2.0833vw, 40px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.625%;
  white-space: nowrap;
}
.line__text {
  font-size: min(0.9375vw, 18px);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}
.line__btn {
  background: var(--white);
  color: #43a504;
  font-size: min(1.1458vw, 22px);
  font-weight: 700;
  padding: 1.4583% 3.125%;
  border-radius: 2.6042vw;
  white-space: nowrap;
  align-self: center;
}

/* ===================== QUESTION (FAQ) ===================== */
.question__inner {
  width: 50%;
}
.question__list {
  margin-top: 5.8333%;
  margin-inline: auto;
  border: 1px solid var(--border);
}
.question__item {
  border-bottom: 1px solid var(--border);
}
.question__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 3.125%;
  padding: 3.125%;
  font-size: min(1.0417vw, 20px);
  font-weight: 500;
  text-align: left;
  color: var(--black);
}
.question__icon {
  position: relative;
  width: 0.8333vw;
  height: 0.8333vw;
  flex-shrink: 0;
  order: -1;
}
.question__icon::before,
.question__icon::after {
  content: "";
  position: absolute;
  background: var(--gray-text);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.question__icon::before {
  width: 100%;
  height: 2px;
}
.question__icon::after {
  width: 2px;
  height: 100%;
  transition: transform 0.2s;
}
.question__item.is-open .question__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.question__a {
  display: grid;
  grid-template-rows: 0fr;
  padding: 0 3.125% 0 8.3333%;
  overflow: hidden;
  font-size: min(1.0417vw, 20px);
  font-weight: 500;
  color: var(--black);
  background: var(--gray-bg);
  transition: grid-template-rows 0.3s ease, padding-block 0.3s ease;
}
.question__a > p {
  min-height: 0;
}
.question__item.is-open .question__a {
  grid-template-rows: 1fr;
  padding: 1.5625vw 3.125% 1.5625vw 8.3333%;
}

/* ===================== SPECIALIST ===================== */
.specialist {
  background: var(--gray-bg);
}
.specialist__tabs {
  display: flex;
  justify-content: center;
  gap: 0.5952%;
  margin-bottom: 3.5714%;
  flex-wrap: wrap;
}
.specialist__tab {
  display: inline-flex;
  align-items: center;
  gap: 0.4167vw;
  padding: 0.4167vw 1.1458vw;
  border-radius: 1.5625vw;
  font-size: min(0.9375vw, 18px);
  font-weight: 500;
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--gray-text);
}
.specialist__tab-icon {
  width: 1.0417vw;
  height: 1.0417vw;
  object-fit: contain;
}
.specialist__tab.is-active {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--black);
}
.specialist__grid.pc {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2vw;
}
.specialist__card {
  background: var(--white);
  overflow: hidden;
  align-self: start;
}
.specialist__card.is-hidden {
  display: none;
}
.specialist__photo {
  position: relative;
  overflow: hidden;
}
.specialist__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.specialist__category {
  position: absolute;
  top: 0;
  left: 0;
  background: #282828;
  color: var(--white);
  font-size: min(0.8854vw, 17px);
  font-weight: 500;
  padding: 1.7857% 4.9107%;
}
.specialist__catch {
  position: absolute;
  left: 0;
  bottom: 8.9286%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1vw;
  white-space: nowrap;
}
.specialist__catch span {
  background: rgba(249, 209, 0, 0.85);
  color: var(--black);
  font-size: min(1.25vw, 24px);
  font-weight: 400;
  line-height: 1;
  padding: 2.5% 5%;
}
.specialist__body {
  padding: 5% 5% 7%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.specialist__name {
  font-size: min(1.9792vw, 38px);
  font-weight: 500;
}
.specialist__role {
  font-size: min(1.1458vw, 22px);
  color: var(--black);
  font-weight: 400;
  margin-bottom: 2px;
  white-space: nowrap;
}
.specialist__years {
  font-size: min(0.9896vw, 19px);
  font-weight: 400;
  color: var(--black);
  margin-bottom: 5%;
}
.specialist__badge {
  display: inline-block;
  background: var(--jade);
  color: var(--white);
  font-size: min(0.8854vw, 17px);
  font-weight: 500;
  padding: 4px 5.5804%;
  border-radius: 1.0417vw;
  margin-bottom: 6.6964%;
}
.specialist__more {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows 0.3s ease;
  width: 100%;
  align-self: stretch;
}
.specialist__more-inner {
  min-height: 0;
  width: 100%;
}
.specialist__card.is-open .specialist__more {
  grid-template-rows: 1fr;
}
.specialist__interview {
  font-size: min(1.9271vw, 37px);
  font-weight: 800;
  font-style: italic;
  color: var(--yellow);
  line-height: 1;
  border-bottom: 2px solid var(--yellow);
  margin-bottom: 2.2321%;
  align-self: flex-start;
  width: 100%;
}
.specialist__text {
  font-size: min(1.0417vw, 20px);
  font-weight: 400;
  color: var(--black);
  margin-bottom: 3.125%;
}
.specialist__q {
  font-size: min(1.1979vw, 23px);
  font-weight: 800;
  color: var(--teal);
  border-top: 2px solid var(--yellow);
  padding-top: 3.125%;
  margin-bottom: 3.125%;
}
.specialist__tags {
  display: flex;
  flex-wrap: wrap;
  column-gap: 2%;
  row-gap: 0.3vw;
  margin-top: 3.125%;
}
.specialist__tags li {
  border: 2px solid var(--jade);
  color: var(--teal);
  background: var(--gray-bg);
  font-size: min(0.7292vw, 14px);
  font-weight: 500;
  padding: 4px 3.125%;
  border-radius: 1.0417vw;
}

/* ===================== SNS ===================== */
.sns {
  background: var(--yellow);
  border-radius: 0 0 2.0833vw 2.0833vw;
  overflow: hidden;
}
.sns__inner {
  display: grid;
  grid-template-columns: 45% 45%;
  gap: 10%;
  width: 60%;
}
.sns__banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4.5%;
  padding: 5.5% 6%;
  border-radius: 1.0417vw;
  color: var(--white);
}
.sns__banner--line {
  background: linear-gradient(30deg, #509800 0%, #8dc700 100%);
  border: 7px solid #0ca300;
}
.sns__banner--insta {
  background: linear-gradient(30deg, #ffd675 0%, #ff9232 20%, #ff572e 40%, #ff0074 55%, #c703a2 70%, #7e16d3 85.5%, #333bf1 100%);
  border: 7px solid #e00b8f;
}
.sns__top {
  display: flex;
  align-items: center;
  gap: 3.5%;
  width: 100%;
  margin-bottom: 3%;
}
.sns__icon {
  width: 15%;
  height: auto;
  flex-shrink: 0;
  object-fit: contain;
}
.sns__top > div {
  flex: 1;
}
.sns__heading {
  font-size: min(1.6667vw, 32px);
  font-weight: 800;
  margin-bottom: 2.8935%;
  line-height: 1;
  white-space: nowrap;
}
.sns__text {
  font-size: min(0.8333vw, 16px);
  font-weight: 500;
}
.sns__btn {
  background: var(--white);
  font-size: min(0.9375vw, 18px);
  font-weight: 800;
  padding: 1% 7%;
  border-radius: 2.6042vw;
  white-space: nowrap;
}
.sns__banner--line .sns__btn {
  color: #2baf00;
}
.sns__banner--insta .sns__btn {
  color: #f4005e;
}

/* ===================== CONTACT ===================== */
.contact {
  text-align: center;
  position: relative;
  overflow: hidden;
}
.contact__title {
  font-size: min(2.9688vw, 57px);
  font-weight: 700;
  margin-bottom: 1.4881%;
}
.contact__text {
  font-size: min(1.1979vw, 23px);
  font-weight: 500;
  color: var(--black);
  margin-bottom: 4.4643%;
}
.contact__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8333vw;
  background: var(--gray-bg);
  border: 4px solid var(--jade);
  color: var(--black);
  font-weight: 700;
  font-size: min(1.7188vw, 33px);
  padding: 0.9375vw 1.3021vw 0.9375vw 2.3438vw;
  border-radius: 0.5208vw;
  margin-bottom: 2.381%;
}
.contact__btn-icon {
  width: 1.25vw;
  height: 1.25vw;
  flex-shrink: 0;
}
.contact__tel-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.7857%;
}
.contact__tel-label {
  font-size: min(1.8229vw, 35px);
  font-weight: 700;
}
.contact__tel {
  font-size: min(2.3438vw, 45px);
  font-weight: 700;
}
.contact__image {
  position: absolute;
  right: 26%;
  top: 27%;
  height: auto;
  width: 7%;
}

/* ===================== FOOTER ===================== */
.footer {
  background: var(--yellow);
  padding-block: 3.3333vw 1.6667vw;
  border-radius: 2.0833vw 2.0833vw 0 0;
  max-width: 1920px;
  margin-inline: auto;
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 3.5714%;
  flex-wrap: wrap;
}
.footer__logo {
  width: 4.6875vw;
  margin-bottom: 1.1905%;
}
.footer__text {
  font-size: min(1.0417vw, 20px);
  font-weight: 400;
}
.footer__nav {
  display: flex;
  gap: 4.1667%;
  width: 50%;
}
.footer__nav-group h4 {
  font-size: min(1.0938vw, 21px);
  font-weight: 400;
  margin-bottom: 1.3393%;
}
.footer__nav-group li {
  margin-bottom: 0.8929%;
}
.footer__nav-group a {
  font-size: min(1.0417vw, 20px);
  font-weight: 400;
}
.footer__copyright {
  text-align: center;
  font-size: min(1.0938vw, 21px);
  font-weight: 400;
  margin-top: 3.5714%;
}

/* ===================== SCROLL REVEAL ===================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-inview {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ===================== HOVER MOTION ===================== */
.c-btn,
.hero__btn,
.line__btn,
.sns__btn,
.instagram__btn,
.contact__btn {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.c-btn:hover,
.hero__btn:hover,
.line__btn:hover,
.sns__btn:hover,
.instagram__btn:hover,
.contact__btn:hover {
  transform: translateY(-3px);
}

/* ===================== PAGE TOP ===================== */
.page-top {
  position: fixed;
  bottom: 2vw;
  right: 2vw;
  width: 5vw;
  object-fit: contain;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.page-top.is-visible {
  opacity: 1;
  pointer-events: auto;
}
.page-top img {
  width: 100%;
  display: block;
}

