@charset "UTF-8";

/* ブラウザのデフォルトmarginリセット */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  scroll-padding: 60px;
}

body {
  font-family: 'Noto Sans JP', 'Noto Serif JP', sans-serif;
  overflow-x: hidden;
  padding-top: 60px;
}

@media (max-width: 768px) {
  html {
    scroll-padding: 0px;
  }

  body {
    padding-top: 0px;
  }
}

/* 基本の色について */
:root {
  --main-color: #E1241E;
  /*テンプレートのメインまたはアクセントカラー*/
  --main-inverse-color: #fff;
  /*上のmain-colorの対となる色*/
  --background-color: #FFF8E9;
  --global-space: 6vw;
  /*主に余白の一括管理用。画面幅100%＝100vwです。*/
}

p {
  font-weight: 500;
}

ol,
ul {
  list-style: none;
  list-style-type: none;
}

li {
  text-decoration: none;
  color: #ffffff;
  font-size: 20px;
  letter-spacing: 0.1em;

}

li a {
  color: #ffffff;
  text-decoration: none;

}

h1 {
  font-size: 2.8rem;
}

h2 {
  font-size: 1.6rem;
}

nav.open {
  pointer-events: auto; /* メニューが開いたときはイベントを受け取る */
}



/* ハンバーガーメニュー */
/* ヘッダー固定 */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: var(--main-color);
  z-index: 1000;
}

/* ハンバーガーメニューアイコン */
.menu-icon {
  display: none;
  position: fixed;
  top: 15px;
  right: 20px;
  width: 30px;
  height: 25px;
  cursor: pointer;
  z-index: 1100;
}

.menu-icon div {
  width: 100%;
  height: 3px;
  background-color: #000000;
  margin: 7px 0;
  transition: 0.4s;
}

/* ナビゲーションメニュー */

nav ul li {
  margin: 20px 0;
}

nav ul li a {
  text-decoration: none;
  color: #ffffff;
  font-size: 18px;
}

/* メインコンテンツのスタイル */
.content {
  margin-top: 80px;
  /* ヘッダーの高さ分余白を確保 */
  padding: 20px;
}

/* ウィンドウ幅が768px以下の場合 */
@media screen and (max-width: 768px) {

  nav {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    width: 0;
    height: 100%;
    background-color: #fff;
    transition: width 0.3s ease;
    z-index: 1000;
    overflow: hidden;
    /* 追加 */
  }

  nav.open {
    width: 100%;
    /* メニューが開いたときの幅 */
    text-align: center;
  }

  nav ul {
    padding: 80px 20px;
  }

  nav ul li a {
    color: #000000;
  }

  .menu-icon {
    display: block; /* 追加 */
  }

  /* メニューアイコンの変形（×ボタン） */
  .menu-icon.open .bar1 {
    transform: rotate(-45deg) translate(-5px, 6px);
  }

  .menu-icon.open .bar2 {
    opacity: 0;
  }

  .menu-icon.open .bar3 {
    transform: rotate(45deg) translate(-5px, -6px);
  }
}

/* ウィンドウ幅が769px以上の場合 */
@media screen and (min-width: 769px) {
  nav {
    display: block;
    height: 60px;
  }

  nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
  }

  nav ul li {
    margin: 0 20px;
  }

  nav ul li a {
    font-size: 16px;
  }

  .menu-icon {
    display: none;
  }
}

/* ハンバーガーメニューここまで */





/* スライドショー */
.slideshow-container img {
  width: 100%;
  height: auto;
  display: block;
}

/* スライドショーここまで */





/* ---------------------------------------------------


焼肉山河のコンセプト説明 


---------------------------------------------------*/

.image-text-container {
  display: flex;
  gap: 50px;
  background-image: url('../images/haikei.png');
  background-size: 100%;
  background-repeat: no-repeat;
  justify-content: center;
}

.imageconcept {
  width: 40%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  margin-bottom: 50px;
  font-family: 'Noto Serif JP';
  font-size: clamp(2.1rem, 4vw, 6.0rem);
  letter-spacing: 3.92px;
  font-weight: 900;

}

.imageconcept span {
  background-color: var(--main-color);
  color: var(--main-inverse-color);
  padding: 2px 10px;
}

.imageconcept img {
  width: 80%;
  margin-left: auto;
}

.imageconcept-text {
  transform: translate(50px, 40px);

}


.textconcept span {
  color: var(--main-color);
}

.textconcept {
  width: 40%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  margin-bottom: 50px;

}

.textconcept-h2 {
  height: 50%;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  flex-direction: column;
  letter-spacing: -1px;
  padding-bottom: clamp(0px, calc(80px - (100vw - 769px) * 0.0695), 80px);

}

.textconcept-h2 h2 {
  font-size: clamp(25.6px, calc(25.6px + 10.4* (100vw - 769px) / 1151), 36px);
  font-weight: 800;
  line-height: 1.2;
  white-space: nowrap;

}

.textconcept-p {
  height: 50%;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  flex-direction: column;
  gap: clamp(8px, calc(8px + (100vw - 769px) * 0.0452), 60px);

}

.textconcept-p p {
  width: clamp(80%, calc(100% - (100vw - 769px) * 0.01738%), 100%);
  font-size: clamp(16px, calc(16px + (100vw - 769px) * 0.003475), 20px);
}


@media (max-width: 768px) {
  #section0 {
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url('../images/haikei.png');
    background-size: 200%;
    background-repeat: repeat;

  }

  .image-text-container {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    background-size: 75%;
  }

  .imageconcept {
    font-size: clamp(36px, calc(36px + (100vw - 375px) * 0.06107), 60px);
  }

  .imageconcept-text {
    transform: translate(5px, 30px);
  }

  .textconcept-h2 {
    padding-bottom: 20px;
  }

  .textconcept-h2 h2 {
    font-size: clamp(21px, calc(21px + (11 * ((100vw - 320px) / 448))), 32px);
    font-weight: 900;
  }

  .imageconcept,
  .textconcept {
    width: 75%;
  }

}

/*---------------------------------------------------


section Campaign  


--------------------------------------------------- */
/* コンテナ */
#campaign { margin: 2rem auto; max-width: min(1200px, 90%); }

/* カード：常に縦並び（PCでも縦） */
.campaign-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: stretch;
  background: #fff;
  box-shadow: 0 6px 24px rgba(0,0,0,.06);
  overflow: hidden;
}

/* 画像リンク（画像だけクリックできる要素） */
.campaign-imglink { 
  display: block; 
  color: inherit; 
  text-decoration: none; 
  width: clamp(320px, 60vw, 720px); /* 最小320px, 目安60vw, 最大720px */
  margin: 0 auto;
}

/* 画像は常にコンテンツ幅いっぱい */
.campaign-card img { width: 100%; height: auto; display: block; }

/* テキスト */
.campaign-body { padding: clamp(12px, 2vw, 20px); text-align: center;}
.campaign-body h2 {
  font-family: 'noto serif jp';
  font-weight: 900;
  font-size: clamp(1.4rem, 4vw, 2rem);
  line-height: 1.3;
  margin: 0;
  color: #111;
}
.campaign-body h2 span {
  display: inline-block;
  margin-left: .6em;
  padding: .25em .6em;
  border-radius: 999px;
  font-size: .8em;
  line-height: 1;
  background: #f3f3f3;
  color: #111;
  vertical-align: middle;
}

/* スマホは画像リンクを無効化（タップしても反応しない） */
@media (max-width: 768px) {
  .campaign-imglink { pointer-events: none;
    width: 90vw; 
      max-width: 500px;
    min-width: unset; }
  
}

/* PC向けの微調整（レイアウトは縦のまま） */
@media (min-width: 769px) {
  .campaign-body { padding: clamp(24px, 3vw, 36px);} 
  .campaign-imglink { cursor: pointer; }       

}

/*---------------------------------------------------


section1 山河三種焼肉紹介


--------------------------------------------------- */

#section1 {
  display: flex;
  background-color: var(--background-color);
  justify-content: center;
  align-items: center;
}

.flex-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 83%;
  gap: 40px;
  margin-top: 50px;
  margin-bottom: 30px;

}

.grid-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: repeat(6, 1fr);
  grid-template-areas:
    "sangamiryoku sangamiryoku menu1 menu1"
    "sangamiryoku sangamiryoku menu1 menu1"
    "menu2 menu2 menu1 menu1"
    "menu2 menu2 menu3 menu3"
    "menu2 menu2 menu3 menu3"
    "menu2 menu2 menu3 menu3";

}

.sangamiryoku {
  grid-area: sangamiryoku;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.sangamiryoku-text h1 {
  font-family: 'Noto Serif JP';
  font-weight: 900;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  white-space: nowrap;
}

.span-haikei {
  font-size: clamp(2.4rem, 4vw, 4.3rem);
  background-color: var(--main-color);
  color: var(--main-inverse-color);
}

.narrow {
  letter-spacing: -0.2em;
  /* カギカッコの中の文字間を詰める */
}


.menu1 {
  grid-area: menu1;
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 80%;
  margin-left: 40px;
  margin-bottom: 50px;
}

.menu2 {
  grid-area: menu2;
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 80%;
  margin-left: 15%;
  margin-top: 10px;
}

.menu3 {
  grid-area: menu3;
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 80%;
  margin-left: 40px;
}

.menu1 p,
.menu2 p,
.menu3 p {
  width: 80%;
  padding: 10px;
  margin-top: 10px;
}

.menu1 img,
.menu2 img,
.menu3 img {
  box-shadow: -15px 15px 0px 0 #E3D2C1;
  width: 100%;
}

.menu1 h2,
.menu2 h2,
.menu3 h2 {
  color: var(--main-inverse-color);
  background-color: var(--main-color);
  padding: 15px 22px 15px 15px;
  transform: translateY(-20px);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .flex-container {
    width: 85%;
  }

  .grid-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    width: 100%;
  }

  .menu1,
  .menu2,
  .menu3 {
    align-items: center;
    justify-content: center;
    margin: 0;
    width: 90%;
  }

  .menu1 h2,
  .menu2 h2,
  .menu3 h2 {
    font-size: clamp(18px, calc(18px + 2 * ((100vw - 360px) / 408)), 20px);
  }

  .menu1 img,
  .menu2 img,
  .menu3 img {
    box-shadow: -8px 10px 0px 0 #E3D2C1;
    width: 100%;
  }

  .menu1 p,
  .menu2 p,
  .menu3 p {
    width: 100%;
    padding: 0;
    margin: 0;
  }

  .sangamiryoku h1 {
    font-size: clamp(24px, calc(24px + 16 * ((100vw - 320px) / 448)), 40px);
    white-space: nowrap;
  }

  .span-haikei {
    font-size: clamp(24px, calc(24px + 16 * ((100vw - 320px) / 448))*1.33, 40px);
  }
}

/* 山河三種焼肉紹介ここまで */





/*--------------------------------------------------- 


section2 フードメニュードリンクメニューについて


--------------------------------------------------- */

#mainImage {
  width: 100%;
  height: auto;
}

.menu-buttons {
  display: flex;
  justify-content: center;
  padding: 40px 0;
  background-image: url('../images/haikeilong.png');
  background-size: 100%;
  background-repeat: repeat;
}

.menu-btn {
  margin: 0 20px;
  padding: 10px 20px;
  font-family: 'Noto Sans JP';
  font-size: clamp(1.5rem, calc(25px + (100vw - 768px) * 0.0158), 2.7rem);
  font-weight: 700;
  cursor: pointer;
  background-color:var(--main-color);
  color: #ffffff;
  border: none;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background-color 0.3s ease;

}

.menu-btn.active {
  background-color: var(--main-color);
  color: white;
}

.menu-display {
  display: flex;
  justify-content: center;
  align-items: center;
  ;
}

.menu-display a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
}

#menuImageLink {
  display: flex;
  width: 80%;
  height: auto;
}

.menu-image {
  width: 100%;
  height: auto;
}

.icondrink {
  width: 50px;
  /* アイコンの幅 */
  height: 59px;
  /* アイコンの高さ */
}

.iconfood {
  width: 60px;
  /* アイコンの幅 */
  height: 47px;
  /* アイコンの高さ */
}


@media (max-width: 768px) {
  .menu-buttons {
    padding: 5px 0;
    justify-content: center;
  }

  .menu-btn {
    font-size: 18px;
    padding: 10px 0px 10px 10px;
    margin: 10px 5px;
    gap: 0;
    justify-content: center;

  }

  .icondrink {
    width: 20px;
    /* アイコンの幅 */
    height: 23.6px;
    /* アイコンの高さ */
  }

  .iconfood {
    width: 30px;
    /* アイコンの幅 */
    height: 23.5px;
    /* アイコンの高さ */
  }
}

@media (max-width: 365px) {
  .icondrink {
    display: none;
  }

  .iconfood {
    display: none;
  }
}

.menup {
  text-align: center;
  display: flex;
  justify-content: center;
}

/*---------------------------------------------------


section3 山河が愛される理由


----------------------------------------------------*/
#section3 {
  display: flex;
  flex-direction: column;
  background-color: var(--background-color);
  justify-content: center;
  align-items: center;

}

.sangakumo {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  background-image: url('../images/kumo1.png'), url('../images/kumo2.png');
  /* 2つの背景画像を指定 */
  background-position: right top, left bottom;
  background-repeat: no-repeat, no-repeat;
  background-size: 40%;
  /* コンテナの幅を100%に設定 */
  gap: 20px;
}

.sangariyu-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin: 20px 0 20px 40px;
  width: 80%;
  
}

.sangariyu-text h1 {
  font-size: clamp(1.8rem, 4vw, 4.0rem);
  font-family: 'Noto Serif JP';
  font-weight: 900;
}

.sangariyu-text span {
  color: var(--main-color);
  font-size: clamp(2.2rem, 6vw, 6.0rem);
}

.sangariyu-image {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 80%;
}

.sangariyu-image img {
  width: 75%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-bottom: 50px;
}

.flexbox {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

#section3 .image-text-container {
  background-image: none;
}

#section3 .image-text-container:nth-child(2) {
  flex-direction: row-reverse;
}

#section3 .textconcept-p {
  gap: 0;
  justify-content: center;
}

#section3 .textconcept-h2 {
  padding-bottom: clamp(0px, calc(70px - (100vw - 769px) * 0.0461), 70px)
}

#section3 .textconcept-h2 h2 {
  font-weight: 900;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
}

#section3 .textconcept-h2 h3 {
  font-weight: 800;
}

#section3 .imageconcept {
  align-items: flex-start;

}

#section3 .imageconcept img {
  display: block;
  width: 100%;
}

@media (max-width: 768px) {

  #section3 .textconcept-h2 {
    padding-bottom: 20px;
  }

  .sangariyu-text {
    margin: 0;
    margin-top: 30px;
    justify-content: center;
    align-items: center;

  }

  .sangariyu-image {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80%;

  }

  .sangariyu-image img {
    width: 100%;
  }

  .sangariyu-text h1 {
    font-size: clamp(22px, calc(22px + (40 - 22) * ((100vw - 375px) / (768 - 375))), 40px);
    white-space: nowrap;

  }

  .sangariyu-text span {
    font-size: clamp(28px, calc(22px + (40 - 22) * ((100vw - 375px) / (768 - 375)))*1.3, 52px);
  }

  #section3 .image-text-container:nth-child(2) {
    flex-direction: column;
  }


}





/*---------------------------------------------------



section4 店舗情報



----------------------------------------------------*/
#section4 {
  position: relative;
  background-image: url('../images/haikei.png');
  background-size: 100%;
  background-repeat: repeat;
  padding-bottom: 20px;
}

.carousel-store {
  text-align: center;
}

.carousel-store-list {
  padding-top: 30px;
  display: flex;
  justify-content: center;
}

.carousel-store-list ul {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 0;
  margin: 0;
  border-radius: 8px;
  /* 角を丸くする */
}

.carousel-store-list ul li {
  flex: none;
  /* リスト項目の幅を自動調整 */
  margin: 0 5px;
  /* 各項目の間にスペースを追加 */
}

.carousel-store-list ul li a {
  display: block;
  justify-content: center;
  align-items: center;
  padding: 12px 20px;
  text-decoration: none;
  font-weight: bold;
  /* 太字にする */
  background-color: #f0f0f0;
  /* リンクの背景色 */
  border-radius: 8px;
  /* 角を丸くする */
  transition: background-color 0.3s, color 0.3s;
  /* ホバー時のアニメーション */
  color: #000;
  text-align: left;
}

.carousel-store-list ul li a:hover {
  background-color: var(--main-color);
  /* ホバー時の背景色 */
  color: #fff;
  /* ホバー時のテキスト色 */
}

.carousel-store-list a.active {
  background-color: var(--main-color); /* ホバー時の背景色 */
  color: var(--main-inverse-color); /* ホバー時の文字色 */
}

@media (max-width: 768px) {
  .carousel-store-list ul li a {
    font-size: clamp(16px, calc(16px + 0.0089 * (100vw - 320px)), 20px);

  }
}

@media (max-width: 600px) {
  .carousel-store-list ul {
    display: grid;
    /* グリッドレイアウトを使用 */
    grid-template-columns: repeat(2, 1fr);
    /* 2列に配置 */
    gap: 10px;
    /* 各項目の間にスペースを追加 */
    justify-content: start;
    /* 左揃えにする */
  }

  .carousel-store-list ul li {
    margin: 0;
    /* マージンをリセット */
  }

  .carousel-store-list ul li a {
    text-align: left;
    /* 文字の頭を揃える */
  }
}


/* カルーセル全体のスタイル */
.carousel-container {
  width: 80%;
  margin: 0 auto;
  padding: 20px;
}


/* 店舗名のスタイル */
.store-name {
  background-color: var(--main-color);
  /* 赤色の背景 */
  color: var(--main-inverse-color);
  /* 白色の文字 */
  font-size: 32px;
  font-weight: bold;
  padding: 10px 20px;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 20px;
  width: 40%;
}

/* 店舗内容全体のレイアウト */
.store-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  gap: 20px;
}

/* 店舗情報のスタイル */
.info-container {
  width: 50%;
}

.info-row {
  display: flex;
  justify-content: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid #ddd;

}

.info-label {
  width: 30%;
  font-weight: bold;
  padding-right: 20px;
  text-align: left;
}

.info-content {
  width: 70%;
  text-align: left;
  line-height: 1.6;
}

.tabelog-button {
  display: inline-block;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  color: white;
  background-color: #FF6C00;
  /* 食べログのオレンジに近い色 */
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.tabelog-button:hover {
  background-color: #FF4500;
  /* ホバー時の色を少し濃くする */
}

/* ホットペッパー予約ボタン */
.hotpepper-button {
  display: inline-block;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  color: white;
  background-color: var(--main-color);
  border-radius: 5px;
  transition: background-color 0.3s ease;
  margin-bottom: 5px;
}

.reservation-note {
  font-size: 0.85em;
  color: #555;
  margin-top: 4px;
  line-height: 1.4;
}


/* 店舗写真のスタイル */
.store-photo {
  display: flex;
  justify-content: center;
  /* 横方向に中央揃え */
  align-items: center;
  /* 縦方向も中央揃え（必要に応じて） */
  width: 50%;
  margin: auto auto;
}

.store-photo img {
  width: 80%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

  /* 縦長画像用の調整（styles.cssの最後に追加） */
.store-photo img.vertical-fix {
  width: auto;           /* 横幅の強制(80%)を解除 */
  max-width: 100%;       /* 親枠からはみ出さない */
  height: auto;          /* 比率を維持 */
  max-height: 500px;     /* ★ここ重要：高さを500pxまでに制限 */
}

/* スマホ用の調整 */
@media (max-width: 768px) {
  .store-photo img.vertical-fix {
    max-height: 300px;   
  }
}


@media only screen and (max-width: 1024px) {
  .store-content {
    flex-direction: column;
  }

  .info-row {
    flex-direction: column;
  }

  .info-label {
    width: 100%;
    padding-right: 0;
    text-align: center;
  }

  .info-content {
    width: 100%;
    text-align: center;
  }

  .info-container {
    width: 100%;
  }

  .store-photo {
    width: 100%;
  }

  .store-photo img {
    width: 80%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }

  .store-name {
    font-size: clamp(22px, calc(22px + 0.0142 * (100vw - 320px)), 32px);
    font-weight: bold;
    padding: 10px 10px;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 20px;
    width: 100%;
  }
}

@media only screen and (max-width: 768px) {


  .carousel-container {
    width: 90%;
    margin: 0 auto;
    padding: 20px 0px 0px 0px;
  }
}

/*---------------------------------------------------

footer (運営会社情報リンク版)

----------------------------------------------------*/

footer {
  background-color: var(--main-color);
  color: var(--main-inverse-color);
  padding: 40px 20px; /* 余白は適度に確保しつつ、以前より控えめに */
  font-size: 13px;    /* 文字サイズを少し落として「事務的」な雰囲気にする */
  display: flex;
  justify-content: center;
}

/* 下部のリンク・コピーライトエリア全体 */
.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px; /* リンク群とコピーライトの間隔 */
  width: 100%;
}

/* リンクを横並びにするエリア */
.footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px; /* リンク同士の間隔 */
  flex-wrap: wrap; /* 画面が狭い時に折り返す安全策 */
}

/* リンク自体のスタイル（地味にする） */
.fine-link {
  color: inherit;       /* 親の白を継承 */
  text-decoration: none;
  font-weight: 500;
  opacity: 0.9;         /* デフォルトは少し薄くして存在感を消す */
  transition: opacity 0.3s ease;
  padding: 5px;         /* タップしやすいように見えない余白を持たせる */
}

.fine-link:hover {
  opacity: 1;           /* ホバー時だけはっきりさせる */
  text-decoration: underline;
}

/* リンクの間の区切り線（ | ） */
.separator {
  opacity: 0.5;
  font-size: 11px;
  user-select: none; /* 選択できないようにする */
}

/* コピーライト */
.footer-fine {
  font-size: 9px;
  opacity: 0.8; /* 一番目立たなくて良い */
  font-family: 'Noto Sans JP', sans-serif;
  letter-spacing: 0.05em;
}

/* スマホ用調整 */
@media (max-width: 430px) {
  footer {
    padding: 30px 20px;
  }

  .footer-links {
    flex-direction: column; /* スマホでは縦並びにしてタップミスを防ぐ */
    gap: 4px;
  }
  
  .separator {
    display: none; /* スマホで縦並びにするので「|」は消す */
  }
  
  .fine-link {
    font-size: 12px;
    padding: 3px; /* スマホでのタップ領域を少し広めに確保 */
  }
}

/*---------------------------------------------------


 epark-widgetについて 


----------------------------------------------------*/
@media only screen and (max-width: 600px) {
  [data-epark-widget] {
    width: 100% !important;
  }
}

@media only screen and (max-width: 1024px) {
  [data-epark-widget] {
    margin: 0 auto ;
  }
}