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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px; 
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-style: normal;
	letter-spacing: 0.03em;
	background: #FCF8F2;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}
img{
	width: 100%;
	height: auto;
}


/* =====================
   Header
===================== */

.header {
  position: fixed;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  z-index: 100;
}

.header-inner {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px;
  background: rgba(255, 255, 255, 0.38);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 50px;
  box-shadow:
    0 8px 32px rgba(0,0,0,0.08),
    inset 0 1px 0 rgba(255,255,255,0.5);
}

.logo img {
    height: 60px;
	padding-left: 20px;
}

.nav{
	display: flex;
    align-items: center;
	gap: 50px;
}

.nav ul {
  display: flex;
  gap: 50px;
	margin: 0;
}

.nav a {
  font-size: 16px;
  font-weight: 500;
  color: #333;
}

.nav .contact-btn {
  background: #95c11f;
  color: #fff;
  padding: 15px 25px;
  border-radius: 999px;
  font-weight: bold;
  transition: .3s;
}

.contact-btn:hover {
  opacity: .8;
}
/* PC時はハンバーガーボタンを隠す */
.hamburger-btn {
  display: none;
}

/* =====================
   FV
===================== */

.fv {
  position: relative;
  width: 100%;
  height: 100vh;
  background-image:
    url("img/fv_img.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.fv-overlay {
  position: absolute;
  inset: 0;
  background:
    rgba(0,0,0,0.15);
}

.fv-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.main-copy {
  width: min(700px, 90vw);
}

.sub-copy {
  margin-top: 40px;
  background: rgba(255,255,255,0.95);
  padding: 25px 60px;
  font-size: 34px;
  font-weight: 700;
  color: #95c11f;
  box-shadow:
    0 10px 30px rgba(0,0,0,0.08);
}

/* =====================
   about
===================== */

.trial-section {
  background: #f5f3ee;
  padding: 120px 0;
}

.container {
  width: min(1200px, 90%);
  margin: 0 auto;
}

.trial-section .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 70px;
}
.trial-content {
  flex: 1;
}

.trial-text {
  font-size: 18px;
  line-height: 2;
  color: #333;
  margin-bottom: 60px;
}
.trial-title {
  position: relative;
  text-align: center;
  font-size: 25px;
  font-weight: 500;
  margin-bottom: 30px;
}

.trial-title span {
  background:
    linear-gradient(
      transparent 60%,
      #a9cf38 60%
    );
}

/* 左右の斜線 */

.trial-title::before,
.trial-title::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 40px;
  height: 2px;
  background:
    repeating-linear-gradient(
      to right,
      #333 0,
      #333 4px,
      transparent 4px,
      transparent 8px
    );
}

.trial-title::before {
  left: 40px;
  transform: rotate(60deg);
}

.trial-title::after {
  right: 40px;
  transform: rotate(-60deg);
}
.trial-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}

.btn-phone,
.btn-line {
  flex: 1;
  border-radius: 999px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: 500;
	padding: 15px 0;
}

.btn-phone {
  background: #c9bca5;
  color: #fff;
	font-size: 20px;
}

.btn-line {
  background: #9bc81d;
  color: #fff;
}
.price-box {
  position: relative;
  background: #fff;
  border: 1px solid #ddd;
  padding: 20px 0;
  text-align: center;
}
.price-label {
  position: absolute;
  top: -40px;
  left: 40px;
  font-family: "Homemade Apple", cursive;
  font-size: 45px;
  color: #3ea9f5;
	transform: rotate(-15deg);
}
.price-content {
  font-size: 16px;
}
.price-content strong {
  font-size: 35px;
  margin: 0 10px;
}
.slash {
  margin: 0 20px;
}
.trial-images{
	flex: 1;
}
.price-box p{
	font-size: 14px;
	font-weight: 400;
}

/* =====================
   features
===================== */
.feature {
  background: #edf1e4;
  padding: 120px 0;
}
.section-title {
  text-align: center;
  margin-bottom: 40px;
	position: relative;
}

.section-title-en {
  font-family: "Homemade Apple", cursive;
  font-size: 35px;
  line-height: 1;
  color: #43a8ff;
  position: absolute;
	left: 35%;
    bottom: 25px;
    transform: rotate(-8deg);
}

.section-title h2 {
  font-size: 35px;
  font-weight: 700;
	position: relative;
	z-index: 1;
}
.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.feature-card {
  width: calc((100% - 72px) / 4);
  background: #fff;
  box-shadow:
    0 4px 12px rgba(0,0,0,.08);
  transition: .3s;
}
.card-body {
  padding: 15px;
  text-align: center;
}
.feature-card img{
	padding: 8px;
	height: 220px;
    object-fit: cover;
    display: block;
}

.card-body h3 {
  font-size: 17px;
  font-weight: 500;
  color: #333;
}

.card-body p {
  font-size: 13px;
  line-height: 1.7;
  color: #555;
}

.feature-note{
	font-size: 14px;
	margin-top:30px;
}


/* =====================
   facility
===================== */
.facility {
  padding: 140px 0 135px;
  background: #f5f3ee;
	position: relative;
	    overflow: hidden;
}
.facility::after{
  content: "";
    position: absolute;
    bottom: auto;
    left: 50%;
    transform: translateX(-50%);
    width: 120%;
    height: 600px;
    background: #8fc31f;
    border-radius: 100%;
}
.facility .section-title{
	text-align: left;
}
.facility .section-title-en{
	left: -20px;
}
.facility-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 120px;
}
.facility-item.reverse {
  flex-direction: row-reverse;
}
.facility-image {
  width: 50%;
}

.facility-image img {
  width: 100%;
  display: block;
  border-radius: 20px;
  object-fit: cover;
}
.facility-content {
  width: 45%;
}
.facility-number {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 18px;
  font-weight: 700;
	font-family: "Oswald", sans-serif;
}
.facility-number::before,
.facility-number::after {
  content: "";
  width: 24px;
  height: 1px;
  background:
  repeating-linear-gradient(
    to right,
    #333 0,
    #333 3px,
    transparent 3px,
    transparent 6px
  );
  transform: rotate(50deg);
}
.facility-number::after{
	 transform: rotate(-50deg);
}
.facility-content h3 {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 35px;
}
.facility-content p {
  font-size: 16px;
  line-height: 2;
  color: #333;
}


/* =====================
   event
===================== */
.event-section {
  background: #8fc31f;
  padding: 0 0 100px;
	position: relative;
}
.event-section::before{
	position: absolute;
	content: "";
	background: url("img/golf_illust.png")no-repeat center;
	background-size: cover;
	width: 500px;
	height: 500px;
	left: 10%;
    top: -45%;
}
.event-section .section-title{
	color: #fff;
}
.event-section .section-title-en{
	left: 40%;
    bottom: 15px;
}
.event-cards {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.event-card {
  background: #fff;
  width: 380px;
  padding: 10px 10px 30px;
  text-align: center;
}

.event-card img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  display: block;
}

.event-card h3 {
  font-size: 20px;
  margin: 25px 0 10px;
  font-weight: 500;
}

.event-card p {
  color: #666;
  font-size: 14px;
  line-height: 1.5;
}


/* =====================
   flow
===================== */
.flow-section{
	padding: 100px 0;
}

.flow-section .section-title{
	text-align: left;
}
.flow-section .section-title-en{
	left: -20px;
}
.flow-wrapper {
  display: flex;
  overflow: hidden;
}

.flow-item {
  padding: 50px 30px;
  text-align: center;
  position: relative;
}

.flow01 {
  background: #e6ddca;
	padding-right: 40px;
}

.flow02 {
  background: #d7c9ae;
	padding-right: 40px;
    padding-left: 90px;
}

.flow03 {
  background: #c7b89c;
	padding-left: 90px;
}

.flow-item img {
  width: 100%;
  max-width: 300px;
  height: 220px;
  object-fit: cover;
  display: block;
  margin: 0 auto 15px;
}

/* 矢印形状 */
.flow-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0;
  right: -50px;
  width: 0;
  height: 0;
  border-top: 220px solid transparent;
  border-bottom: 220px solid transparent;
  border-left: 50px solid currentColor;
  z-index: 2;
}

.flow01::after {
  color: #e6ddca;
}

.flow02::after {
  color: #d7c9ae;
}

.step {
  display: inline-flex;
    align-items: center;
    gap: 14px;
    font-size: 18px;
    font-weight: 700;
    font-family: "Oswald", sans-serif;
}

.step::before,
.step::after {
  content: "";
  width: 24px;
  height: 1px;
  background:
  repeating-linear-gradient(
    to right,
    #333 0,
    #333 3px,
    transparent 3px,
    transparent 6px
  );
  transform: rotate(50deg);
}

.step::after{
	 transform: rotate(-50deg);
}

.flow-content h3 {
  font-size: 16px;
  color: #333;
  line-height: 1.8;
  font-weight: 700;
}

.flow-content p {
  font-size: 13px;
  color: #444;
  line-height: 1.8;
}


/* =====================
   schedule
===================== */


.schedule {
    background: #eef2e6;
    padding: 100px 0;
}

.schedule__image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

.schedule__note {
    max-width: 1000px;
    margin: 30px auto 0;
    font-size: 14px;
    line-height: 2;
    color: #555;
}

.schedule__legend {
    max-width: 1000px;
    margin: 30px auto 0;
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.schedule__legend-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 15px;
    color: #333;
    font-weight: 500;
}

.schedule__legend-color {
    width: 60px;
    height: 20px;
    display: block;
}

.schedule__legend-color--general {
    background: #95c81e;
}

.schedule__legend-color--junior {
    background: #74bfe8;
}


/* =====================
   plan
===================== */

.price-section {
  padding: 100px 0;
}

/* タイトルエリア */
.price-section .section-title-en{
	left: 42%;
}

/* 料金表メインカード */
.price-card {
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

/* 「メンバー」の緑色のヘッダーリボン */
.card-badge {
  background-color: #95c81e;
  color: #ffffff;
  text-align: center;
  padding: 20px 0;
  font-size: 1.25rem;
  font-weight: bold;
  letter-spacing: 0.1em;
}

/* 3カラムレイアウト (PC版 Flexbox構成) */
.plan-flex-container {
  display: flex;
  justify-content: space-between;
}

.plan-column {
  flex: 1; /* 3つのメインカラムを均等幅にする */
  padding: 30px;
  display: flex;
  flex-direction: column;
}

/* プランの見出し */
.plan-title {
  text-align: center;
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 4px;
}

.plan-subtitle {
  text-align: center;
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 15px;
}

/* 点線セパレーター */
.dotted-line {
  border: none;
  border-top: 2px dotted #999999;
  margin-bottom: 25px;
}

/* ベージュの丸角タグの並び（横並び） */
.tags-row {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

/* ベージュの丸角タグ単体 */
.plan-tag {
  background-color: #bfae99;
  color: #ffffff;
  font-size: 14px;
  font-weight: bold;
  padding: 6px 0;
  border-radius: 20px;
  text-align: center;
  width: 45%; /* 左右に綺麗に収まる幅 */
}

/* -------------------------------------------
   中央ラベル＆左右金額のレイアウト (重要)
------------------------------------------- */
.sub-plans-flex {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
}

/* 各料金行 */
.fee-row-center {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 25px;
  border-bottom: 1px dotted #DBDBDB;
  padding-bottom: 15px;
}

/* 真ん中にくるラベル（入会金・月会費） */
.label-center {
  font-size: 14px;
  color: #333333;
  text-align: center;
  width: 20%; /* 中央に一定のスペースを確保 */
  order: 2;   /* HTMLの順序に関わらず真ん中に配置 */
}

/* 左側の金額（フルフル等） */
.price-left {
  font-size: 22px;
  font-weight: bold;
  text-align: right;
  width: 40%;
  order: 1;   /* 左側に配置 */
  padding-right: 10px;
	margin-top: 25px;
}

/* 右側の金額（スタンダード等） */
.price-right {
  font-size: 22px;
  font-weight: bold;
  text-align: left;
  width: 40%;
  order: 3;   /* 右側に配置 */
  padding-left: 10px;
	margin-top: 25px;
}

/* -------------------------------------------
   下部のスクール情報エリア
------------------------------------------- */
.school-row-center {
  display: flex;
  flex-wrap: wrap; /* タイトルを上、条件を下に配置するため折り返しを許可 */
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  margin-top: auto; /* カラムの一番下に固定 */
}

/* 中央の「スクール（定員6名...）」タイトル */
.school-title-center {
  width: 100%;
  text-align: center;
  font-size: 0.85rem;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 15px;
}

.school-title-center .small {
  font-size: 0.75rem;
  font-weight: normal;
  color: #666;
}

/* 左側・右側の条件テキスト */
.condition-left,
.condition-right {
  width: 45%;
}

.condition-left {
  text-align: center;
}

.condition-right {
  text-align: center;
}

.limit {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 2px;
}

.note {
  font-size: 12px;
  color: #666;
  white-space: nowrap;
}

/* -------------------------------------------
   中央カラム（デイタイム）専用のシンプルなスタイル
------------------------------------------- */

.fee-item-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px dotted #DBDBDB;
}

.fee-item-row .label {
  font-weight: bold;
  font-size: 0.95rem;
}

.fee-item-row .price {
  font-size: 1.3rem;
  font-weight: bold;
}

/* -------------------------------------------
   デイタイム & ジュニア用（通常の左右2カラム構成）
------------------------------------------- */
/* 下段（ジュニアとビジター）を横に並べるコンテナ */
.cards-bottom-container {
  display: flex;
  justify-content: space-between;
  gap: 30px;
	margin-top: 30px;
}
.badge-small{
	font-size: 12px;
	font-weight: normal;
}

.cards-bottom-container .price-card {
  flex: 1;
  margin-bottom: 0;
}
.daytime-fees {
  width: 100%;
}

.fee-item-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px dotted #dddddd;
}
.fee-item-row.no-border { border-bottom: none; }

.fee-item-row .label { font-weight: bold; font-size: 0.95rem; }
.fee-item-row .price { font-size: 1.3rem; font-weight: bold; }
.fee-item-row .price.emphasis { font-size: 1.5rem; }

/* ジュニア用のスクール枠組み */
.simple-school-info {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  margin-top: 10px;
}
.simple-school-info .label small { font-weight: normal; color: #666; }
.simple-school-info .text-right { text-align: right; font-weight: bold; font-size: 1.1rem; }
.simple-school-info .text-right small { font-weight: normal; color: #666; font-size: 0.75rem; }

/* カード下部の共通注意書き */
.card-footer-note {
  font-size: 0.85rem;
	padding: 0 30px 30px;
}
.alert-text {
  color: #e54d42;
  font-weight: bold;
}

.color-junior { background-color: #7ebbdf; line-height: 1;}  /* さわやかな水色 */
.color-visitor { background-color: #909090; } /* 落ち着いたグレー */
.price-card.type-visitor{
	width: 35%;
	flex: auto;
}
.price-card.type-junior{
	width: 62%;
	flex: auto;
}
.type-visitor .label-center{
	width: 30%;
}
.label-small{
	font-size: 10px;
}
.color-guidance { background-color: #bfae99; line-height: 1;} /* 案内ボードのモカベージュ */

/* ==========================================================================
   決定版：打席利用時の料金案内用スタイル（干渉完全シャットアウト）
   ========================================================================== */

/* 1. 案内ボードの外枠と3カラムのFlex配置を最優先で再定義 */
.price-card.type-guidance {
  display: flex;
  flex-direction: column;
  width: 100%;
	margin-top: 30px;
}

.type-guidance .plan-flex-container {
  display: flex;
  flex-direction: row; /* PCでは必ず3カラム横並び */
  justify-content: space-between;
  width: 100%;
}

/* 2. 3つの各縦列（平日、土日祝）の設定を上書き */
.type-guidance .plan-column {
  flex: 1;
  display: block; /* 縦並びflexを強制解除 */
  width: 33.333%;
  padding: 40px 24px;
  box-sizing: border-box;
}

/* 3. 中身のブロック群 */
.type-guidance .guidance-content {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
}

.type-guidance .guidance-block {
  display: block;
  width: 100%;
  margin-bottom: 25px;
  text-align: center; /* バッジのみ中央寄せ */
}

/* メンバー別のインライン丸角タグ */
.type-guidance .inline-badge {
  display: inline-block;
  color: #ffffff;
  font-size: 14px;
  font-weight: bold;
  padding: 4px 30px;
  border-radius: 20px;
  margin: 0 auto 12px auto;
  text-align: center;
}
.type-guidance .b-member { background-color: #8EC11F; }
.type-guidance .b-junior { background-color: #7ebbdf; }
.type-guidance .b-visitor { background-color: #909090; }

/* 4. リストと【ここが横並びの肝】のli要素 */
.type-guidance .guidance-list {
  list-style: none;
    width: 100%;
    display: flex;
    padding: 0;
    margin: 0;
    justify-content: space-around;
    text-align: center;
	border-bottom: 1px dotted #dddddd;
}

/* ★絶対に左右両端に引っ張り合う横並びにする設定 */
.type-guidance .guidance-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 30%;
  margin-bottom: 15px;
  padding: 0 5px;
  box-sizing: border-box;
	flex-wrap: wrap;
}

/* 左側のテキスト（フリータイム等） */
.type-guidance .g-label {
  font-size: 12px;
  color: #333333;
  text-align: center;
  display: block;
	width: 100%;
	margin-bottom: 10px;
}

/* 右側の値（◯、×、料金テキスト） */
.type-guidance .g-value {
  font-size: 1rem;
  font-weight: bold;
  color: #222222;
  text-align: center;
  flex: 1;
}

.type-guidance .g-value.mark {
  font-size: 20px;
  font-weight: normal;
	display: block;
}

.type-guidance .g-value.fee {
  font-weight: bold;
}
/* ==========================================================================
   アクセスセクション用スタイル
   ========================================================================== */
.access-section {
  background-color: #f2f5eb; /* 特徴的な薄いグリーンの背景色 */
  padding: 100px 0;
}

.access-container {
  width: min(1200px, 90%);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 50px; /* 左右ブロックの間隔 */
}

.access-section .section-title{
	text-align: left;
	margin-bottom: 30px;
}
.access-section .section-title-en{
	left: 0;
}

/* --- 左側：店舗情報まわり --- */
.access-info-area {
  flex: 1;
}

/* ロゴマーク */
.access-logo {
  margin-bottom: 30px;
}
.access-logo img {
  max-width: 280px; /* ロゴのサイズはお好みで調整してください */
  height: auto;
  display: block;
}

/* 住所・電話番号 */
.access-detail {
  font-size: 15px;
  line-height: 1.8;
  color: #333333;
  margin-bottom: 30px;
}

/* 電車・駐車場ブロック */
.transport-guide {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* 移動手段の丸角バッジ */
.transport-badge {
  background-color: #bfae99; /* 料金表のタグと共通のベージュ */
  color: #ffffff;
  font-size: 0.9rem;
  padding: 6px 30px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
}

/* ルート案内テキスト */
.guide-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #333333;
  padding-left: 5px;
}
.guide-text .sub-text {
  font-size: 0.85rem;
  color: #555555;
}

/* --- 右側：Googleマップまわり --- */
.access-map-area {
  flex: 1;
  width: 100%;
}

.icon{
	width: 20px;
	height: 20px;
}

/* ==========================================================================
   体験レッスンセクション用スタイル
   ========================================================================== */
.trial-section {
  padding: 100px 0px;
  text-align: center;
}
.trial-container{
	width: 700px;
    margin: 0 auto;
}

/* --- キャッチコピー（両脇の点線スラッシュ） --- */
.trial-heading-wrap {
  position: relative;
    text-align: center;
    font-size: 25px;
    font-weight: 500;
    margin-bottom: 30px;
	display: inline-block;
}

/* 左側の点線 */
.trial-heading-wrap::before {
  content: "";
  position: absolute;
  left: -30px;
  top: 50%;
  width: 25px;
  height: 40px;
  border-left: 2px dashed #333333;
  transform: translateY(-50%) rotate(-25deg); /* スラッシュ状に傾ける */
}

/* 右側の点線 */
.trial-heading-wrap::after {
  content: "";
  position: absolute;
  right: -30px;
  top: 50%;
  width: 25px;
  height: 40px;
  border-right: 2px dashed #333333;
  transform: translateY(-50%) rotate(25deg);
}

.trial-heading-wrap span{
  background: linear-gradient(transparent 60%, #a9cf38 60%);
}

/* --- コンタクトボタンエリア --- */
.trial-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.btn-trial {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: bold;
  color: #ffffff;
  text-decoration: none;
  padding: 15px 40px;
  border-radius: 40px;
  width: 290px;
  box-sizing: border-box;
  transition: opacity 0.2s ease;
}
.btn-trial:hover {
  opacity: 0.85;
}

/* 電話ボタン（ベージュ） */
.btn-phone {
  background-color: #BEB098;
	font-size: 25px;
}
/* 電話アイコン（簡易的な受話器マークを疑似要素で作成） */
.btn-phone::before {
  content: "";
  margin-right: 10px;
	background: url("img/tel_white.png")no-repeat center;
	background-size: cover;
	width: 25px;
	height: 25px;
}

/* LINEボタン（黄緑） */
.btn-line {
  background-color: #8EC31E;
  position: relative;
}
/* 右矢印アイコン */
.btn-line::after {
  content: "";
  position: absolute;
  right: 25px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translateY(-50%) rotate(45deg);
}

/* --- 料金表示カード --- */
.trial-price-card {
  background-color: #ffffff;
  border: 1px solid #e5e5e5;
  margin: 0 auto;
  padding: 20px;
  position: relative; /* 子要素の絶対配置の基準 */
}

/* 背後に重なる「Price」の水色手書き風テキスト */
.trial-price-bg {
  position: absolute;
  top: -30px;
  left: 140px;
  font-family: "Homemade Apple", cursive;
  font-size: 2.8rem;
  color: #3CB0EB;
  z-index: 1;
  user-select: none;
	transform: rotate(-8deg);
}

.trial-price-content {
  position: relative;
  z-index: 2; /* 手書き文字より前に出す */
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 8px;
}

.price-group {
  display: flex;
  align-items: baseline; /* 文字の底辺を揃える */
}

.type-label {
  font-size: 0.95rem;
  color: #333333;
  margin-right: 8px;
}

.amount {
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1;
}

.unit {
  font-size: 0.95rem;
  color: #333333;
  margin-left: 4px;
}

.price-separator {
  font-size: 2rem;
  color: #333333;
  font-weight: 300;
  margin: 0 10px;
}

.trial-note {
  position: relative;
  z-index: 2;
  font-size: 0.85rem;
  color: #666666;
}

/* ==========================================================================
   ダンロップゴルフスクール バナー用スタイル
   ========================================================================== */
.dunlop-section {
  background-color: #ffffff; /* 周辺環境に合わせて必要なら調整してください */
  padding: 60px 20px;
  text-align: center;
}

.dunlop-container {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  padding-top: 35px; /* 吹き出しバッジが上に飛び出すためのスペース */
}

/* リンク全体のブロック（ホバーエフェクト用） */
.dunlop-banner-link {
  display: inline-block;
  text-decoration: none;
  position: relative;
  transition: opacity 0.2s ease;
}

.dunlop-banner-link:hover {
  opacity: 0.85;
}

/* --- 上部の吹き出しバッジ --- */
.dunlop-badge {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%); /* 確実に真ん中寄せ */
  z-index: 10;
  background-color: #909090; /* カンプ共通のグレー */
  color: #ffffff;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 10px 24px;
  border-radius: 25px; /* 丸角の仕様 */
  white-space: nowrap; /* テキストの意図しない改行を防ぐ */
}

/* 吹き出しの「下向きの三角形の突起」をCSSで作成 */
.dunlop-badge::after {
  content: "";
  position: absolute;
  bottom: -8px; /* バッジの下辺にくっつける */
  left: 50%;
  transform: translateX(-50%);
  border-style: solid;
  border-width: 8px 7px 0 7px; /* 三角形のサイズ調整 */
  border-color: #909090 transparent transparent transparent; /* 下側だけ透明に */
}

/* --- 下部のロゴ入り四角枠 --- */
.dunlop-logo-box {
  border: 1px solid #707070; /* カンプ通りの細いグレーの線 */
  background-color: #ffffff;
  width: 440px; /* カンプの比率に合わせた幅 */
  max-width: 100%;
  padding: 40px 20px; /* 上下の余白を広めにとってロゴを際立たせる */
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ロゴ画像自体の調整 */
.dunlop-logo-img {
  width: 100%;
  max-width: 300px; /* 画像が大きすぎないように制限 */
  height: auto;
  display: block;
}

/* ==========================================================================
   フッターセクション用スタイル
   ========================================================================== */
.site-footer {
  background-color: #f2f5eb; /* アクセスセクションと共通の薄いグリーン */
  padding: 100px 0;
  border-top: 1px solid #e0e5d8; /* 境界を少し上品に分ける薄い線 */
}

.site-footer .container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
}

/* --- 左側：ロゴ＆コピーライト --- */
.footer-logo-area {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-logo img {
  width: 110px; /* 縦型ロゴのサイズ感に調整 */
  height: auto;
  display: block;
  margin-bottom: 15px;
}

.copyright {
  font-size: 10px;
  color: #a0a0a0;
  letter-spacing: 0.05em;
}

/* --- 右側：メインコンテンツ --- */
.footer-main-area {
  flex: 1;
}

/* 上段：住所＆電話番号 */
.footer-info-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end; /* 下揃えにしてTelマージンに合わせる */
  padding-bottom: 5px;
}

.footer-address {
  font-size: 16px;
  line-height: 1.5;
  color: #333333;
}
.footer-address .zip {
  margin-bottom: 2px;
}

/* 大きく目立つ電話番号 */
.footer-tel {
  color: #222222;
  font-family: "Oswald", sans-serif;
  font-weight: bold;
}
.footer-tel .tel-label {
  font-size: 1.2rem;
  margin-right: 5px;
}
.footer-tel .tel-number {
  font-size: 28px;
  letter-spacing: 0.02em;
  line-height: 1;
}

/* 中央を切り裂く綺麗な細い点線 */
.footer-divider {
  border: none;
  border-top: 1px dashed #adadad;
  margin: 20px 0;
  width: 100%;
}

/* 下段：ナビとLINEボタン */
.footer-info-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* リンクメニュー */
.footer-nav ul {
  list-style: none;
  display: flex;
  gap: 30px; /* メニュー間の横幅間隔 */
  padding: 0;
  margin: 0;
}

.footer-nav a {
  text-decoration: none;
  color: #333333;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: #9cb342; /* ホバー時にテーマカラーに変化 */
}

/* LINEお友達登録ボタン（右下） */
.btn-footer-line {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #8EC31E; /* お馴染みのテーマカラー黄緑 */
  color: #ffffff;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: bold;
  padding: 12px 30px;
  border-radius: 25px;
  position: relative;
  transition: opacity 0.2s ease;
}

.btn-footer-line:hover {
  opacity: 0.9;
}

/* ボタン内の右矢印マーク */
.btn-footer-line::after {
  content: "";
  position: absolute;
  right: 25px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translateY(-50%) rotate(45deg);
}

.sp_only{
	display: none;
}

@media (max-width: 960px) {
  
  /* --- ハンバーガーボタン本体 --- */
  .hamburger-btn {
    display: block; /* スマホ時に表示 */
    position: relative;
    z-index: 1100; /* メニューの裏に隠れないように最前面へ */
    width: 30px;
    height: 19px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
	  right: 15px;
  }

  /* 3本線の共通スタイル */
  .hamburger-btn span {
    display: block;
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #333333; /* 線の色 */
    border-radius: 2px;
    transition: all 0.3s ease;
  }

  /* 3本線の初期位置 */
  .hamburger-btn span:nth-child(1) { top: 0; }
  .hamburger-btn span:nth-child(2) { top: 8px; }
  .hamburger-btn span:nth-child(3) { top: 16px; }

  /* ★ボタンがクリックされた時（is-activeクラスがついた時）の『×』アニメーション */
  .hamburger-btn.is-active span:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
  }
  .hamburger-btn.is-active span:nth-child(2) {
    opacity: 0; /* 真ん中の線を消す */
  }
  .hamburger-btn.is-active span:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
	  top: 22px;
  }

  /* --- スライド開閉するメニューエリア --- */
  .nav-wrapper {
	  position: fixed;
	  inset: 0;
	  width: 100%;
	  height: 100vh;
	  background: #fff;
	  z-index: 1050;
	  opacity: 0;
	  visibility: hidden;
	  pointer-events: none;
	  transition: opacity .4s ease;
  }

  .nav-wrapper.is-active {
	  opacity: 1;
	  visibility: visible;
	  pointer-events: auto;
	  top: -20px;
      left: -15px;
      width: calc(100% + 30px);
	}

  /* 中のナビ、リストをスマホ用に縦並びへ組み替え */
  .nav {
	  width: 100%;
	  height: 100%;
	  display: flex;
	  flex-direction: column;
	  justify-content: center;
	  align-items: center;
	  opacity: 0;
	  transform: translateY(20px);
	  transition: .4s;
  }
	
	.nav-wrapper.is-active .nav {
	  transform: translateY(0);
	  opacity: 1;
	}

  .nav ul {
	  display: flex;
	  flex-direction: column;
	  gap: 30px;
	  margin: 0;
	  padding: 0;
	  list-style: none;
	  text-align: center;
	  width: 100%;
  }
	
	.nav ul li {
	  margin: 0;
	}

  .nav a {
    font-size: 1.2rem;
  font-weight: 500;
  border: none;
  padding: 0;
  }
	
	.nav .contact-btn{
		text-align: center;
		width: 260px;
	}
}

@media (max-width: 768px){
	.sp_only{
		display: block!important;
	}
	.pc_only{
		display: none; 
	}
	.container{
		width: auto;
		margin: 0 15px;
	}
	.header{
		width: 95%;
		top: 20px;
	}
	.header-inner{
		height: 65px;
	}
	.logo img{
		height: 45px;
	}
	.fv{
		height: 90vh;
		background-position: 30%;
	}
	.sub-copy{
		font-size: 17px;
		padding: 15px;
		margin-top: 10px;
	}
	.trial-section{
		padding: 80px 0;
	}
	.trial-section .container{
		gap: 0;
	}
	.trial-content {
		flex: auto;
	}
	.trial-text{
		text-align: left;
		font-size: 16px;
	}
	.trial-title{
		font-size: 18px;
	}
	.trial-title::before, .trial-title::after{
		width: 30px;
	}
	.trial-title::before{
		left: -5px;
	}
	.trial-title::after{
		right: -5px;
	}
	.btn-phone{
		font-size: 22px;
	}
	.btn-phone, .btn-line{
		width: 90%;
		flex: auto;
	}
	.trial-buttons{
		flex-wrap: wrap;
	}
	.price-content{
		font-size: 14px;
	}
	.slash{
		margin: 0 10px;
	}
	.price-content strong{
		font-size: 25px;
	}
	.price-box p{
		font-size: 12px;
	}
	.price-label {
		top: -30px;
		left: -5px;
		font-size: 35px;
	}
	.feature{
		padding: 80px 0;
	}
  .feature-card{
	width: calc((100% - 12px) / 2);
  }
	.feature-list{
		gap: 12px;
	}
	.feature-card img{
		height: 120px;
	}
	.card-body h3{
		font-size: 14px;
	}
	.card-body p{
		font-size: 12px;
	}
	.facility-item{
		flex-wrap: wrap;
		margin-bottom: 60px;
	}
	.facility-item.reverse{
		margin-bottom: 100px;
	}
	.facility .section-title{
		padding-left: 10px;
	}
	.facility .section-title-en{
		left: 0;
	}
	.facility{
		padding: 80px 0;
	}
	.facility-image{
		width: 100%;
	}
	.facility-content{
		margin-top: 20px;
		width: 100%;
	}
	.facility-content h3{
		margin-bottom: 15px;
		font-size: 22px;
		text-align: center;
	}
	.facility-number{
		font-size: 16px;
		left: 50%;
  		transform: translateX(-50%);
		position: relative;
	}
	.facility-number::before, .facility-number::after{
		width: 20px;
	}
	.facility::after{
		height: 250px;
	}
	
	.event-section::before{
		width: 180px;
		height: 210px;
		top: -10%;
	}
	
	.event-cards {
    flex-direction: column;
    align-items: center;
  }

  .event-card {
    width: 100%;
    max-width: 100%;
  }
	.event-card h3{
		font-size: 18px;
	}

  .event-card img {
    height: 220px;
  }
	
	.schedule {
        padding: 70px 15px;
    }

    .schedule__sub {
        font-size: 2rem;
    }

    .schedule__title {
        font-size: 2rem;
    }

    .schedule__wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 10px;
		height: 600px;
    }

    .schedule__image {
        width: auto;
        max-width: none;
		height: 600px;
    }

    .schedule__note {
        font-size: 0.8rem;
        line-height: 1.8;
    }
	.flow-section .section-title-en{
		left: 0;
	}
	.flow-section .section-title h2{
		padding-left: 10px;
	}
	.flow-wrapper {
		flex-direction: column;
	  }

	  .flow-item:not(:last-child)::after {
		display: none;
	  }

	  .flow-item {
		padding: 40px 20px;
	  }

	  .section-title h2 {
		font-size: 30px;
	  }
	.section-title-en{
		font-size: 28px;
		left: 5%;
	}

	  .flow-item img {
		height: auto;
	  }
	.schedule__legend {
        gap: 10px;
    }

    .schedule__legend-item {
        font-size: 14px;
		gap: 5px;
    }

    .schedule__legend-color {
        width: 45px;
        height: 15px;
    }
  
  .access-container {
    flex-direction: column; /* 画面が狭くなったら縦並びに */
    gap: 40px;
  }
  
  .access-map-area {
    margin-top: 10px;
  }
	.dunlop-logo-box{
		width: 100%;
	}
	.site-footer .container{
		flex-wrap: wrap;
		gap: 30px;
	}
	
	.plan-flex-container{
		flex-wrap: wrap;
	}
	.plan-column{
		flex: auto;
		padding: 20px 15px 30px!important;
	}
	.price-card.type-junior, .price-card.type-visitor{
		width: 100%;
	}
	.cards-bottom-container{
		flex-wrap: wrap;
	}
	.type-guidance .plan-flex-container{
		flex-wrap: wrap;
	}
	.type-guidance .plan-column{
		width: 100%;
		flex: auto;
	}
	.trial-section .trial-container{
		margin: 0 15px;
		width: auto;
	}
	.type-guidance .guidance-list li{
		padding: 0;
		width: 32%;
	}
	.dunlop-section{
		padding: 80px 15px;
	}
	.dunlop-badge{
		top: -40px;
		padding: 10px 40px;
		border-radius: 50px;
	}
	.footer-nav ul{
		flex-wrap: wrap;
	}
	.trial-heading{
		font-size: 16px;
	}
	.type-label, .unit, .price-separator{
		font-size: 14px;
	}
	.amount{
		font-size: 28px;
	}
	.trial-note{
		font-size: 12px;
	}
	.trial-price-bg{
		top: -30px;
        left: -5px;
        font-size: 35px;
	}
	.trial-price-content{
		gap: 10px;
	}
	.price-section{
		padding: 80px 0;
	}
	.access-logo img{
		max-width: 100%;
	}
	.footer-info-bottom{
		flex-wrap: wrap;
	}
	.footer-cta{
		width: 100%;
		margin-top: 30px;
	}
	.btn-footer-line{
		width: 100%;
		padding: 20px 0;
		border-radius: 50px;
		font-size: 18px;
	}
	.footer-info-top{
		flex-wrap: wrap;
	}
	.footer-address, .footer-tel{
		width: 100%;
	}
	.footer-logo-area{
		width: 100%;
	}
	.access-map-area iframe{
		height: 300px;
	}
	.site-footer{
		padding: 80px 0;
	}
	.footer-tel{
		margin-top: 15px;
	}
	.event-section .section-title-en{
		left: 25%;
	}
	.price-section .section-title-en{
		left: 28%; 
	}
	.trial-heading-wrap{
		font-size: 18px;
	}
	.trial-heading-wrap::after, .trial-heading-wrap::before{
		height: 30px;
	}
	
}