/* ============================================
   RESET & BASE
   ============================================ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "YuGothic", "Yu Gothic", sans-serif;
  color: #353535;
  line-height: 1.8;
  overflow-x: hidden;
  background-color: #fff;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 23px, #ede8f2 23px, #ede8f2 24px),
    repeating-linear-gradient(90deg, transparent, transparent 23px, #ede8f2 23px, #ede8f2 24px);
  font-size: 15px;
}

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

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

ul {
  list-style: none;
}

/* ============================================
   UTILITIES
   ============================================ */
.gradient-text {
  background: linear-gradient(90deg, #7b54e1, #b12dbe);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-purple {
  color: #a03ac9;
}

.check-icon {
  width: 18px;
  height: 17px;
  margin-right: 6px;
  vertical-align: middle;
}

/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: #fff;
  box-shadow: none;
  transition: box-shadow 0.3s ease;
}

.header__inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: 14px 40px;
}

.header__logo a {
  display: block;
}

.header__logo img {
  height: 40px;
  width: auto;
}

.header__subtitle {
  font-size: 14px;
  color: #727272;
  letter-spacing: 1px;
  margin-left: 14px;
  font-weight: 500;

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

.header__nav {
  display: flex;
  align-items: center;
  margin-left: auto;
  gap: 20px;
}

.header__link {
  font-size: 14px;
  font-weight: 700;
  color: #3f61e5;
  letter-spacing: 1px;
}

.header__link-icon {
  font-size: 12px;
}

.header__btn {
  display: inline-block;
  background: linear-gradient(135deg, #7b54e1, #b12dbe);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 28px;
  border-radius: 25px;
  letter-spacing: 1px;
  transition: opacity 0.3s, transform 0.3s;
}

.header__btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.header__btn span {
  margin-left: 4px;
}

/* ============================================
   MV (MAIN VISUAL) — 1920px Figma基準
   ============================================ */

/* --- Container --- */
.mv {
  position: relative;
  width: 100%;
  padding-top: 74px;
  overflow: hidden;
  background: #f5f0fa;
  height: max(600px, 52vw);
}

/* --- Background gradient --- */
.mv__gradient {
  position: absolute;
  left: 0;
  top: 74px;
  width: 100%;
  height: calc(100% - 74px);
  background: linear-gradient(to right, #7B54E1, #B12DBE);
  z-index: 0;
}

/* --- Pattern overlay (1970×1108, left:-50px, top:50px, 12%) --- */
.mv__pattern {
  position: absolute;
  left: calc(-50 / 1920 * 100%);
  top: calc(50 / 1920 * 100vw);
  width: calc(1970 / 1920 * 100%);
  height: calc(1108 / 1920 * 100vw);
  object-fit: cover;
  opacity: 0.12;
  z-index: 1;
  pointer-events: none;
}

/* --- Decorative circles (maru) --- */
.mv__deco {
  position: absolute;
  z-index: 2;
  pointer-events: none;
}

/* maru1: left:1710, top:758, 209×226 — 右下 */
.mv__deco--1 {
  left: calc(1710 / 1920 * 100%);
  top: calc(758 / 1920 * 100vw);
  width: calc(209 / 1920 * 100%);
  height: auto;
}

/* maru2: left:100, top:590, 300×301 — 左下 */
.mv__deco--2 {
  left: calc(100 / 1920 * 100%);
  top: calc(590 / 1920 * 100vw);
  width: calc(300 / 1920 * 100%);
  height: auto;
}

/* maru3: left:-103, top:27, 491×483 — 左上(はみ出し) */
.mv__deco--3 {
  left: calc(-103 / 1920 * 100%);
  top: calc(27 / 1920 * 100vw);
  width: calc(491 / 1920 * 100%);
  height: auto;
}

/* maru4: left:1433, top:466, 300×300 — 右中 */
.mv__deco--4 {
  left: calc(1433 / 1920 * 100%);
  top: calc(466 / 1920 * 100vw);
  width: calc(300 / 1920 * 100%);
  height: auto;
}

/* maru5: left:1455, top:216, 193×193 — 右上 */
.mv__deco--5 {
  left: calc(1455 / 1920 * 100%);
  top: calc(216 / 1920 * 100vw);
  width: calc(193 / 1920 * 100%);
  height: auto;
}

/* --- Photos (左2枚・右2枚, circular mask) --- */
.mv__photo {
  position: absolute;
  z-index: 3;
  border-radius: 50%;
  overflow: hidden;
}

.mv__photo img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  display: block;
}

/* 左上 */
.mv__photo--1 {
  left: calc(100 / 1920 * 100%);
  top: calc(210 / 1920 * 100vw);
  width: calc(280 / 1920 * 100%);
  aspect-ratio: 1;

  img {
    object-position: 50% top;
    transform-origin: 50% top;
    transform: scale(1.2);
  }
}

/* 左中 */
.mv__photo--2 {
  left: calc(90 / 1920 * 100%);
  top: calc(530 / 1920 * 100vw);
  width: calc(200 / 1920 * 100%);
  aspect-ratio: 1;

  img {
    object-position: 40% 30%;
    transform-origin: 40% 30%;
    transform: scale(1.2);
  }
}

/* 左下 */
.mv__photo--3 {
  left: calc(280 / 1920 * 100%);
  top: calc(680 / 1920 * 100vw);
  width: calc(280 / 1920 * 100%);
  aspect-ratio: 1;

  img {
    object-position: 70% 10%;
    transform-origin: 70% 10%;
    transform: scale(1.4);
  }
}

/* 右上 */
.mv__photo--4 {
  right: calc(270 / 1920 * 100%);
  top: calc(180 / 1920 * 100vw);
  width: calc(200 / 1920 * 100%);
  aspect-ratio: 1;

  img {
    object-position: 40% 85%;
    transform-origin: 40% 85%;
    transform: scale(1.25);
  }
}

/* 右中 */
.mv__photo--5 {
  right: calc(100 / 1920 * 100%);
  top: calc(380 / 1920 * 100vw);
  width: calc(260 / 1920 * 100%);
  aspect-ratio: 1;
    img {
        object-position: 40% 70%;
        transform-origin: 40% 70%;
        transform: scale(1.2);
      }
}

/* 右下 */
.mv__photo--6 {
  right: calc(120 / 1920 * 100%);
  top: calc(660 / 1920 * 100vw);
  width: calc(210 / 1920 * 100%);
  aspect-ratio: 1;
    img {
        object-position: 100% 0%;
        transform-origin: 100% 0%;
        transform: scale(1.2);
      }
}

/* フローティングアニメーション */
@keyframes float-forward {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes float-backward {

  0%,
  100% {
    transform: translateY(-10px);
  }

  50% {
    transform: translateY(0);
  }
}

.mv__photo--1 {
  animation: float-forward 3.8s ease-in-out infinite;
}

.mv__photo--2 {
  animation: float-backward 3.5s ease-in-out 0.2s infinite;
}

.mv__photo--3 {
  animation: float-forward 4.3s ease-in-out 0.5s infinite;
}

.mv__photo--4 {
  animation: float-backward 4.2s ease-in-out 0.4s infinite;
}

.mv__photo--5 {
  animation: float-forward 4.4s ease-in-out 0.2s infinite;
}

.mv__photo--6 {
  animation: float-backward 4.1s ease-in-out 0.5s infinite;
}

.mv__charactor {
  position: absolute;
  right: calc(360 / 1920 * 100%);
  bottom: calc(10 / 1920 * 100vw);
  width: calc(280 / 1920 * 100%);
  aspect-ratio: 1;
  z-index: 4;

  img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
    transform-origin: center;
  }
}

/* --- Center content (Flexbox centered) --- */
.mv__center {
  position: absolute;
  z-index: 5;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* Figmaラベル top:188px (MV座標) → vwスケール */
  padding-top: calc(188 / 1920 * 100vw);
  pointer-events: none;
}

.mv__center>* {
  pointer-events: auto;
}

/* --- Label「エルグラム導入事例」--- */
.mv__label {
  display: inline-block;
  margin-bottom: 16px;
}

.mv__label span {
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(24px, 2.08vw, 40px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 3px;
  padding: clamp(12px, 1.04vw, 20px) clamp(20px, 1.82vw, 35px);
  border-radius: 40px;
  background: linear-gradient(to right, #7B54E1, #B12DBE);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.mv__label span::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #fff;
  border-radius: 40px;
  z-index: -1;
}

/* --- Main title「インタビュー協力者募集!」--- */
.mv__title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(40px, 4.17vw, 80px);
  font-weight: 700;
  color: #fff;
  line-height: 1;
  letter-spacing: 1.2px;
  margin-bottom: clamp(10px, 0.94vw, 18px);
  white-space: nowrap;
}

.mv__title span {
  display: inline-block;
}

/* --- 小画面調整 --- */
@media screen and (max-width: 1120px) {
  .mv__photo--1 {
    left: 2%;
    top: 15%;
    width: calc(300 / 1920 * 100%);
  }

  .mv__photo--2 {
    left: calc(30 / 1920 * 100%);
    top: 45%;
    width: calc(240 / 1920 * 100%);
  }

  .mv__photo--3 {
    left: calc(200 / 1920 * 100%);
    top: 65%;
    width: calc(300 / 1920 * 100%);
  }

  .mv__photo--4 {
    right: 4%;
    top: 18%;
    width: calc(240 / 1920 * 100%);
  }

  .mv__photo--5 {
    right: 7.5%;
    top: 40%;
    width: calc(300 / 1920 * 100%);
  }

  .mv__photo--6 {
    right: 6%;
    top: 70%;
    width: calc(250 / 1920 * 100%);
  }

  .mv__charactor {
    display: none;
  }

  .mv__center {
    padding-top: 120px;
  }
}

/* --- Subcopy --- */
.mv__desc {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(16px, 1.56vw, 30px);
  font-weight: 700;
  color: #fff;
  line-height: 1.5;
  letter-spacing: 2.25px;
  text-align: center;
  margin-bottom: clamp(14px, 1.25vw, 24px);
}

.mv__desc span {
  display: inline-block;
  text-align: left;
  word-break: auto-phrase;
}

.mv__highlight {
  color: #F2EB1E;
  font-weight: 700;
}

/* --- Present cards --- */
.mv__presents {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 28px;
  max-width: 100%;
  padding: 0 10px;
}

.mv__present {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  padding: clamp(12px, 4vw, 50px) clamp(10px, 0.94vw, 18px) clamp(10px, 1.25vw, 20px);
  text-align: center;
  width: clamp(160px, 12.86vw, 247px);
  height: clamp(150px, 12.34vw, 237px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.mv__present-badge {
  position: absolute;
  top: 12.5%;
  left: 50%;
  transform: translateX(-50%);
}

.mv__present-badge::before,
.mv__present-badge::after {
  content: '';
  position: absolute;
  top: 60%;
  width: 2px;
  height: 100%;
  background-color: #fff;
}

.mv__present-badge::before {
  left: -10%;
  transform: translateY(-50%) rotate(-35deg);
}

.mv__present-badge::after {
  right: -10%;
  transform: translateY(-50%) rotate(35deg);
}

.mv__present-badge svg {
  overflow: visible;
  font-weight: bold;
  font-size: 19px;
  letter-spacing: 0.75px;
  text-align: center;
  fill: #fff;
  width: clamp(50px, 80%, 87px);
  height: auto;
}

.mv__present-icon {
  width: clamp(24px, 40%, 82px);
  height: 100%;
  margin: 6px 0;
  object-fit: contain;
  object-position: center;
}

.mv__present-text {
  font-family: "Yu Gothic", "YuGothic", sans-serif;
  font-size: clamp(14px, 1.46vw, 28px);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  letter-spacing: 1px;
}

.mv__present-small {
  font-size: clamp(12px, 1.15vw, 22px);
}

/* --- CTA Button --- */
.mv__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: clamp(360px, 28.13vw, 540px);
  height: clamp(60px, 4.95vw, 95px);
  background: linear-gradient(to bottom, #F5E642, #E8C820);
  color: #353535;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(18px, 1.56vw, 30px);
  font-weight: 700;
  letter-spacing: 1.95px;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s, box-shadow 0.3s;
}

.mv__btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.mv__btn-arrow {
  font-size: 20px;
  margin-left: 4px;
}

/* ============================================
   SECTION COMMON
   ============================================ */
.section {
  padding: 80px 0;
  position: relative;
}

.section__icon {
  text-align: center;
  margin-bottom: 8px;
}

.section__icon img {
  width: 85px;
  height: 85px;
  object-fit: contain;
}

.section__label {
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: #a03ac9;
  letter-spacing: 5px;
  margin-bottom: 6px;
}

.section__label--white {
  color: #fff;
}

.section__title {
  text-align: center;
  font-size: 34px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 2.5px;
  margin-bottom: 16px;
}

.section__title span {
  display: inline-block;
}

.section__title--white {
  color: #fff;
  background: none;
  -webkit-text-fill-color: #fff;
}

.section__desc {
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.9;
  max-width: 800px;
  margin: 0 auto 40px;
  word-break: auto-phrase;
}

.section__desc--white {
  color: #fff;
}

/* ============================================
   SECTION1: PURPOSE
   ============================================ */
.section-purpose {
  padding-bottom: 50px;
}

.purpose__cards {
  display: flex;
  justify-content: center;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 40px;
}

.purpose__card {
  text-align: center;
  max-width: 440px;
}

.purpose__card-balloon {
  position: relative;
  margin-bottom: 16px;
}

.purpose__card-balloon img {
  width: 100%;
  max-width: 380px;
}

.purpose__card-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 20px;
  font-weight: 700;
  color: #a03ac9;
  line-height: 1.5;
  white-space: nowrap;
}

.purpose__card-img {
  display: flex;
  justify-content: center;
  align-items: center;
}

.purpose__card-img img {
  width: auto;
  max-width: 100%;
  height: 200px;
  object-fit: contain;
  border-radius: 8px;
}

/* ============================================
   SECTION2: CHECK (こんな方におすすめ)
   ============================================ */
.section-check {
  position: relative;
  padding: 80px 0 60px;
}

.section-check__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f5eefa;
  z-index: 0;
}

.section-check__inner {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 40px;
}

.check__content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.check__items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.check__item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 2px solid #d4b8e8;
  border-radius: 40px;
  padding: 16px 32px;
  min-width: 440px;
}

.check__item-icon {
  color: #7b54e1;
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
}

.check__item p {
  font-size: 18px;
  font-weight: 700;
  color: #7b54e1;
  letter-spacing: 1px;
  white-space: nowrap;
}

.check__character {
  flex-shrink: 0;
  width: 300px;
}

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

/* ============================================
   SECTION3: MERIT
   ============================================ */
.section-merit {
  position: relative;
  padding: 80px 0;
}

.section-merit__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #7b54e1, #b12dbe);
  z-index: 0;
}

.section-merit__inner {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 40px;
}

.merit__cards {
  display: flex;
  justify-content: center;
  gap: 32px;
}

.merit__card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  width: 320px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.merit__card-icon {
  position: relative;
  width: 120px;
  height: 120px;
  padding: 20px;
  margin: 0 auto 16px;
  background-color: #f0e6f7;
  ;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.merit__card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.merit__card-icon svg circle {
  fill: #f0e6f7;
  stroke: none;
}

.merit__card-circle {
  width: 100%;
  height: 100%;
}

.merit__card-icon-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
}

.merit__card-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.merit__card-line {
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, #7b54e1, #b12dbe);
  margin: 0 auto 12px;
  border-radius: 2px;
}

.merit__card-desc {
  font-size: 14px;
  line-height: 1.8;
  font-weight: 500;
  word-break: auto-phrase;
}

.merit__card-desc .text-purple {
  background-color: #ffe066;
  padding: 2px 4px;
  border-radius: 2px;
  white-space: nowrap;
}

/* ============================================
   SECTION4: INTERVIEW
   ============================================ */
.section-interview {
  background: transparent;
}

.interview__cards {
  display: flex;
  justify-content: center;
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto 60px;
  padding: 0 40px;
}

.interview__card {
  background: #fff;
  border: 2px solid #e8ddf0;
  border-radius: 16px;
  padding: 24px 20px;
  text-align: center;
  width: 340px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
}

.interview__card-avatar {
  width: 120px;
  height: 120px;
  margin: 0 auto 12px;
  border-radius: 50%;
  border: 3px solid #a03ac9;
  overflow: hidden;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
}

.interview__card-avatar img {
  display: block;
  width: calc(100% + 8px);
  height: calc(100% + 8px);
  object-fit: cover;
}

.interview__card-name {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 6px;
}

.interview__card-role {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: 12px;
  letter-spacing: 0.8px;
  min-height: 44px;
}

.interview__card-highlight {
  background: #faf5ff;
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 12px;
}

.interview__card-highlight p {
  font-size: 14px;
  font-weight: 700;
  color: #a03ac9;
  line-height: 1.5;
  letter-spacing: 0.8px;
}

.interview__card-desc {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.8;
  text-align: left;
  margin-bottom: 16px;
  flex: 1;
}

.interview__card-btns {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: auto;
}

.interview__btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 25px;
  letter-spacing: 0.8px;
  transition: opacity 0.3s;
}

.interview__btn-icon {
  width: 14px;
  height: 14px;
}

.interview__btn:hover {
  opacity: 0.8;
}

.interview__btn--primary {
  background: linear-gradient(135deg, #7b54e1, #b12dbe);
  color: #fff;
}

.interview__btn--outline {
  border: 2px solid #a03ac9;
  color: #a03ac9;
}

/* Press Release */
.press-release {
  max-width: 1000px;
  margin: 0 auto 60px;
  background: linear-gradient(135deg, #f9f5ff 0%, #faf7ff 100%);
  border-radius: 16px;
  padding: 40px;
}

.press-release__inner {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.press-release__badge {
  display: inline-block;
  background: linear-gradient(135deg, #7b54e1, #b12dbe);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  padding: 6px 20px;
  border-radius: 25px;
  letter-spacing: 3px;
  margin-bottom: 16px;
}

.press-release__left {
  flex: 1;
}

.press-release__title {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 2.5px;
  margin-bottom: 16px;
  line-height: 1.3;
}

.press-release__desc {
  font-size: 14px;
  line-height: 1.8;
  font-weight: 500;
  margin-bottom: 20px;
}

.press-release__list {
  margin-bottom: 20px;
}

.press-release__list li {
  font-size: 14px;
  font-weight: 700;
  color: #a03ac9;
  padding: 10px 0;
  border-bottom: 1px solid #e8ddf0;
  display: flex;
  align-items: center;
}

.press-release__list-item {
  font-size: 14px;
  font-weight: 700;
  color: #a03ac9;
  padding: 10px 0;
  border-bottom: 1px solid #e8ddf0;
  display: flex;
  align-items: center;
}

.press-release__check,
.output__check {
  color: #a03ac9;
  font-weight: 700;
  margin-right: 8px;
  flex-shrink: 0;
}

.press-release__link {
  font-size: 14px;
  font-weight: 500;
  color: #8a32ad;
  letter-spacing: 1px;
  border-bottom: 1px solid #8a32ad;
  padding-bottom: 2px;
  transition: color 0.3s, border-color 0.3s;
}

.press-release__link:hover {
  color: #7b54e1;
  border-color: #7b54e1;
}

.press-release__right {
  flex-shrink: 0;
  width: 320px;
}

.press-release__img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 8px 8px 20px rgba(0, 0, 0, 0.1);
  transform: rotate(4deg);
}

/* Output */
.output {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 40px;
}

.output__title {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 2.5px;
  margin-bottom: 12px;
  line-height: 1.3;
}

.output__desc {
  font-size: 15px;
  line-height: 1.8;
  font-weight: 500;
  margin-bottom: 32px;
}

.output__cards {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
}

.output__card {
  background: #fff;
  border: 2px solid #e8ddf0;
  border-radius: 16px;
  padding: 24px 20px;
  text-align: center;
  flex: 1;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.output__card-icon {
  margin-bottom: 16px;
}

.output__card-icon img {
  height: 64px;
  width: auto;
}

.output__card-title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1.2px;
  margin-bottom: 10px;
  line-height: 1.4;
}

.output__card-desc {
  font-size: 14px;
  line-height: 1.8;
  font-weight: 500;
  margin-bottom: 12px;
  text-align: left;
}

.output__card-items {
  background: #faf5ff;
  border-radius: 8px;
  padding: 10px 14px;
  text-align: left;
}

.output__card-items p {
  font-size: 14px;
  font-weight: 700;
  color: #a03ac9;
  line-height: 2;
  display: flex;
  align-items: center;
}

.output__note {
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  color: #727272;
  margin-top: 24px;
}

/* ============================================
   SECTION5: GUIDELINE
   ============================================ */
.section-guideline {
  position: relative;
}

.section-guideline__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f5eefa;
  z-index: 0;
}

.section-guideline__inner {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 40px;
}

.guideline__cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 24px;
}

.guideline__card {
  background: #fff;
  border-radius: 16px;
  padding: 24px 16px;
  text-align: center;
  width: 230px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.guideline__card-icon {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto 16px;
}

.guideline__card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.guideline__card-circle {
  position: absolute;
  top: 0;
  left: 0;
}

.guideline__card-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px !important;
  height: auto !important;
}

.guideline__card-check {
  position: absolute;
  bottom: -5px;
  right: -5px;
  width: 24px !important;
  height: auto !important;
}

.guideline__card-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 1.2px;
  margin-bottom: 10px;
}

.guideline__card-desc {
  font-size: 13px;
  line-height: 1.8;
  font-weight: 500;
}

.guideline__note {
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.7;
  color: #727272;
}

/* ============================================
   SECTION6: FLOW
   ============================================ */
.section-flow {
  background: transparent;
}

.flow__cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
}

.flow__cards::before {
  content: '';
  position: absolute;
  top: 140px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 3px;
  border-top: 3px dashed #c9a8e8;
}

.flow__card {
  background: #fff;
  border-radius: 16px;
  padding: 24px 16px;
  text-align: center;
  width: 230px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  position: relative;
  border: 2px solid #f0e6f7;
}

.flow__card-num {
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(135deg, #7b54e1, #b12dbe);
  color: #fff;
  font-size: 28px;
  font-weight: 500;
  width: 48px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px 0 14px 0;
  font-family: "Inter", sans-serif;
}

.flow__card-img {
  margin: 16px auto 12px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flow__card-img img {
  max-height: 100px;
  width: auto;
}

.flow__card-title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1.2px;
  margin-bottom: 8px;
  line-height: 1.4;
}

.flow__card-desc {
  font-size: 13px;
  line-height: 1.8;
  font-weight: 500;
}

/* ============================================
   SECTION7: FAQ
   ============================================ */
.section-faq {
  position: relative;
}

.section-faq__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f9f5ff;
  z-index: 0;
}

.section-faq__inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 40px;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq__item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(123, 84, 225, 0.06);
  padding: 0;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.faq__item:hover {
  box-shadow: 0 4px 16px rgba(123, 84, 225, 0.12);
}

.faq__question {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  cursor: pointer;
  width: 100%;
  background: none;
  border: none;
  font-family: inherit;
  color: inherit;
  text-align: left;
  line-height: inherit;
  transition: background 0.2s ease;
}

.faq__question:hover {
  background: #faf8ff;
}

.faq__question p {
  font-size: 15px;
  font-weight: 700;
  flex: 1;
}

.faq__toggle {
  width: 28px;
  height: 28px;
  position: relative;
  flex-shrink: 0;
  border-radius: 50%;
  background: #f5eefa;
  transition: background 0.3s, transform 0.3s;
}

.faq__question[aria-expanded="true"] .faq__toggle {
  background: linear-gradient(135deg, #7b54e1, #b12dbe);
  transform: rotate(180deg);
}

.faq__toggle::before,
.faq__toggle::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 1px;
  transition: transform 0.3s, background 0.3s;
}

.faq__toggle::before {
  width: 14px;
  height: 2px;
  background: #a03ac9;
  transform: translate(-50%, -50%);
}

.faq__toggle::after {
  width: 2px;
  height: 14px;
  background: #a03ac9;
  transform: translate(-50%, -50%);
}

.faq__question[aria-expanded="true"] .faq__toggle::before {
  background: #fff;
}

.faq__question[aria-expanded="true"] .faq__toggle::after {
  background: #fff;
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq__answer-wrapper {
  overflow: hidden;
  transition: height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  height: 0;
}

.faq__answer-wrapper.open {
  /* height set by JS */
}

.faq__answer {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 24px;
  border-top: 1px solid #f0e6f7;
}

.faq__answer-inner {
  padding-top: 16px;
}

.faq__answer p {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.8;
}

.faq__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 20px;
  font-weight: 700;
  flex-shrink: 0;
  padding-bottom: 0.1em;
}

.faq__badge--q {
  background: linear-gradient(135deg, #7b54e1, #b12dbe);
  color: #fff;
}

.faq__badge--a {
  background: #f0e6f7;
  color: #a03ac9;
}

/* ============================================
   SECTION LINE
   ============================================ */
.section__line {
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, #7b54e1, #b12dbe);
  margin: 0 auto 24px;
  border-radius: 2px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer__cta {
  background: #f5d64e;
  position: relative;
  overflow: hidden;
  padding: 60px 40px;
}

.footer__cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.footer__cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.footer__cta-title {
  font-size: 34px;
  font-weight: 700;
  color: #000;
  letter-spacing: 2.5px;
  margin-bottom: 16px;
  line-height: 1.3;
}

.footer__cta-title span {
  display: inline-block;
}

.footer__cta-desc {
  font-size: 15px;
  font-weight: 500;
  color: #353535;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.footer__btn {
  display: inline-block;
  background: linear-gradient(135deg, #7b54e1, #b12dbe);
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  padding: 18px 60px;
  border-radius: 50px;
  letter-spacing: 1.5px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s, box-shadow 0.3s;
  margin-bottom: 24px;
}

.footer__btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.footer__btn span {
  margin-left: 6px;
}

.footer__cta-note {
  font-size: 13px;
  font-weight: 500;
  color: #555;
  line-height: 1.7;
  letter-spacing: 0.8px;
}

.footer__copyright {
  background: linear-gradient(90deg, #7b54e1, #b12dbe);
  text-align: center;
  padding: 16px;
}

.footer__copyright p {
  font-size: 12px;
  color: #fff;
  font-weight: 500;
  letter-spacing: 1px;
  font-family: "Inter", "Noto Sans JP", sans-serif;
}

/* ============================================
   HOVER ANIMATIONS
   ============================================ */
.interview__card,
.output__card,
.guideline__card,
.flow__card,
.merit__card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.interview__card:hover,
.output__card:hover,
.guideline__card:hover,
.flow__card:hover,
.merit__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 28px rgba(123, 84, 225, 0.14);
}

.interview__btn {
  transition: transform 0.3s, opacity 0.3s, box-shadow 0.3s;
}

.interview__btn:hover {
  opacity: 1;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(123, 84, 225, 0.2);
}

.header__link {
  transition: color 0.3s;
}

.header__link:hover {
  color: #a03ac9;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.section {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Header shadow on scroll */
.header--scrolled {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

/* ============================================
   RESPONSIVE (SP: max-width 768px)
   ============================================ */
@media (max-width: 768px) {

  /* Header */
  .header__inner {
    padding: 10px 16px;
    flex-wrap: nowrap;
  }

  .header__logo img {
    height: 28px;
  }

  .header__subtitle {
    display: none;
  }

  .header__nav {
    gap: 8px;
  }

  .header__link {
    font-size: 11px;
  }

  .header__link-full {
    display: none;
  }

  .header__btn {
    font-size: 11px;
    padding: 7px 12px;
  }

  /* MV — SP版 (750px基準) */
  .mv {
    padding-top: 60px;
    height: auto;
    min-height: 750px;
  }

  .mv__gradient {
    top: 50px;
    height: 900px;
  }

  .mv__pattern {
    left: -50px;
    top: 30px;
    width: 850px;
    height: 950px;
  }

  /* SP版 maru 配置 */
  .mv__deco--1 {
    left: auto;
    right: 0;
    top: 750px;
    width: 20%;
  }

  .mv__deco--2 {
    left: -10%;
    top: 730px;
    width: 28%;
  }

  .mv__deco--3 {
    left: -31%;
    top: 26px;
    width: 65%;
  }

  .mv__deco--4 {
    left: auto;
    right: 0;
    top: 284px;
    width: 40%;
  }

  .mv__deco--5 {
    left: auto;
    right: 0;
    top: 34px;
    width: 26%;
  }

  /* SP版 photos — 固定 */
  .mv__photo {
    display: none;
    animation: none;
  }
  .mv__photo--1 {
    left: -2%;
    top: 50px;
  }
  .mv__photo--2 {
    left: 2%;
    top: 32%;
  }
  .mv__photo--3 {
    left: -2%;
    top: 45%;
  }
  .mv__photo--4 {
    right: -2%;
    top: 50px;
  }
  .mv__photo--5 {
    right: -3%;
    top: 30%;
  }
  .mv__photo--6 {
    right: 2%;
    top: 46%;
  }

  /* SP版 center content */
  .mv__center {
    padding-top: 80px;
  }

  .mv__label span {
    font-size: clamp(22px, 5vw, 28px);
    padding: 16px 28px;
    letter-spacing: 2px;
  }

  .mv__title {
    font-size: clamp(40px, 10vw, 60px);
    margin-bottom: 14px;;
  }

  .mv__title span {
    display: block;
    text-align: center;
    line-height: 1.2;
  }

  .mv__desc {
    font-size: 18px;
    line-height: 1.6;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    padding: 0 16px;
    span {
      display: block;
      text-align: center;
    }
    br {
      display: none;
    }
  }

  .mv__presents {
    gap: 6px;
    margin-bottom: 24px;
  }

  .mv__present {
    width: clamp(140px, calc(50vw - 16px), 200px);
    height: clamp(140px, calc(50vw - 16px), 200px);
    padding: 10% 0 5%;
  }

  .mv__present-text {
    font-size: clamp(14px, 3.5vw, 22px);
  }

  .mv__present-small {
    font-size: clamp(12px, 3vw, 18px);
  }

  .mv__btn {
    width: 90%;
    max-width: 460px;
    height: 70px;
    font-size: clamp(16px, 3.5vw, 22px);
  }

  /* Sections Common */
  .section {
    padding: 50px 0;
  }

  .section__icon img {
    width: 43px;
    height: 43px;
  }

  .section__title {
    font-size: 24px;
    letter-spacing: 1.5px;
  }

  .section__desc {
    font-size: 14px;
    padding: 0 16px;
    margin-bottom: 24px;
  }

  .section__label {
    font-size: 11px;
    letter-spacing: 4px;
  }

  /* Check */
  .section-check {
    padding: 50px 0 40px;
  }

  .section-check__inner {
    padding: 0 16px;
  }

  .check__content {
    flex-direction: column;
    gap: 0;
    position: relative;
  }

  .check__character {
    display: none;
  }

  .check__items {
    width: 100%;
  }

  .check__item {
    min-width: auto;
    padding: 14px 20px;
  }

  .check__item p {
    font-size: 16px;
    white-space: normal;
  }

  /* Purpose */
  .purpose__cards {
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding: 0 16px;
  }

  .purpose__card {
    width: 100%;
    display: flex;
    flex-direction: column;
  }

  .purpose__card-balloon {
    order: 2;
    margin-bottom: 0;
    margin-top: 4px;
  }

  .purpose__card-balloon img {
    display: none;
  }

  .purpose__card-text {
    position: static;
    transform: none;
    font-size: 16px;
    white-space: normal;
  }

  .purpose__card-img {
    order: 1;
  }

  .purpose__card-img img {
    width: 280px;
    height: 160px;
    object-fit: contain;
  }

  /* Merit */
  .section-merit {
    padding: 50px 0;
  }

  .section-merit__inner {
    padding: 0 16px;
  }

  .merit__cards {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .merit__card {
    width: 100%;
    max-width: 320px;
  }

  /* Interview */
  .interview__cards {
    flex-direction: column;
    align-items: center;
    padding: 0 16px;
    gap: 20px;
  }

  .interview__card {
    width: 100%;
    max-width: 360px;
  }

  .interview__card-role {
    min-height: auto;
  }

  .interview__card-desc {
    font-size: 13px;
  }

  /* Press Release */
  .press-release {
    margin: 0 16px 40px;
    padding: 24px 16px;
  }

  .press-release__inner {
    flex-direction: column;
    gap: 24px;
  }

  .press-release__right {
    display: none;
  }

  .press-release__title {
    font-size: 24px;
  }

  /* Output */
  .output {
    padding: 0 16px;
  }

  .output__title {
    font-size: 24px;
  }

  .output__cards {
    flex-direction: column;
    gap: 16px;
  }

  /* Guideline */
  .section-guideline__inner {
    padding: 0 16px;
  }

  .guideline__cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .guideline__card {
    width: 100%;
  }

  /* Flow */
  .flow__cards {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0 16px;
    position: relative;
  }

  .flow__cards::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: calc(100% - 80px);
    border-top: none;
    border-left: 3px dashed #c9a8e8;
  }

  .flow__card {
    width: 100%;
    max-width: none;
    display: grid;
    grid-template-columns: 80px 1fr;
    grid-template-rows: auto auto;
    gap: 0 12px;
    text-align: left;
    padding: 16px;
    border-radius: 10px;
    border: 2px solid #a03ac9;
    margin-bottom: 20px;
    position: relative;
    box-shadow: none;
  }

  .flow__card:last-child {
    margin-bottom: 0;
  }

  .flow__card-num {
    position: absolute;
    left: -2px;
    top: -2px;
    width: 32px;
    height: 36px;
    font-size: 20px;
    border-radius: 8px 0 8px 0;
  }

  .flow__card-img {
    grid-row: 1 / 3;
    grid-column: 1;
    margin: 0;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 20px;
  }

  .flow__card-img img {
    max-height: 80px;
    width: 100%;
    object-fit: contain;
  }

  .flow__card-title {
    grid-row: 1;
    grid-column: 2;
    text-align: left;
    margin-bottom: 4px;
  }

  .flow__card-desc {
    grid-row: 2;
    grid-column: 2;
    text-align: left;
  }

  /* FAQ */
  .section-faq__inner {
    padding: 0 16px;
  }

  .faq__question {
    padding: 16px;
    gap: 10px;
  }

  .faq__question p {
    font-size: 14px;
  }

  .faq__answer {
    padding: 16px;
  }

  .faq__answer p {
    font-size: 13px;
  }

  .faq__badge {
    width: 30px;
    height: 30px;
    font-size: 16px;
  }

  /* Footer */
  .footer__cta {
    padding: 40px 16px;
  }

  .footer__cta-title {
    font-size: 24px;
    letter-spacing: 1.5px;
  }

  .footer__cta-desc {
    font-size: 14px;
  }

  .footer__btn {
    font-size: 17px;
    padding: 14px 36px;
  }

  .footer__cta-note {
    font-size: 12px;
  }
}