@charset "UTF-8";
:root {
  /* font */
  --font-en: "Outfit", sans-serif;
  /* color */
  --color-green: #c9db5f;
  --color-bg-outer: #f0f0f0;
  --color-text: #333;
  /* Fluid Typography: 16px */
  --fz-base: 1rem;
  --inner-width: 1200px;
  color-scheme: light;
}

html, body {
  width: 100%;
}

body {
  margin: 0;
  padding: 0;
  background-color: #fff;
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.75;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  position: relative;
  overflow-x: clip;
}

/* リンクの基本 */
a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* 1. ボックスモデルの定義：paddingやborderを幅に含める */
*, *::before, *::after {
  box-sizing: border-box;
}

/* 2. デフォルトの余白をリセット */
* {
  margin: 0;
  padding: 0;
}

/* 3. 本文のセットアップ：スクロールを滑らかにし、ベースの行間を整える */
html {
  color-scheme: light dark; /* ダークモード対応 */
}

body {
  min-height: 100vh;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased; /* フォントを綺麗に見せる（mac/iOS用） */
  text-rendering: optimizeSpeed;
}

/* 4. 画像やメディア要素の扱い：親要素からはみ出さないようにする */
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* 5. フォーム要素のフォント継承：inputやbuttonが独自のフォントにならないように */
input, button, textarea, select {
  font: inherit;
}

/* 6. テキストエリアのサイズ調整を縦方向のみに制限 */
textarea {
  resize: vertical;
}

/* 7. リストの記号を消す（必要に応じて） */
ul, ol {
  list-style: none;
}

/* 8. アニメーションを好まないユーザーへの配慮（アクセシビリティ） */
@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;
  }
}
/*menu*/
.menu {
  display: none;
}
@media screen and (max-width: 767px) {
  .menu {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 60px;
    height: 100%;
    background: #2DB0A3;
    z-index: 999;
    cursor: pointer;
  }
}
.menu .menu__line {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 2px;
  transition-duration: 0.3s;
}
.menu .menu__line.menu__line--top {
  top: 25px;
}
.menu .menu__line.menu__line--top.is_active {
  top: 30px;
  transform: rotate(45deg);
}
.menu .menu__line.menu__line--bottom {
  bottom: 25px;
}
.menu .menu__line.menu__line--bottom.is_active {
  bottom: 30px;
  transform: rotate(135deg);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 99;
}

.header_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  min-height: 80px;
  padding: 10px 3.57%;
  background-color: #ffffff;
}
@media screen and (max-width: 767px) {
  .header_inner {
    min-height: 60px;
    padding: 5px 70px 5px 5.33%;
    background-color: #ffffff;
  }
}

.header_logo {
  max-width: 148px;
  width: 15%;
}
@media screen and (max-width: 767px) {
  .header_logo {
    max-width: 126px;
    width: 100%;
  }
}
.header_logo a {
  display: block;
}
.header_logo a:hover {
  opacity: 0.8;
}
.header_logo img {
  width: 100%;
}

.gnav {
  flex: 1;
}
@media screen and (max-width: 767px) {
  .gnav {
    flex: none;
    position: fixed;
    top: -100%;
    left: 0;
    right: 0;
    width: 100%;
    max-height: 100dvh;
    margin: 0;
    padding: 0;
    background: #ffffff;
    z-index: -1;
    transition-duration: 0.5s;
  }
}
@media screen and (max-width: 767px) {
  .gnav.is_open {
    top: 0;
  }
}

@media screen and (max-width: 767px) {
  .gnav_inner {
    position: relative;
    max-height: 100dvh;
    padding: 90px 5.33% 40px;
    overflow: scroll;
    background-color: #d9f6f1;
  }
}

.header-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .header-nav {
    display: block;
    font-size: 24px;
  }
}
@media screen and (max-width: 767px) {
  .header-nav > li {
    border-bottom: solid 1px #2DB0A3;
  }
}
.header-nav > li:not(:last-child) {
  position: relative;
}
@media screen and (max-width: 767px) {
  .header-nav > li:not(:last-child) {
    margin-bottom: 10px;
  }
}
.header-nav a {
  display: block;
  padding-inline: 20px;
}
@media screen and (max-width: 767px) {
  .header-nav a {
    padding: 16px 0;
    color: #2DB0A3;
  }
}
.header-nav a:hover {
  color: #2DB0A3;
}

.fixed_btn_wrap {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
  padding: 0 20px 20px;
}
@media screen and (max-width: 767px) {
  .fixed_btn_wrap {
    padding: 0;
  }
}

.fixed_btn_inner {
  display: flex;
  justify-content: center;
  margin-left: -2.77%;
}
@media screen and (max-width: 767px) {
  .fixed_btn_inner {
    margin-left: 0;
  }
}

.fixed_btn {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex: 1;
  max-width: 335px;
  min-height: 80px;
  margin-left: 2.77%;
  padding: 6px;
  background-color: #FE839A;
  border-radius: 80px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  color: #ffffff;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .fixed_btn {
    max-width: none;
    min-height: 60px;
    margin-left: 0;
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
    line-height: 1.5;
  }
}
.fixed_btn:nth-child(2) {
  background-color: #F2B336;
}
.fixed_btn:hover {
  opacity: 0.8;
}
.fixed_btn .period_tetx {
  display: block;
  width: 100%;
  font-size: 22px;
  letter-spacing: 0.5em;
}
@media screen and (max-width: 767px) {
  .fixed_btn .period_tetx {
    font-size: 14px;
  }
}

.grid {
  display: flex;
  flex-wrap: wrap;
}

.footer {
  position: relative;
  background-color: #253D49;
  color: #ffffff;
  z-index: 1;
}
.footer:has(.footer_bottom_text) .copyright {
  margin-top: 4px;
}
@media screen and (max-width: 767px) {
  .footer:has(.footer_bottom_text) .copyright {
    margin-top: 4px;
  }
}
.footer .copyright {
  margin-top: 30px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #909090;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .footer .copyright {
    margin-top: 26px;
  }
}

.footer_bottom_text {
  margin-top: 30px;
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .footer_bottom_text {
    margin-top: 26px;
  }
}

.footer_wrap {
  position: relative;
  padding-block: 80px 46px;
}
@media screen and (max-width: 767px) {
  .footer_wrap {
    padding-block: 60px 30px;
  }
}

.footer_banner_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: -20px 0 45px -4.21%;
}
@media screen and (max-width: 767px) {
  .footer_banner_list {
    margin: -20px 0 40px 0;
  }
}
.footer_banner_list > li {
  width: 29.11%;
  margin: 20px 0 0 4.21%;
}
@media screen and (max-width: 767px) {
  .footer_banner_list > li {
    width: 100%;
    margin: 20px 0 0;
  }
}
.footer_banner_list img {
  display: block;
  width: 100%;
  height: auto;
}
.footer_banner_list a {
  display: block;
}
.footer_banner_list a:hover {
  opacity: 0.8;
}

.footer_flex {
  margin: 0 0 -30px -60px;
}

.footer_info_block {
  margin: 0 0 30px 60px;
}

.footer_info_item {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.44;
}
.footer_info_item:not(:last-child) {
  margin-bottom: 10px;
}
.footer_info_item.grid {
  align-items: flex-start;
}
.footer_info_item.grid > dt {
  margin: 4px 10px 0 0;
}
.footer_info_item.grid > dd {
  flex: 1;
  padding-top: 0.11em;
}
.footer_info_item > dt {
  display: inline-block;
  margin-bottom: 10px;
  padding: 3px 10px;
  background-color: #ffffff;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  color: #253D49;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .footer_info_item small {
    font-size: 12px;
  }
}
.footer_info_item .tel_text {
  font-size: 24px;
  line-height: 1.5;
}

.footer_info_address {
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .footer_info_address {
    font-size: 12px;
  }
}

.pagetop_btn {
  position: absolute;
  top: -50px;
  right: 10.71%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  width: 100px;
  height: 100px;
  border: solid 2px #fe6639;
  background-color: #ffffff;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  color: #fe6639;
  line-height: 1.25;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .pagetop_btn {
    right: 20px;
  }
}
.pagetop_btn::before {
  content: " ";
  display: block;
  width: 0;
  height: 0;
  margin-bottom: 6px;
  border-style: solid;
  border-width: 0 6px 7px 6px;
  border-color: transparent transparent #fe6639 transparent;
  transition-duration: 0.3s;
}
.pagetop_btn:hover {
  background-color: #fe6639;
  color: #ffffff;
}
.pagetop_btn:hover::before {
  border-color: transparent transparent #ffffff transparent;
}

.pagetop_btn_inner {
  display: block;
  width: 100%;
}

.inner {
  position: relative;
  width: 100%;
  max-width: 71.42%;
  margin-inline: auto;
  z-index: 1;
}

.bg_rhombus {
  background: url(../images/common/pattern_rhombus.png) top center/82px repeat;
}

/* ==========================================================================
   メインビジュアル（MV）スタイル
   ========================================================================== */
/* 全体の背景設定（斜めのミントグリーン） */
.top_mv_section {
  position: relative;
  width: 100%;
  background-color: #d9f6f1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: #2DB0A3 solid 3px;
}

/* コンテンツの内側（横幅の制限と基準点） */
.top_mv_inner {
  position: relative;
  width: 100%;
  max-width: 1200px;
  height: 100%;
  padding: 60px 20px;
  margin: 0 auto;
  z-index: 2; /* 背景より前に出す */
}

/* 中央のテキストコンテンツエリア */
.top_mv_wrap {
  position: relative;
  max-width: 930px;
  margin: 0 auto;
  text-align: left;
  z-index: 5;
}

.top_mv_section::before,
.top_mv_section::after {
  display: block;
  content: "";
  width: 710px;
  height: 450px;
  background-image: url(../images/top/kazari.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
}
@media screen and (max-width: 767px) {
  .top_mv_section::before,
  .top_mv_section::after {
    width: 200px;
    height: 200px;
  }
}

.top_mv_section::before {
  left: 0;
  top: 0;
}

.top_mv_section::after {
  right: 0;
  bottom: 0;
  transform: rotate(180deg);
}

.is-desktop-block {
  display: block;
}

@media screen and (max-width: 767px) {
  .is-desktop-block {
    display: none !important;
  }
}
.is-mobile-block {
  display: none !important;
}

@media screen and (max-width: 767px) {
  .is-mobile-block {
    display: block !important;
  }
}
/* -----------------------------------------------
   ヘッドライン（メインタイトル ＆ 参加無料）
-------------------------------------------------- */
.top_mv_headline {
  position: relative;
  display: inline-block;
  width: 100%;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .top_mv_headline {
    width: 90%;
    display: block;
    margin: 0 auto 30px;
  }
}

.top_mv_headline img {
  display: block;
  width: 100%;
  height: auto;
}

/* 参加無料のオレンジ丸ボタン */
.top_mv_headline .sub {
  position: absolute;
  top: -15px;
  right: -25px;
  width: 93px;
  height: 92px;
  background-color: #ff5a2b; /* 鮮やかなオレンジ */
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1.3;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  animation: pulseOrange 3s infinite ease-in-out;
}

/* -----------------------------------------------
   対象・説明文（インフォメーション）
-------------------------------------------------- */
.top_mv_info_item {
  margin: 0;
  max-width: 625px;
  margin: 0 auto;
}

/* 「対象」ラベルとターゲット文 */
.top_mv_info_item dt {
  font-size: 18px;
  font-weight: bold;
  color: #ff5a2b; /* オレンジ */
  line-height: 1.6;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

/* 対象のオレンジの丸座布団 */
.top_mv_info_item dt .target {
  background-color: #ff5a2b;
  color: #fff;
  font-size: 14px;
  padding: 4px 16px;
  border-radius: 20px;
  display: inline-block;
}

.top_mv_info_item dt .is-inline-block {
  display: inline-block;
}

/* 説明文 */
.top_mv_info_item dd {
  margin: 0;
}

.top_mv_info_item dd p {
  font-size: 15px;
  color: #333;
  line-height: 1.8;
  letter-spacing: 0.03em;
}

/* -----------------------------------------------
   左右の装飾イラスト（アブソリュート配置）
-------------------------------------------------- */
.deco_item {
  position: absolute;
  bottom: 0;
  z-index: 3;
}

/* 左下のイラスト（ホワイトボードと講師） */
.top_mv_deco01 {
  left: 0;
  bottom: -17px;
  width: 200px; /* カンプに応じてサイズ調整 */
}

/* 右下のイラスト（3人のビジネスパーソン） */
.top_mv_deco02 {
  right: 0;
  bottom: -17px;
  width: 220px; /* カンプに応じてサイズ調整 */
}

.deco_item img {
  display: block;
  width: 100%;
  height: auto;
}

/* -----------------------------------------------
   アニメーション（参加無料のふわふわ感）
-------------------------------------------------- */
@keyframes pulseOrange {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
/* -----------------------------------------------
   レスポンシブ対応（画面が狭い時・スマホ）
-------------------------------------------------- */
@media (max-width: 1100px) {
  /* タブレットサイズ：イラストが文字に被らないよう、イラストを少し小さくするか、背景に馴染ませる */
  .top_mv_deco01 {
    width: 160px;
  }
  .top_mv_deco02 {
    width: 180px;
  }
  .top_mv_wrap {
    max-width: 600px;
  }
}
@media (max-width: 768px) {
  /* スマホサイズ：縦並びのレイアウトに切り替え */
  .top_mv_inner {
    padding: 40px 15px 150px; /* 下部にイラストを入れるスペースを確保 */
  }
  .top_mv_headline .sub {
    top: -20px;
    right: -20px;
    width: 60px;
    height: 60px;
    font-size: 13px;
  }
  .top_mv_info_item {
    padding: 0 20px;
  }
  .top_mv_info_item dt {
    display: block;
    font-size: 14px;
    position: relative;
    padding-left: 80px;
  }
  .top_mv_info_item p {
    width: 100%;
  }
  .top_mv_info_item dt .target {
    display: block;
    position: absolute;
    left: 0;
    width: 60px;
    height: 45px;
    padding-top: 10px;
    border-radius: 10px;
  }
  /* スマホではイラストを左右の下部に固定配置 */
  .top_mv_deco01 {
    left: 10px;
    width: 150px;
  }
  .top_mv_deco02 {
    right: 10px;
    width: 150px;
  }
}
/* ==========================================================================
   プログラム参加で目指す姿（ベネフィットセクション）
   ========================================================================== */
.top_benefit_section {
  width: 100%;
  padding: 80px 0;
}

.top_benefit_inner {
  width: 100%;
  max-width: 1140px; /* カンプのカード全体の横幅に合わせて調整 */
  margin: 0 auto;
  padding: 0 20px;
}

/* -----------------------------------------------
   セクション見出し（スラッシュ装飾付き）
-------------------------------------------------- */
.top_benefit_heading_wrap {
  text-align: center;
  margin-bottom: 50px;
}

/* サブタイトル「\ こんな企業になりませんか？ /」 */
.top_benefit_sub_ttl {
  position: relative;
  display: inline-block;
  font-size: 16px;
  font-weight: bold;
  color: #119677; /* カンプの濃いミントグリーン */
  padding: 0 25px;
  margin-bottom: 15px;
  letter-spacing: 0.05em;
}

/* 左側のスラッシュ「\」 */
.top_benefit_sub_ttl::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 15px;
  height: 2px;
  background-color: #119677;
  transform: translateY(-50%) rotate(60deg); /* 傾きを調整 */
}

/* 右側のスラッシュ「/」 */
.top_benefit_sub_ttl::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 15px;
  height: 2px;
  background-color: #119677;
  transform: translateY(-50%) rotate(-60deg); /* 傾きを調整 */
}

/* メインタイトル */
.top_benefit_main_ttl {
  font-size: 32px;
  font-weight: 800;
  color: #333333;
  letter-spacing: 0.03em;
  margin: 0;
}

/* -----------------------------------------------
   4マスのカードリスト（CSS Gridを採用）
-------------------------------------------------- */
.top_benefit_list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2段2列 */
  gap: 30px; /* カード同士の間隔 */
}

/* カード単体 */
.top_benefit_item {
  background-color: #ffffff;
  border: 3px solid #4cb298; /* カンプのグリーンの枠線 */
  border-radius: 12px; /* 角丸 */
  padding: 30px 40px; /* 内側の余白（カンプに応じて微調整） */
  display: flex;
  align-items: center; /* 上下中央揃え */
  justify-content: space-between; /* 画像とテキストを左右に割り振る */
  gap: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02); /* ほんの少し影を落として高級感を */
  box-sizing: border-box;
}

/* イラストエリア */
.benefit_img {
  flex: 0 0 45%; /* 幅を全体の45%に固定 */
  max-width: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.benefit_img img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* テキストエリア */
.benefit_txt_box {
  flex: 1; /* 残りの幅をすべて使う */
}

.benefit_lead {
  font-size: 18px;
  font-weight: bold;
  color: #333333;
  line-height: 1.6;
  letter-spacing: 0.02em;
  margin: 0;
}

/* 水色の強調文字 */
.highlight_blue {
  color: #1bb39c; /* カンプの明るい方のミントブルー */
  font-weight: 800;
}

/* -----------------------------------------------
   レスポンス対応（タブレット・スマホ）
-------------------------------------------------- */
@media (max-width: 960px) {
  /* カード内のパディングや文字サイズを少し縮小 */
  .top_benefit_item {
    padding: 20px;
  }
  .benefit_lead {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .top_benefit_section {
    padding: 50px 0;
  }
  .top_benefit_main_ttl {
    font-size: 24px;
  }
  /* スマホでは縦1列に変更 */
  .top_benefit_list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  /* カード内部のレイアウトを必要に応じて上下並びに調整 */
  /* カンプのようにスマホでも横並びを維持したい場合はそのままでOK、文字が溢れる場合は以下のように縦並びにします */
  /*
  .top_benefit_item {
    flex-direction: column;
    text-align: center;
  }
  .benefit_img {
    flex: 0 0 auto;
    width: 60%;
    margin-bottom: 15px;
  }
  */
}
/* ==========================================================================
   内容（プログラム内容）ブロックスタイル
   ========================================================================== */
.top_content_block {
  margin-top: 100px; /* 前のbenefitリストとの間隔 */
}

/* -----------------------------------------------
   見出しエリア
-------------------------------------------------- */
.top_content_heading_wrap {
  text-align: center;
  margin-bottom: 60px;
}

.top_content_main_ttl {
  font-size: 32px;
  font-weight: 800;
  color: #333333;
  letter-spacing: 0.05em;
  margin: 0 0 15px 0;
}

.top_content_sub_txt {
  font-size: 15px;
  color: #666666;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .top_content_sub_txt {
    font-size: 16px;
  }
}

/* -----------------------------------------------
   レイアウトグリッド（2列×2段）
-------------------------------------------------- */
.top_content_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 40px; /* 左右の余白を広めにとってスッキリ見せる */
  row-gap: 60px; /* 上下の余白 */
}

/* 各内容ボックスの共通設定 */
.top_content_box {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* カプセル型見出しの共通設定 */
.content_box_ttl {
  width: 100%;
  max-width: 530px;
  height: 50px;
  border-radius: 25px; /* 完全なカプセル型 */
  color: #ffffff;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 30px 0;
}

/* -----------------------------------------------
   【バリエーション】テーマカラーの定義
-------------------------------------------------- */
/* 1. パープル */
.top_content_box.is-purple .content_box_ttl {
  background-color: #928ccc;
}

.top_content_box.is-purple .content_program_list li::before {
  color: #928ccc;
}

/* 2. ピンク */
.top_content_box.is-pink .content_box_ttl {
  background-color: #ff7c95;
}

.top_content_box.is-pink .content_program_list li::before {
  color: #ff7c95;
}

/* 3. グリーン */
.top_content_box.is-green .content_box_ttl {
  background-color: #29b2a6;
}

.top_content_box.is-green .content_program_list li::before {
  color: #29b2a6;
}

/* 4. イエロー */
.top_content_box.is-yellow .content_box_ttl {
  background-color: #f7b445;
}

.top_content_box.is-yellow .content_step_list li::before {
  background-color: #f7b445;
}

/* -----------------------------------------------
   プログラムリスト（1〜3ブロック共通）
-------------------------------------------------- */
.content_program_list {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  max-width: 480px; /* 見出しの幅と揃える */
}

.content_program_list li {
  position: relative;
  padding-left: 18px; /* ポチの分の余白 */
  margin-bottom: 25px;
  text-align: left;
}

/* リスト頭の「・」をCSS疑似要素でカラー連動 */
.content_program_list li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: -2px;
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
}

/* プログラム名（太字） */
.program_name {
  display: block;
  font-size: 18px;
  font-weight: bold;
  color: #333333;
  line-height: 1.4;
  margin-bottom: 6px;
}

/* 補足説明（細字・括弧） */
.program_detail {
  display: block;
  font-size: 14px;
  color: #555555;
  line-height: 1.6;
}

/* -----------------------------------------------
   4つ目のブロック専用（個別相談サポート）
-------------------------------------------------- */
.content_custom_area {
  width: 100%;
  max-width: 440px;
  text-align: left;
}

.custom_lead {
  font-size: 16px;
  font-weight: bold;
  color: #333333;
  margin: 0 0 15px 0;
}

.content_step_list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.content_step_list li {
  position: relative;
  padding-left: 18px;
  font-size: 16px;
  color: #333333;
  margin-bottom: 12px;
  display: flex;
  align-items: baseline;
}

/* イエローの四角いドット */
.content_step_list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px; /* 文字の高さに合わせる */
  width: 6px;
  height: 6px;
}

/* 第○回テーマ */
.step_num {
  font-weight: bold;
  margin-right: 15px;
  flex-shrink: 0;
}

/* テーマ内容 */
.step_txt {
  flex-grow: 1;
}

/* -----------------------------------------------
   レスポンシブ対応（タブレット・スマホ）
-------------------------------------------------- */
@media (max-width: 960px) {
  .top_content_grid {
    column-gap: 40px; /* 画面が狭くなったらグリッドの間隔を縮める */
  }
}
@media (max-width: 768px) {
  .top_content_block {
    margin-top: 60px;
  }
  .top_content_main_ttl {
    font-size: 24px;
  }
  /* スマホでは縦1列レイアウト */
  .top_content_grid {
    grid-template-columns: 1fr;
    row-gap: 40px;
  }
  .content_box_ttl {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .program_name {
    font-size: 16px;
  }
  .program_detail {
    font-size: 13px;
  }
}
/* ==========================================================================
   プログラムセクション：ベース ＆ 見出し・タブエリア（シンプル版）
   ========================================================================== */
.top_program_section {
  width: 100%;
  padding: 80px 0;
}

.top_program_inner {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
  position: relative;
  z-index: 2;
}

.program_content_container {
  border-top: #2DB0A3 solid 3px;
  background-color: #D9F6F1;
  padding: 60px 0;
  position: relative;
  min-height: 250px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .program_content_container {
    min-height: 200px;
  }
}

.program_content_container::before,
.program_content_container::after {
  display: block;
  content: "";
  width: 710px;
  height: 530px;
  background-image: url(../images/top/kazari.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
}
@media screen and (max-width: 767px) {
  .program_content_container::before,
  .program_content_container::after {
    width: 200px;
    height: 200px;
  }
}

.program_content_container::before {
  left: 0;
  top: 0;
}

.program_content_container::after {
  right: 0;
  bottom: 0;
  transform: rotate(180deg);
}

/* -----------------------------------------------
   見出し＆タブを包括するブロック（下線と左右配置を一本化）
-------------------------------------------------- */
.program_heading_block {
  display: flex;
  justify-content: space-between;
  align-items: flex-end; /* 下辺で揃える */
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  z-index: 2;
  position: relative;
}
@media screen and (max-width: 767px) {
  .program_heading_block {
    display: block;
    padding: 0 15px;
  }
}

/* ─── 左側：タイトルスタイル ─── */
.heading_title_area {
  text-align: left;
  padding-bottom: 15px; /* 下線との間の心地よい余白 */
}

.heading_title_area .en_ttl {
  display: block;
  font-size: 14px;
  font-weight: bold;
  color: #29b2a6;
  letter-spacing: 0.08em;
}

.heading_title_area .main_ttl {
  font-size: 32px;
  font-weight: 800;
  color: #333333;
  margin: 4px 0 0 0;
  letter-spacing: 0.05em;
}

/* ─── 右側：タブリスト（ul / li） ─── */
.program_tab_list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: flex-end;
  gap: 12px; /* タブ同士の間の絶妙な隙間 */
}

/* タブボタン単体（li）のスタイル */
.program_tab_item {
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.05em;
  width: 200px;
  height: 64px;
  border: 3px solid #29b2a6;
  border-bottom: none; /* 下の枠線は無し */
  border-radius: 12px 12px 0 0; /* 上の角だけ丸める */
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  box-sizing: border-box;
}

/* 【状態A】アクティブ（緑背景・白文字） */
.program_tab_item.is-active {
  background-color: #29b2a6;
  color: #ffffff;
}

/* 【状態B】非アクティブ（白背景・黒文字） */
.program_tab_item:not(.is-active) {
  background-color: #ffffff;
  color: #333333;
}

/* ==========================================================================
   プログラムセクション：中身（カードリスト）
   ========================================================================== */
/* 上部バッジエリア */
.program_meta_bar {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  margin-bottom: 25px;
}

.meta_badge {
  font-size: 13px;
  font-weight: bold;
  padding: 4px 14px;
  border-radius: 15px;
}

.meta_badge.is-dark {
  background-color: #333333;
  color: #ffffff;
}

.meta_badge.is-orange {
  background-color: #f69345;
  color: #ffffff;
}

/* パネル表示切り替え制御 */
.program_panel {
  display: none;
}

.program_panel.is-active {
  display: block;
}

.no_event_txt {
  text-align: center;
  padding: 40px 0;
  color: #666;
}

/* ─── カードグリッドレイアウト ─── */
.program_card_grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 40px;
  row-gap: 50px;
  margin-bottom: 40px;
  z-index: 2;
}

/* カード共通の基盤 */
.program_card {
  display: flex;
  flex-direction: column;
  overflow: visible;
  box-sizing: border-box;
}

/* ─── 各カラーバリエーションの枠線と配色定義 ─── */
/* パープル */
.program_card.is-purple .card_header {
  background-color: #928ccc;
}

.program_card.is-purple .card_body {
  border: solid 3px #928ccc;
  border-radius: 10px;
}

.program_card.is-purple .card_badge, .program_card.is-purple dt {
  color: #8780c4;
}

.program_card.is-purple .card_action_btn {
  background-color: #928ccc;
}

/* ピンク */
.program_card.is-pink .card_header {
  background-color: #ff7c95;
}

.program_card.is-pink .card_body {
  border: solid 3px #ff7c95;
  border-radius: 10px;
}

.program_card.is-pink .card_badge, .program_card.is-pink dt {
  color: #ff7c95;
}

.program_card.is-pink .card_action_btn {
  background-color: #ff7c95;
}

/* グリーン */
.program_card.is-green .card_header {
  background-color: #29b2a6;
}

.program_card.is-green .card_body {
  border: solid 3px #29b2a6;
  border-radius: 10px;
}

.program_card.is-green .card_badge, .program_card.is-green dt {
  color: #29b2a6;
}

.program_card.is-green .card_action_btn {
  background-color: #29b2a6;
}

/* ─── カードヘッダー ─── */
.card_header {
  position: relative;
  padding: 16px 20px;
  border-radius: 10px;
  color: #ffffff;
  text-align: left;
  margin: 0 0 16px; /* 外枠の境界線と綺麗に重ねる */
}

/* ヘッダー下部中央の小さな三角形の突起 */
.card_header::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 8px 0 8px;
  z-index: 2;
}

/* 三角形の色も親のカラーに連動 */
.program_card.is-purple .card_header::after {
  border-color: #928ccc transparent transparent transparent;
}

.program_card.is-pink .card_header::after {
  border-color: #ff7c95 transparent transparent transparent;
}

.program_card.is-green .card_header::after {
  border-color: #29b2a6 transparent transparent transparent;
}

.card_badge {
  display: inline-block;
  font-size: 11px;
  font-weight: bold;
  padding: 2px 10px;
  background-color: #fff;
  border-radius: 10px;
  margin-bottom: 6px;
}

.card_main_ttl {
  font-size: 18px;
  font-weight: bold;
  margin: 0;
  line-height: 1.4;
}

/* ─── カードボディ（コンテンツエリア） ─── */
.card_body {
  background-color: #fff;
  padding: 35px 25px 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1; /* グリッド内で高さを均等に揃える */
}

.card_info_list {
  margin: 0 0 25px 0;
}

.info_row {
  display: flex;
  margin-bottom: 18px;
  text-align: left;
  font-size: 16px;
  line-height: 1.6;
}

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

.info_row.is-program,
.info_row.is-teacher {
  display: block;
}

.info_row dt {
  width: 60px;
  font-weight: bold;
  flex-shrink: 0;
  padding-top: 10px;
}

.info_row.is-program dt,
.info_row.is-teacher dt {
  width: 100%;
}

.info_row dd {
  margin: 0;
  color: #333333;
  flex-grow: 1;
}

.info_row.is-program dd,
.info_row.is-teacher dd {
  margin-top: 10px;
  color: #333333;
}

.bold_txt {
  font-weight: bold;
  font-size: 24px;
}

/* プログラム内容の箇条書き（・） */
.nested_list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nested_list li {
  position: relative;
  padding-left: 12px;
  margin-bottom: 6px;
}

.nested_list li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}

/* 講師情報スタイル */
.teacher_name {
  display: block;
  font-weight: bold;
  font-size: 20px;
  color: #222222;
}

.teacher_name::after {
  display: inline;
  content: "氏";
  margin-left: 5px;
  font-size: 14px;
}

.teacher_profile {
  display: block;
  font-size: 12px;
  color: #666666;
  margin-top: 2px;
  line-height: 1.4;
}

.mt-10 {
  margin-top: 10px;
}

/* ─── アクションボタン ─── */
.card_btn_wrap {
  margin-top: auto; /* コンテンツ量が違ってもボタンを必ず最下部に揃える */
}

.card_action_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 240px;
  height: 40px;
  margin: 0 auto;
  border-radius: 20px;
  color: #ffffff;
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
  position: relative;
  transition: opacity 0.3s ease;
}

/* 右端の白い斜め上矢印アイコン（CSS疑似要素でシャープに表現） */
.card_action_btn::after {
  content: "";
  position: absolute;
  right: 20px;
  width: 5px;
  height: 5px;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

/* モーション視点：ホバー時に斜め右上へピコッと動く演出 */
.card_action_btn:hover {
  opacity: 0.85;
}

.card_action_btn:hover::after {
  transform: rotate(45deg) translate(2px, -2px);
}

/* -----------------------------------------------
   レスポンシブ対応（スマホ）
-------------------------------------------------- */
@media (max-width: 840px) {
  .program_card_grid {
    grid-template-columns: 1fr; /* スマホでは縦1列 */
    row-gap: 35px;
  }
  .card_body {
    padding: 30px 15px 20px;
  }
}
/* ==========================================================================
   個別相談サポートセクション
   ========================================================================== */
.top_consult_section {
  width: 100%;
  padding: 80px 0 100px;
}

.top_consult_inner {
  width: 100%;
  max-width: 1040px; /* プログラムエリアと同じメイン幅に統一 */
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* ─── メイン見出し（オレンジの大きな帯） ─── */
.consult_main_header {
  width: 100%;
  background-color: #f5ab4b; /* カンプの温かみのある鮮やかなオレンジ */
  border-radius: 12px; /* 美しい角丸 */
  padding: 22px 30px;
  box-sizing: border-box;
  margin-bottom: 40px;
  text-align: left;
}

.consult_main_ttl {
  font-size: 26px;
  font-weight: bold;
  color: #ffffff;
  margin: 0;
  letter-spacing: 0.05em;
}

/* ─── リード文 ＆ 予約方法 ─── */
.consult_intro_block {
  width: 100%;
  text-align: left;
  margin-bottom: 50px;
}

.consult_lead_txt {
  font-size: 16px;
  color: #333333;
  line-height: 1.8;
  margin: 0 0 35px 0;
}

.consult_method_box {
  font-size: 15px;
  line-height: 1.8;
  color: #333333;
}

.consult_method_box .method_ttl {
  font-size: 16px;
  font-weight: bold;
  margin: 0 0 8px 0;
  color: #333333;
}

.consult_method_box .method_txt {
  margin: 0;
}

.consult_method_box .method_note {
  display: block;
  font-size: 14px;
  color: #666666;
  margin-top: 4px;
}

/* ─── 2列のカードグリッド ─── */
.consult_grid_container {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* PC環境では美しい2列 */
  column-gap: 50px; /* 左右カードの絶妙な空間 */
  row-gap: 50px; /* 上下カードの間隔 */
}

/* 各コマ（第○回）のカード単体 */
.consult_card_item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

/* オレンジの丸みのある小さな見出し帯 */
.card_round_label {
  background-color: #f5ab4b;
  color: #ffffff;
  font-size: 18px;
  font-weight: bold;
  padding: 8px 0;
  width: 100%;
  text-align: center;
  border-radius: 20px; /* 完全なカプセル型の角丸 */
  letter-spacing: 0.05em;
  margin-bottom: 25px;
}

/* 内部情報（dlリスト） */
.consult_info_list {
  width: 100%;
  margin: 0;
  padding: 0 20px; /* 帯の端とテキストの開始位置を微調整 */
  box-sizing: border-box;
}

.consult_row {
  display: flex;
  margin-bottom: 14px;
  text-align: left;
  font-size: 15px;
  line-height: 1.6;
}

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

/* 左側の各項目名（日時、テーマ…など） */
.consult_row dt {
  width: 80px; /* 「テーマ」等の文字にピッタリ合わせた固定幅 */
  font-weight: bold;
  color: #f5ab4b; /* ラベルと連動するオレンジの文字色 */
  position: relative;
  flex-shrink: 0;
  position: relative;
}

.consult_row dt::before {
  display: inline-block;
  content: "⚫︎";
  margin-right: 5px;
}

.consult_row dd {
  margin: 0;
  color: #333333;
  flex-grow: 1;
}

/* 個別テキスト調整 */
.consult_row .bold_txt {
  font-weight: bold;
  font-size: 24px;
  color: #333333;
  position: relative;
  top: -7px;
}

.consult_row .teacher_name {
  display: block;
  font-weight: bold;
  color: #333333;
  line-height: 1.25;
  position: relative;
}

.consult_row .teacher_name .sub_note {
  font-weight: normal;
  font-size: 13px;
  color: #666666;
}

.consult_row .teacher_corp {
  display: block;
  font-size: 12px;
  color: #666666;
  line-height: 1.4;
}

/* -----------------------------------------------
   レスポンシブ対応（スマホサイズ）
-------------------------------------------------- */
@media (max-width: 768px) {
  .top_consult_section {
    padding: 50px 0 60px;
  }
  .consult_main_header {
    padding: 16px 20px;
    margin-bottom: 25px;
  }
  .consult_main_ttl {
    font-size: 20px;
  }
  .consult_intro_block {
    margin-bottom: 35px;
  }
  .consult_lead_txt {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .consult_grid_container {
    grid-template-columns: 1fr; /* スマホでは縦一列 */
    row-gap: 40px;
  }
  .card_round_label {
    width: 100%; /* スマホでは帯を横いっぱいに広げて見やすく */
    font-size: 16px;
    margin-bottom: 15px;
  }
  .consult_info_list {
    padding: 0;
  }
  .consult_row {
    font-size: 14px;
    margin-bottom: 10px;
  }
  .consult_row .bold_txt {
    font-size: 16px;
  }
}
/* ==========================================================================
   FAQ（よくある質問）セクション：全閉じ初期化版
   ========================================================================== */
.top_faq_section {
  width: 100%;
  padding: 100px 0 120px;
}
@media screen and (max-width: 767px) {
  .top_faq_section {
    padding-bottom: 60px;
  }
}

.top_faq_inner {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
}

/* ─── 大きなミントグリーンの角丸太枠ボックス ─── */
.faq_main_box {
  position: relative;
  width: 85.7%;
  background-color: #e2f4f1;
  border-left: 3px solid #29b2a6;
  border-top: 3px solid #29b2a6;
  border-bottom: 3px solid #29b2a6;
  border-radius: 16px 0 0 16px;
  padding: 60px 80px;
  box-sizing: border-box;
  margin-left: 14.3%;
}
@media screen and (max-width: 767px) {
  .faq_main_box {
    width: 100%;
    border-radius: 0;
    margin-left: 0;
    border-left: none;
  }
}

/* 見出しエリア */
.faq_heading_area {
  text-align: left;
  margin-bottom: 40px;
}

.faq_heading_area .en_ttl {
  display: block;
  font-size: 14px;
  font-weight: bold;
  color: #29b2a6;
  letter-spacing: 0.08em;
}

.faq_heading_area .main_ttl {
  font-size: 32px;
  font-weight: 800;
  color: #333333;
  margin: 4px 0 0 0;
  letter-spacing: 0.05em;
}

/* ─── アコーディオン構造 ─── */
.faq_accordion_list {
  margin: 0;
  padding: 0;
}

.faq_item {
  width: 100%;
  border-bottom: 1px solid #29b2a6; /* 区切り線 */
}

/* 質問エリア（クリック領域となる dt） */
.faq_accordion_list dt {
  position: relative;
  display: flex;
  align-items: center;
  padding: 20px 50px 20px 20px;
  margin: 0;
  cursor: pointer;
  transition: background-color 0.3s ease, border-radius 0.3s ease;
}

/* Qの文字アイコン */
.icon_q {
  font-size: 32px;
  font-weight: 500;
  color: #29b2a6;
  margin-right: 15px;
  flex-shrink: 0;
  font-family: "Outfit", sans-serif;
}

.question_txt {
  font-size: 16px;
  font-weight: bold;
  color: #333333;
  margin: 0;
  line-height: 1.5;
  text-align: left;
}

/* 右端のオレンジ色の矢印 */
.arrow_icon {
  position: absolute;
  right: 25px;
  top: calc(50% - 4px);
  width: 10px;
  height: 10px;
  border-bottom: 2px solid #ff5a2b;
  border-right: 2px solid #ff5a2b;
  transform: rotate(45deg); /* デフォルトは下向き */
  transition: transform 0.3s ease;
}

/* 回答エリア（すべての要素の初期状態を非表示に一括統一） */
/* ─── 回答エリア（修正版） ─── */
.faq_accordion_list dd {
  display: none; /* jQueryのslideToggle用（デフォルトは非表示） */
  margin: 0;
  padding: 0; /* ★dd自体のパディングは一旦リセット */
}

/* ★新設：段ズレを防ぎ、綺麗に横並び（Flex）を維持するコンテナ */
.answer_inner {
  display: flex; /* ここで横並びを定義 */
  align-items: center;
  padding: 25px 20px; /* ここで内側の余白を確保 */
  width: 100%;
  box-sizing: border-box;
}

/* Aの文字アイコン */
.icon_a {
  font-size: 32px;
  font-weight: 800;
  color: #29b2a6;
  margin-right: 15px;
  flex-shrink: 0;
  font-family: "Outfit", sans-serif;
}

/* 回答のテキスト */
.answer_txt {
  font-size: 15px;
  color: #333333;
  margin: 0;
  line-height: 1.6;
  text-align: left;
  padding-top: 4px; /* Aのアイコンと高さを微調整 */
}

/* ─── jQueryで .is_open が付与された（開いた）時のスタイル ─── */
.faq_item.is_open dt {
  background-color: #29b2a6; /* 緑背景座布団 */
  border-radius: 8px;
}

.faq_item.is_open .icon_q,
.faq_item.is_open .question_txt {
  color: #ffffff; /* 文字を白反転 */
}

.faq_item.is_open .arrow_icon {
  border-color: #ffffff; /* 矢印も白に */
  transform: rotate(-135deg); /* くるっと上向きに変形 */
  top: calc(50% - 2px);
}

/* ─── 装飾イラスト ─── */
.faq_deco_img {
  position: absolute;
  z-index: 5;
}

.faq_deco_img img {
  display: block;
  width: 100%;
  height: auto;
}

.deco_top_right {
  top: -155px;
  right: 50px;
  width: 120px;
}

.deco_bottom_left {
  bottom: -10px;
  left: -60px;
  width: 110px;
}

/* ─── レスポンシブ（スマホ） ─── */
@media (max-width: 840px) {
  .faq_main_box {
    padding: 40px 20px;
  }
  .faq_deco_img {
    display: none;
  }
  .question_txt {
    font-size: 14px;
  }
  .answer_txt {
    font-size: 14px;
  }
  .icon_q, .icon_a {
    font-size: 20px;
    margin-right: 10px;
  }
}/*# sourceMappingURL=style.css.map */