@charset "UTF-8";
/* CSS Document */
/* base
----------------------------------------- */
html {
  font-size: 62.5%;
  /* 16px * 62.5% = 10px */
  width: 100%;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  color: #394f57;
  font-family: "Shippori Mincho", serif;
  font-size: 1.4rem;
  background-color: #ffffff;
  line-height: 1.5;
  letter-spacing: 0.5px;
  text-align: justify;
  text-justify: inter-ideograph; /* Edge */
  line-break: strict;
  word-break: break-word;
  overflow-wrap: break-word;
  word-wrap: break-word;
  color: #333;
}

h1 {
  font-size: clamp(4.8rem, 5.6vw, 7.47rem); /* 1.4rem × 1.414³ */
}

h2 {
  font-size: clamp(3.4rem, 4vw, 4.8rem); /* 1.4rem × 1.414² */
  font-weight: 600;
}

h3 {
  font-size: clamp(2.4rem, 2.8vw, 3.4rem); /* 1.4rem × 1.414 */
  color: #865b32;
}

h4 {
  font-size: clamp(2rem, 2.8vw, 2.4rem); /* 1.4rem × 1.414 */
  font-weight: 600;
}

p, ul {
  font-size: 1.4rem;
}

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

.t-center {
  text-align: center;
}

.br {
  display: none;
}

.d_none {
  display: none;
}

@media screen and (max-width: 820px) {
  .br {
    display: block;
  }
}
.m_auto {
  margin-left: auto;
  margin-right: auto;
}

.mb_ll {
  margin-bottom: 100px !important;
}

.mb_l {
  margin-bottom: 50px !important;
}

.mb_m {
  margin-bottom: 25px !important;
}

.mb_s {
  margin-bottom: 15px !important;
}

.red {
  color: #b6001f;
}

a:hover {
  color: #b6001f;
}

.bg_gray {
  background-color: #f5f5f5;
}

.fade-in {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
}

/* ヘッダー全体 */
.header {
  display: flex;
  width: 90%;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0px;
  background-color: #fff;
  margin-left: auto;
  margin-right: auto;
  position: relative; /* ← これも必要！ */
  z-index: 10; /* 追加してみて！ */
}

/* ロゴ部分 */
.header__logo img {
  width: 250px;
  height: 158px;
}

.header__container {
  display: flex;
}

/* ナビゲーション */
.header__nav {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 65px;
}

.header__menu {
  display: flex;
  flex-direction: column-reverse;
  gap: 25px;
  list-style: none;
  padding: 0;
  margin: 0;
  writing-mode: vertical-rl; /* 縦書き（右から左） */
  text-orientation: upright; /* 文字を直立表示 */
}

.header__menu-item {
  font-family: "Shippori Mincho", serif;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.5rem;
}

.header__menu-item a {
  text-decoration: none;
  color: #000;
  transition: all 0.3s ease;
}

.header__menu-item a:hover {
  color: #b6001f;
  transition: all 0.3s ease;
}

/* 右側のコンタクト情報 */
.header__contact {
  text-align: right;
  font-family: "Lora", serif;
  font-size: 1.6rem;
  color: #333;
}

.header__contact_title {
  font-size: 1.8rem;
}

.header__contact_tel {
  font-size: 2.8rem;
  letter-spacing: 4px;
}

p.header__contact_tel > span {
  font-size: 1.6rem;
}

.header__contact_time {
  font-size: 1.6rem;
}

.header__contact_address {
  font-size: 1.6rem;
}

.header__contact_reserve {
  font-size: 1.6rem;
  margin-top: 10px;
}

.hero {
  position: relative;
  width: 90%;
  height: 720px;
  margin: 0 auto;
  overflow: hidden;
}

.hero__slider {
  width: 100%;
  height: 100%;
  position: relative;
}

.hero__slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
  z-index: 1;
}

.hero__slide.active {
  opacity: 1;
}

.hero__text {
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-family: "Shippori Mincho", serif;
  font-size: 3rem;
  color: #fff;
  background-color: rgba(139, 0, 0, 0.7);
  padding: 10px 5px;
  text-align: center;
  position: absolute;
  left: 50%;
  top: 20%;
  transform: translateX(-50%);
  white-space: nowrap;
  letter-spacing: 10px;
  z-index: 5;
  opacity: 1 !important;
  display: block !important;
}

.hero__slide.img01 {
  background-image: url(../img/img_sushi-hero05@2x.jpg);
}

.hero__slide.img02 {
  background-image: url(../img/img_sushi-hero@2x.jpg);
}

.hero__slide.img03 {
  background-image: url(../img/img_sushi-hero02@2x.jpg);
}

.hero__slide.img04 {
  background-image: url(../img/img_sushi-hero03@2x.jpg);
}

.hero__slide.img05 {
  background-image: url(../img/img_sushi-hero04@2x.jpg);
}

.hero__slide {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media screen and (max-width: 768px) {
  .hero__slide.img01 {
    background-image: url(../img/img_sushi-hero05_sp@2x.jpg);
  }
  .hero__slide.img02 {
    background-image: url(../img/img_sushi-hero_sp@2x.jpg);
  }
  .hero__slide.img03 {
    background-image: url(../img/img_sushi-hero02_sp@2x.jpg);
  }
  .hero__slide.img04 {
    background-image: url(../img/img_sushi-hero03_sp@2x.jpg);
  }
  .hero__slide.img05 {
    background-image: url(../img/img_sushi-hero04_sp@2x.jpg);
  }
}
.about {
  max-width: 960px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 50px 30px;
}

.about__title {
  width: 100%;
  text-align: center;
  white-space: nowrap;
}

.about__sub-text {
  font-family: "Lora", serif;
  color: #8B8989;
  text-align: center;
  font-size: 2rem;
}

.about__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: stretch; /* 高さ揃える */
}

.about__image {
  width: 100%;
  height: auto;
  background-color: #000;
  height: 480px; /* 高さを固定する */
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  margin-bottom: 20px;
}

.about__text {
  font-size: 1.4rem;
  line-height: 200%;
}

.about__text2 {
  max-width: 300px;
  width: 100%;
  font-size: 1.4rem;
  line-height: 200%;
  margin-left: auto;
  margin-right: auto;
}

.about__content_logo {
  width: 80px;
  height: 80px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.menu {
  max-width: 960px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 50px 30px;
}

.menu__title {
  width: 100%;
  text-align: center;
}

.menu__sub-text {
  font-family: "Lora", serif;
  color: #8B8989;
  text-align: center;
  font-size: 2rem;
}

.menu__text {
  font-size: 1.4rem;
  line-height: 200%;
}

.menu__gridWrap {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
}

.menu__course-title {
  text-align: center;
}

.menu__course-price {
  text-align: center;
}

.menu__course-price span {
  font-size: 1.8rem;
}

.menu__course-price strong {
  font-size: 2.8rem;
  margin-left: 10px;
  margin-right: -12px;
}

.menu__course-reserve {
  background-color: #b6001f;
  width: 200px;
  padding: 5px 10px;
  text-align: center;
  color: #fff;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.6rem;
  font-weight: 600;
}

.menu__course-note {
  text-align: center;
}

.alacarte {
  max-width: 960px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 50px 30px;
}

.alacarte__title {
  text-align: center;
}

.alacarte__menu_images {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
}

.menu-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
  table-layout: auto;
}

.menu-table td,
.menu-table th {
  padding: 8px;
  border-bottom: 1px solid #ddd;
  vertical-align: top;
  font-size: 16px;
}

.menu-table .category {
  font-weight: bold;
  width: 200px;
}

.menu-table .price {
  text-align: right;
  white-space: nowrap;
}

.tax_note {
  text-align: right;
  width: 100%;
}

.bottom-padding {
  padding-bottom: 30px;
}

.drinks {
  max-width: 960px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 50px 30px;
}

.drinks__title {
  text-align: center;
}

.drinks__gridWrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.drinks__text {
  line-height: 200%;
}

.info {
  max-width: 960px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 50px 30px;
}

.info__title {
  text-align: center;
}

.info__gridWrap {
  display: flex; /* ← grid → flex に変更 */
  align-items: stretch; /* 高さ揃える */
  gap: 30px;
}

.info__left-gridWrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.info__gridWrap > div {
  flex: 1; /* 両方 1:1 の比率で並ぶ */
}

.info__right-gridWrap {
  position: relative;
}

.info__right-gridWrap iframe {
  position: absolute;
  top: 0;
  left: 0;
}

.info__right-pt {
  padding-top: 275px;
}

.info__right-mapBnr {
  display: block;
  width: 100%;
  background-color: #333;
}

.info__right-mapBnr {
  text-align: center;
  padding: 15px;
  color: #fff;
  transition: all 0.3s ease-in;
  position: relative;
  border: 1px solid #777;
}

.info__right-mapBnr::after {
  content: url(../img/icon_blank.svg);
  width: 10px;
  height: 10px;
  margin-left: 3px;
}

.info__right-mapBnr:hover {
  background-color: #865b32;
  color: #fff;
}

.info__addressWrap {
  border: 1px solid #777;
  padding: 20px;
  margin-top: -1px;
}

.info__address-table {
  width: 100%;
}

.info__address-table td {
  padding: 6px;
}

.info__address-table-title {
  table-layout: fixed;
  width: 100px;
}

.pageTop {
  display: block;
  width: 64px;
  height: 64px;
  background-image: url(../img/icon_pageTop@2x.png);
  background-repeat: no-repeat;
  background-size: 100% 128px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 999;
}

.pageTop:hover {
  background-position: 100% -64px;
}

.pageTop__wrap {
  width: calc(100% - 60px);
  height: 64px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.pageTop__border {
  display: block;
  width: calc(100% - 60px);
  border-top: 1px solid #bbb;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}

p.info__address {
  margin-top: 40px;
}

.footer {
  width: 100%;
  padding: 50px 30px;
}

/* フッター内のコンタクト情報 */
.footer__contact {
  text-align: right;
  font-family: "Lora", serif;
  font-size: 1.6rem;
  color: #333;
}

.footer__contact_title {
  font-size: 1.8rem;
}

.footer__contact_tel {
  font-size: 2.8rem;
  letter-spacing: 4px;
}

p.footer__contact_tel > span {
  font-size: 1.6rem;
}

.footer__contact_time {
  font-size: 1.6rem;
}

.footer__contact_address {
  font-size: 1.6rem;
}

.footer__contact_reserve {
  font-size: 1.6rem;
  margin-top: 10px;
}

.footer__container {
  max-width: 1260px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-left: auto;
  margin-right: auto;
}

.footer__logo img {
  width: 250px;
  margin-bottom: 30px;
}

.footer__pamphlet {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: underline;
}

.footer__pamphlet::before {
  content: url(../img/icon_pdf.svg);
  margin-right: 5px;
  padding-top: 3px;
}

.snsWrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 90px;
  margin-left: auto;
}

.snsWrap img {
  width: 25px;
  height: 25px;
}

.snsWrap_sp {
  display: flex;
  justify-content: space-between;
  width: 70px;
  margin-left: auto;
  margin-right: auto;
}

.snsWrap_sp img {
  width: 24px;
  height: 24px;
}

/* =========================
   ハンバーガーメニューボタン
========================= */
.hamburger-btn {
  background: none;
  border: none;
  cursor: pointer;
  display: none; /* スマホで表示 */
  padding: 10px;
  z-index: 1100;
  position: fixed;
  right: 30px;
  top: 30px;
  width: 40px;
  height: 40px;
  justify-content: center;
  align-items: center;
}

/* 内部ラッパーで線をまとめる */
.hamburger-btn-inner {
  position: relative;
  width: 30px;
  height: 24px;
}

/* 線共通 */
.hamburger-line {
  position: absolute;
  width: 40px;
  height: 1px;
  background-color: #333;
  transition: all 0.5s ease;
  transform-origin: center;
  left: -10px;
}

/* 初期状態：三本線 */
.line-top {
  top: 0;
}

.line-middle {
  top: 11px;
}

.line-bottom {
  bottom: 0;
}

/* バツ（×）状態 */
.hamburger-btn.active .line-top {
  transform: rotate(45deg);
  top: 11px;
}

.hamburger-btn.active .line-middle {
  opacity: 0;
}

.hamburger-btn.active .line-bottom {
  transform: rotate(-45deg);
  bottom: auto;
  top: 11px;
}

/* =========================
   ハンバーガーメニュー本体
========================= */
.hamburger-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  background: #fff;
  z-index: 999 !important;
  height: 100vh;
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.hamburger-nav.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* メニューリスト */
.hamburger-menu {
  list-style: none;
  padding: 100px 20px 30px;
  margin: 0;
  text-align: center;
}

.hamburger-menu li {
  padding: 20px 20px;
}

.hamburger-menu li a {
  text-decoration: none;
  color: #000;
  font-size: 2rem;
}

.header__contact_spWrap {
  width: 100%;
  text-align: center;
}

.hamburger-nav_footerBorder {
  width: 100%;
  height: 30px;
  background-color: #865b32;
  position: absolute;
  bottom: 0;
}

/* =========================
   レスポンシブ設定
========================= */
@media screen and (max-width: 767px) {
  .hamburger-btn {
    display: flex;
  }
  .header__nav {
    display: none;
  }
}
/* =========================
   レスポンシブ設定
========================= */
@media screen and (max-width: 767px) {
  .hamburger-btn {
    display: flex;
  }
  /* PC用ナビは非表示にしてOK */
  .header__nav {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .header {
    padding: 10px 20px;
    width: 100%;
  }
  .header__contact {
    display: none;
  }
  .header__logo img {
    width: 200px;
    height: 120px;
  }
  .header__container {
    width: 100%;
    justify-content: space-between;
  }
  .hero {
    background-image: url(../img/img_sp_sushi-hero@2x.jpg);
  }
  .about__content {
    grid-template-columns: 1fr;
  }
  .about__image {
    height: unset;
    height: auto;
  }
  img.about__image2 {
    margin-bottom: 30px !important;
  }
  .menu__gridWrap {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .alacarte__menu_images {
    grid-template-columns: 1fr;
  }
  .menu-table,
  .menu-table tbody,
  .menu-table tr,
  .menu-table td {
    display: block;
    width: 100%;
  }
  .menu-table tr {
    margin-bottom: 1.5em;
    border-bottom: 2px solid #eee;
  }
  .menu-table td.category {
    background: #eee;
    font-weight: bold;
    padding: 10px;
    text-align: left;
    border-bottom: none;
    width: 100%;
  }
  .menu-table td.price {
    text-align: left;
    padding-left: 1em;
    border-bottom: none;
  }
  .menu-table td:not(.category):not(.price) {
    padding-left: 1em;
    font-weight: 600;
  }
  .menu-table .note {
    font-size: 14px;
    color: #555;
  }
  .drinks__gridWrap {
    grid-template-columns: 1fr;
  }
  .info__gridWrap {
    flex-direction: column;
  }
  .footer__container {
    flex-direction: column;
  }
  .footer__pamphlet {
    margin-bottom: 30px;
  }
  .pageTop__wrap {
    width: 100%;
  }
}/*# sourceMappingURL=style.css.map */