@charset "utf-8";
/* ==========================================================================
   tour.css
   学生向け園見学会ページ専用スタイル
   ベース：renewal.css の CSS変数（--color-main 等）を継承
   メインカラー：ティールグリーン系（Figmaデザインに準拠）
   ========================================================================== */

/* --------------------------------------------------------------------------
   0. ページ全体のレイアウト調整（サイドバーなし・フル幅）
-------------------------------------------------------------------------- */
/* 見学会セクション内のdivとulのafterを完全に無効化する */
.tour_section div::after,
.tour_section ul::after {
    content: none !important;
    display: none !important;
}

#conts-page-tour {
  width: 100%;
}

.conts-page--full {
  width: 100%;
  max-width: 1128px;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .conts-page--full {
    width: 100%;
    max-width: 1128px;
    padding: 0 16px;
  }
}

.page-tour-full {
  float: none;
  width: 100%;
  max-width: none;
  margin: 0;
  margin-top: 0;
}

.tour_lp {
  background: var(--color-bg, #f7f5ee);
  color: var(--color-text, #4b3a2a);
}

.tour_section {
  padding: 88px 0;
  border-radius: 24px;
}

@media screen and (max-width: 767px) {
  .tour_section {
    padding: 48px 0;
  }
}

.tour_section.bg-soft {
  background: #ffffff;
}

.tour_section_title {
  position: relative;
  display: inline-block;
  margin-bottom: 24px;
  padding-bottom: 12px;
  font-size: 32px;
  font-weight: 600;
  color: var(--color-main-deep);
  letter-spacing: .03em;
}

.tour_section_title::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  margin-top: 10px;
  background: var(--color-accent);
  border-radius: 999px;
}

.tour_section_title--center::after {
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .tour_section_title {
    font-size: 1.3rem;
  }
}

.tour_intro_text {
  margin-top: 24px;
  margin-bottom: 48px;
  text-align: left;
  font-size: 16px;
  line-height: 1.8;
}

@media screen and (max-width: 767px) {
  .tour_intro_text {
    margin-bottom: 32px;
  }
}

.tour_cta_inline {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.tour_section_shadow {
  border: 1px solid #f5f5f5;
  box-shadow: 0 8px 18px var(--color-shadow);
  transition: transform .25s ease, box-shadow .25s ease;
}

/* --------------------------------------------------------------------------
   1. ヒーロー（FV）
   PC：オーバーレイ型 / SP：ハイブリッド型（写真上は最小限・下に詳細）
-------------------------------------------------------------------------- */

.tour_fv {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 480px;
  background: #e9e4d4;
  overflow: hidden;
  border-radius: 8px;
}

.tour_fv_media {
  position: absolute;
  inset: 0;
  z-index: 1;
}

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

.tour_fv_overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.tour_fv_content {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 60px 16px;
  color: #ffffff;
  text-align: left;
}

.tour_fv_eyebrow {
  margin-bottom: 16px;
}

.tour_fv_eyebrow span{
  display: inline-block;
  padding: 6px 16px;
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  background-color: #2a6e60;
  letter-spacing: .06em;
  border-radius: 4px;
}

.tour_fv_title {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.tour_fv_title span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  color: #ffffff;
  font-size: 2.6rem;
  font-weight: 700;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.tour_fv_title span:nth-child(1) { background-color: #1ea389;}
.tour_fv_title span:nth-child(2) { background-color: #f39c12;}
.tour_fv_title span:nth-child(3) { background-color: #8cc63f;}
.tour_fv_title span:nth-child(4) { background-color: #2a6e60;}
.tour_fv_title span:nth-child(5) { background-color: #e74c3c;}
.tour_fv_title span:nth-child(6) { background-color: #3498db;}

.tour_fv_lead {
  font-size: 1.45rem;
  line-height: 1.8;
}

.tour_fv_lead span {
  display: inline;
  padding: 6px 14px;
  color: #2c4a30;
  background-color: #ffffff;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

@media screen and (max-width: 767px) {
  .tour_fv {
    min-height: 0;
    display: flex;
    flex-direction: column-reverse;
    gap: 24px;
    padding: 32px 20px;
    background: #e9e4d4;
  }

  .tour_fv_media {
    position: relative;
    inset: auto;
    width: 100%;
  }

  .tour_fv_media img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  }
  
  .tour_fv_overlay {
    display: none;
  }

  .tour_fv_content {
    position: relative;
    width: 100%;
    padding: 0;
    background: none;
    color: #2c4a30;
  }

  .tour_fv_eyebrow {
    margin-bottom: 12px;
  }

  .tour_fv_eyebrow span {
    padding: 6px 12px;
    font-size: 0.9rem;
    background-color: #2a6e60;
    border-radius: 4px;
  }

  .tour_fv_title {
    gap: 6px;
    margin-bottom: 16px;
  }

  .tour_fv_title span {
    width: 46px;
    height: 46px;
    font-size: 1.6rem;
    border-radius: 6px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12);
  }

  .tour_fv_lead {
    margin-top: 8px;
    font-size: 1.15rem;
    line-height: 1.7;
  }

  .tour_fv_lead span {
    display: block;
    padding: 0;
    color: #2c4a30;
    background: none;
    box-decoration-break: initial;
    -webkit-box-decoration-break: initial;
  }
}

/* --------------------------------------------------------------------------
   2. 園見学会について
-------------------------------------------------------------------------- */

.tour_about {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: start;
}

.tour_about_media {
  min-height: 360px;
}

.tour_about_media img {
  border-radius: 16px;
}

.tour_chip_row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.tour_chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--color-main-light);
  color: var(--color-main-deep);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
}

.tour_chip i {
  font-size: 18px;
  color: #008979;
}

.tour_about_lead {
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.8;
}

.tour_about_text p {
  text-align: left;
  line-height: 1.8;
}

.tour_def_list {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 10px 16px;
  margin: 24px 0 16px;
  padding: 20px;
  background: #f7f5ee;
  border-radius: var(--radius-md);
}

.tour_def_list dt {
  font-weight: 700;
  color: var(--color-main-deep);
  text-align: left;
}

.tour_def_list dd {
  margin: 0;
  text-align: left;
}

.tour_parent_note {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px dashed var(--color-line-strong);
  font-size: 0.85rem;
  color: var(--color-muted);
  text-align: left;
  line-height: 1.8;
}

.tour_parent_note a {
  color: var(--color-main-deep);
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .tour_about {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .tour_about_media {
    min-height: 200px;
  }

  .tour_def_list {
    grid-template-columns: 80px 1fr;
    padding: 16px;
  }
}

/* --------------------------------------------------------------------------
   3. 体験できること
-------------------------------------------------------------------------- */

.tour_experience_section {
  position: relative;
}

.tour_circle_photo {
  position: absolute;
  z-index: 5;
  pointer-events: none;
}

.tour_circle_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 5px solid #ffffff;
  border-radius: 50%;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
}

.photo_left_top {
  width: 180px;
  height: 180px;
  top: -80px;
  left: 40px
}

.photo_right_top {
  width: 140px;
  height: 140px;
  top: -30px;
  right: 50px;
}

.tour_experience_cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 0 20px;
}

.tour_experience_card {
  background: #ffffff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  box-shadow: 0 8px 18px var(--color-shadow);
}

.tour_experience_icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--color-main-light);
  color: var(--color-main-deep);
  font-size: 1.4rem;
}

.tour_experience_card h3 {
  margin-bottom: 8px;
  font-size: 1.02rem;
  color: var(--color-main-deep);
  line-height: 1.5;
}

.tour_experience_card p {
  font-size: 0.88rem;
  color: var(--color-muted);
  line-height: 1.7;
}

.tour_tag_small {
  display: inline-block;
  margin-left: 4px;
  padding: 1px 8px;
  background: var(--color-accent-light);
  color: #b9772f;
  border-radius: 4px;
  font-size: 0.68rem;
  font-weight: 500;
  vertical-align: middle;
}

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

  .tour_experience_cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .tour_experience_card {
    padding: 20px 14px;
  }
}

/* --------------------------------------------------------------------------
   4. こんな方におすすめ
-------------------------------------------------------------------------- */

.tour_audience_cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.tour_audience_card {
  background: #f7f5ee;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  padding: 24px 16px;
  text-align: center;
}

.tour_audience_icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: #ffffff;
  color: var(--color-main-deep);
  font-size: 2rem;
}

.tour_audience_card p {
  font-size: 0.88rem;
  line-height: 1.6;
  letter-spacing: -0.02em;
}

.tour_audience_note {
  position: relative;
  display: block;
  width: max-content;
  max-width: 90%;
  margin: 48px auto 16px;
  padding: 12px 28px;
  font-size: 1.15rem;
  font-weight: 600;
  color: #a25e05;
  background: #ffffff;
  text-align: center;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(243, 156, 18, 0.15);
}

.tour_audience_note::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-style: solid;
  border-width: 12px 12px 0 12px;
  border-color: #ffffff transparent transparent transparent;
}

@media screen and (max-width: 767px) {
  .tour_audience_cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .tour_audience_note {
    width: auto;
    max-width: 290px;
    margin: 32px auto 12px;
    padding: 10px 20px;
    font-size: 0.95rem;
    border-radius: 14px;
  }
}

/* --------------------------------------------------------------------------
   5. 開催日程・タイムスケジュール
-------------------------------------------------------------------------- */

.tour_notice_box {
  max-width: 860px;
  margin: 0 auto 40px;
  padding: 20px 24px;
  background: #f7f5ee;
  border-radius: var(--radius-md);
  font-size: 1rem;
  line-height: 1.9;
  color: var(--color-text);
  text-align: left;
}

.tour_notice_box p {
  margin-bottom: 4px;
}

.tour_notice_box p:last-child {
  margin-bottom: 0;
}

.tour_schedule_cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 0 24px;
}

.tour_schedule_card {
  background: #ffffff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 20px var(--color-shadow);
}

.tour_schedule_head {
  padding: 24px 24px 20px;
  color: #ffffff;
  text-align: left;
}

.tour_schedule_head--1 {
  background: #1ea389;
}

.tour_schedule_head--2 {
  background: #c7651a;
}

.tour_schedule_header_top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.tour_schedule_meta {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
.tour_schedule_meta {
  flex-direction: column;
  gap: 0px;
}
}

.tour_round_badge {
  display: inline-block;
  flex-shrink: 0;
  padding: 4px 14px;
  border-radius: 999px;
  font-size: 1.25rem;
  font-weight: 700;
}

.tour_round_badge--1 {
  background: #d7ecc6;
  color: #0f6b58;
}

.tour_round_badge--2 {
  background: #ffe8cc;
  color: #874d00;
}

.tour_schedule_date {
  margin-bottom: 4px;
  font-size: 1.5rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
.tour_schedule_date {
  margin-top: 0px;
  margin-bottom: 0px;
  font-size: 1.2rem;
  font-weight: 700;
}

.tour_schedule_date p {
  line-height: 1 !important;
}
}

.tour_schedule_time {
  font-size: 1.5rem;
  opacity: .9;
}
@media screen and (max-width: 767px) {
.tour_schedule_time {
  margin-top: -0.5rem;
  font-size: 1.2rem;
}

.tour_schedule_time p {
  line-height: 1 !important;
}
}

.tour_schedule_points {
  padding: 12px 16px;
  background: rgba(255,255,255,0.14);
  border-radius: var(--radius-sm);
}

.tour_schedule_points_label {
  margin-bottom: 6px;
  font-size: 1.2rem;
  font-weight: 700;
  color: #d2f2ec;
}

.tour_schedule_head--2 .tour_schedule_points_label {
  color: #ffe8cc;
}

.tour_schedule_points ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.tour_schedule_points li {
  font-size: 1rem;
  text-align: left;
}

.tour_schedule_points i {
  margin-right: 6px;
  color: #d2f2ec;
}

.tour_schedule_head--2 .tour_schedule_points i {
  color: #ffe8cc;
}

.tour_schedule_body {
  padding: 24px;
}

/* タイムライン */
.tour_timeline {
  position: relative;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.tour_timeline::before {
  content: "";
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 78px;
  width: 2px;
  background: var(--color-line-strong);
}

/* 各行のグリッド設計 */
.tour_timeline li {
  position: relative;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 32px;
  padding: 10px 16px;
  text-align: left;
  box-sizing: border-box;
}

/* 時間のスタイル */
.tour_timeline .time {
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--color-main-deep);
  text-align: right;
  line-height: 1.6;
}

/* 内容のスタイル */
.tour_timeline .work {
  font-size: 1rem;
  line-height: 1.6;
  color: #333333;
}

/* ドットの共通設計 */
.tour_timeline li::before {
  content: "";
  position: absolute;
  left: 72px;
  top: 13px;
  width: 12px;
  height: 12px;
/*  background: var(--color-main); */
  border: 2px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--color-line-strong);
  z-index: 2;
}

/* 第1回・第2回でのドット色の出しわけ */
.tour_timeline--1 li::before {
  background: #1ea389;
}

.tour_timeline--2 li::before {
  background: #c7651a;
}

.tour_timeline .work small {
  display: block;
  margin-top: 4px;
  font-size: 0.78rem;
  color: var(--color-muted);
}

/* ハイライト行の装飾 */
.tour_timeline_highlight {
  border-radius: var(--radius-sm);
}

.tour_timeline_highlight--1 {
  background: #e6f7f4;
}

.tour_timeline_highlight--2 {
  background: #fff3e2;
}

.tour_timeline_highlight .time,
.tour_timeline_highlight .work {
  padding-left: 0;
}

/* インライン小さなタグ */
.tour_tag_small {
  display: inline-block;
  margin-left: 6px;
  padding: 2px 6px;
  font-size: 0.7rem;
  font-weight: 700;
  vertical-align: middle;
  border-radius: 4px;
}

.tour_tag_small--1 {
  background: #d2f2ec;
  color: #0f6b58;
}

.tour_tag_small--2 {
  background: #ffd9a8;
  color: #8a5314;
}

.tour_schedule_photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 8px;
}

.tour_schedule_photo {
  min-height: 100px;
  font-size: 0.8rem;
}

.tour_schedule_photo img {
  border-radius: 8px;
}
.tour_both_note {
  margin-top: 32px;
  text-align: center;
  font-size: 0.98rem;
  color: var(--color-muted);
}

@media screen and (max-width: 767px) {
  .tour_schedule_cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .tour_notice_box {
    padding: 16px;
  }

  .tour_schedule_head {
    padding: 20px;
  }

  .tour_schedule_body {
    padding: 16px 12px;
  }

  .tour_timeline li {
    grid-template-columns: 40px 1fr;
    gap: 28px;
    padding: 8px 12px;
  }

  .tour_timeline::before {
    top: 15px;
    bottom: 15px;
    left: 66px;
  }

  .tour_timeline li::before {
    top: 12px;
    left: 60px;
  }
}

/* --------------------------------------------------------------------------
   6. 開催概要
-------------------------------------------------------------------------- */

.tour_overview_chip_text {
  max-width: 860px;
  margin: 0 auto 32px;
  padding: 16px 24px;
  background: var(--color-main-light);
  border-radius: var(--radius-md);
  text-align: left;
  font-size:1rem;
  line-height: 1.9;
  color: var(--color-main-deep);
}

.tour_overview_chip_text i {
  margin-right: 6px;
}

.tour_overview_layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  align-items: start;
}

.tour_overview_table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 8px 18px var(--color-shadow);
}

.tour_overview_table th {
  width: 24%;
  padding: 14px 16px;
  background: #f0ede3;
  border-bottom: 1px solid var(--color-line);
  text-align: left;
  vertical-align: top;
  font-weight: 700;
  font-size: 1rem;
}

.tour_overview_table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--color-line);
  background: #fff;
  line-height: 1.8;
  font-size: 1rem;
  text-align: left;
}

.tour_overview_media {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.tour_map_sub {
}

.tour_parking {
  max-width: 490px;
}

.tour_parking h3 {
  margin-bottom: 12px;
  font-size: 1.05rem;
  color: var(--color-main-deep);
  text-align: left;
}

.tour_parking p {
  font-size: 1rem;
  line-height: 2;
  color: var(--color-text);
  text-align: left;
}

@media screen and (max-width: 767px) {
  .tour_overview_chip_text {
    padding: 14px 16px;
  }

  .tour_overview_layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .tour_overview_table th {
    white-space: nowrap;
  }

  .tour_overview_table th,
  .tour_overview_table td {
    padding: 10px 12px;
    font-size: 1rem;
  }

  .tour_overview_media .gmap {
    position: relative;
    margin-left: 0;
    padding-bottom: 75%;
    height: 0;
    overflow: hidden;
  }
  .tour_overview_media .gmap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
  }
}

/* --------------------------------------------------------------------------
   7. FAQ（既存 .faq_item を流用、見学会用に追記分のみ調整）
-------------------------------------------------------------------------- */

.faq_list {
  display: grid;
  gap: 16px;
  padding: 0 40px;
}
@media screen and (max-width: 767px) {
.faq_list {
  padding: 0 20px;
}
}

.faq_item {
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: 14px;
  padding: 18px 20px;
  box-shadow: 0 6px 14px rgba(0,0,0,.05);
}

.faq_item summary {
  position: relative;
  padding-right: 36px;
  cursor: pointer;
  color: #4C8F6B;
  font-weight: 700;
  text-align: left;
  list-style: none;
  line-height: 1.8;  
}

.faq_item summary::-webkit-details-marker {
  display: none;
}

.faq_item p {
  margin-top: 14px;
  text-align: left;
}

.faq_item summary {
  position: relative;
  padding-right: 36px;
}

.faq_item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%) rotate(0deg);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-main);
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1;
  transition: transform 0.25s ease-out, color 0.25s ease-out;
}

.faq_item[open] summary::after {
  content: "\00d7";
}

/* ------------------------------
   CTA Section
------------------------------ */
.tour_cta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 380px;
  margin-top: 112px;
  margin-bottom: -64px;
  box-sizing: border-box;
  overflow: hidden;
}

.tour_cta::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../img/recruit_cat_back.jpg") no-repeat center center;
  background-size: cover;
  filter: blur(4px) brightness(1.2);
  transform: scale(1.05);
  z-index: 0;
}

.tour_cta::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  z-index: 1;
}

.cta-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 880px;
  padding: 36px 40px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  border-radius: 8px;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
.cta-inner {
    padding: 36px 20px 4px;
}
}

.cta_lead {
  margin-bottom: 24px;
  font-size: 16px;
  font-weight: 500;
  color: #222222;
  text-align: left;
  line-height: 1.6;
}

.cta_grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
}

.cta_tel_box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 380px;
  padding: 18px 16px;
  text-align: center;
  background: #ffffff;
  border: 1px solid #e2e2e2;
  border-radius: 8px;
  box-sizing: border-box;
}

.tel_label {
  font-size: 13px;
  font-weight: 700;
  color: #555555;
}

.tel_num {
  font-size: 32px;
  font-weight: 700;
  color: #5B4B43;
  text-decoration: none;
  letter-spacing: 0.04em;
  line-height: 1.1;
}

.tel_time {
  font-size: 14px;
  color: #222222;
}

.cta_btn_group {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 400px;
}

.cta_btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 50px;
  padding: 8px 30px;
  font-size: 15px;
  font-weight: 700;
  color: #ffffff !important;
  text-decoration: none;
  transition: all 0.2s ease;
  border-radius: 24px;
  box-sizing: border-box;
}

.cta_btn:hover {
  opacity: 0.88;
  transform: translateY(-2px);
}

.cta_btn::after {
  position: absolute;
  content: "＞";
  right: 20px;
  font-family: monospace;
}

.btn_orange {
  background: #F08A4B;
  box-shadow: 0 4px 12px rgba(237, 122, 75, 0.25);
}

.btn_green {
  background: #1EB185;
  box-shadow: 0 4px 12px rgba(27, 163, 122, 0.25);
}

@media screen and (max-width: 767px) {
  .tour_cta {
    height: auto;
    margin-top: 56px;
    margin-bottom: 0;
    padding: 40px 16px;
    border-radius: 0;
  }
  
  .cta_grid {
    flex-direction: column;
    gap: 16px;
  }

  .cta_tel_box {
    width: 100%;
  }

  .cta_btn_group {
    width: 100%;;
  }
}

/* --------------------------------------------------------------------------
   9. ボタン共通
-------------------------------------------------------------------------- */

.tour_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 999px;
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity .2s ease, transform .2s ease;
}

.tour_cta_inline a:visited,
.tour_cta_buttons a:visited {
  color: #ffffff !important;
}

.tour_btn:hover {
  opacity: 0.8;
  text-decoration: none;
}

.tour_btn--primary {
  background: var(--color-main);
  color: #ffffff;
}

.tour_btn--accent {
  background: var(--color-accent, #f08a4b);
  color: #ffffff;
}

@media screen and (max-width: 767px) {
  .tour_btn {
    width: 80%;
    padding: 14px 24px;
  }
}

/* --------------------------------------------------------------------------
   10. フェードインアニメーション（Intersection Observer 用）
-------------------------------------------------------------------------- */

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .fade-in {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
