@charset "utf-8";

html {
  font-size: 100%;
}
body {
  font-family: Arial, Helvetica, "Helvetica Neue", "Segoe UI", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "Meiryo", "メイリオ", sans-serif;
  font-size: 0.8rem;
  font-weight: bold;
  line-height: 1.7;
  padding-top: 70px; /* navの高さ分 */
}
/* ↓これをすぐ下に追加 */
h1, h2, h3 {
  font-family: inherit;
}
a {
  text-decoration: none;
}
img {
  max-width: 100%;
  height: auto;
}
li {
  list-style: none;
}

.site-title {
  padding: 0 16px;
  text-align: center;
  position: absolute;
  top: 45%;
  left: 0;
  right: 0;
  filter: drop-shadow(1px 1px 10px #c0c0c0);
}
.sec-title {
  width: 100%;
  color: #fff;
  text-align: center;
  font-size: 4.5rem;
  filter: drop-shadow(1px 1px 10px #c0c0c0);
  position: absolute;
  top: 30%;
}
.item-title {
  text-align: center;
  font-size: 2.5rem;
  margin: 80px 0 80px;
  display: inline-block;
  border-bottom: solid 6px #e60023;
  /* ↓ここから追加 */
  font-family: "Yuji Syuku", serif;
  font-weight: normal; /* 文字が太くなりすぎるのを防ぐ */
  /* ↑ここまで追加 */
}
.plan-title {
  border-bottom: none;
}
.plan-header {
  text-align: center;
  margin-bottom: 80px;
}
.plan-header .item-title {
  margin-bottom: 5px;
}
.plan-note {
  font-size: 10px;
  color: #888;
  margin: 0;
}
.title-text {
  display: inline-block;
  padding-bottom: 2px;
}
.fixed-bg {
  height: 300px;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}
.wrapper {
  max-width: 1000px;
  padding: 90px 16px 150px 16px;
  margin: 0 auto;
  text-align: center;
}
#header li img.icon {
  width: 20px;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: #fff;
  padding: 15px 30px;
}

nav ul {
  display: flex;
  justify-content: flex-end;
}
nav li {
  margin-left: 30px;
}
nav li a {
  color: #fff;
  font-weight: bold;
  transition: all 0.3s ease;
  filter: drop-shadow(1px 1px 2px #121212);
}
nav li a:hover{
  color: #e03131;
}

/* 共通のaタグリセット */
a,
a:visited {
  color: #000;
  text-decoration: none;
}

#header {
  position: relative;
  width: 100%;
}
/* トップページ写真変更 */
.header-photo {
  width: 100%;
  height: 90vh;
  object-fit: cover;
  object-position: center 85%;
  display: block;
}
/* ロゴ変更コード */
.main-logo {
  position: absolute;
  top: 34%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 420px;
  opacity: 0.65;
  pointer-events: none;
}

#menu {
  margin-top: 20px;
}
#menu .sec-title {
  /*
  position: relative;
  font-family: "Yuji Syuku", serif;
  font-weight: normal; /* 文字の太さをメニューと統一 */
  position: relative;
  top: 30%;
  /* 英語部分に、和風のニュアンスを持つ美しい明朝体フォントを適用 */
  font-family: "Noto Serif JP", "Yuji Syuku", serif !important;
  font-weight: 400 !important;
  /* 文字を少し斜めに傾けて「筆記体（流れるような）雰囲気」を出します */
  font-style: italic;
  /* 英語の文字の間隔を少し広げて上品に見せます */
  letter-spacing: 0.1em;
  color: #b0b0b0 !important;
  color: #b0b0b0;
}
#menu .menu-img {
  margin-bottom: -90px;
}
#menu .menu-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#menu .menu-item {
  width: 100%;
  max-width: 700px;
  margin: 0 auto 20px;
}
#menu .menu-item dl {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}
#menu .menu-item dt {
  font-family: "Yuji Syuku", serif; /* ←ここに追加 */
  text-align: center;
  border-bottom: none; /* 点線を消す */
  margin-bottom: 28px;
  padding-bottom: 0;   /* 下の余白を詰めてスッキリさせる */
  letter-spacing: 0.08em;
}
#menu .menu-item dl {
  margin-bottom: 90px;
}
.menu-btn {
  display: inline-block;
  position: relative;
  text-decoration: none;
}
.menu-btn i {
  margin-left: 8px;
  font-size: 12px;
  color: #ee2a7b;
}
.menu-btn span {
  position: relative;
  color: #111;
  font-weight: bold;
}
.menu-btn span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #ee2a7b;
  transform: 0.3s;
}
.reserve {
  margin-top: 36px;
}
.menu-btn:hover span::after,
.menu-btn:active span::after {
  width: 100%;
}

/* ボタン */
.phone-btn {
  display: inline-block;
  padding: 12px 28px;
  background: linear-gradient(135deg, #2b7cff, #1a5edb);
  color: #fff;
  font-weight: bold;
  border-radius: 30px; /* 丸み */
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}
/* ホバー*/
.phone-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.phone-btn:active {
  transform: translateY(1px) scale(0.98);
}
/* モーダル全体 */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
}
/* 中身 */
.modal-content {
  position: relative;
  z-index: 10000;
  background: #fff;
  padding: 20px;
  border-radius: 20px;
  text-align: center;
  width: 80%;
  max-width: 300px;
}
/* ボタン */
.modal-btn {
  display: block;
  margin: 10px 0;
  padding: 15px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
}
.modal-btn:hover {
  background: linear-gradient(135deg, #1e90ff);
}

/* 電話 */
.tel {
  background: #ddd;
  color: #000;
}
/* ネット */
.web {
  background: #ddd;
  color: #000;
}

/* キャンセル */
.close-btn {
  margin-top: 10px;
  background: none;
  border: none;
}

#about {
  margin-top: 20px;
}
#about .about-img {
  position: relative;
  overflow: hidden;
  background-image: url(../img/about-sp.png);
}
#about ul {
  display: flex;
  margin-bottom: 40px;
}
#about li {
  font-size: 0.9rem;
  width: 75%;
  line-height: 2;
  writing-mode: vertical-rl;
  text-orientation: upright;
  text-align: left;
  padding: 2%;
}
/* 全体 */
.sns {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-top: 40px;
}
/* アイコン */
.sns-icon {
  font-size: 80px;
  transition: transform 0.3s ease;
}
/* アニメーション */
.sns-icon:hover {
  transform: scale(1.2);
}
/* 色 */
.instagram {
  background: linear-gradient(45deg, #f9ce34, #ee2a7b, #6228d7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.therads {
  color: #000;
}
.x {
  color: #000;
}

#location {
  margin-top: 20px;
}
#location .location-img {
  background-image: url(../img/IMG_counter.JPG);
  position: relative;
}
#location .item-map {
  margin-bottom: 20px;
}
#location .item-map iframe {
  width: 100%;
  height: 400px;
  border: 0;
}
#location .item-info {
  font-size: 1rem;
  text-align: left;
}
#location .item-info  {
  margin-bottom: 10px;
}

#footer p {
  font-size: 0.7rem;
  padding: 10px 0;
  text-align: center;
}

.tel-link {
  position: relative;
  display: inline-block;
  color: #000;
  text-decoration: none;
}
/* 吹き出し本体 */
.tel-text {
  position: absolute;
  bottom: -45px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: #e03131;
  color: #fff;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 6px;
  opacity: 0;
  transition: all 0.3s ease;
  white-space: nowrap;
}
/* 三角（吹き出しの下）*/
.tel-text::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: #e03131 transparent transparent transparent;
}
/* hoverで出す */
.tel-link:hover .tel-text {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
/* 電話番号ホバー */
.tel-link:hover {
  color: #e03131;
}
.sister {
  font-size: 0.8rem;
  color: #e03131;
  margin-top: 10px;
}
.sister a {
  color: #e03131;
  text-decoration: none;
  border-bottom: 1px solid #e03131;
  transition: 0.3s;
}
.sister a:hover {
  color: #000;
  border-bottom: 1px solid #e60023;
}


@media screen and (max-width: 767px) {
  .site-title {
    top: 42%;
  }
  .sec-title {
    font-size: 2rem;
    top: 26%;
  }
  .item-title {
    font-size: 1.25rem;
    margin-bottom: 80px;
  }
  .fixed-bg {
    height: 94px;
  }
  .wrapper {
    padding: 30px 16px 60px 16px;
  }

  #menu {
    margin-top: 10px;
  }
  #menu .menu-content {
    flex-direction: column;
  }
  #menu .menu-item {
    width: 100%;
    padding: 0;
  }
  #menu .menu-item:first-child {
    border-right: none;
  }
  #menu .menu-item dl {
    margin-bottom: 32px;
    padding: 0 24px;
  }
  #menu .menu-btn {
    margin-top: 50px;
  }
  #menu .menu-item dl.food {
    margin-bottom: 12px;
  }
  #about .about-img {
    height: 160px;
    background-image: url(../img/about-pc.png);
  }
  #about ul {
    flex-direction: column;
  }
  #about li {
    width: 100%;
  }
  #location .fixed-bg {
    height: 160px;
    background-position: center 35%;
  }
}