@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap');

body {
  margin: 0;
  font-family: Zen Kaku Gothic New;
  color: #333;
  line-height: 1.8;
  overflow-x: hidden;
}

.colored {
  background: #fbc9ab;
}

li {
  list-style: none;
}

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

/* ヘッダー */
.header {
  position: relative;
  width: 100%;
  height: 100px;
  z-index: 1000;
  /* border-bottom: 1px solid #eee; */
}

.header-inner {
  position: relative;
  margin: 0 auto;
  height: 95%;
  display: flex;
  gap: 5rem;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 20px;
}

.header-inner .logo {
  flex: 1;
  margin: 0;
}

.header-inner .logo img {
  display: block;
  transform: translateY(100px);

}

.nav ul {
  display: flex;
  list-style: none;
  gap: 4rem;
  margin: 0;
  padding: 0;
}

.nav a {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
}

.nav a:hover {
  opacity: 0.5;
}

.tel {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.6rem;
  font-weight: bold;
  color: #fff;
  text-align: center;
  line-height: 1.2;
  margin-right: 2rem;
}

.tel .small {
  font-size: 1.0rem;
}

.tel i {
  display: inline-block;
  /* transformを効かせるため */
  transform: rotate(90deg);
  /* ← 90度回転、必要に応じて調整 */
}

/* ハンバーガーボタン */
.hamburger {
  display: none;
  /* PCでは非表示 */
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 18px;
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
}

.hamburger span {
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s;
}

/* 開閉時のアニメーション */
/* .hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translateY(7px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-7px);
} */

/* スマホ用 */
@media (max-width: 768px) {
  .hamburger {
    display: flex !important;
    /* ← ここが重要！ */
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 18px;
    border: none;
    background: none;
    cursor: pointer;
    padding: 0;
    z-index: 10000;
  }

  .hamburger span {
    display: block;
    height: 5px;
    width: 100%;
    background: #fff;
    margin: 1px 0;
    border-radius: 2px;
    transition: 0.3s;
  }

  .nav {
    position: absolute;
    top: 100%;
    right: 0;
    background: #ffffffcf;
    width: 200px;
    display: none;
    flex-direction: column;
    border: 1px solid #ddd;
  }

  .nav ul {
    flex-direction: column;
    gap: 0;
  }

  .nav li {
    border-bottom: 1px solid #eee;
    text-align: center;
  }

  .nav a {
    display: block;
    padding: 1rem;
  }

  .nav.open {
    width: 100%;
    display: flex;
  }
}

/* MV */
.mv {
  margin-top: -100px;
  position: relative;
  height: 910px;
  overflow: hidden;
}

.mv-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  z-index: 0;
  transform: scale(1);
  will-change: transform, opacity;
}

.mv-bg1 {
  background-image: url("img/mv1_pc.jpg");
  opacity: 1;
}

.mv-bg2 {
  background-image: url("img/mv2_pc.jpg");
}

.mv-bg3 {
  background-image: url("img/mv3_pc.jpg");
}

.mv-text {
  font-family: Zen Kaku Gothic New;
  font-size: 2rem;
  position: relative;
  z-index: 10;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  font-size: 2rem;
  text-shadow: 4px 0 5px #000;
  line-height: 2;
}

/* ABOUT */
.about {
  position: relative;
  background-image: url("img/bg-about.png");
  background-repeat: no-repeat;
  background-size: 100% auto;
  /* アスペクト比に合わせて高さを指定 */
  height: calc(100vw * 1174 / 1920);
}

.about::before {
  content: "";
  position: absolute;
  inset: 0;
  top: -150px;
  height: calc(100% + 200px);
  /* 上に150px出した分、下も150px余裕を追加 */
  background: url("img/bg-about-dish.webp") no-repeat center/cover;
  z-index: 1;
}

.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  padding: 150px 20px;
  position: relative;
  /* 擬似要素の下に埋まらないように */
  z-index: 1;
}

.about-text h2 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  letter-spacing: 3px;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 3rem;
  letter-spacing: 3px;
}


/* MENU */
.menu {
  margin-top: 50px;
  background-image: url("img/bg-menu.png");
  background-repeat: no-repeat;
  background-size: 100% auto;
  height: calc(100vw * 1207 / 1920);
}

.menu-inner {
  display: flex;
  gap: 3rem;
  margin: 0 auto;
  padding: 150px 20px;
  align-items: flex-start;
  max-width: 1200px;
}

.menu-img {
  margin-left: calc(-1 * (100vw - 1200px) / 2 - 20px);
}

.menu-text h2 {
  font-size: 7rem;
  margin: 0 0rem 2rem;
  text-align: right;
  line-height: 1;
}

.menu-box {
  background: #fff;
  text-align: center;
  padding: 2rem;
  margin-left: -170px;
  margin-top: 5rem;
}

.menu-box p {
  font-size: 1.5rem;
  font-weight: 500;
}

.menu-links {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  max-width: 200px;
}

.menu-links li {
  margin: 0.5rem 0;
}

.menu-links a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  font-size: 1.2rem;
  background: #ef8000;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
  letter-spacing: 3px;
  width: 150px;
}

.menu-links a:hover {
  opacity: 0.8;
}

.menu-links i {
  margin-left: 0.5em;
  /* テキストと矢印の間隔 */
}

/* FLOOR */
.floor {
  text-align: center;
  padding: 100px 0;
}

.floor-slider {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
}

.slide {
  display: none;
}

.slide.active {
  display: block;
}

.floor-slider button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  padding: 10px;
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}


/*下層ページ共通*/
.page-hero {
  margin-top: -100px;
}

.page-hero img {
  width: 100%;
  height: auto;
  display: block;
}

/*下層ページ（menu）*/
.lineup {
  padding: 2rem;
}

.lineup-inner {
  background: #fff1e8;
  margin-bottom: 50px;
  padding: 5px;
  position: relative;
}

.lineup-section {
  max-width: 980px;
  margin: 0 auto;
  padding: 50px 0;
}

.lineup-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  font-weight: bold;
}

.lineup-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  background: #fff;
  padding: 1.0rem;
  margin-bottom: 2rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.lineup-text {
  flex: 1;
  margin-right: 2rem;
}

.lineup-text h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.lineup-header {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 1rem;
}

.lineup-header h3 {
  margin: 0;
  font-size: 1.2rem;
}

.lineup-header .price {
  margin: 0;
  font-size: 0.95rem;
  color: #333;
  font-weight: 500;
}

.lineup-category {
  padding: 0 1rem;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  border-left: 5px solid #fbc9ab;
  ;
  margin: 30px 0;
}

/* メニュー内容の定義リスト */
.lineup-table {
  display: grid;
  grid-template-columns: 13em 1fr;
  /* 左：ラベル、右：詳細 */
}

.lineup-table ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.lineup-labels {
  font-weight: bold;
  color: #333;
  text-align: left;
  padding: 0;
}

.lineup-labels li {
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.lineup-labels li span {
  font-size: 1rem;
}

.lineup-details {
  font-weight: bold;
  color: #fd5f00;
  text-align: left;
}

.lineup-details li {
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.lineup-details li span {
  font-size: 1rem;
}

.lineup-list .sub {
  display: block;
  font-size: 0.85rem;
  color: #d35400;
  margin-top: 0.2rem;
}

.lineup-img {
  max-width: 330px;
}

.lineup-img img {
  width: 100%;

}

/* スマホ対応 */
@media screen and (max-width: 768px) {
  .lineup-item {
    flex-direction: column;
  }

  .lineup-text {
    margin-right: 0;
    margin-bottom: 1rem;
    width: 100%;
  }

  .lineup-list {
    grid-template-columns: 1fr;
    /* スマホ時は縦積み */
  }

  .lineup-img {
    width: 100%;
  }
}

/*下層ページ（about）*/
.about-text {}

.about-text p {
  text-align: center;
}

.about-text p span {
  font-weight: bold;
  font-size: 1.2rem;
}

.bg-page-about {
  position: relative;
  margin: 0 auto;
  background: #fff1e8;
  /* 右半分用の背景色 */
  z-index: 0;
}

/* 左半分を背景画像にする */
.bg-page-about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  /* 左半分だけ */
  height: 100%;
  background: url("img/bg-page-about.png") no-repeat center center;
  background-size: cover;
  /* 縦横比を維持しつつ半分にフィット */
  z-index: -1;
}

/*下層ページ（contact）*/
.frameline {
  border: 1px solid #fbc9ab;
}

/*コンタクトフォーム*/
.wpcf7 {
  background: #fff;
  padding: 1rem;
  margin: 30px 0;
}

.hidden-fields-container {
  display: none;
}

/* テーブル全体 */
.contact-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 1rem;
  font-weight: 500;
  color: #333;
}

/* 左側ラベル */
.contact-table th {
  width: 200px;
  text-align: left;
  vertical-align: top;
  padding: 12px 10px;
  border-bottom: 1px solid #eee;
}

/* 右側入力欄 */
.contact-table td {
  padding: 12px 10px;
  border-bottom: 1px solid #eee;
}

/* 必須マーク */
.contact-table .required {
  color: red;
  font-size: 13px;
  margin-left: 4px;
}

/* 入力欄 */
.contact-table input[type="text"],
.contact-table input[type="email"],
.contact-table input[type="tel"],
.contact-table textarea {
  width: 100%;
  max-width: 500px;
  padding: 8px 10px;
  border: 1px solid #ccc;
  border-radius: 2px;
  box-sizing: border-box;
  font-size: 15px;
}

/* テキストエリア */
.contact-table textarea {
  height: 150px;
  resize: vertical;
}

/* チェックボックス横並び */
.wpcf7 .wpcf7-checkbox {
  display: flex;
  gap: 20px;
}

/* 送信ボタン */
.submit-btn {
  text-align: center;
  margin-top: 30px;
}

.submit-btn input[type="submit"] {
  background: #f26300;
  color: #fff;
  border: none;
  padding: 12px 40px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 2px;
  transition: opacity 0.3s;
}

.submit-btn input[type="submit"]:hover {
  opacity: 0.8;
}

/* ACCESS */
.access {
  background: #fbc9ab;
}

.access-inner {
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
}

.access-info-inner {
  width: 70%;
  margin: 0 auto;
}

.map {
  width: 50%;
}

.map-wrapper {
  position: relative;
  overflow: hidden;
  height: 50vw;
  /* 画面幅の半分を高さにする */
  max-height: 600px;
  /* 大画面で大きすぎないように制限 */
  min-height: 300px;
  /* 小画面で潰れないように最低高さ */
}

.map-parallax {
  height: 100%;
}

.map-parallax iframe {
  width: 100%;
  height: 180% !important;
  display: block;
  transform: translateY(0);
  border: 0;
}

.access-info {
  width: 50%;
  text-align: center;
  padding: 25px 0;
}

.access-logo img {
  max-width: 120px;
  margin-bottom: 1rem;
}

.contact-tel-title {
  font-size: 1.1rem;
  margin: 0;
  font-weight: 500;
  line-height: 0.6;
}

.contact-tel {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.6rem;
  font-weight: bold;
  margin: 0;
}

.contact-tel i {
  display: inline-block;
  transform: rotate(90deg);
}

.booking-btn {
  display: block;
  margin: 1rem auto 0;
  border: 1px solid #333;
  padding: 0.7rem 1.5rem;
  margin-bottom: 2rem;
  text-decoration: none;
  font-weight: bold;
  color: #333;
  border-radius: 25px;
  width: 200px;
  text-align: center;
}

.booking-btn i {
  margin-right: 0.5rem;
}

.booking-btn:hover {
  opacity: 0.5;
}

.company-info {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
}

.company-info tr {
  border-bottom: 1px dashed #666;
}

.company-info th,
.company-info td {
  text-align: left;
  padding: 0.6rem 0.8rem;
  vertical-align: top;
}

.company-info th {
  width: 140px;
  /* 左カラムの幅を固定 */
  white-space: nowrap;
}

.map-btn {
  display: block;
  margin: 2rem auto 0;
  padding: 0.7rem 1.5rem;
  border-radius: 25px;
  border: 1px solid #333;
  text-decoration: none;
  color: #333;
  font-weight: bold;
  width: 200px;
  text-align: center;
}

.map-btn i {
  margin-right: 0.5rem;
}

@media (max-width: 768px) {
  .access-inner {
    flex-direction: column;
  }

  .map {
    min-height: 300px;
  }
}

/* フッター (TOP)*/
.footer {
  background: #fbc9ab;
  text-align: center;
  padding: 40px 20px 20px;
}

.footer-nav {
  margin: 20px 0;
}

.footer-nav a {
  margin: 0 20px;
  color: #333;
  font-weight: 500;
  text-decoration: none;
}

.footer-nav a:hover {
  opacity: 0.5;
}

.footer-sns a {
  font-size: 1.5rem;
  color: #333;
  margin: 0 10px;
}

.footer-sns a:hover {
  opacity: 0.5;
}

.footer-sns a i {
  font-size: 2rem;
  background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/*SP用下部メニュー非表示*/
.footer-fixed {
  display: none;
}

.copy {
  margin-top: 20px;
  padding-top: 27px;
  border-top: 2px solid #fff
}

/* フッター (下層)*/
.foot-contact {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin: 2rem 0;
}

.booking {
  flex: 1;
}

.booking-btn2 {
  display: block;
  margin: 0 auto;
  border: 1px solid #333;
  padding: 0.7rem 1.5rem;
  text-decoration: none;
  font-weight: bold;
  color: #333;
  border-radius: 25px;
  width: 200px;
  text-align: center;
}

.map-btn2 {
  display: block;
  margin: 0 auto;
  padding: 0.7rem 1.5rem;
  border-radius: 25px;
  border: 1px solid #333;
  text-decoration: none;
  color: #333;
  font-weight: bold;
  width: 200px;
  text-align: center;
}

.footer-sns2 {
  margin: 2rem 0;
}

.footer-sns2 a {
  font-size: 1.5rem;
  color: #333;
  margin: 0 10px;
}

.footer-sns2 a i {
  font-size: 2rem;
  background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}



/* Page Top */
.page-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #ffffff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 2000;
}

/* SP対応 */
@media (max-width: 768px) {
  .mv {
    height: 600px;
  }

  .mv-bg1 {
    background-image: url("img/mv1_sp.jpg");
  }

  .mv-bg2 {
    background-image: url("img/mv2_sp.jpg");
  }

  .mv-bg3 {
    background-image: url("img/mv3_sp.jpg");
  }
}


/*fade in*/
/* 初期状態（非表示） */
.fadein-target {
  opacity: 0;
  transform: translateY(40px);
  /* 下からフワッと */
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity, transform;
}

/* 画面に入ったら .visible が付与されて表示 */
.fadein-target.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ======================================
   タブレット用レスポンシブ調整
   ====================================== */
@media screen and (max-width: 1200px) {

  .header-inner .logo img {
    display: block;
    width: 100px;
    transform: translateY(23px);
  }

  .nav ul {
    gap: 1rem;
  }
}

/* ======================================
   スマホ用レスポンシブ調整
   ====================================== */
@media screen and (max-width: 768px) {

  body {
    padding-bottom: 60px;
    /* スマホ時のみ下部固定メニューの余白を確保 */
  }

  /* ヘッダー */
  .header {
    height: auto;
    padding: 10px 0;
  }

  .header-inner {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
  }

  .header-inner .logo img {
    transform: none;
    max-height: 50px;
    width: auto;
  }

  .header-inner .logo {
    order: 1 !important;
  }

  .tel {
    font-size: 1rem;
    margin: 0;
    order: 2 !important;
  }

  /* ナビゲーション */
  .hamburger {
    border: none;
    order: 3 !important;
    z-index: 10000;
  }

  .nav ul {
    gap: 0;
  }

  .nav a {
    font-size: 1rem;
    color: #333;
  }

  /* MV */
  .mv {
    height: 60vh;
    /* 画面の高さにフィット */
  }

  .mv-text {
    font-size: 1.2rem;
    line-height: 1.8;
    top: 50%;
  }

  /* ABOUT */
  .about {
    background-image: url(img/bg-about-sp.png);
    height: calc(100vw * 920 / 430);
    background-size: cover;
    background-position: center;
  }

  .about::before {
    content: "";
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 430 / 396;
    background-image: url("img/before-about1-sp.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    top: -90px;
  }

  .about::after {
    content: "";
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 430 / 288;
    background-image: url("img/before-about2-sp.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
  }

  .about-inner {
    padding: 60px 15px;
  }

  .about-text h2 {
    font-size: 1.3rem;
  }

  .about-text {
    margin-top: 60%;
  }

  .about-text h2 {
    font-size: 1.3rem;
  }

  .about-text p {
    font-size: 0.8rem;
  }

  /* MENU */
  .menu {
    height: auto;
    background-image: url(img/bg-menu-sp.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position-y: bottom;
  }

  .menu-inner {
    flex-direction: column;
    padding: 60px 15px;
    gap: 2rem;
  }

  .menu-img {
    margin-left: 0;
  }

  .menu-text {
    width: 100%;
    background: #fff;
    width: 90%;
    margin: -4rem auto 0;
  }

  .menu-text h2 {
    font-size: 3rem;
    text-align: center;
    margin: 2rem 0 0;
  }

  .menu-box {
    margin: 0 auto;
    margin-top: -1rem;
  }

  .menu-box p {
    font-size: 1rem;
  }

  .menu-links a {
    font-size: 1rem;
    padding: 0.8rem 1.2rem;
  }

  /* FLOOR */
  .floor {
    padding: 50px 0;
  }

  /*下層ページ（共通） */
  .page-hero {
    margin-top: -70px;
  }

  /*下層ページ（menu） */
  .lineup {
    padding: 1rem;
  }

  .lineup-section {
    padding: 15px;
  }

  .lineup-title {
    font-size: 1.5rem;
  }

  .lineup-category {
    font-size: 1.2rem;
  }

  .lineup-header {
    display: block;
  }

  .lineup-header .price {
    text-align: right;
  }

  .lineup-table {
    display: block;
  }

  /*下層ページ（about） */
  .about-desc p {
    text-align: left;
    font-size: 0.8rem;
    line-height: 2.5;
  }

  /*下層ページ（contact）*/
  .wpcf7 {
    padding: 10px
  }

  .wpcf7 .wpcf7-checkbox {
    flex-direction: column;
  }

  .contact-table th {
    display: block;
    width: auto;
    padding: 0px 10px;
  }

  .contact-table td {
    display: block;
    width: auto;
  }

  /* ACCESS */
  .access-inner {
    flex-direction: column;
  }

  .map {
    order: 2;
    /* 後ろへ */
  }

  .access-info {
    order: 1;
    /* 前へ */
  }

  .map,
  .access-info {
    width: 100%;
  }

  .map-wrapper {
    height: 300px;
  }

  .access-info-inner {
    width: 90%;
    padding: 20px;
  }

  .booking {
    margin-bottom: 0.5rem;
  }

  .foot-contact {
    display: block;
    margin: 1rem 0;
  }

  .footer-sns2 {
    margin: 1rem 0;
  }

  .company-info th {
    width: 100px;
    font-size: 0.85rem;
  }

  .company-info td {
    font-size: 0.85rem;
  }

  /* フッター */
  .footer-nav a {
    display: block;
    margin: 10px 0;
  }


  .footer-fixed {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    background: #fbc9ab;
    /* 背景色（お好みで） */
    border-top: 1px solid #ddd;
    z-index: 9999;
  }

  .footer-btn {
    flex: 1;
    text-align: center;
    padding: 10px 0;
    color: #333;
    text-decoration: none;
    font-size: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .footer-btn i {
    font-size: 20px;
    margin-bottom: 3px;
  }

  .footer-btn:hover {
    background: #f9b68d;
  }

  .page-top {
    display: none;
  }

}

/*iphoneのリンク変換防止*/
a[href^="tel"] {
  color: inherit;
  /* 親要素の色を引き継ぐ */
  text-decoration: none;
  /* 下線を消す */
}