@import url("https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css");
@import url("https://fonts.googleapis.com/css?family=Inter:400,900|Noto+Serif+Japanese:900,700,600|Noto+Sans+JP:400,700|Timmana:400|Irish+Grover:400");


* {
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
}

html {
  width: 100%;
  overflow-x: hidden;
  font-size: 16px;
  font-family: ""Noto Sans Japanese", "Hiragino Sans", "Yu Gothic", "メイリオ", Helvetica, sans-serif;
}

@media screen and (max-width: 768px) {
  html {
    font-size: 10px;
  }
}

a {
  text-decoration: none;
}

a:hover {
  opacity: 0.7;

}

img {
  max-width: 100%;
  height: auto;
}

/* ナビゲーション全体 */
.nav-links__list {

  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  /* 背景色 */
  background-color: rgba(255, 255, 255, 0.7);

  /* Flexbox設定 */
  display: flex;
  align-items: center;
  /* 垂直方向に中央寄せ */
  justify-content: flex-end;
  /* 右寄せの場合 */

  /* パディングなど余白を調整 */
  padding: 15px 2rem 3.125rem;
  box-sizing: border-box;
  z-index: 10;
}

/* 各項目（ギャラリー・料金・コース） */
.nav-links__item {
  position: relative;
  display: flex;
  align-items: center;
  /* 項目同士の間隔 */
  margin-left: 2rem;
  /* 必要に応じて cursor: pointer; など */
}

/* テキスト */
.nav-links__title {
  font-weight: 600;
  color: #036a88;
  font-size: 1.25rem;
  line-height: normal;
  text-align: center;
}

/* アイコン画像 */
.nav-links__icon {
  width: 3.25rem;
  height: 3.25rem;
  object-fit: cover;
  margin-left: 0.5rem;
  /* テキストとの隙間 */
}

@media screen and (max-width: 768px) {
  .nav-links__item {
    margin: 0;
  }

  .nav-links__list {
    justify-content: space-between;
    padding-bottom: 1.5rem;
  }

  /* アイコン画像 */
  .nav-links__icon {
    position: absolute;
    display: block;
    width: 2rem;
    height: 2rem;
    top: -1rem;
    right: -1rem;
  }
}

/*************************************************************
 * 全体のセクションラッパ
 *************************************************************/
.course-intro {
  width: 100%;
  color: #1f4e19;
  position: relative;
  /* 円形や装飾を重ねたい場合はrelativeにしておく */
  background-color: #3eb370;
  /* お好みで */
}
.course-intro_cc {
  background-color: #45b035;
}
/*************************************************************
 * タイトル＋メイン画像あたり
 *************************************************************/
.course-intro__header {
  margin-bottom: 5rem;
  position: relative;
  text-align: center;
  padding-top: 2rem;
}


.course-intro__title {
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-23%);
  font-weight: 500;
  font-size: 2.25rem;
}

@media screen and (max-width: 768px) {

  .course-intro__title {
    bottom: -5px;
  }
}

.course-intro__highlight {
  position: relative;
  text-align: center;
}

/* 強調テキスト */
.course-intro__highlight-text {
  font-weight: 900;
  color: #1f4f19;
  font-size: 2rem;
  line-height: 1.4;
  padding: 0 3.125rem 1.875rem;
  background: url("img/course_title_bg1.svg") no-repeat center center;
  /* 背景画像 */
}

@media screen and (max-width: 768px) {

  .course-intro__highlight-text {
    font-size: 1.8rem;
    background-size: contain;
  }
}

.course-intro__highlight {
  position: relative;
  text-align: center;
}

/* 内側に白いボックスを置き、left側をネガティブマージンで飛び出させる */
.course-highlight2__inner {
  background-color: #fff;
  padding: 1rem;
  position: relative;

}

.course-intro__description {
  display: block;
  max-width: 920px;
  margin: auto;
  font-weight: 900;
  /* 元: 900 */
  color: #1f4f19;
  font-size: 1.25rem;
  text-align: center;
  line-height: 1.6;
  /* 行間を少し広めに */
}

.course-intro__ellipse {
  position: absolute;
  display: block;
  /* ブロック表示 */
  bottom: -30px;
  left: -10%;
  width: 23%;
  max-width: 315px;
}


/*************************************************************
 * 運営会社に関する説明文
 *************************************************************/

@media print,
screen and (min-width: 1360px) {

  .course-intro__detail-textbox .course-intro__ellipse {
    left: auto;
    right: -10%;

  }

  .course-highlight2__inner {
    width: 88%;
    /* ボックスの幅 */
    margin-left: 12%;
  }

  .course-intro__description {
    transform: translateX(-12%);
  }

  .course-intro__detail-textbox {
    margin-left: 0;
    margin-right: 18%;

  }

  .course-intro__detail-text {
    transform: translateX(12%);
  }

}


@media screen and (min-width: 769px) and (max-width: 1800px) {
  
.course-intro__ellipse {
  bottom: -30px;
  left: -5%;
  width: 20%;
}


  .course-intro__detail-textbox .course-intro__ellipse {
    left: auto;
    right: -12%;

  }

}


@media screen and (min-width: 769px) and (max-width: 1550px) {
  
  .course-intro__ellipse {
    bottom: -30px;
    left: -10%;
    width: 20%;
  }
  
  
    .course-intro__detail-textbox .course-intro__ellipse {
      left: auto;
      right: -16%;
  
    }
  
  }

  @media screen and (max-width: 1360px) {

    .course-intro__ellipse {
      display: none;
    }
  }

/*************************************************************
 * 「芝生が美しい理由」強調部分
 *************************************************************/
.course-intro__reason {
  position: relative;
  text-align: center;
  margin-top: 5rem;
}

.course-intro__reason-text {
  background: url("img/course_title_bg2.svg") no-repeat center center;
}


@media screen and (max-width: 768px) {
  .course-intro__highlight-text {
    font-size: 1.8rem;
    background-size: contain;
  }
}

/*************************************************************
 * 大枠: コースレイアウト
 *************************************************************/
.course-intro__layout {
  max-width: 1512px;
  width: 95%;
  margin: 4rem auto;
}


.course-intro__layout-title {
  /* 元: .text-wrapper-5 からフォントや色を継承 */
  text-shadow: 0px 4px 4px #0000001a;
  /* font-family: "Yaldevi Colombo SemiBold-Regular", Helvetica, sans-serif;
  font-weight: 400; */
  font-weight: 800;
  font-size: 2rem;
  position: relative;
  text-align: center;
}

/* コースレイアウトの見出し部分 */
.course-intro__layout-header {
  margin-bottom: 3rem;
}

.course-intro__layout-icon {
  position: absolute;
  max-width: 110%;
  bottom: -85px;
  left: -20px;
}

@media screen and (max-width: 768px) {

  .course-intro__layout-icon {
    position: absolute;
    width: 50%;
    bottom: -5rem;
    left: 25%;
  }

}

/* レイアウト本体: マップ + ヤード情報 */
.course-intro__layout-body {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

@media print,
screen and (min-width: 769px) {

  /* コースレイアウトの見出し部分 */
  .course-intro__layout-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
  }


  /* マップ画像ラッパ */
  .course-intro__layout-map {
    width: 60%;
  }
}

/*************************************************************
 * エリア別使用芝種
 *************************************************************/

.course-intro__grass {
  margin-top: 2rem;
}

.course-intro__grass-title {
  margin-bottom: 7rem;
}

.course-intro__grass-icon {
  position: absolute;
  bottom: -80px;
  right: 70px;
}

@media screen and (max-width: 768px) {

  .course-intro__grass-icon {
    position: absolute;
    width: 50%;
    bottom: -5rem;
    left: 25%;
  }

}

.grass-table {
  width: 100%;
}

.grass-table th,
.grass-table td {
  border-bottom: 1px solid #1f4f19;
  /* 緑色の線 */
  padding: 0.5rem 1rem 0;
  font-size: 1.25rem;
  font-weight: 500;
  color: #000;
  line-height: 1.8;
  text-align: left;
}

.grass-table th {}

.course-intro__grass-note {
  font-weight: 400;
  color: #dc0f0f;
  font-size: 1.25rem;
  line-height: 1.6;
  margin: 3rem 0 1rem 1.2em;
  text-indent: -1em;
}

.course-intro__grass-detail {

  font-weight: 400;
  color: #000000;
  font-size: 1.25rem;
  line-height: 1.6;
  margin: 0 auto;
  width: 100%;
  max-width: 460px;
  /* 旧 overlap-9 が 462pxだったので */
  background-color: #ffffff;
  /* 旧: overlap-9 => background-color: #ffffff; */
  padding: 1rem;
  box-sizing: border-box;
  /* 影を付けたいなら */
  /* box-shadow: 0px 4px 4px #0000001a; */
  margin-bottom: 3rem;
}

/*************************************************************
 * ヤード情報 (group-2, view-3 などを集約)
 *************************************************************/

.course-intro__yard-info {
  padding: 3rem 0;
}


@media print,
screen and (min-width: 769px) {
  .course-intro__yard-info {
    margin-top: -16rem;
  }

}

.course-intro__yard-title {
  margin-bottom: 5rem;
}

.course-intro__yard-icon {
  position: absolute;
  max-width: 110%;
  bottom: -75px;
  left: 50%;
  transform: translateX(-55%);
}

@media screen and (max-width: 768px) {

  .course-intro__yard-icon {
    position: absolute;
    width: 50%;
    bottom: -4rem;
    left: 50%;
  }

}

/* キャッチコピー */
.course-intro__yard-catch {
  /* 元: .element-14 + .span + .text-wrapper-24 + .text-wrapper-25 */
  position: relative;
  top: auto;
  left: auto;
  /* 旧: absolute削除 */
  font-weight: 700;
  color: #1f4f19;
  font-size: 1.5rem;
  text-align: center;
  letter-spacing: 0;
  line-height: normal;
  margin: 0;
}

/* 部分的に文字サイズが大きい箇所 (例: .text-wrapper-24 => 36px) */
.course-intro__yard-catch-number {
  font-size: 2.25rem;
  /* 旧 .text-wrapper-24 */
}

.course-intro__yard-catch-span {
  /* 旧: .span (font-size: 24px) */
  font-size: 1.5rem;
  color: #1f4f19;
}

/* 大枠（2つのテーブルを横並び → 画面が狭いときは縦並び） */
.scorecards {
  display: flex;
  gap: 30px;
  justify-content: space-between;
  flex-wrap: wrap;
  /* 幅が足りないとき折り返し */
  margin: 0 auto;
  box-sizing: border-box;
  /* padding: 16px; */
}

/* スマホなど幅が狭い時に縦並び */
@media (max-width: 768px) {
  .scorecards {
    flex-direction: column;
  }
}

/* 各テーブルブロック */
.scorecards__table {
  flex: 1;
  overflow-x: auto;
  width: 100%;
}

/* 実際のテーブル要素 */
.scorecards-table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
  font-family: "Inter", sans-serif;
  /* お好みで */
}

/* 行の共通 */
.scorecards-table__row {
  border-bottom: 3px solid #fff;
}

/* 1行目(HOLE) と 3行目(YARD) は白の0.3透過 */
.scorecards-table__row--hole,
.scorecards-table__row--yard {
  background-color: rgba(255, 255, 255, 0.3);
}

/* 2行目(PAR) は背景色なし */
.scorecards-table__row--par {
  background-color: transparent;
}

/* セルの共通 */
.scorecards-table__cell {
  padding: 2rem 8px 8px;
  font-size: 1.5rem;
  /* お好みで */
  color: #000;
}

th.scorecards-table__cell {
  font-weight: 600;
}


/*************************************************************
 * 料金案内セクション全体
 *************************************************************/
@media print,
screen and (min-width: 769px) {
  .fee-info {
    position: relative;
    padding-top: 6.25rem;
    /* 必要に応じて */
  }
}

/*************************************************************
 * 背景画像エリア(旧 element-37, element-38)
 *************************************************************/
.fee-info__images {
  width: 100%;
  display: flex;
  justify-content: space-between;
  position: absolute;
  top: 0;
  left: 0;
  padding: 0 3%;
}

.fee-info__image {
  width: 30%;
}

@media screen and (max-width: 768px) {

  .fee-info__images {
    display: none;

  }
}

/*************************************************************
 * ヘッダー部分(料金案内タイトルなど)
 *************************************************************/
.fee-info__header {
  text-align: center;
  padding-top: 5rem;
}

@media screen and (max-width: 768px) {

  .fee-info__header {
    text-align: center;
    padding-top: 2rem;
  }

}

/* タイトル(旧 .text-wrapper-39 相当) */
.fee-info__title {
  background: url("img/fee_title_bg.png") no-repeat center center;
  background-size: contain;
  padding: 3.125rem 0;
  font-size: 3rem;
  margin-bottom: 1rem;
}

/*************************************************************
 * 「オールシーズン!!」 + 両端アイコン
 *************************************************************/
.fee-info__inner {
  max-width: 945px;
  width: 90%;
  margin: auto;
  text-align: center;
}

.fee-info__season-wrapper {
  max-width: 300px;
  width: 100%;
}

.fee-info__season {
  display: inline-block;
  position: relative;
  padding: 5px 1em 0;
  margin-bottom: 1rem;
}

.fee-info__season-text {
  color: #e75c82;
  font-size: 1.5rem;
}

.fee-info__season-icon {
  position: absolute;
  width: 0.6em;

  /* 旧: 19px */
  top: 5px;
  /* 例: 5px */
  object-fit: cover;
}

/* 左端アイコン */
.fee-info__season-icon:nth-of-type(1) {
  left: 0;
}

/* 右端アイコン */
.fee-info__season-icon:nth-of-type(2) {
  right: 0;
  /* 旧: 196px */
}

/*************************************************************
 * 「平日/土日祝日共通」(旧 .text-wrapper-40)
 *************************************************************/
.fee-info__subtitle {
  font-size: 2rem;
  margin: 0 0 1rem;
}

/*************************************************************
 * 2色背景の料金ボックス
 *************************************************************/
.fee-info__box {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: 8rem;
}


.fee-info__box-bg--left {
  background-color: #d5e85b;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 45%;
  /* 旧 rectangle-4 => #d5e85b */
}

.fee-info__box-bg--right {
  width: 55%;
  background-color: #faffe0;
  border-right: 3px solid #d5e85b;
  border-bottom: 3px solid #d5e85b;
  padding: 2rem 5% 1.5rem;
}

@media screen and (max-width: 768px) {



  .fee-info__box-bg--left {
    width: 100%;
    padding: 2rem;
  }
  .fee-info__box-bg--right {
    width: 100%;
  }

}

/* テキスト(旧 text-wrapper-42, 43, 44) */
.fee-info__box-title {
  font-weight: 900;
  font-size: 2rem;
}

.fee-info__box-price {
  font-weight: 900;
  font-size: 2.5rem;
  letter-spacing: 0.04;
  margin-bottom: 0.8rem;
}

.fee-info__box-caption {
  color: #dc0f0f;
  font-size: 1.25rem;
}


/*************************************************************
 * 「＜プレー料金改定のお知らせ＞」(旧 .text-wrapper-41)
 *************************************************************/
.fee-info__notice {
  color: #dc0f0f;
  font-size: 1.5rem;
  text-align: left;
  margin: 0 0 1rem;
}

/*************************************************************
 * 詳細文(旧 element-36)
 *************************************************************/
.fee-info__detail {
  color: #dc0f0f;
  font-size: 1.5rem;
  line-height: 1.5;
  margin-bottom: 5rem;
}

/* 全体のレイアウト */
.notice {
  width: 100%;
  padding: 3rem 5%;
  background-color: #d6faf880;
}

.notice__inner {
  position: relative;
  max-width: 1500px;
  margin: auto;
}

/* アイコン(旧 .important) */
.notice__icon {
  position: absolute;
  display: block;
  max-width: 50%;
  top: -7rem;
  left: 0;

}
@media screen and (max-width: 768px) {

  .notice__icon {
    top: -5rem;
  
  }
}

.notice__line-wrap {
  max-width: 1080px;
  margin: auto;
  font-size: 1.5rem;
}

.notice__line {
  margin: 0 0 0.8rem;
   text-indent: -1em;
  /* 左へ飛び出させる量 */
  padding-left: 1em;
  /* その分だけ左余白を確保 */
}

/* 赤文字行 */
.notice__line--red {
  color: #dc0f0f;
  text-indent: -1em;
  /* 左へ飛び出させる量 */
  padding-left: 2em;
}

/*************************************************************
 * 全体ラッパ: contact-cta
 *************************************************************/
.contact-cta {
  width: 90%;
  margin: 7rem auto 8rem;
  /* 中央寄せ + 上下余白 */
  text-align: center;
  /* 中央揃え */
}

/* テキスト */
.contact-cta__text {
  display: inline-block;
  font-size: 1.5rem;
  margin: 0 1em 1rem;
  position: relative;
  padding: 0 1rem;
  border-bottom: 3px solid #FAEE00;
}


/*************************************************************
 * 左右アイコン(旧 group-7, group-8)
 *************************************************************/
.contact-cta__icon {
  position: absolute;
  width: 3em;
  bottom: 0;
}

/* 左アイコン */
.contact-cta__icon--left {
  left: -2em;
}

/* 右アイコン */
.contact-cta__icon--right {
  right: -2em;
}

/*************************************************************
 * 電話ボタン(画像)をリンク化
 *************************************************************/
/* リンク全体のサイズ調整用 */
.contact-cta__phone-link {
  display: block;
  max-width: 486px;
  width: 80%;
  /* 旧: 486px */
  margin: 1rem auto 0;
  /* 中央寄せ + 上余白 */
  text-decoration: none;
  /* リンクの下線を消す(画像なので不要) */
}

/* 画像自体 */
.contact-cta__phone {
  display: block;
  width: 100%;
  /* 親要素 .contact-cta__phone-link に合わせる */
  height: auto;
  object-fit: cover;
}


/*************************************************************
 * 大枠: access-map
 *************************************************************/

.access-map {
  position: relative;
  max-width: 1370px;
  text-align: center;
  width: 90%;
  margin: 5rem auto;
}


.access-map__images {
  width: 100%;
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 10%;
  padding: 0 3%;
}

.access-map__image {
  width: 12%;
  height: auto;
  object-fit: contain;
  margin-bottom: 20px;
}

.access-map__header {
  text-align: center;
  margin-bottom: 3rem;
}

/* タイトル(旧 .text-wrapper-39 相当) */
.access-map__title {

  background: url("img/access_title_bg.png") no-repeat center center;
  background-size: contain;
  padding: 4rem 12%;
  font-weight: 400;
  font-size: 3rem;
}
@media screen and (max-width: 768px) {

  .access-map__title {
    padding: 2rem 15% ;
  }

 .access-map__image {
  display: none;
  }
}

/*************************************************************
 * Googleマップ埋め込み
 *************************************************************/
.access-map__iframe-wrapper {
  width: 100%;
  margin: 0 auto 4rem;
  /* 余白を入れたい場合 */
}

.access-map__iframe {
  width: 100%;
  height: 600px;
  border: 0;
  display: block;
  margin: 0 auto;
  /* object-fit: cover; // iframeには無効 */
}

@media (max-width: 768px) {
  .access-map__iframe-wrapper {
    /* 必要に応じて余白や幅の調整を行う */
    margin: 0 auto 2rem;
  }
  .access-map__iframe {
    /* スマホではアスペクト比を保ったレスポンシブな表示にする例 */
    height: auto;
    aspect-ratio: 16/9; /* モダンブラウザの場合、または下記のラッパーテクニックも利用可 */
  }
}

/*************************************************************
 * 「Google map」ボタン
 *************************************************************/
.access-map__button {
  display: inline-block;
  max-width: 450px;
  width: 80%;
}


.access__frame_wrapper {
  max-width: 1325px;
  display: flex;
  margin: 0 auto;
  align-items: center;
  width: 90%;
  gap: 40px;
}


/* 枠線や背景(旧 rectangle-stroke) */
.access__frame {
  max-width: 1325px;
  background-color: #fff;
  border: 1px solid #1F4F19;
  color: #1f4f19;
  padding: 2.5rem 4.375rem;
  position: relative;
  text-align: center;
}


@media screen and (max-width: 768px) {

  
.access__frame_wrapper {
  flex-wrap: wrap;
  gap: 0;
}
  .access__frame {
    padding: 2.5rem 2rem;
    margin-bottom: 2rem;
  }
  .access__link {
    margin-bottom:3rem
  }

}


/*************************************************************
 * 見出しとアイコン
 *************************************************************/
.access__heading {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  /* アイコンと文字の間隔 */
  margin-bottom: 3rem;
  padding-left: 10%;
  padding-bottom: 0.5rem;
  border-bottom: 4px double #1F4F19;
}

.access__heading-icon {
  width: 38px;
  height: auto;
  object-fit: cover;
}

.access__title {
  font-weight: 600;
  font-size: 2rem;
}

.access__desc {
  font-size: 1.25rem;
  line-height: 1.6;
  margin: 0 0 1rem;
}

.access__desc-under_arrow {
  margin-bottom: 3rem;
}

/*************************************************************
 * 矢印アイコン
 *************************************************************/
.access__arrow {
  display: block;
  width: 15px;
  /* 好みで */
  height: auto;
  margin: 1rem auto;
  /* 中央寄せ */
}

/*************************************************************
 * 「約5分」の強調
 *************************************************************/
.access__5min {
  position: relative;
  z-index: 2;
}

.access__5min::after {
  position: absolute;
  z-index: 1;
  content: "";
  background: url(img/under_line.svg) no-repeat center;
  background-size: contain;
  bottom: -0.5em;
  left: -0.5em;
  width: 5em;
  height: 1.5em;
}

/* 全体のラッパ要素 */
.shopinfo {
  width: 100%;
  max-width: 870px;
  /* レイアウトに合わせて調整 */
  margin: 2rem auto;
  padding: 0 1rem;
  box-sizing: border-box;
}

.shopinfo__title {
  font-size: 1.5rem;
  color: #1f4f19;
  font-weight: 900;
  text-align: left;
  margin: 0 0 0.5rem 1rem;
}

/* テーブル */
.shopinfo__table {
  width: 100%;
  border-collapse: collapse;
  /* 枠線を重ねる */
  text-align: left;
  background-color: #1f4f19;
  /* 緑背景 */
  color: #fff;
  font-size: 1.5rem;
  vertical-align: middle;
  padding-bottom: 0.75rem;
  margin-bottom: 8rem;
}


/* 行見出し(th) */
.shopinfo__table th {
  padding: 0.75rem 2rem 0;
  border-right: 1px solid #fff;
}

/* データセル(td) */
.shopinfo__table td {
  padding: 0.75rem 2rem;
}

/* BEMブロック: gallery */
.gallery {
  padding: 5vw 0 0;
  text-align: center;
  background: url(img/gallery_bg.png) no-repeat center top;
  margin-bottom: 10rem;
}

.gallery__title {
  margin-bottom: 10vw;
}

.gallery__title img {
  max-width: 650px;
  width: 80%;
}

.gallery__description {
  font-size: 1.6rem;
  color: #666;
  line-height: 1.6;
  width: 90%;
  margin: 0 auto 4rem;
}


/* 画像 */
.gallery__img {
  width: 100%;
  height: auto;
  display: block;
  /* 右上と左下を角丸に */
  border-top-right-radius: 10%;
  border-bottom-left-radius: 10%;
}

/* 画像下のテキスト */
.gallery__text {
  margin-top: 1.5rem;
  font-size: 1.2rem;
  color: #333;
}

/* 両端スライドを透過する場合の設定 */
.swiper-slide {
  opacity: 0.5;
  width: 25%;
  /* 中央以外 */
}

/* アクティブスライド・その前後は不透明に */
.swiper-slide-active,
.swiper-slide-next,
.swiper-slide-prev {
  opacity: 1;
}

/* 隣のスライドをやや強調したい場合は下記を追加
.swiper-slide.swiper-slide-next,
.swiper-slide.swiper-slide-prev {
  opacity: 0.8;
}
*/

/* ページネーション */
.gallery__pagination {
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
}

/* 前後ボタン共通 */
.gallery__button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 5.3125rem;
  height: 5.3125rem;
  background-color: rgba(255, 162, 201);
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .gallery {
    background: none;
  }
  .swiper-slide {
    width: 28%;
  }
  
  .gallery__button {
    width: 3rem;
    height: 3rem;
  }

}

/* 左右ボタン位置 */
.gallery__button--prev {
  left: 5%;
}

.gallery__button--next {
  right: 5%
}

/* Swiper標準アイコンを使う場合 */
.swiper-button-prev::after,
.swiper-button-next::after {
 font-size: 1.875rem;
  color: #fff;
}

/* 全体ラッパ */
.sns-links {
  border: 1px solid #8dc08d;
  /* 緑っぽい枠線 */
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  /* 左右の要素間の隙間 */
  padding: 4rem 20px;
  width: 90%;
  max-width: 740px;
  /* 横幅の上限 */
  margin: 0 auto 6rem;
}

/* 各項目(ブログ/ＳＮＳ) */
.sns-links__item {
  display: flex;
  align-items: center;
  gap: 2rem;
  /* テキストとアイコンリンクの隙間 */
}

.sns-links__label {
  font-size: 1.5rem;
  color: #333;
}

/* アイコンリンク全体 */
.sns-links__icon-link {
  display: inline-block;
  text-decoration: none;
  /* 下線を消す */
  /* 余白やホバー演出を付けたい場合はここで調整 */
}



/* 仕切り線(縦線) */
.sns-links__divider {
  width: 1px;
  height: 55px;
  background-color: #707070;
}

/* フッター全体 */
.footer {
  background: url(img/footer_bg.png) no-repeat center bottom;
  padding: 0 0 2rem;
  color: #191716;
}

.footer_inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1550px;
  width: 90%;
  margin: auto;
  gap: 2rem;
}
.footer__top {
  margin-bottom: 1rem;
}
/* 上段：ロゴ群＋住所・TELのコンテナ */

/* ロゴの共通リンクスタイル */
.footer__link {
  display: inline-block;
  margin-right: 1rem;
}

/* 住所・TEL */
.footer__address {
  margin-top: 2rem;
}

/* 中段：飾り枠や追加ロゴなど */
.footer__middle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

/* 下段：コピーライト */
.footer__bottom {
  text-align: center;
  margin-top: 8rem;
  /* 薄いグレー文字 */
}

@media screen and (max-width: 768px) {
  .footer__link {
    width: 45%;
    margin-right: 1rem;
    margin-bottom: 1rem;
  }

  .footer_inner {
    font-size: 1.4rem;
  }
  .footer__middle {
    margin: 0;
  }
  .footer__bottom {
    margin-top: 3rem;
    /* 薄いグレー文字 */
  }
  

}
