@charset "UTF-8";

/* ページ固有変数 */
:root {
  --radius:    12px;
  --radius-lg: 20px;
  --shadow:    0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
}

/* =============================================
   ヒーロー
============================================= */
.boat-hero {
  position: relative;
  height: 90vh;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #002a45;
  overflow: hidden;
}

.boat-hero__bg {
  position: absolute;
  inset: 0;
  background: url('../img/boat-fishing-hero.jpg') center/cover no-repeat;
}

.boat-hero__body {
  position: relative;
  z-index: 1;
  color: #003f6e;
  padding: 48px 60px;
  background: rgba(255,255,255,0.9);
  border-radius: 16px;
  max-width: 680px;
}

.boat-hero__label {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  background: rgba(0,150,199,0.85);
  color: #fff;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 22px;
}

.boat-hero__title {
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.3;
  margin-bottom: 20px;
  color: #003f6e;
  text-shadow: none;
}

.boat-hero__title em {
  font-style: normal;
  color: #0096c7;
}

.boat-hero__sub {
  font-size: 1.05rem;
  line-height: 1.9;
  color: #445;
  margin-bottom: 36px;
}

.boat-hero__stats {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-stat {
  background: rgba(255,255,255,1);
  border: 1px solid rgba(0,63,110,0.18);
  padding: 12px 20px;
  border-radius: 10px;
  text-align: center;
}

.hero-stat__num {
  font-size: 1.6rem;
  font-weight: bold;
  color: #0096c7;
  line-height: 1;
}

.hero-stat__label {
  font-size: 0.73rem;
  color: #556;
  margin-top: 4px;
}

.boat-hero__cta {
  display: inline-block;
  background: var(--coral);
  color: #fff;
  font-weight: bold;
  font-size: 1rem;
  padding: 14px 34px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}

.boat-hero__cta:hover {
  background: #007aab;
  transform: translateY(-2px);
}

.wave-divider-boat {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  line-height: 0;
}

.wave-divider-boat svg {
  display: block;
  width: 100%;
}

/* =============================================
   セクション共通
============================================= */
.boat-section {
  padding: 80px 0;
}

.boat-section--gray {
  background: var(--sand);
}

.boat-section--dark {
  background: linear-gradient(135deg, #0077a8, #00b4d8);
  color: #fff;
}

.boat-section .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-label {
  font-size: 0.73rem;
  letter-spacing: 0.22em;
  color: var(--coral);
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 10px;
  text-align: center;
}

.boat-section--dark .section-label {
  color: #b2e8f5;
}

.section-title {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.3;
  margin-bottom: 14px;
  color: #333;
}

.boat-section--dark .section-title {
  color: #fff;
}

.section-lead {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.9;
  text-align: center;
}

.boat-section--dark .section-lead {
  color: rgba(255,255,255,0.75);
}

/* =============================================
   なぜ鵜来島近海か（4つの理由）
============================================= */
.reason-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.reason-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  box-shadow: var(--shadow);
  text-align: center;
}

.reason-card__icon {
  font-size: 4rem;
  margin-bottom: 14px;
}

.reason-card__title {
  font-size: 1.125rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}

.reason-card__text {
  font-size: 0.9375rem;
  color: var(--text-mid);
  line-height: 1.8;
}

/* =============================================
   釣法紹介
============================================= */
.method-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.method-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}

.method-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.method-card__img {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
}

.method-card__img--jigging {
  background: linear-gradient(135deg, #0077a8, #0096c7);
}

.method-card__img--taira {
  background: linear-gradient(135deg, #0096c7, #48cae4);
}

.method-card__img--rock {
  background: linear-gradient(135deg, #00b4a6, #48cae4);
}

.method-card__body {
  padding: 24px;
}

.method-card__num {
  font-size: 2.4rem;
  font-weight: bold;
  color: var(--sand-dark);
  line-height: 1;
  margin-bottom: 6px;
}

.method-card__title {
  font-size: 1.15rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}

.method-card__text {
  font-size: 0.9375rem;
  color: var(--text-mid);
  line-height: 1.8;
}

.method-card__fish {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 0.78rem;
  color: var(--coral);
  font-weight: bold;
}

.method-card__cap {
  display: inline-block;
  margin-top: 10px;
  background: var(--sand);
  color: var(--text-mid);
  font-size: 0.74rem;
  padding: 3px 10px;
  border-radius: 20px;
  border: 1px solid var(--border);
}

/* =============================================
   完全貸切の価値
============================================= */
.charter-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 48px;
}

.charter-img {
  position: relative;
}

.charter-img__main {
  background: linear-gradient(135deg, #002a45, #0096c7);
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: rgba(255,255,255,0.3);
  overflow: hidden;
}

.charter-img__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.charter-img__badge {
  position: absolute;
  bottom: -14px;
  right: -14px;
  background: var(--coral);
  color: #fff;
  font-size: 0.82rem;
  font-weight: bold;
  padding: 10px 18px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  line-height: 1.5;
  text-align: center;
}

.charter-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 28px;
}

.charter-point {
  background: var(--sand);
  border-radius: var(--radius);
  padding: 16px;
}

.charter-point__icon {
  font-size: 3rem;
  margin-bottom: 6px;
}

.charter-point__title {
  font-size: 1.125rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 4px;
}

.charter-point__text {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* =============================================
   タイムライン
============================================= */
.bf-tl-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 36px;
}

.bf-tl-tab {
  padding: 9px 24px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.3);
  background: transparent;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.2s;
}

.bf-tl-tab.active,
.bf-tl-tab:hover {
  background: #fff;
  color: #333;
  border-color: #fff;
}

.bf-tl-pane {
  display: none;
}

.bf-tl-pane.active {
  display: block;
}

.bf-tl-list {
  position: relative;
  max-width: 680px;
}

.bf-tl-list::before {
  content: '';
  position: absolute;
  left: 76px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(255,255,255,0.15);
}

.bf-tl-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 16px;
}

.bf-tl-time {
  flex: 0 0 72px;
  font-size: 0.875rem;
  font-weight: bold;
  color: #b2e8f5;
  text-align: right;
  padding-right: 16px;
  padding-top: 12px;
  line-height: 1.2;
}

.bf-tl-dot-col {
  flex: 0 0 10px;
  display: flex;
  align-items: flex-start;
  padding-top: 15px;
}

.bf-tl-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--coral);
  border: 2px solid rgba(255,255,255,0.6);
}

.bf-tl-content {
  flex: 1;
  background: rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 11px 15px;
  margin-left: 14px;
}

.bf-tl-content h4 {
  font-size: 1.125rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 3px;
}

.bf-tl-content p {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.6;
  margin: 0;
}

.bf-tl-note {
  margin-top: 20px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
}

/* =============================================
   料金表
============================================= */
.bf-price-header {
  text-align: center;
  margin-bottom: 48px;
}

.bf-price-wrap {
  overflow-x: auto;
}

.bf-price-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #fff;
  min-width: 480px;
}

.bf-price-table th,
.bf-price-table td {
  padding: 14px 18px;
  text-align: center;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--sand-dark);
}

.bf-price-table th {
  background: #333;
  color: #fff;
  font-weight: bold;
  font-size: 0.92rem;
}

.bf-price-table th.col-per {
  background: var(--coral);
}

.bf-price-table td:first-child {
  text-align: left;
  font-weight: bold;
  color: #333;
  background: var(--sand);
}

.bf-price-table tr:last-child td {
  border-bottom: none;
}

.bf-price-em {
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--coral);
}

.bf-price-per {
  font-size: 1.4rem;
  font-weight: bold;
  color: #333;
}

.bf-price-notes {
  margin-top: 16px;
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 2;
  list-style: none;
  padding: 0;
}

.bf-price-notes li {
  padding-left: 1em;
  position: relative;
}

.bf-price-notes li::before {
  content: '※';
  position: absolute;
  left: 0;
}

.bf-price-highlight {
  margin-top: 24px;
  background: var(--sand);
  border-left: 4px solid var(--coral);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 14px 20px;
  font-size: 0.9rem;
  color: #333;
  line-height: 1.7;
}

/* =============================================
   注意事項（ポジティブ変換）
============================================= */
.bf-notes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.bf-note-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.bf-note-card__icon {
  font-size: 5rem;
  margin-bottom: 12px;
}

.bf-note-card__title {
  font-size: 1.125rem;
  font-weight: bold;
  color: var(--coral);
  margin-bottom: 8px;
}

.bf-note-card__text {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.8;
}

/* =============================================
   FAQ
============================================= */
.bf-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 48px;
}

.bf-faq-item {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.bf-faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: bold;
  color: #333;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s;
}

.bf-faq-q:hover {
  background: var(--sand);
}

.bf-faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #333;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  line-height: 1;
  transition: transform 0.3s, background 0.2s;
}

.bf-faq-item.open .bf-faq-icon {
  transform: rotate(45deg);
  background: var(--coral);
}

.bf-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 20px;
  font-size: 0.9375rem;
  color: var(--text-mid);
  line-height: 1.8;
}

.bf-faq-item.open .bf-faq-a {
  max-height: 220px;
  padding: 0 20px 18px;
}

/* =============================================
   予約CTA
============================================= */
.booking-wrap {
  padding: 80px 0;
  background: var(--sand);
}

.booking-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  padding: 0 20px;
}

.booking-inner .section-title {
  margin-bottom: 6px;
}

.booking-inner .section-lead {
  margin: 0 auto 40px;
  text-align: center;
}

.booking-cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px;
}

.booking-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 26px 18px;
  box-shadow: var(--shadow);
  text-align: center;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.2s, box-shadow 0.2s;
}

.booking-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.booking-card--primary {
  border: 2px solid var(--coral);
}

.booking-card__icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

.booking-card__tag {
  font-size: 0.9375rem;
  letter-spacing: 0.1em;
  color: var(--text-light);
  font-weight: bold;
  margin-bottom: 4px;
}

.booking-card__title {
  font-size: 1.125rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 6px;
}

.booking-card__desc {
  font-size: 0.9375rem;
  color: var(--text-mid);
  line-height: 1.6;
}

.booking-card__btn {
  display: inline-block;
  margin-top: 14px;
  background: var(--coral);
  color: #fff;
  font-size: 0.84rem;
  font-weight: bold;
  padding: 8px 20px;
  border-radius: 50px;
}

.booking-card--line .booking-card__btn {
  background: #06c755;
}

.booking-card--tel .booking-card__btn {
  background: #333;
}

.booking-note {
  margin-top: 20px;
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.8;
}

/* =============================================
   固定CTAバー
============================================= */
.boat-fixed-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,110,160,0.97);
  padding: 10px 20px;
  display: flex;
  gap: 8px;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.25);
}

.boat-fixed-bar a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 9px 20px;
  border-radius: 50px;
  font-weight: bold;
  font-size: 0.88rem;
  text-decoration: none;
  transition: transform 0.2s;
}

.boat-fixed-bar a:hover {
  transform: translateY(-1px);
}

.boat-fixed-bar__form {
  background: var(--coral);
  color: #fff;
}

.boat-fixed-bar__line {
  background: #06c755;
  color: #fff;
}

.boat-fixed-bar__tel {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
}

/* =============================================
   レスポンシブ
============================================= */
@media screen and (max-width: 767px) {
  .boat-hero {
    min-height: 80vh;
  }
  .boat-hero__body {
    margin: -58px 15px 0;
    padding: 32px 20px;
  }
  .boat-hero__title {
    font-size: 7vw;
  }
  .boat-hero__sub {
    font-size: 3.8vw;
  }
  .boat-section {
    padding: 50px 0;
  }
  .section-title {
    font-size: 6vw;
  }
  .reason-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .method-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
  .charter-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .charter-img__badge {
    right: 0;
    bottom: -10px;
  }
  .bf-tl-tabs {
    flex-direction: column;
    align-items: flex-start;
  }
  .bf-tl-list::before {
    left: 68px;
  }
  .bf-tl-time {
    flex: 0 0 64px;
    font-size: 0.74rem;
  }
  .bf-notes-grid {
    grid-template-columns: 1fr;
  }
  .bf-faq-grid {
    grid-template-columns: 1fr;
  }
  .booking-cards {
    grid-template-columns: 1fr;
    max-width: 340px;
    margin: 0 auto;
  }
  .boat-fixed-bar {
    flex-wrap: wrap;
    gap: 6px;
  }
  .boat-fixed-bar a {
    font-size: 0.8rem;
    padding: 8px 14px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1180px) {
  .boat-hero__title {
    font-size: 2.4rem;
  }
  .reason-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .method-grid {
    gap: 16px;
  }
  .charter-grid {
    gap: 36px;
  }
  .bf-notes-grid {
    gap: 14px;
  }
  .booking-cards {
    gap: 10px;
  }
}
