@charset "UTF-8";
:root {
  /* ウェイトの定義 */
  --weight-normal: 400;
  --weight-bold: 700;
  --font-main: "Outfit","Zen Kaku Gothic New", sans-serif;
  /* color */
  --primary-green: #168353;
  --primary-darkgreen: #186443;
  --primary-pink:#ff7361;
  --text-main: #151515;
  --text-sub: #666;
  --bg-top: #f4f4f4;
  /* Fluid Typography: 16px */
  --fz-base: 1rem;
}
@media (max-width: 1440px) {
  :root {
    --inner-width: 1200px;
  }
}
@media (min-width: 1441px) {
  :root {
    --inner-width: 1400px;
  }
}

body {
  min-height: 100vh;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeSpeed;
  font-family: var(--font-main);
  color: var(--color-text);
  font-size: var(--fz-base);
  font-size-adjust: 0.51;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

*, *::before, *::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input, button, textarea, select {
  font: inherit;
}

textarea {
  resize: vertical;
}

ul, ol {
  list-style: none;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/* ==========================================================================
//画像パスの書き換え
========================================================================== */
.is-block {
  display: block !important;
}

.is-inline {
  display: inline !important;
}

.is-inline-block {
  display: inline-block !important;
}

.is-none {
  display: none !important;
}

@media screen and (max-width: 767px) {
  .is-mobile-block {
    display: block !important;
  }
  .is-mobile-inline {
    display: inline !important;
  }
  .is-mobile-inline-block {
    display: inline-block !important;
  }
  .is-mobile-none {
    display: none !important;
  }
}
@media screen and (min-width: 576px) {
  .is-fablet-block {
    display: block !important;
  }
  .is-fablet-inline {
    display: inline !important;
  }
  .is-fablet-inline-block {
    display: inline-block !important;
  }
  .is-fablet-none {
    display: none !important;
  }
}
@media screen and (min-width: 768px) {
  .is-tablet-block {
    display: block !important;
  }
  .is-tablet-inline {
    display: inline !important;
  }
  .is-tablet-inline-block {
    display: inline-block !important;
  }
  .is-tablet-none {
    display: none !important;
  }
}
@media screen and (min-width: 1200px) {
  .is-desktop-block {
    display: block !important;
  }
  .is-desktop-inline {
    display: inline !important;
  }
  .is-desktop-inline-block {
    display: inline-block !important;
  }
  .is-desktop-none {
    display: none !important;
  }
}
@media screen and (min-width: 1400px) {
  .is-wide-block {
    display: block !important;
  }
  .is-wide-inline {
    display: inline !important;
  }
  .is-wide-inline-block {
    display: inline-block !important;
  }
  .is-wide-none {
    display: none !important;
  }
}
/* ==========================================================================
   Smartphone Header & Drawer Menu (完全再現CSS)
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: transparent;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-scrolled {
  background-color: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 100%;
  padding: 0 0 0 40px;
  height: 80px;
}

.header-logo {
  background-color: #ffffff;
  padding: 0 24px;
  display: flex;
  align-items: center;
  height: 60px;
}

.header-logo a {
  display: block;
}

.header-logo img {
  width: auto;
  height: 40px;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 24px;
  margin: 0;
  padding: 0;
}

.nav-item a {
  text-decoration: none;
  color: #2b2b2b;
  font-weight: 700;
  font-size: 0.95rem;
}

/* PC用ボタン */
.btn-cv-pc {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #ff6b5c;
  color: #ffffff;
  padding: 0 32px;
  height: 80px;
  border-radius: 0 0 0 20px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.btn-cv-pc:hover {
  opacity: 0.9;
}

/* SP用下部固定ボタンはデフォルト非表示 */
.sp-bottom-cv-wrap {
  display: none;
}

/* ハンバーガーボタンはPC非表示 */
.drawer-toggle {
  display: none;
}

@media screen and (max-width: 768px) {
  /* --- 1. ヘッダー全体のベース設定 --- */
  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 64px;
    z-index: 1000;
    background-color: #ffffff; /* 常時白背景 */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: background-color 0.3s ease;
  }
  .header-inner {
    height: 64px;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1002; /* ロゴと×ボタンを暗い幕より前面に固定 */
    background-color: #ffffff; /* バー自体は常に白 */
  }
}
@media screen and (max-width: 768px) and (max-width: 767px) {
  .header-inner {
    padding: 0 27px 0 20px;
  }
}
@media screen and (max-width: 768px) {
  .header-logo {
    padding: 0;
    height: 100%;
    display: flex;
    align-items: center;
    background-color: transparent;
  }
  .header-logo img {
    height: 36px;
    width: auto;
  }
}
@media screen and (max-width: 768px) {
  /* PC用CVボタン非表示 */
  .btn-cv-pc {
    display: none !important;
  }
  /* --- 2. ハンバーガーボタン（緑の3本線 ⇔ ×印） --- */
  .drawer-toggle {
    display: flex !important;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    position: relative;
    z-index: 1003;
  }
  .drawer-toggle span {
    display: block;
    width: 100%;
    height: 3.5px;
    background-color: #5c9e38; /* 画像通りの鮮やかなグリーン */
    border-radius: 2px;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
  }
  /* メニュー開時（.is-active）のアニメーション：×印に変形 */
  .drawer-toggle.is-active span:nth-child(1) {
    transform: translateY(8.25px) rotate(45deg);
  }
  .drawer-toggle.is-active span:nth-child(2) {
    opacity: 0;
  }
  .drawer-toggle.is-active span:nth-child(3) {
    transform: translateY(-8.25px) rotate(-45deg);
  }
  /* --- 3. ドロワーメニュー本体（白いナビ領域） --- */
  .header-nav {
    display: block !important;
    position: fixed;
    top: 64px; /* ヘッダーのすぐ下から配置 */
    left: 0;
    width: 100%;
    background-color: #ffffff;
    padding: 32px 24px 40px;
    box-sizing: border-box;
    z-index: 1001; /* 暗い背景の上、ヘッダーバーの下 */
    /* モーション設定（滑らかなスライドイン） */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px);
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s ease;
  }
  /* JSで .is-open クラスが付与されたら表示 */
  .header-nav.is-open {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
  }
  .nav-list {
    flex-direction: column;
    gap: 28px;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .nav-item a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.25rem;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.02em;
    padding: 15px 0;
  }
  /* 右側の緑色丸型再生アイコン */
  .icon-arrow {
    position: relative;
    width: 32px;
    height: 32px;
    background-color: #5c9e38;
    border-radius: 50%;
    flex-shrink: 0;
  }
  .icon-arrow::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 54%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px 0 6px 9px;
    border-color: transparent transparent transparent #ffffff;
  }
  /* --- 4. 暗い背景オーバーレイ（黒の半透明幕） --- */
  .site-header::before {
    content: "";
    position: fixed;
    top: 64px; /* ヘッダーバーの下から画面最下部まで覆う */
    left: 0;
    width: 100vw;
    height: calc(100vh - 64px);
    background-color: rgba(0, 0, 0, 0.5); /* 50%透明度の黒 */
    z-index: 999; /* ドロワーメニュー(1001)の背面 */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
  }
  /* メニューが開いている時（.is-menu-open）に暗い幕を表示 */
  .site-header.is-menu-open::before {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  /* --- 5. SP時 画面下部固定 お申込みボタン --- */
  .sp-bottom-cv-wrap {
    display: block;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 32px);
    max-width: 400px;
    z-index: 2000; /* 全すべての要素（メニュー・背景幕）の前面に常時固定 */
  }
  .btn-cv-sp {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 60px;
    padding: 0 16px 0 28px;
    background-color: #ff7363; /* サーモンピンク */
    color: #ffffff;
    border-radius: 16px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 800;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
    box-sizing: border-box;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }
  .btn-cv-sp:active {
    transform: translateX(-50%) scale(0.98);
  }
  /* ボタン内の白い丸型再生アイコン */
  .icon-arrow-white {
    position: absolute;
    width: 30px;
    height: 30px;
    background-color: #ffffff;
    border-radius: 50%;
    flex-shrink: 0;
    right: 15px;
  }
  .icon-arrow-white::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px 0 6px 9px;
    border-color: transparent transparent transparent #ff7363;
  }
  /* メインビジュアルの上部余白調整 */
  .mv-section {
    padding-top: 84px;
  }
}
/* ==========================================================================
   ベースリセット（必要に応じて既存のスタイルと調整してください）
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.deco-footer-wave {
  display: none;
}
@media screen and (max-width: 767px) {
  .deco-footer-wave {
    width: 100%;
    display: block;
    position: relative;
    z-index: 11;
  }
  .deco-footer-wave img {
    width: 100%;
  }
}

.deco-footer-wave-green {
  width: 100%;
  display: block;
  position: relative;
  top: -220px;
}
@media screen and (max-width: 767px) {
  .deco-footer-wave-green {
    top: 0;
  }
}
.deco-footer-wave-green img {
  width: 100%;
}

/* ==========================================================================
フッターのスタイリング
========================================================================== */
.footer-section {
  position: relative;
  width: 100%;
  box-sizing: border-box;
  background-color: #fcfbf5;
}
@media screen and (max-width: 767px) {
  .footer-section {
    background-color: #dbeec8;
  }
}

/* --- 1. LINKカード（食い込み重なり処理のコア設定） --- */
.link-container {
  width: 100%;
  padding: 0;
  position: relative;
  z-index: 10; /* フッター背景より前面に配置 */
}
@media screen and (max-width: 767px) {
  .link-container {
    background-color: #dbeec8; /* 画像2枚目の淡いグリーン */
  }
}

.link-card {
  /* 
   * ネガティブマージンで上のセクションに食い込ませる！
   * 数値は上のセクションの余白感に合わせて微調整可能です
   */
  max-width: 1140px;
  margin: 0 auto;
  background-color: #dbeec8; /* 画像2枚目の淡いグリーン */
  border-radius: 32px;
  padding: 40px 48px 48px;
  box-sizing: border-box;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .link-card {
    max-width: 100%;
    width: 100%;
    border-radius: 0;
  }
}

/* タイトルエリア */
.link-header {
  margin-bottom: 32px;
}

.link-title {
  display: flex;
  flex-direction: column;
  margin: 0;
  line-height: 1;
}

.link-title .en {
  font-size: 2.8rem;
  font-weight: 900;
  color: #2e8b35; /* メイングリーン */
  letter-spacing: 0.05em;
  font-family: "Helvetica Neue", Arial, sans-serif;
}

/* 「I」のアクセントピンク */
.link-title .en .accent {
  color: #ff6b5c;
}

.link-title .ja {
  font-size: 0.85rem;
  font-weight: 700;
  color: #111111;
  margin-top: 8px;
  letter-spacing: 0.05em;
}

/* --- 2. バナーグリッド (3列 × 2行) --- */
.banner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .banner-grid {
    grid-template-columns: 1fr; /* スマホ：1列 */
    gap: 10px;
  }
}

.banner-link {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 64px;
  background-color: #ffffff;
  border-radius: 16px;
  text-decoration: none;
  color: #b0b0b0; /* BANNERの文字色 */
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  box-sizing: border-box;
  /* 枠線アニメーションのガクつき防止（あらかじめ透明枠を確保） */
  border: 3px solid transparent;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

/* バナーホバー時＆アクティブ時（画像1枚目の緑枠状態） */
.banner-link:hover,
.banner-link.is-active {
  border-color: #2e8b35; /* 太い緑枠 */
  color: #2e8b35;
  box-shadow: 0 4px 12px rgba(46, 139, 53, 0.12);
}

.banner-link:hover {
  transform: translateY(-3px); /* ほんのり浮き上がる */
}

/* --- 3. フッターメイン（画像3枚目の深緑エリア） --- */
.footer-main {
  background-color: #3a8424; /* テーマの深いグリーン */
  color: #ffffff;
  /* 上部カードが重なるスペース分、トップのパディングを広めに確保 */
  padding: 180px 0 40px;
  margin-top: -220px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .footer-main {
    margin-top: 0;
    padding: 40px 20px 40px;
  }
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    padding-bottom: 0;
  }
}

/* 情報テキストエリア */
.footer-info-wrap {
  display: flex;
  gap: 60px;
}

.footer-info-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-info-row {
  display: flex;
  align-items: flex-start;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .footer-info-row {
    display: block;
  }
}

.footer-info-row dt {
  width: 85px;
  flex-shrink: 0;
  font-weight: 700;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .footer-info-row dt {
    width: 100%;
    margin-bottom: 7px;
  }
}

.footer-info-row dd {
  margin: 0;
  color: #ffffff;
  font-weight: 500;
}

.footer-info-row dd p {
  margin: 0;
}

.footer-info-row dd .hours {
  font-size: 0.85rem;
  opacity: 0.9;
}

/* --- 4. TOPへ戻るボタン --- */
.btn-page-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  background-color: #ff6b5c; /* サーモンピンク */
  color: #ffffff;
  border-radius: 50%;
  text-decoration: none;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease;
}

.btn-page-top .arrow {
  font-size: 0.65rem;
  line-height: 1;
  margin-bottom: 2px;
  transition: transform 0.3s ease;
}

.btn-page-top .text {
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 1;
}

/* TOPボタン ホバーアニメーション */
.btn-page-top:hover {
  transform: scale(1.08);
  background-color: #ff5240;
}

.btn-page-top:hover .arrow {
  transform: translateY(-3px); /* 矢印がちょこんと上に跳ねる */
}

/* コピーライト */
.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 24px;
}

.copyright {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.8);
}

/* ==========================================================================
   Responsive (Tablet & Mobile)
   ========================================================================== */
@media screen and (max-width: 960px) {
  .footer-info-wrap {
    flex-direction: column;
    gap: 20px;
  }
  .btn-page-top {
    align-self: flex-end; /* 右寄りに配置 */
  }
}
/* ==========================================================================
メインビジュアルのスタイリング
========================================================================== */
/* 全体の枠組み・基準位置 */
.mv-section {
  position: relative;
  width: 100%;
  min-height: 712px;
  /* 画像の縦横比を直接維持（幅に合わせて高さが自動計算される） */
  aspect-ratio: 1920/850;
  padding: 100px 0 80px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .mv-section {
    height: 100%;
    min-height: 900px;
    padding: 0px 0 80px;
  }
}

.mv-section .mv_bg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

/* --- 1. 背景画像 (.mv_bg) --- */
.mv-section .mv_bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  display: block;
}

@media screen and (min-width: 1490px) {
  .mv-section {
    height: auto;
  }
  .mv-section .mv_bg img {
    object-fit: fill;
  }
}
/* --- 2. 左右の人物イラスト装飾 (.mv-deco-left / .mv-deco-right) --- */
/* 左下：デスクと人物 */
.mv-section .mv-deco-left {
  position: absolute;
  left: 2%;
  bottom: 0px;
  width: 22%;
  max-width: 282px;
  z-index: 2;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .mv-section .mv-deco-left {
    width: 140px;
    height: auto;
    left: 30px;
  }
}

/* 右中央：握手する人物 */
.mv-section .mv-deco-right {
  position: absolute;
  right: 4%;
  top: 32%;
  width: 16%;
  max-width: 140px;
  z-index: 2;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .mv-section .mv-deco-right {
    width: 80px;
    height: auto;
    right: 30px;
    top: auto;
    bottom: 0;
  }
}

.mv-section .mv-deco-left img,
.mv-section .mv-deco-right img {
  width: 100%;
  height: auto;
  display: block;
}

/* --- 3. メインコンテンツエリア (.mv-inner) --- */
.mv-inner {
  position: relative;
  max-width: 812px;
  margin: 0 auto;
  z-index: 1;
  text-align: center;
  z-index: 3;
}
@media screen and (max-width: 767px) {
  .mv-inner {
    padding: 20px 20px 0;
  }
}

/* メインタイトル (h1) */
.mv-section h1 {
  margin: 0 0 24px;
}

.mv-section h1 img {
  max-width: 100%;
  height: auto;
  display: inline-block;
  vertical-align: bottom;
}

/* 対象（緑のカプセルラベル） */
.mv-subject {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 1.05rem;
  font-weight: 700;
  color: #2b2b2b;
  margin: 0 auto 24px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .mv-subject {
    display: block;
    text-align: left;
    padding-left: 80px;
  }
}

.mv-subject span {
  display: inline-block;
  background-color: #2e8b35; /* 深みのあるグリーン */
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 20px;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .mv-subject span {
    position: absolute;
    left: 0;
    top: 0;
  }
}

/* 説明文 */
.mv-description {
  font-size: 0.95rem;
  line-height: 1.85;
  color: #2b2b2b;
  text-align: justify;
  text-align-last: left;
  max-width: 820px;
  margin: 0 auto 40px;
  font-weight: 500;
}

/* --- 4. ポイント・無料特典エリア (.mv-point) --- */
.mv-point {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 24px;
  max-width: 860px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .mv-point {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
}

/* 左側：事前申込枠ボックス (dl) */
.mv-point-box {
  flex: 1;
  position: relative;
  background-color: #ffffff;
  border: 3px solid #ff7363; /* リボンにあわせたサーモンピンク */
  border-radius: 16px;
  padding: 28px 20px 16px;
  margin: 0;
  box-shadow: 0 4px 12px rgba(255, 115, 99, 0.12);
}

/* リボンタイトルの位置設定 */
.mv-point-box dt {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 420px;
  margin: 0;
}

.mv-point-box dt img {
  width: 100%;
  height: auto;
  display: block;
}

.mv-point-box dd {
  margin: 8px 0 0;
}

.mv-point-box dd p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.6;
  color: #333333;
  font-weight: 700;
}

/* 右側：3つのメリットリスト (ul) */
.mv-point-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
  width: 180px;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .mv-point-list {
    flex-direction: row; /* 縦並びから横並びに変更 */
    flex-wrap: wrap; /* 幅にあわせて折り返しを許可 */
    justify-content: center; /* 横方向の中央揃え */
    align-items: center; /* 縦方向の中央揃え */
    width: 100%; /* 固着していた180pxを解除して100%に */
    margin: 0 auto;
  }
}

.mv-point-list li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: #2e8b35;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 10px 16px;
  border-radius: 8px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.08);
}

.mv-point-list li span {
  display: inline-flex;
  align-items: center;
  width: 16px;
  height: 16px;
}

.mv-point-list li span img {
  width: 100%;
  height: auto;
}

/* ==========================================================================
   Event Section
   ========================================================================== */
.event-section {
  position: relative;
  width: 100%;
  padding: 100px 20px;
  background-color: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .event-section {
    padding: 60px 20px;
  }
}

.event-inner {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  z-index: 2;
}

/* --- 1. 右上装飾イラスト --- */
.event-deco-img {
  position: absolute;
  top: 20px;
  right: calc(50% - 500px); /* インナーの右端に合わせる */
  width: 380px;
  max-width: 35vw;
  z-index: 1;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .event-deco-img {
    display: none;
  }
}

.event-deco-img img {
  width: 100%;
  height: auto;
  display: block;
}

/* --- 2. セクションタイトル --- */
.event-header {
  margin-bottom: 60px;
}

.event-title {
  display: flex;
  flex-direction: column;
  margin: 0;
  line-height: 1;
}

.event-title .en {
  font-size: 3.2rem;
  font-weight: 600;
  color: #2e8b35; /* メイングリーン */
  letter-spacing: 0.05em;
  font-family: "Outfit", sans-serif;
}

/* "V"の文字だけアクセントカラー（画像のデザイン再現） */
.event-title .en .accent {
  color: #ff6b5c; /* テーマのサーモンピンク */
}

.event-title .ja {
  font-size: 0.9rem;
  font-weight: 700;
  color: #2b2b2b;
  margin-top: 8px;
  letter-spacing: 0.05em;
}

/* --- 3. イベント詳細リスト (.event-details) --- */
.event-details {
  display: flex;
  flex-direction: column;
}

.event-row {
  display: flex;
  align-items: flex-start;
  padding: 32px 0;
  margin: 0;
  position: relative;
  border-bottom: #e5eee3 solid 2px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .event-row {
    padding: 24px 0;
  }
}

/* 下部の区切り線（全体には薄いグレー） */
.event-row::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 90px;
  height: 2px;
  background-color: #2e8b35;
  z-index: 2;
  transform-origin: left center;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* 左側のラベル部分 (dt) */
.event-label {
  width: 140px;
  flex-shrink: 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: #2e8b35;
  padding-right: 20px;
  position: relative;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .event-label {
    width: 100px;
    font-size: 14px;
  }
}

/* 右側のコンテンツ部分 (dd) */
.event-content {
  flex: 1;
  margin: 0;
  color: #2b2b2b;
}

/* 日時テキスト */
.event-date {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .event-date {
    display: block;
    font-size: 16px;
  }
}

.event-date .date-main {
  font-size: 1.35rem;
}

.event-date .time-main {
  font-size: 1.15rem;
  font-weight: 600;
}

/* 会場テキスト */
.event-venue {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .event-venue {
    font-size: 16px;
  }
}

.event-venue .address {
  font-size: 0.95rem;
  font-weight: 500;
  color: #98a998;
}

/* --- 4. プログラムエリア --- */
.event-row-program {
  padding-bottom: 40px;
}

.program-item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .program-item {
    display: block;
  }
}

.program-item + .program-item {
  margin-top: 40px;
}

.program-time {
  width: 140px;
  flex-shrink: 0;
  font-size: 1.15rem;
  font-weight: 700;
  color: #111111;
  padding-top: 2px;
}

.program-detail {
  flex: 1;
}

.program-title {
  margin: 0 0 16px;
  font-size: 1.2rem;
  font-weight: 700;
  color: #111111;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .program-title {
    font-size: 16px;
  }
}

/* 講師情報 */
.speaker-info {
  margin-top: 12px;
}

.speaker-name {
  margin: 0 0 10px;
  font-size: 1.05rem;
  font-weight: 700;
  color: #2e8b35;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .speaker-name {
    font-size: 14px;
  }
}

.speaker-name .divider {
  color: #a0ca9e;
  font-weight: 300;
}

.speaker-name .company {
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  .speaker-name .company {
    font-size: 14px;
  }
}

.speaker-name .name {
  font-size: 1.15rem;
  margin-left: 4px;
}

/* 講師の肩書・経歴リスト */
.speaker-credentials {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.82rem;
  color: #888888;
  line-height: 1.6;
  font-weight: 500;
}

/* ==========================================================================
   Company Section
   ========================================================================== */
.company-section {
  width: 100%;
  padding: 20px 0 0;
}
@media screen and (max-width: 767px) {
  .company-section {
    background-color: #dbeec8;
  }
}

.deco-wave {
  display: block;
  width: 100%;
}
.deco-wave img {
  width: 100%;
}

.company-inner {
  max-width: 1200px;
  margin: 0 auto 60px;
  padding: 80px 40px 40px;
  box-sizing: border-box;
  background-color: #dbeec8;
  border-radius: 30px;
}
@media screen and (max-width: 767px) {
  .company-inner {
    margin: 0 auto 0;
    max-width: 100%;
    border-radius: 0;
    padding: 30px 20px 40px;
  }
}

/* タイトル */
.company-section-title {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 48px;
  letter-spacing: 0.05em;
}

/* カード格子グリッド (PC時：3列) */
.company-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .company-grid {
    grid-template-columns: 1fr; /* スマホ：1列 */
    gap: 16px;
  }
}

.company-item {
  display: flex;
}

/* カード基本構造 */
.company-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 24px;
  box-sizing: border-box;
  text-decoration: none;
  color: #2b2b2b;
  border: 3px solid transparent; /* 枠線領域の事前確保 */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  /* モーション：ふわっと浮かぶトランジション */
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
}

/* カードホバー時のマイクロモーション */
.company-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  border-color: #2e8b35; /* 深みのあるグリーン枠線 */
}

/* ヘッダー領域（ふりがな・社名・再生アイコン） */
.company-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
  gap: 12px;
}

.company-ruby {
  display: block;
  font-size: 0.75rem;
  color: #333333;
  margin-bottom: 2px;
  letter-spacing: 0.02em;
}

.company-name {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.3;
}

/* 右上 再生/矢印ボタン風アイコン（CSSで形成） */
.icon-play {
  position: relative;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  background-color: #ff6b5c; /* 基本の赤/オレンジ */
  border-radius: 50%;
  margin-top: 2px;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

/* 三角形矢印 */
.icon-play::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 8px;
  border-color: transparent transparent transparent #ffffff;
}

/* 緑枠（.is-accent）のときはアイコンも緑色に変化 */
.company-card.is-accent .icon-play {
  background-color: #2e8b35;
}

/* カードホバー時にアイコンが少し拡大 */
.company-card:hover .icon-play {
  transform: scale(1.12);
  background-color: #2e8b35;
}

/* 企業情報リスト (.company-info-list) */
.company-info-list {
  margin: 0 0 20px;
  font-size: 0.85rem;
  line-height: 1.6;
}

.info-row {
  display: flex;
  align-items: flex-start;
  margin-bottom: 8px;
}

.info-row:last-child {
  margin-bottom: 0;
}

.info-row dt {
  width: 56px;
  flex-shrink: 0;
  font-weight: 700;
  margin: 0;
}

.info-row dd {
  margin: 0;
  flex: 1;
  word-break: break-all;
}

/* アイキャッチ画像エリア */
.company-card-img {
  margin-top: auto; /* カード下部に画像を固定 */
  width: 100%;
  height: 160px;
  border-radius: 6px;
  overflow: hidden;
  background-color: #f0f0f0;
}

.company-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

/* ホバー時に画像が少しズームイン */
.company-card:hover .company-card-img img {
  transform: scale(1.04);
}

/* ==========================================================================
   Q&A Section
   ========================================================================== */
.qa-section {
  width: 100%;
  padding: 20px 0 120px;
  background-color: #fffcf0; /* 画像背景と同系統のやわらかい生成り色 */
  box-sizing: border-box;
  position: relative;
}
@media screen and (max-width: 767px) {
  .qa-section {
    padding-bottom: 200px;
  }
}

.qa-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 60px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .qa-inner {
    padding: 0 20px;
    flex-direction: column;
    align-items: center; /* 中央に配置 */
    gap: 32px; /* タイトル・イラストとQ&Aリスト間の余白 */
  }
}

/* --- 1. 左側エリア（タイトル＆イラスト） --- */
.qa-left {
  width: 280px;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .qa-left {
    width: 100%;
    position: static; /* PC用の sticky 固定を解除 */
    display: flex;
    flex-direction: column;
    align-items: center; /* 中央揃え */
    text-align: center;
  }
}

/* タイトルスタイル */
.qa-title {
  display: flex;
  flex-direction: column;
  margin: 0 0 40px;
  line-height: 1;
}

.qa-title .en {
  font-size: 3.6rem;
  font-weight: 900;
  color: #2e8b35; /* テーマグリーン */
  letter-spacing: 0.02em;
  font-family: "Helvetica Neue", Arial, sans-serif;
}

.qa-title .en .accent {
  color: #ff6b5c; /* テーマのサーモンピンク */
}

.qa-title .ja {
  font-size: 0.9rem;
  font-weight: 700;
  margin-top: 12px;
  letter-spacing: 0.05em;
}

/* イラスト */
.qa-illustration {
  width: 100%;
  max-width: 240px;
}
@media screen and (max-width: 767px) {
  .qa-illustration {
    width: 125px;
    height: auto;
    position: absolute;
    left: 5%;
    bottom: -200px;
  }
}

.qa-illustration img {
  width: 100%;
  height: auto;
  display: block;
}

/* --- 2. 右側エリア（アコーディオン） --- */
.qa-right {
  flex: 1;
  width: 100%;
}

.qa-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* アコーディオン枠（<details>） */
.qa-item {
  background-color: #ffffff;
  border-radius: 16px;
  /* 常に 2px の枠線を維持 */
  border: 2px solid #e0e0e0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
  /* border-width ではなく border-color と box-shadow をアニメーション */
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

/* 開いた状態（[open] 属性付与時）の太緑枠デザイン */
.qa-item[open] {
  border-color: #2e8b35; /* 枠線を緑に変更 */
  /* 
   * 枠線内側に 1px の緑色の影を重ねることで、
   * 物理的なサイズを変えずに「3px の太線」を見かけ上再現！
   */
  box-shadow: inset 0 0 0 1px #2e8b35, 0 4px 16px rgba(46, 139, 53, 0.08);
}

/* 質問の見出し領域（<summary>） */
.qa-question {
  display: flex;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  list-style: none; /* デフォルトの三角矢印を非表示 */
  user-select: none;
}

/* Webkit系（Chrome/Safari）用三角矢印消し */
.qa-question::-webkit-details-marker {
  display: none;
}

/* アイコン 「Q」 */
.q-icon {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2e8b35;
  margin-right: 16px;
  flex-shrink: 0;
  line-height: 1;
}

/* 質問テキスト */
.q-text {
  flex: 1;
  font-size: 1.05rem;
  font-weight: 700;
  color: #222222;
  line-height: 1.5;
  padding-right: 16px;
  transition: color 0.3s ease;
}

/* 開いている時の質問テキストを緑色に変更 */
.qa-item[open] .q-text {
  color: #2e8b35;
}

/* --- 開閉ボタン（右側のアイコン） --- */
.toggle-icon {
  position: relative;
  width: 36px;
  height: 36px;
  background-color: #ff6b5c; /* 閉じている時はピンク */
  border-radius: 50%;
  flex-shrink: 0;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

/* 「＋」の横線 */
.toggle-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 3px;
  background-color: #ffffff;
  border-radius: 2px;
}

/* 「＋」の縦線 */
.toggle-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 3px;
  height: 16px;
  background-color: #ffffff;
  border-radius: 2px;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* 開いた時（マイナス「−」への変形） */
.qa-item[open] .toggle-icon {
  background-color: #2e8b35; /* 開くと緑色に変わる */
}

.qa-item[open] .toggle-icon::after {
  opacity: 0; /* 縦線が消えて「−」になる */
  transform: translate(-50%, -50%) rotate(90deg);
}

/* --- 回答領域（A） --- */
.qa-answer {
  padding: 0 24px 24px 64px; /* Qアイコンの分だけ左インデント */
}

.qa-answer-inner p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.8;
  color: #333333;
  font-weight: 500;
}/*# sourceMappingURL=style.css.map */