/*
Theme Name: コーテン キャリア支援
Theme URI: https://kotenservice.instawp.co
Author: BlueBear web-studio
Author URI: https://netshop-biz.com
Description: コーテン（学歴不問のキャリア支援サービス）専用LP。V0デザインを完全再現。
Version: 1.0.9
License: Private
Text Domain: koten-theme
*/

/* ===== Google Fonts は functions.php でエンキュー ===== */

/* ===== リセット・ベース ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary: #00BFA5;
  --secondary: #2c3e50;
  --accent: #AEEA00;
  --bgblue: #f0fdfa;
  --bglight: #fdfdfd;
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --radius: 0.625rem;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--secondary);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ===== ユーティリティ ===== */
.font-montserrat {
  font-family: 'Montserrat', sans-serif;
}

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s cubic-bezier(0.2, 0.8, 0.2, 1),
              transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.btn-theme-animate {
  background: linear-gradient(90deg, #00BFA5, #AEEA00, #00BFA5);
  background-size: 200% 100%;
  animation: gradientMove 3s linear infinite;
  color: #fff;
  border: none;
}
@keyframes gradientMove {
  0%   { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

.hide-scrollbar::-webkit-scrollbar { display: none; }
.hide-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* ===== ヘッダー ===== */
.site-header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 40;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
  transition: all 0.3s;
}

.header-inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1rem;
  height: 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 768px) {
  .header-inner { height: 5rem; }
}

.header-logo img {
  height: 2.5rem;
  width: auto;
}
@media (min-width: 768px) {
  .header-logo img { height: 3rem; }
}

.header-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-nav {
  display: none;
  gap: 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-600);
}
@media (min-width: 1024px) {
  .header-nav { display: flex; }
}
.header-nav a:hover { color: var(--primary); }

.btn-header-cta {
  display: none;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  padding: 0.625rem 1.5rem;
  border-radius: 9999px;
  box-shadow: 0 4px 12px rgba(0,191,165,0.3);
  transition: opacity 0.2s;
}
@media (min-width: 768px) {
  .btn-header-cta { display: flex; }
}
.btn-header-cta:hover { opacity: 0.9; }

.btn-header-cta-sp {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  box-shadow: 0 4px 12px rgba(0,191,165,0.3);
}
@media (min-width: 768px) {
  .btn-header-cta-sp { display: none; }
}

.btn-hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  padding: 0.5rem;
}
@media (min-width: 1024px) {
  .btn-hamburger { display: none; }
}

.mobile-nav {
  display: none;
  background: var(--white);
  width: 100%;
  padding: 1.5rem;
  border-top: 1px solid var(--gray-100);
  position: absolute;
  top: 100%; left: 0;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.mobile-nav.is-open { display: block; }

.mobile-nav nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.875rem;
  font-weight: 700;
}
.mobile-nav nav a {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--gray-100);
}
.btn-mobile-cta {
  margin-top: 1rem;
  width: 100%;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  padding: 0.75rem;
  border-radius: 9999px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,191,165,0.3);
}

/* ===== ヒーローセクション ===== */
.hero-section {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 700px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  padding: 6rem 1rem 0;
}
@media (min-width: 768px) {
  .hero-section {
    height: 85vh;
    min-height: 600px;
    padding-top: 8rem;
  }
}

.hero-bg-pc {
  position: absolute;
  inset: 0;
  display: none;
  background-size: cover;
  background-position: center 75%;
}
.hero-bg-sp {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center bottom;
}
@media (min-width: 768px) {
  .hero-bg-pc { display: block; }
  .hero-bg-sp { display: none; }
}

.hero-content {
  max-width: 56rem;
  width: 100%;
  position: relative;
  z-index: 10;
}

.hero-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 1.5rem;
  letter-spacing: 0.1em;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
@media (min-width: 768px) {
  .hero-title { font-size: 3rem; line-height: 1.3; margin-bottom: 1.25rem; }
}
@media (min-width: 1024px) {
  .hero-title { font-size: 3.75rem; }
}

.hero-title-accent {
  font-family: "Yomogi", cursive;
  display: inline;
  background: #ffffff;
  color: #1eb39c;
  padding: 0 0.15em;
  line-height: 0.7;
  font-weight: 900;
  text-shadow: none;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.hero-title-accent__text {
  display: inline-block;
  transform: skewX(-15deg);
}

.hero-desc {
  color: #fff;
  font-size: 0.75rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}
@media (min-width: 768px) {
  .hero-desc {
    color: var(--secondary);
    font-size: 1.125rem;
    margin-bottom: 2rem;
    text-shadow: 0 1px 2px rgba(255,255,255,0.8);
  }
}

.btn-hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 2px solid var(--primary);
  color: #fff;
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  box-shadow: 0 10px 20px rgba(0,191,165,0.4);
  transform: scale(1);
  transition: transform 0.3s;
  width: 100%;
}
@media (min-width: 768px) {
  .btn-hero-cta {
    font-size: 1.25rem;
    padding: 1rem 3rem;
    gap: 0.75rem;
    width: auto;
  }
}
.btn-hero-cta:hover { transform: scale(1.05); }

/* ===== お悩みセクション ===== */
.trouble-section {
  background: var(--white);
  padding: 5rem 1rem;
}
@media (min-width: 768px) {
  .trouble-section { padding: 7rem 1rem; }
}

.section-container-sm {
  max-width: 48rem;
  margin: 0 auto;
}
.section-container-md {
  max-width: 56rem;
  margin: 0 auto;
}
.section-container-lg {
  max-width: 72rem;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--primary);
  font-weight: 700;
  display: block;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}
.section-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 1rem;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .section-title { font-size: 2.25rem; }
}
.section-divider {
  width: 3rem;
  height: 0.25rem;
  background: var(--primary);
  margin: 0 auto;
  border-radius: 9999px;
}

.trouble-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.trouble-card {
  background: var(--bgblue);
  padding: 1.5rem 2rem;
  border-radius: 1rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}
.trouble-icon {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 0.25rem;
}
.trouble-icon svg {
  width: 2rem;
  height: 2rem;
}
@media (min-width: 768px) {
  .trouble-icon svg { width: 2.5rem; height: 2.5rem; }
}
.trouble-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
  .trouble-card h3 { font-size: 1.25rem; }
}
.trouble-card p {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.7;
}
.trouble-footer {
  text-align: center;
  margin-top: 3rem;
  font-size: 0.875rem;
  color: var(--gray-700);
  font-weight: 500;
  line-height: 1.8;
}
@media (min-width: 768px) {
  .trouble-footer { font-size: 1rem; }
}

/* ===== Aboutセクション ===== */
.about-section {
  background: linear-gradient(135deg, var(--primary), #009688, var(--accent));
  color: #fff;
  padding: 5rem 1rem;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .about-section { padding: 7rem 1rem; }
}
.about-section::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 16rem; height: 16rem;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  filter: blur(48px);
  transform: translate(50%, -50%);
}
.about-section::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 20rem; height: 20rem;
  background: rgba(0,0,0,0.05);
  border-radius: 50%;
  filter: blur(48px);
  transform: translate(-50%, 50%);
}
.about-inner {
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 10;
}
.about-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .about-title { font-size: 2.25rem; }
}
.about-lead {
  font-size: 1rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.8;
  margin-bottom: 3rem;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
}
@media (min-width: 768px) {
  .about-lead { font-size: 1.125rem; }
}
.about-lead strong {
  font-weight: 700;
  color: #fff;
  border-bottom: 2px solid rgba(255,255,255,0.5);
  padding-bottom: 0.25rem;
}
.about-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.8);
  line-height: 2;
}
@media (min-width: 768px) {
  .about-desc { font-size: 1rem; }
}

/* ===== メッセージセクション ===== */
.message-section {
  background: var(--white);
  padding: 5rem 1rem;
}
@media (min-width: 768px) {
  .message-section { padding: 7rem 1rem; }
}
.message-inner {
  max-width: 56rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 768px) {
  .message-inner {
    flex-direction: row;
    gap: 4rem;
    align-items: flex-start;
  }
}
.message-photo {
  width: 12rem;
  height: 16rem;
  border-radius: 9999px;
  overflow: hidden;
  border: 1px solid var(--gray-200);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  flex-shrink: 0;
  background: var(--gray-50);
}
@media (min-width: 768px) {
  .message-photo { width: 14rem; height: 18rem; }
}
.message-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.message-content {
  flex: 1;
}
.message-header {
  margin-bottom: 2rem;
  text-align: center;
}
@media (min-width: 768px) {
  .message-header { text-align: left; }
}
.message-header h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary);
  line-height: 1.4;
}
@media (min-width: 768px) {
  .message-header h2 { font-size: 1.875rem; }
}
.message-text {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  font-size: 0.875rem;
  color: var(--gray-700);
  line-height: 1.8;
  font-weight: 500;
}
@media (min-width: 768px) {
  .message-text { font-size: 1rem; }
}
.message-sig {
  margin-top: 2.5rem;
  text-align: center;
}
@media (min-width: 768px) {
  .message-sig { text-align: right; }
}
.message-sig .role {
  font-size: 0.75rem;
  color: var(--gray-500);
  margin-bottom: 0.25rem;
}
.message-sig .name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--secondary);
  letter-spacing: 0.15em;
}

/* ===== ベネフィットセクション ===== */
.benefits-section {
  background: var(--gray-50);
  padding: 5rem 1rem;
}
@media (min-width: 768px) {
  .benefits-section { padding: 7rem 1rem; }
}
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem 3rem;
}
@media (min-width: 768px) {
  .benefits-grid { grid-template-columns: repeat(3, 1fr); }
}
.benefit-item {
  display: flex;
  flex-direction: column;
}
.benefit-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.benefit-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  font-weight: 600;
  color: transparent;
  -webkit-text-stroke: 1px var(--secondary);
  letter-spacing: -0.05em;
  line-height: 1;
}
@media (min-width: 768px) {
  .benefit-number { font-size: 3.75rem; }
}
.benefit-item h3 {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--secondary);
  line-height: 1.4;
  white-space: pre-line;
}
@media (min-width: 768px) {
  .benefit-item h3 { font-size: 1rem; }
}
.benefit-image {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--white);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  margin-bottom: 1.5rem;
}
.benefit-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.benefit-item p {
  font-size: 0.875rem;
  color: var(--gray-700);
  line-height: 1.7;
}

/* ===== 事例セクション ===== */
.stories-section {
  background: var(--white);
  padding: 5rem 0;
  position: relative;
}
@media (min-width: 768px) {
  .stories-section { padding: 7rem 0; }
}
.stories-header {
  text-align: center;
  margin-bottom: 4rem;
  padding: 0 1rem;
}
.stories-overlay {
  position: absolute;
  left: 0; right: 0;
  bottom: 0;
  top: 12rem;
  z-index: 20;
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .stories-overlay { top: 14rem; }
}
.stories-overlay-badge {
  background: rgba(255,255,255,0.95);
  padding: 1.25rem 2.5rem;
  border-radius: 9999px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  border: 1px solid #fff;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.stories-overlay-badge svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary);
}
.stories-overlay-badge span {
  color: var(--secondary);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.2em;
}
@media (min-width: 768px) {
  .stories-overlay-badge span { font-size: 1.5rem; }
}

.stories-inner {
  max-width: 56rem;
  margin: 0 auto;
  opacity: 0.4;
  pointer-events: none;
  user-select: none;
}
.stories-slider {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0 1rem 1.5rem;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.stories-slider::-webkit-scrollbar { display: none; }
@media (min-width: 768px) {
  .stories-slider {
    flex-direction: column;
    overflow-x: visible;
    padding: 0 1rem;
  }
}
.story-card {
  width: 85vw;
  flex-shrink: 0;
  scroll-snap-align: start;
  background: var(--bglight);
  padding: 1.5rem 2rem;
  border-radius: 1.5rem;
  border: 1px solid var(--gray-100);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}
@media (min-width: 640px) { .story-card { width: 70vw; } }
@media (min-width: 768px) {
  .story-card {
    width: 100%;
    flex-direction: row;
    gap: 2.5rem;
    align-items: center;
  }
}
.story-person {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}
@media (min-width: 768px) {
  .story-person { width: 25%; }
}
.story-avatar {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: inset 0 2px 8px rgba(0,0,0,0.1);
  border: 2px solid var(--gray-100);
  margin-bottom: 0.75rem;
}
@media (min-width: 768px) {
  .story-avatar { width: 6rem; height: 6rem; }
}
.story-avatar img {
  width: 100%; height: 100%; object-fit: cover;
}
.story-name {
  font-weight: 700;
  color: var(--secondary);
  font-size: 1.125rem;
}
.story-age {
  font-size: 0.75rem;
  color: var(--gray-500);
  font-weight: 500;
}
.story-content {
  flex: 1;
  width: 100%;
}
.story-badge {
  background: linear-gradient(to right, var(--primary), var(--accent));
  color: #fff;
  font-weight: 900;
  font-size: 1.25rem;
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  display: inline-block;
  box-shadow: 0 4px 16px rgba(0,191,165,0.3);
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .story-badge { font-size: 1.5rem; }
}
.story-headline {
  font-size: 1rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .story-headline { font-size: 1.125rem; }
}
.story-before-after {
  background: var(--white);
  padding: 1.25rem;
  border-radius: 1rem;
  border: 1px solid var(--gray-100);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
@media (min-width: 768px) {
  .story-before-after {
    flex-direction: row;
    gap: 1.5rem;
  }
}
.story-ba-block {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@media (min-width: 768px) {
  .story-ba-block { align-items: flex-start; text-align: left; }
}
.story-ba-label {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  margin-bottom: 0.25rem;
}
.story-ba-label.before { color: var(--gray-400); }
.story-ba-label.after { color: var(--primary); }
.story-before-text {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-500);
}
.story-after-text {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--secondary);
  line-height: 1.2;
}
@media (min-width: 768px) {
  .story-after-text { font-size: 1.5rem; }
}
.story-after-role { color: var(--primary); }
.story-arrow {
  color: var(--primary);
  flex-shrink: 0;
}
.story-arrow-down { display: block; }
.story-arrow-right { display: none; }
@media (min-width: 768px) {
  .story-arrow-down { display: none; }
  .story-arrow-right { display: block; }
}
.stories-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}
@media (min-width: 768px) {
  .stories-nav { display: none; }
}
.btn-slider-nav {
  width: 3rem; height: 3rem;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-500);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: transform 0.2s;
}
.btn-slider-nav:active { transform: scale(0.95); }

/* ===== アドバイザーセクション ===== */
.advisors-section {
  background: var(--bgblue);
  padding: 5rem 0;
}
@media (min-width: 768px) {
  .advisors-section { padding: 7rem 0; }
}
.advisors-header {
  text-align: center;
  margin-bottom: 3rem;
  padding: 0 1rem;
}
.advisors-header h2 {
  font-weight: 700;
  color: var(--secondary);
  line-height: 1.4;
}
.advisors-header h2 .sub {
  display: block;
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}
@media (min-width: 768px) {
  .advisors-header h2 .sub { font-size: 1.5rem; margin-bottom: 0.5rem; }
}
.advisors-header h2 .main {
  display: block;
  font-size: 1.5rem;
}
@media (min-width: 768px) {
  .advisors-header h2 .main { font-size: 2.25rem; }
}

.advisors-inner {
  max-width: 64rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.advisors-slider-wrap {
  position: relative;
  /* モバイルでネガティブマージンを使い全幅に広げてピークを実現 */
  margin: 0 -1rem;
}

.advisors-slider {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0 1rem 1.5rem;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.advisors-slider::-webkit-scrollbar { display: none; }
@media (min-width: 768px) {
  .advisors-slider-wrap {
    margin: 0;
  }
  .advisors-slider {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    overflow-x: visible;
    padding: 0 0 0;
    gap: 2rem;
  }
}
.advisor-card {
  /* 72vwにすることで右端に次のカードが約50px見える */
  width: 72vw;
  flex-shrink: 0;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 640px) { .advisor-card { width: 55vw; } }
@media (min-width: 768px) { .advisor-card { width: auto; } }
.advisor-photo {
  width: 12rem;
  height: 16rem;
  border-radius: 9999px;
  overflow: hidden;
  border: 1px solid var(--gray-400);
  margin-bottom: 1.5rem;
  flex-shrink: 0;
  background: var(--white);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
@media (min-width: 768px) {
  .advisor-photo { width: 14rem; height: 18rem; }
}
.advisor-photo img {
  width: 100%; height: 100%; object-fit: cover;
}
.advisor-text {
  text-align: center;
  padding: 0 0.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.advisor-quote {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 1.25rem;
  line-height: 1.6;
  white-space: pre-line;
  min-height: 3rem;
}
@media (min-width: 768px) {
  .advisor-quote { font-size: 1rem; min-height: 3.5rem; }
}
.advisor-role {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.25rem;
}
.advisor-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--secondary);
  letter-spacing: 0.15em;
  margin-bottom: 0.25rem;
}
@media (min-width: 768px) {
  .advisor-name { font-size: 1.5rem; }
}
.advisor-exp {
  font-size: 0.75rem;
  font-weight: 500;
  color: #009688;
  margin-bottom: 1rem;
}
.advisor-desc {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.7;
  text-align: left;
}
.advisors-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}
@media (min-width: 768px) {
  .advisors-nav { display: none; }
}

/* ===== アドバイザー：ドットインジケーター（案A） ===== */
.advisors-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
}
@media (min-width: 768px) {
  .advisors-dots { display: none; }
}
.advisors-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gray-300);
  transition: background 0.3s, transform 0.3s;
  flex-shrink: 0;
}
.advisors-dot.is-active {
  background: var(--primary);
  transform: scale(1.25);
}

/* ===== アドバイザー：次の人テキストヒント（案C） ===== */
.advisor-next-text {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.25rem;
  margin-top: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary);
  transition: opacity 0.3s;
}
.advisor-next-text.is-end {
  opacity: 0;
  pointer-events: none;
}
@media (min-width: 768px) {
  .advisor-next-text { display: none; }
}

/* ===== ご利用の流れ ===== */
.flow-section {
  background: var(--white);
  padding: 5rem 1rem;
  border-top: 1px solid var(--gray-100);
}
@media (min-width: 768px) {
  .flow-section { padding: 7rem 1rem; }
}
.flow-steps {
  display: flex;
  flex-direction: column;
}
.flow-step {
  display: flex;
  align-items: stretch;
  gap: 1rem 2rem;
}
@media (min-width: 768px) {
  .flow-step { gap: 1rem 3rem; }
}
.flow-step-number {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 4rem;
}
@media (min-width: 768px) {
  .flow-step-number { width: 5rem; }
}
.flow-step-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.625rem;
  font-weight: 700;
  color: var(--secondary);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}
@media (min-width: 768px) {
  .flow-step-label { font-size: 0.75rem; }
}
.flow-step-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--secondary);
  line-height: 1;
}
@media (min-width: 768px) {
  .flow-step-num { font-size: 3rem; }
}
.flow-step-line {
  width: 1px;
  background: var(--gray-200);
  flex-grow: 1;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}
.flow-step-line.hidden { background: transparent; }
.flow-step-icon {
  flex-shrink: 0;
  padding-top: 0.25rem;
}
.flow-step-icon-wrap {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gray-200);
}
@media (min-width: 768px) {
  .flow-step-icon-wrap { width: 6rem; height: 6rem; }
}
.flow-step-icon-wrap svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary);
}
@media (min-width: 768px) {
  .flow-step-icon-wrap svg { width: 2.5rem; height: 2.5rem; }
}
.flow-step-content {
  flex-grow: 1;
  padding-top: 0.5rem;
  padding-bottom: 3rem;
}
.flow-step-content.last { padding-bottom: 1rem; }
@media (min-width: 768px) {
  .flow-step-content { padding-top: 1.5rem; }
}
.flow-step-content h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 0.75rem;
}
@media (min-width: 768px) {
  .flow-step-content h3 { font-size: 1.25rem; }
}
.flow-step-content p {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ===== FAQ ===== */
.faq-section {
  background: var(--bglight);
  padding: 5rem 1rem;
}
@media (min-width: 768px) {
  .faq-section { padding: 7rem 1rem; }
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.faq-item {
  background: var(--white);
  border-radius: 0.75rem;
  border: 1px solid var(--gray-200);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: all 0.3s;
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--secondary);
}
@media (min-width: 768px) {
  .faq-question { font-size: 1rem; }
}
.faq-question-text { padding-right: 1rem; }
.faq-chevron {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
  transition: transform 0.3s;
}
.faq-item.is-open .faq-chevron {
  transform: rotate(180deg);
}
.faq-answer {
  display: none;
  padding: 0 1.5rem 1.5rem;
  padding-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.7;
  border-top: 1px solid var(--gray-50);
  margin: 0 1.5rem;
}
.faq-item.is-open .faq-answer {
  display: block;
}

/* ===== CTA ===== */
.cta-section {
  background: var(--secondary);
  color: #fff;
  padding: 6rem 1rem;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: 24rem; height: 24rem;
  background: rgba(0,191,165,0.3);
  border-radius: 50%;
  filter: blur(48px);
}
.cta-section::after {
  content: '';
  position: absolute;
  bottom: -20%; left: -10%;
  width: 24rem; height: 24rem;
  background: rgba(174,234,0,0.3);
  border-radius: 50%;
  filter: blur(48px);
}
.cta-inner {
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 10;
}
.cta-title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.3;
  letter-spacing: 0.05em;
}
@media (min-width: 768px) {
  .cta-title { font-size: 3rem; }
}
.cta-desc {
  font-size: 0.875rem;
  color: var(--gray-300);
  margin-bottom: 3rem;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
@media (min-width: 768px) {
  .cta-desc { font-size: 1.125rem; }
}
.btn-cta-main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  border: 2px solid #fff;
  color: #fff;
  font-weight: 700;
  font-size: 1.125rem;
  padding: 1.25rem 2.5rem;
  border-radius: 9999px;
  box-shadow: 0 15px 30px rgba(0,191,165,0.3);
  transition: transform 0.3s;
  width: 100%;
}
@media (min-width: 768px) {
  .btn-cta-main {
    font-size: 1.5rem;
    padding: 1.25rem 4rem;
    width: auto;
  }
}
.btn-cta-main:hover { transform: scale(1.05); }
.btn-cta-main svg { width: 2rem; height: 2rem; }

/* ===== 会社情報 ===== */
.company-info-section {
  background: var(--white);
  padding: 3rem 1rem;
  border-bottom: 1px solid var(--gray-100);
}
.company-info-inner {
  max-width: 56rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .company-info-inner {
    flex-direction: row;
    justify-content: space-between;
  }
}
.company-logo-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.company-logo-wrap img { height: 2rem; width: auto; }
.company-name-note {
  font-size: 0.75rem;
  color: var(--gray-500);
  border-left: 1px solid var(--gray-300);
  padding-left: 1rem;
}
.company-address {
  font-size: 0.75rem;
  color: var(--gray-500);
  text-align: center;
}
@media (min-width: 768px) {
  .company-address { text-align: right; }
}

/* ===== フッター ===== */
.site-footer {
  background: var(--bglight);
  color: var(--secondary);
  padding: 3rem 1rem 6rem;
}
@media (min-width: 768px) {
  .site-footer { padding: 3rem 1rem; }
}
.footer-inner {
  max-width: 72rem;
  margin: 0 auto;
}
.footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .footer-top { flex-direction: row; justify-content: space-between; }
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  font-size: 0.75rem;
  color: var(--gray-500);
  font-weight: 700;
}
.footer-links a:hover { color: var(--primary); }
.footer-copy {
  text-align: center;
  font-size: 0.625rem;
  color: var(--gray-400);
}

/* ===== モバイルCTA（固定フッターボタン）===== */
.mobile-cta-bar {
  display: block;
  position: fixed;
  bottom: 0; left: 0;
  width: 100%;
  padding: 0.75rem;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--gray-100);
  z-index: 30;
  box-shadow: 0 -5px 15px rgba(0,0,0,0.05);
}
@media (min-width: 768px) {
  .mobile-cta-bar { display: none; }
}
.btn-mobile-cta-bar {
  width: 100%;
  color: #fff;
  font-weight: 700;
  padding: 0.875rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 4px 16px rgba(0,191,165,0.3);
}
.btn-mobile-cta-bar svg { width: 1.25rem; height: 1.25rem; }

/* ===== モーダル ===== */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(44,62,80,0.8);
  backdrop-filter: blur(4px);
  z-index: 50;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.modal-overlay.is-open {
  display: flex;
}
.modal-box {
  background: var(--white);
  border-radius: 1.5rem;
  max-width: 32rem;
  width: 100%;
  padding: 1.5rem 2rem;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 24px 48px rgba(0,0,0,0.2);
}
.modal-close {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 2rem; height: 2rem;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  transition: background 0.2s, color 0.2s;
}
.modal-close:hover {
  background: var(--gray-200);
  color: var(--secondary);
}
.modal-close svg { width: 1.25rem; height: 1.25rem; }
.modal-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--secondary);
  text-align: center;
  margin-bottom: 0.5rem;
  margin-top: 0.5rem;
}
@media (min-width: 768px) {
  .modal-title { font-size: 1.5rem; }
}
.modal-subtitle {
  font-size: 0.75rem;
  color: var(--gray-500);
  text-align: center;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* CF7スタイル上書き */
.modal-box .wpcf7 { margin: 0; }
.modal-box .wpcf7 p { margin-bottom: 1rem; }
.modal-box .wpcf7 label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 0.25rem;
}
.modal-box .wpcf7 input[type="text"],
.modal-box .wpcf7 input[type="email"],
.modal-box .wpcf7 input[type="tel"],
.modal-box .wpcf7 textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  border: 1px solid var(--gray-200);
  background: var(--gray-50);
  font-size: 0.875rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.modal-box .wpcf7 input:focus,
.modal-box .wpcf7 textarea:focus {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 2px rgba(0,191,165,0.2);
}
.modal-box .wpcf7 select {
  width: 100%;
  padding: 0.75rem 2.5rem 0.75rem 1rem;
  border-radius: 0.75rem;
  border: 1px solid var(--gray-200);
  background: var(--gray-50) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") no-repeat right 1rem center;
  background-size: 1rem;
  font-size: 0.875rem;
  font-family: inherit;
  color: var(--secondary);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  transition: border-color 0.2s, background-color 0.2s;
}
.modal-box .wpcf7 select:focus {
  border-color: var(--primary);
  background-color: var(--white);
  box-shadow: 0 0 0 2px rgba(0,191,165,0.2);
}
.modal-box .wpcf7 input[type="submit"] {
  width: 100%;
  background: linear-gradient(90deg, #00BFA5, #AEEA00, #00BFA5);
  background-size: 200% 100%;
  animation: gradientMove 3s linear infinite;
  color: #fff;
  font-weight: 700;
  padding: 1rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  font-family: inherit;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0,191,165,0.3);
  border: none;
  transition: transform 0.2s;
}
.modal-box .wpcf7 input[type="submit"]:hover {
  transform: translateY(-2px);
}
.modal-box .wpcf7-form-control-wrap {
  display: block;
}

/* ===== メインコンテンツ padding-top ===== */
main {
  padding-top: 4rem;
}
@media (min-width: 768px) {
  main { padding-top: 5rem; }
}
