@charset "UTF-8";
/* @import url("https://fonts.googleapis.com/css2?family=Shippori+Mincho:wght@400;500;600;700;800&display=swap"); */

:root {
  --text: #333;
  --accent: #b9a030;
  --bg-overlay: rgba(255, 255, 255, 0.8);
}

/* reset (modern-css-reset 相当の簡略版) */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body,
h1,
h2,
h3,
p,
figure {
  margin: 0;
}

ul[role="list"],
ol[role="list"] {
  list-style: none;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--text);
  background: #fff;
  font-family: "Shippori Mincho", "游明朝", YuMincho, "Hiragino Mincho ProN", "HG明朝E", "メイリオ", Meiryo, "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  letter-spacing: 0.5px;
}

.container {
  width: min(900px, calc(100% - 40px));
  margin: 0 auto;
}

.container-wide {
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .container,
  .container-wide {
    width: 100%;
    padding: 0 20px;
  }
}

/* -------------------- hero -------------------- */
.hero-bg {
  position: fixed;
  inset: 0;
  background-image: url("../images/bg1_sp.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-color: rgba(255, 255, 255, 0.4);
  background-blend-mode: lighten;
  z-index: -3;
  transition: background-image 0.5s ease;
}

@media (min-width: 1025px) {
  .hero-bg {
    background-image: url("../images/bg1.webp");
  }
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
}

.hero-logo {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: -2;
}

.hero-logo img {
  width: 500px;
  max-width: 80vw;
  height: auto;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.hero-logo img.show {
  opacity: 0.8;
}

@media (max-width: 768px) {
  .hero-logo img {
    width: 320px;
    max-width: 90vw;
  }
}

header,
main,
footer {
  position: relative;
  z-index: 1;
}

/* -------------------- header / nav -------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.menu-toggle {
  position: fixed;
  top: 20px;
  left: 40px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  border: none;
  background: transparent;
  padding: 0;
  z-index: 1001;
  transition: transform 0.6s;
}

.menu-toggle span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: #333;
  transition: all 0.4s;
}

.menu-toggle span:nth-child(1) {
  top: 15px;
}

.menu-toggle span:nth-child(2) {
  top: 23px;
}

.menu-toggle span:nth-child(3) {
  top: 31px;
}

.menu-toggle.active span:nth-child(1) {
  top: 18px;
  transform: translateY(6px) rotate(-45deg);
}

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

.menu-toggle.active span:nth-child(3) {
  top: 30px;
  transform: translateY(-6px) rotate(45deg);
}

.menu-toggle.active {
  transform: rotate(360deg);
}

.global-nav {
  position: fixed;
  inset: 0;
  margin: 0;
  background: #fff;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.47, 0, 0.745, 0.715);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.global-nav.active {
  opacity: 1;
  pointer-events: auto;
}

.global-nav .nav-inner {
  width: 100%;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.global-nav img {
  display: inline-block;
  margin-bottom: 20px;
}

.global-nav a {
  display: block;
  font-size: 22px;
  letter-spacing: 2px;
  line-height: 50px;
  height: 50px;
  cursor: pointer;
}

.global-nav .brand{
  height: auto;
}

@media (max-width: 768px) {
  .menu-toggle {
    left: 20px;
  }
}

/* -------------------- sections -------------------- */
section {
  padding: 200px 0;
}

/* 遅延レンダリングで初期描画負荷を軽減（ビューポート外のみ） */
.achievement,
.menu,
.interior,
.access,
.contact {
  content-visibility: auto;
  contain-intrinsic-size: 1000px 1800px;
}

@media (max-width: 1024px) {
  section {
    padding: 80px 0;
  }

  .about {
    margin-top: 90vh;
  }

  .achievement,
  .menu {
    margin-top: 60vh;
  }
}

.about {
  margin-top: 100vh;
  padding-bottom: 100vh;
}

.about .container {
  width: 100%;
  padding: 0;
}

.about .card {
  width: 100%;
  background: var(--bg-overlay);
  padding: 60px 40px;
}

@media (min-width: 1024px) {
  .about .card {
    padding: 100px 200px;
  }
  .about p {
    line-height: 3.5;
  }
}

.about h1,
.about h2 {
  font-size: 24px;
  letter-spacing: 3px;
  line-height: 4.5;
  margin: 0 0 20px;
}

.about p {
  font-size: 15px;
  letter-spacing: 2px;
  line-height: 3;
  margin: 0 0 40px;
}

.ingredient {
  background: #fff;
  border-top: 8px solid var(--accent);
  border-bottom: 8px solid var(--accent);
  text-align: center;
}

.ingredient img {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
}

.achievement {
  margin-top: 100vh;
  background: var(--bg-overlay);
}

.achievement .flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 120px;
  flex-direction: row-reverse;
}

.achievement .image {
  flex: 1 1 50%;
  min-width: 280px;
}

.achievement .text {
  flex: 1 1 40%;
  min-width: 260px;
}

.achievement h2,
.menu h2,
.interior h2,
.access h2,
.contact h2 {
  font-size: 24px;
  letter-spacing: 3px;
  line-height: 2.5;
  margin: 0 0 10px;
}

.achievement h3 {
  font-size: 16px;
  letter-spacing: 3px;
  margin: 10px 0 4px;
}

.achievement p {
  font-size: 16px;
  letter-spacing: 2px;
  line-height: 2.5;
  margin: 0 0 14px;
}

.achievement .note {
  font-size: 16px;
  letter-spacing: 2px;
  line-height: 2.5;
}

.menu {
  margin-top: 100vh;
  background: var(--bg-overlay);
  border-top: 8px solid var(--accent);
  border-bottom: 8px solid var(--accent);
}

.menu .row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.menu .row .item {
  flex: 0 0 calc(50% - 10px);
  max-width: calc(50% - 10px);
  min-width: 260px;
}

.menu .row:has(.item:nth-child(1):nth-last-child(1)) {
  justify-content: flex-start;
}

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

.interior {
  background: #fff;
}

.interior .splide__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.interior .splide__slide img {
  width: 100%;
  height: auto;
}

.interior .splide__arrow {
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
}

.access {
  margin-top: 80vh;
  background: rgba(255, 255, 255, 0.9);
  padding: 120px 0 50px;
}

.access .flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}

.access .map {
  flex: 1 1 55%;
  max-width: 55%;
  min-width: 280px;
}

.access .photo {
  flex: 1 1 42%;
  max-width: 42%;
  min-width: 240px;
}

.access iframe {
  width: 100%;
  border: none;
}

.access table {
  border-collapse: collapse;
  width: 100%;
  margin-top: 20px;
}

.access th,
.access td {
  border: 1px solid #a0a0a0;
  background: #fff;
  padding: 10px 20px;
  line-height: 2;
  letter-spacing: 0.8px;
  color: #333;
}

.access th {
  letter-spacing: 1px;
  white-space: nowrap;
}

.access .schedule {
  text-align: center;
  margin-top: 30px;
}

.access .schedule img {
  display: inline-block;
  max-width: 50%;
}

@media (max-width: 768px) {
  .access .schedule img {
    max-width: 100%;
  }
  .access .map,
  .access .photo {
    max-width: 100%;
    flex: 1 1 100%;
  }

  .menu .row .item {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .access th {
    white-space: normal;
  }
}

.contact {
  background: #fbfbfb;
  display: flex;
  justify-content: center;
  padding: 60px 0;
}

.contact form {
  width: 500px;
  max-width: 100%;
  padding: 0 20px;
}

.contact .alert {
  color: #ff0000;
  font-size: 16px;
  margin: 4px 0;
}

.contact label {
  display: block;
  margin-bottom: 20px;
  font-weight: 400;
  line-height: 32px;
}

.contact label span {
  display: block;
  margin-bottom: 6px;
}

.contact label.required span::after {
  content: "*";
  color: red;
  margin-left: 4px;
}

.contact input[type="text"],
.contact input[type="email"],
.contact textarea {
  width: 100%;
  padding: 0 20px;
  font-size: 17px;
  height: 55px;
  line-height: 55px;
  color: #333;
  background: #fff;
  border: 1px solid #c3c3c3;
  border-radius: 5px;
  box-sizing: border-box;
  margin-bottom: 20px;
  transition: border-color 0.2s ease;
}

.contact textarea {
  height: 200px;
  line-height: 25px;
  padding: 20px;
}

.contact input:focus,
.contact textarea:focus {
  border-color: #7a7a7a;
  outline: none;
}

.contact .privacy-note {
  font-size: 12px;
  color: #747474;
  margin: 3px 0 20px;
}

.contact .privacy-note a {
  color: #3aa3b4;
}

.contact button {
  background: #333;
  color: #fff;
  border: none;
  cursor: pointer;
  height: 40px;
  border-radius: 5px;
  width: 100%;
}

.footer {
  background: #fff;
  padding: 20px;
  text-align: right;
}

.footer .sns {
  display: flex;
  justify-content: flex-end;
}

.footer .sns img {
  width: 50px;
  height: auto;
}

.footer small {
  font-size: 14px;
}

/* -------------------- simple pages -------------------- */
.page-simple {
  min-height: 100vh;
  background: #fff;
  padding: 120px 20px 80px;
}

.page-simple .content {
  width: min(900px, calc(100% - 40px));
  margin: 0 auto;
  line-height: 1.8;
}

.page-simple h1 {
  font-size: 26px;
  margin: 0 0 20px;
}

.page-simple h2,
.page-simple h3 {
  margin: 20px 0 10px;
}

.page-simple ul {
  list-style: disc;
  margin-left: 1.4em;
}

.thanks-box {
  min-height: calc(100vh - 120px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--bg-overlay);
  padding: 40px 20px;
}

.thanks-box h1 {
  font-size: 28px;
  margin: 0;
}
