@charset "UTF-8";

/* =============================================
   ヒーロー
============================================= */
.contact-hero {
  background: var(--coral);
  position: relative;
  padding: 80px 20px;
  text-align: center;
  overflow: hidden;
}

/* ドットパターン */
.contact-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 24px 24px;
}

.contact-hero__body {
  position: relative;
  z-index: 1;
}

.contact-hero__label {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  background: rgba(255,255,255,0.15);
  color: #fff;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.contact-hero__title {
  font-size: 2.6rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.3;
}

.contact-hero__sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.8;
}

/* =============================================
   セクション共通（snorkeling.css と同ルール）
============================================= */
.plan-header-block {
  text-align: center;
  margin-bottom: 48px;
}

.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;
}

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

.section-lead {
  font-size: 1rem;
  color: #666;
  line-height: 1.9;
  text-align: center;
}

/* =============================================
   クイックコンタクト
============================================= */
.quick-contact {
  background: #fff;
  padding: 60px 20px;
  border-bottom: 1px solid #c6e8f5;
}

.quick-contact .container {
  max-width: 900px;
  margin: 0 auto;
}

.quick-contact__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.quick-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 36px 24px;
  border: 1.5px solid #c6e8f5;
  border-radius: 16px;
  text-decoration: none;
  color: #333;
  transition: transform 0.2s, box-shadow 0.2s;
}

.quick-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
}

.quick-card__icon {
  font-size: 2.4rem;
  margin-bottom: 14px;
}

.quick-card__label {
  font-size: 1.125rem;
  font-weight: bold;
  color: #003f6e;
  margin-bottom: 8px;
}

.quick-card__desc {
  font-size: 1rem;
  line-height: 1.7;
}

.quick-card--tel {
  border-color: #c6e8f5;
}

.quick-card--line {
  border-color: #c6e8f5;
}

.quick-card--form {
  border-color: #c6e8f5;
}

/* .quick-card--form .quick-card__label {
  color: #fff;
} */

/* .quick-card--form .quick-card__desc {
  color: rgba(255,255,255,0.85);
} */

/* =============================================
   予約状況カレンダー
============================================= */
.schedule-section {
  background: #f0faff;
  padding: 80px 20px;
}

.schedule-section .plan-header-block {
  margin-bottom: 36px;
}

.schedule-iframe-wrap {
  max-width: 900px;
  margin: 0 auto;
  padding-top: 40px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  overflow: hidden;
}

.schedule-iframe-wrap iframe {
  display: block;
  width: 100%;
  height: 520px;
  border: none;
}

.schedule-note {
  text-align: center;
  margin-top: 16px;
  font-size: 0.82rem;
  color: #888;
}

.schedule-note a {
  color: #0096c7;
}

/* =============================================
   お問い合わせフォーム
============================================= */
.form-section {
  background: #fff;
  padding: 80px 20px;
}

.form-section .plan-header-block {
  margin-bottom: 48px;
}

.form-wrap {
  max-width: 720px;
  margin: 0 auto;
  background: #f8f9fa;
  border-radius: 24px;
  padding: 3rem;
}

.form-group {
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.form-row-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.form-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 8px;
}

.badge-required {
  font-size: 0.72rem;
  background: #ff6b35;
  color: #fff;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: normal;
}

.badge-optional {
  font-size: 0.72rem;
  background: #aaa;
  color: #fff;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: normal;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #dde3e8;
  border-radius: 10px;
  font-size: 1rem;
  background: #fff;
  color: #333;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}

.form-control:focus {
  outline: none;
  border-color: #0077be;
  box-shadow: 0 0 0 4px rgba(0,119,190,0.12);
}

textarea.form-control {
  resize: vertical;
  min-height: 140px;
}

.form-agree {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.88rem;
  color: #444;
  margin-bottom: 28px;
  cursor: pointer;
}

.form-agree input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: #0096c7;
  cursor: pointer;
}

.form-agree a {
  color: #0096c7;
}

.form-submit {
  width: 100%;
  padding: 16px;
  background: #0096c7;
  color: #fff;
  font-size: 1.05rem;
  font-weight: bold;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.form-submit:hover {
  background: #0077a8;
  transform: translateY(-2px);
}

/* 注意事項 */
.form-cautions {
  max-width: 720px;
  margin: 32px auto 0;
  padding: 24px 28px;
  background: #f0faff;
  border-radius: 12px;
  border-left: 4px solid #0096c7;
}

.form-cautions__title {
  font-size: 0.9rem;
  font-weight: bold;
  color: #003f6e;
  margin-bottom: 12px;
}

.form-cautions ul {
  padding-left: 1.2em;
  margin: 0;
}

.form-cautions li {
  font-size: 0.84rem;
  color: #555;
  line-height: 1.8;
}

/* =============================================
   プライバシーポリシー モーダル
============================================= */
.pp-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}

.pp-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.pp-modal {
  background: #fff;
  border-radius: 16px;
  max-width: 640px;
  width: 100%;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  transform: translateY(12px);
  transition: transform 0.25s;
}

.pp-overlay.active .pp-modal {
  transform: translateY(0);
}

.pp-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  border-bottom: 1px solid #e8f0f5;
  flex-shrink: 0;
}

.pp-modal__title {
  font-size: 1.05rem;
  font-weight: bold;
  color: #003f6e;
}

.pp-modal__close {
  background: none;
  border: none;
  font-size: 1.5rem;
  line-height: 1;
  color: #999;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
}

.pp-modal__close:hover {
  background: #f0f0f0;
  color: #333;
}

.pp-modal__body {
  overflow-y: auto;
  padding: 28px;
  font-size: 0.9rem;
  color: #444;
  line-height: 1.85;
}

.pp-modal__body h2 {
  font-size: 0.95rem;
  font-weight: bold;
  color: #003f6e;
  margin: 24px 0 8px;
  padding-bottom: 6px;
  border-bottom: 1px solid #c6e8f5;
}

.pp-modal__body h2:first-child {
  margin-top: 0;
}

.pp-modal__body ul {
  padding-left: 1.4em;
  margin: 6px 0;
}

.pp-modal__body li {
  margin-bottom: 4px;
}

.pp-modal__body hr {
  display: none;
}

.pp-modal__body p {
  margin-bottom: 10px;
}

.pp-modal__body strong {
  color: #333;
}

.pp-modal__body em {
  font-style: normal;
  font-size: 0.82rem;
  color: #888;
}

/* =============================================
   レスポンシブ
============================================= */
@media screen and (max-width: 767px) {
  .contact-hero {
    padding: 60px 20px;
  }

  .contact-hero__title {
    font-size: 7vw;
  }

  .quick-contact__grid {
    grid-template-columns: 1fr;
  }
  .quick-card {
    flex-direction: row;
    gap: 10px;
  }
  .quick-card__icon { margin-bottom: 0; }
  .quick-card__label,.quick-card__desc { text-align: left; }

  .form-row,
  .form-row-3 {
    grid-template-columns: 1fr;
  }

  .form-wrap {
    padding: 2rem 1.4rem;
  }

  .schedule-iframe-wrap iframe {
    height: 440px;
  }
}
