:root {
  --color-main: #0f1111;
  --color-bg: #fffdfd;
  --color-text: #333;
  --color-white: #fff;
  --color-line: #d8d1c4;
  --color-btn: #212121;
  --color-accent: #b8894a;
  --color-accent-dark: #8b642f;
  --color-green: #18382f;
  --color-footer: #2f2f2f;
  --font-ja: "Hiragino Mincho ProN", "Yu Mincho", serif;
  --font-base: "Noto Sans JP", sans-serif;
}

html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}

body {
  color: var(--color-text);
  font-family: var(--font-ja);
  line-height: 1.6;
  letter-spacing: 0.12rem;
  background: var(--color-bg);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  vertical-align: bottom;
}

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

ul {
  list-style: none;
  padding-left: 0;
}

input,
textarea,
button {
  font: inherit;
}

.inner {
  width: min(1100px, calc(100% - 32px));
  margin-inline: auto;
}

.section {
  padding-block: 72px;
}

.section-heading {
  margin-bottom: 42px;
  text-align: center;
}

.section-heading__en {
  margin-bottom: 8px;
  color: var(--color-accent);
  font-family: var(--font-ja);
  font-size: 0.95rem;
  letter-spacing: 0.55em;
  text-indent: 0.55em;
  text-transform: uppercase;
}

.section-heading__ja {
  color: var(--color-main);
  font-family: var(--font-ja);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400;
  letter-spacing: 0.22em;
  text-indent: 0.22em;
  line-height: 1.45;
}

.section-title {
  margin-bottom: 42px;
  color: var(--color-main);
  font-family: var(--font-ja);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400;
  letter-spacing: 0.18em;
  line-height: 1.45;
  text-align: center;
  text-indent: 0.18em;
}

.btn,
.submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  padding: 0.95rem 2.4rem;
  color: var(--color-white);
  background-color: var(--color-btn);
  border: 1px solid var(--color-btn);
  border-radius: 999px;
  transition: 0.3s;
  cursor: pointer;
}

.btn:hover,
.submit-btn:hover {
  background-color: var(--color-white);
  border-color: var(--color-main);
  color: var(--color-main);
}

.btn-outline {
  color: var(--color-main);
  background: transparent;
}

.center {
  margin-top: 40px;
  text-align: center;
}

/*--------------------------------------------------------------
 header
 --------------------------------------------------------------*/

/*--------------------------------------------------------------
 header
 --------------------------------------------------------------*/

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-line);
}

.header-inner {
  width: min(1200px, calc(100% - 32px));
  height: 85px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  max-width: 200px;
  height: 72px;
  width: 100%;
  height: auto;
}

.nav ul {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav a {
  font-size: 13px;
  letter-spacing: 0.08em;
}

.nav a:hover {
  color: var(--color-main);
}

.sp-header {
  display: none;
}

.toggle-btn {
  display: none;
}

/*--------------------------------------------------------------
 mv
 --------------------------------------------------------------*/

.mv {
  width: 100%;
  height: min(720px, calc(100vh - 65px));
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #111;
}

.mv__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 80%;
}

.mv::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.28);
}

.mv__content {
  position: relative;
  z-index: 1;
  width: min(900px, calc(100% - 32px));
  color: var(--color-white);
  text-align: center;
}

.mv__logo-text {
  font-family: var(--font-ja);
  font-size: 4rem;
  font-weight: 400;
  letter-spacing: 0.26em;
  line-height: 1.35;
}

.mv__sub {
  font-family: var(--font-ja);
  letter-spacing: 0.32em;
  text-indent: 0.32em;
}

/*--------------------------------------------------------------
 about
 --------------------------------------------------------------*/

/* 上部タイトル */
.about {
  position: relative;
  background:
    linear-gradient(
      180deg,
      rgba(247, 243, 237, 0.72) 0%,
      rgba(255, 255, 255, 0) 42%
    ),
    var(--color-bg);
}

.about__inner {
  position: relative;
}

.about__head {
  width: min(800px, 100%);
  margin-inline: auto;
  margin-bottom: 54px;
  text-align: center;
  font-family: var(--font-ja);
}

.about__lead {
  margin-top: 18px;
  line-height: 2.1;
  letter-spacing: 0.16em;
}

/* 本文＋写真 */
.about__content {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.94fr);
  gap: 58px;
  align-items: center;
}

.about__text {
  padding: 34px 0 34px 34px;
  border-left: 1px solid var(--color-accent);
}

.about__text p {
  margin-bottom: 28px;
  line-height: 2.05;
  letter-spacing: 0.12em;
}

.about__text p:last-child {
  margin-bottom: 0;
}

.about__text span {
  color: #000;
  font-size: 1.08em;
  font-weight: 700;
  background: linear-gradient(transparent 62%, rgba(184, 137, 74, 0.24) 62%);
}

.about__image {
  position: relative;
}

.about__image::before {
  content: "";
  position: absolute;
  right: -18px;
  bottom: -18px;
  width: 76%;
  height: 76%;
  border: 1px solid rgba(184, 137, 74, 0.72);
}

.about__image img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  box-shadow: 0 18px 42px rgba(15, 17, 17, 0.1);
}

/* 特徴カード */
.about__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 66px;
}

.about-card {
  position: relative;
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  gap: 18px;
  min-height: 132px;
  padding: 24px 22px;
  background: #fff;
  border: 1px solid var(--color-line);
}

.about-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: var(--color-accent);
}

.about-card__icon {
  display: grid;
  place-items: center;
  width: 58px;
  aspect-ratio: 1;
  flex-shrink: 0;
  border: 1px solid rgba(184, 137, 74, 0.45);
  color: var(--color-accent-dark);
  font-family: var(--font-base);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.about-card__icon img {
  display: none;
}

.about-card:nth-child(1) .about-card__icon::before {
  content: "01";
}

.about-card:nth-child(2) .about-card__icon::before {
  content: "02";
}

.about-card:nth-child(3) .about-card__icon::before {
  content: "03";
}

.about-card__text h3 {
  margin-bottom: 8px;
  color: #111;
  font-family: var(--font-ja);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.55;
}

.about-card__text p {
  color: #333;
  font-family: var(--font-ja);
  font-size: 0.9rem;
  line-height: 1.8;
  letter-spacing: 0.1em;
}

/* products */
.products {
  background: var(--color-white);
}

.products__lead {
  margin-top: -18px;
  margin-bottom: 42px;
  text-align: center;
  font-family: var(--font-ja);
  font-size: clamp(1rem, 2vw, 1.3rem);
  letter-spacing: 0.16em;
  color: var(--color-main);
}

.products__list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  align-items: stretch;
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  background: var(--color-bg);
  border: 1px solid var(--color-line);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(15, 17, 17, 0.08);
}

.product-card__image {
  aspect-ratio: 1 / 1;
  background: #d9d9d9;
  overflow: hidden;
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s;
}

.product-card:hover .product-card__image img {
  transform: scale(1.04);
}

.product-card__body {
  padding: 18px 15px 20px;
  flex: 1;
}

.product-card__title {
  margin-bottom: 10px;
  font-family: var(--font-ja);
  font-size: clamp(0.92rem, 1.05vw, 1rem);
  line-height: 1.6;
  letter-spacing: 0.08em;
  color: var(--color-main);
}

.product-card__text {
  font-size: 0.8rem;
  line-height: 1.78;
  letter-spacing: 0.06em;
}

/* shop banner */
.shop-banner {
  width: 100%;
  padding: 40px 20px;
  background: #fff;
}

.shop-banner__link {
  display: block;
  max-width: 1200px;
  margin: 0 auto;
  color: inherit;
  text-decoration: none;
}

.shop-banner__inner {
  position: relative;
  min-height: 360px;
  padding: 50px 60px;
  overflow: hidden;
  border: 2px solid #1f1f1f;
  background:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.96) 0%,
      rgba(255, 255, 255, 0.9) 42%,
      rgba(255, 255, 255, 0.2) 60%,
      rgba(255, 255, 255, 0) 100%
    ),
    url("./images/kombu-banner.png") center right / cover no-repeat;
}

/* 内側の細い線 */
.shop-banner__inner::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid #1f1f1f;
  pointer-events: none;
}

/* 角の飾り */
.shop-banner__inner::after {
  content: "";
  position: absolute;
  inset: 18px;
  background:
    linear-gradient(
        45deg,
        transparent 42%,
        #1f1f1f 42%,
        #1f1f1f 48%,
        transparent 48%
      )
      left top / 34px 34px no-repeat,
    linear-gradient(
        -45deg,
        transparent 42%,
        #1f1f1f 42%,
        #1f1f1f 48%,
        transparent 48%
      )
      right top / 34px 34px no-repeat,
    linear-gradient(
        -45deg,
        transparent 42%,
        #1f1f1f 42%,
        #1f1f1f 48%,
        transparent 48%
      )
      left bottom / 34px 34px no-repeat,
    linear-gradient(
        45deg,
        transparent 42%,
        #1f1f1f 42%,
        #1f1f1f 48%,
        transparent 48%
      )
      right bottom / 34px 34px no-repeat;
  pointer-events: none;
  opacity: 0.9;
}

.shop-banner__text {
  position: relative;
  z-index: 2;
  max-width: 620px;
  color: #111;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
}

.shop-banner__sub {
  margin: 0 0 20px;
  font-size: 1.3rem;
  letter-spacing: 0.12em;
  font-weight: 500;
}

.shop-banner__title {
  margin: 0;
  font-size: clamp(56px, 4vw, 96px);
  line-height: 1.15;
  letter-spacing: 0.08em;
  font-weight: 500;
}

.shop-banner__line {
  display: flex;
  align-items: center;
  gap: 18px;
  width: min(520px, 100%);
  margin: 32px 0 28px;
}

.shop-banner__line span {
  display: block;
  height: 1px;
  flex: 1;
  background: #1f1f1f;
}

.shop-banner__line i {
  width: 12px;
  height: 12px;
  border: 2px solid #1f1f1f;
  transform: rotate(45deg);
}

.shop-banner__url {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: clamp(22px, 2vw, 36px);
  letter-spacing: 0.03em;
}

.shop-banner__badge {
  position: absolute;
  right: 80px;
  bottom: 58px;
  z-index: 2;
  width: 170px;
  height: 170px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: rgba(22, 22, 22, 0.92);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.35);
}

.shop-banner__badge-icon {
  font-size: 32px;
  margin-bottom: 4px;
}

/* hover */
.shop-banner__link:hover .shop-banner__inner {
  opacity: 0.94;
}

/* instagram */
.instagram {
  background: var(--color-bg);
}

.instagram__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.instagram__item {
  aspect-ratio: 1;
  background: #d9d9d9;
  overflow: hidden;
}

.instagram__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.instagram__item:hover img {
  transform: scale(1.05);
}

.instagram__note {
  margin-top: 16px;
  text-align: center;
  color: #777;
  font-size: 0.82rem;
}

/* blog */
.blog {
  background: var(--color-white);
}

.blog__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.blog-card {
  background: var(--color-bg);
  border: 1px solid var(--color-line);
  transition: 0.3s;
}

.blog-card:hover {
  transform: translateY(-4px);
}

.blog-card__image {
  aspect-ratio: 4 / 3;
  background: #d9d9d9;
  overflow: hidden;
}

.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card__body {
  padding: 16px;
}

.blog-card__date {
  margin-bottom: 8px;
  color: var(--color-accent-dark);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
}

.blog-card__title {
  font-family: var(--font-ja);
  font-size: 0.95rem;
  line-height: 1.7;
  letter-spacing: 0.1em;
}

/* access */
/*--------------------------------------------------------------
 access
 --------------------------------------------------------------*/

/* dl全体を中央に置く */
.access-list {
  width: min(850px, calc(100% - 32px));
  margin: 0 auto 64px;
}

/* dt/dd の1行 */
.access-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid #ddd;
  text-align: left;
}

.access-item dt {
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.access-item dd {
  margin: 0;
  line-height: 1.9;
}

/* Googleマップを全幅 */

.access-map iframe {
  width: 100%;
  display: block;
}

/*--------------------------------------------------------------
 contact
 --------------------------------------------------------------*/
.contact {
  background: var(--color-white);
  margin-bottom: 80px;
}

.contact-lead {
  margin-bottom: 40px;
  text-align: center;
}

.contact-form {
  width: min(760px, 100%);
  margin-inline: auto;
}

.form-item {
  margin-bottom: 24px;
}

.form-item label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  letter-spacing: 0.08em;
}

.form-item label span {
  margin-left: 8px;
  padding: 2px 8px;
  color: var(--color-white);
  background: #db6464;
  border-radius: 999px;
  font-size: 12px;
}

input,
textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--color-line);
  background: #fff;
  font: inherit;
}

textarea {
  min-height: 180px;
  resize: vertical;
}

.submit-btn {
  width: 220px;
  margin: 16px auto 0;
  display: flex;
}

/* footer */
.footer {
  padding-block: 42px 24px;
  background: var(--color-footer);
  color: var(--color-white);
  text-align: center;
}

.footer__logo {
  margin-bottom: 18px;
  font-family: var(--font-ja);
  font-size: 1.2rem;
  letter-spacing: 0.2em;
  text-indent: 0.2em;
}

.footer__info {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  line-height: 2;
  letter-spacing: 0.08em;
}

.footer__sns {
  display: inline-block;
  margin-top: 16px;
  padding-bottom: 2px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.65);
  font-size: 0.82rem;
}

.footer__copy {
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

/* responsive */
@media (max-width: 1024px) {
  .inner {
    width: min(100% - 40px, 1100px);
  }

  /*header*/
  .header-inner {
    display: none;
  }

  .sp-header__inner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--color-bg);
    z-index: 32;
    transition: background-color 0.5s ease;
  }

  body.admin-bar .sp-header__inner {
    top: 32px;
  }

  /* スクロール後：白枠だけ消す */
  .header.is-scrolled .sp-header__inner {
    background-color: transparent;
  }

  /* ロゴを入れている左側エリア */
  .sp-header {
    width: auto;
    height: 100%;

    display: flex;
    align-items: center;

    background-color: transparent;
    z-index: 31;

    transition:
      opacity 0.5s ease,
      visibility 0.5s ease;
  }

  /* =========================
  LOGO
========================= */

  .sp-logo {
    max-width: 180px;
    position: relative;
    opacity: 1;
    visibility: visible;
    transition:
      opacity 0.5s ease,
      visibility 0.5s ease;
  }

  /* スクロール後：ロゴを消す */
  .header.is-scrolled .sp-logo {
    opacity: 0;
    visibility: hidden;
  }

  /* =========================
  NAV MENU
========================= */

  .nav-menu {
    display: block;
    width: 100%;
    height: 100%;

    background-color: var(--color-bg);

    position: fixed;
    top: 0;
    left: 0;

    z-index: 20;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition:
      opacity 0.6s ease,
      visibility 0.6s ease;
  }

  .nav-menu__inner {
    width: min(980px, calc(100% - 40px));
    min-height: 100%;
    display: flex;
    flex-direction: column;
    margin-inline: auto;
    padding: 110px 0 42px;
  }

  .nav-menu__reserve {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 18px;
    margin-bottom: 38px;
    padding: 20px 24px;
    border: 1px solid var(--color-green);
  }

  .nav-menu__reserve-text {
    font-family: var(--font-ja);
    font-size: clamp(1.05rem, 2.4vw, 1.45rem);
    font-weight: 700;
    line-height: 1.5;
  }

  .nav-menu__reserve-button {
    background: linear-gradient(135deg, #341370 0%, #080163 100%);
    box-shadow: 0 8px 0 rgba(93, 233, 149, 0.24);
    border: 2px solid #1b0c35;
    border-radius: 12px;
  }

  .nav-menu__reserve-button:hover {
    color: var(--color-green);
    background: var(--color-white);
    border-color: var(--color-green);
    transform: translateY(3px);
    box-shadow: 0 6px 0 rgba(93, 233, 149, 0.22);
  }

  .nav-menu .nav-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 48px;
    padding: 0;
    border-top: 1px solid var(--color-line);
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0;
  }

  .nav-menu .nav-list li {
    padding: 0;
    border-bottom: 1px solid var(--color-line);
  }

  .nav-menu .nav-list li:hover {
    transform: none;
    text-shadow: none;
  }

  .nav-menu .nav-list a {
    display: grid;
    grid-template-columns: 120px 1fr;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    color: var(--color-text);
    font-size: 1rem;
    line-height: 1.5;
  }

  .nav-menu .nav-list a span {
    color: #888;
    font-family: var(--font-base);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.16em;
  }

  .nav-menu .nav-list a:hover {
    color: var(--color-green);
  }

  /* メニューを開いた時 */
  .open .nav-menu {
    width: 100%;
    height: 100%;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  /* 通常時：メニュー内ロゴは非表示 */
  .nav-logo {
    display: none;
  }

  /* メニューOPEN時：メニュー内ロゴを表示 */
  .open .nav-logo {
    display: block;
    max-width: 180px;
    position: absolute;
    top: 20px;
    left: 0;
  }

  /* =========================
  CIRCLE BG
========================= */

  .circle-bg {
    position: fixed;
    z-index: 3;

    width: 100px;
    height: 100px;
    border-radius: 50%;

    background: var(--color-bg);

    transform: scale(0);
    right: -50px;
    top: -50px;

    transition: transform 0.5s ease;
  }

  .circle-bg.circleactive {
    transform: scale(50);
  }

  /* =========================
  TOGGLE BUTTON
========================= */

  .toggle-btn {
    display: block;

    width: 80px;
    height: 80px;

    /*
    ここが重要：
    sp-header__innerがfixedなので、
    toggle-btn自体はrelativeでOK。
    これで白枠内の右側に横並びになる。
  */
    position: relative;

    color: var(--color-white);
    background-color: var(--color-btn);

    cursor: pointer;
    z-index: 40;
    flex-shrink: 0;

    transition: all 0.5s ease;
  }

  .toggle-btn span {
    display: block;
    width: 50%;
    height: 2px;

    background-color: var(--color-white);

    position: absolute;
    left: 50%;

    transform: translateX(-50%);
    transition: all 0.5s ease;
  }

  .toggle-btn span:nth-child(1) {
    top: 30%;
  }
  .toggle-btn span:nth-child(2) {
    top: 45%;
  }
  .toggle-btn span:nth-child(3) {
    top: 60%;
  }

  .toggle-btn span:nth-of-type(3)::after {
    content: "Menu"; /*3つ目の要素のafterにMenu表示を指定*/
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 0.6rem;
    text-transform: uppercase;
  }

  .open .toggle-btn span:nth-child(1) {
    transform: translateX(-50%) rotate(-45deg);
    top: 40%;
    width: 40%;
  }
  .open .toggle-btn span:nth-child(2) {
    opacity: 0;
  }
  .open .toggle-btn span:nth-child(3) {
    transform: translateX(-50%) rotate(45deg);
    top: 40%;
    width: 40%;
  }

  .open .toggle-btn span:nth-of-type(3)::after {
    content: "Close"; /*3つ目の要素のafterにClose表示を指定*/
    transform: translateY(0) rotate(-45deg);
    top: 10px;
    left: 15px;
  }

  .open .toggle-btn {
    z-index: 1000;
  }

  .nav-menu {
    overflow-y: auto;
    background: var(--color-bg);
  }

  .mv {
    height: min(640px, calc(100vh - 62px));
  }

  .mv__logo-text {
    font-size: 3.2rem;
  }

  .section {
    padding-block: 62px;
  }

  .about__content {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .about__text {
    padding-block: 28px;
  }

  .about__image {
    width: min(620px, 100%);
    margin-inline: auto;
  }

  .about__cards {
    gap: 18px;
  }

  .about-card {
    grid-template-columns: 48px 1fr;
    gap: 16px;
    padding: 22px 18px;
  }

  .about-card__icon {
    width: 48px;
  }

  .products__list {
    display: flex;
    gap: 18px;
    margin-inline: -20px;
    padding-inline: 20px;
    padding-bottom: 8px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }

  .product-card {
    flex: 0 0 260px;
    scroll-snap-align: start;
  }

  .blog__list,
  .instagram__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /*アクセス*/
  .shop-banner__inner {
    min-height: 320px;
    padding: 48px 36px;
    background:
      linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.96) 0%,
        rgba(255, 255, 255, 0.85) 52%,
        rgba(255, 255, 255, 0.15) 100%
      ),
      url("./images/kombu-banner.png") center right / cover no-repeat;
  }

  .shop-banner__sub {
    font-size: 26px;
  }

  .shop-banner__badge {
    right: 36px;
    bottom: 36px;
    width: 130px;
    height: 130px;
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  body {
    letter-spacing: 0.08rem;
  }

  .section {
    padding-block: 56px;
  }

  /* header */
  .header-inner {
    gap: 12px;
  }

  .sp-logo {
    max-width: 150px;
  }
  .open .nav-logo {
    max-width: 150px;
  }

  .nav ul {
    gap: 8px 14px;
  }

  .nav a {
    font-size: 11px;
  }

  .mv {
    height: 520px;
  }

  .mv__logo-text {
    font-size: 2.55rem;
    letter-spacing: 0.2em;
    text-indent: 0.2em;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .about__head {
    margin-bottom: 38px;
  }

  .about__lead {
    text-align: left;
  }

  .about__lead br,
  .about__text br {
    display: none;
  }

  .about__text {
    padding: 26px 0 26px 24px;
  }

  .about__image::before {
    right: -10px;
    bottom: -10px;
  }

  .about__image img {
    aspect-ratio: 16 / 10;
  }

  .about__cards {
    grid-template-columns: 1fr;
    margin-top: 44px;
  }

  .about-card {
    min-height: auto;
    padding: 22px;
  }

  .product-card {
    flex-basis: 240px;
  }

  .product-card__body {
    padding: 18px 16px 20px;
  }

  .shop-banner {
    padding-block: 26px 56px;
  }

  /* アクセス */
  .access-list {
    width: min(100% - 32px, 850px);
    margin-bottom: 48px;
  }

  .access-item {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 18px 0;
  }

  .access-item dt {
    text-align: left;
  }

  .access-item dd {
    font-size: 0.95rem;
  }

  .access-map iframe {
    height: 360px;
  }

  /* お問い合わせ */
  .contact-lead {
    font-size: 0.95rem;
    line-height: 2;
  }

  .submit-btn {
    width: 100%;
  }

  .shop-banner {
    padding: 28px 16px;
  }

  .shop-banner__inner {
    min-height: 420px;
    padding: 40px 24px 180px;
    background:
      linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.98) 0%,
        rgba(255, 255, 255, 0.88) 46%,
        rgba(255, 255, 255, 0.18) 100%
      ),
      url("./images/kombu-banner.png") center bottom / cover no-repeat;
  }

  .shop-banner__sub {
    font-size: 20px;
    margin-bottom: 14px;
  }

  .shop-banner__title {
    font-size: 46px;
  }

  .shop-banner__line {
    margin: 22px 0 20px;
  }

  .shop-banner__url {
    gap: 12px;
    font-size: 16px;
    word-break: break-all;
  }

  .shop-banner__cart {
    font-size: 28px;
  }

  .shop-banner__badge {
    right: 24px;
    bottom: 24px;
    width: 110px;
    height: 110px;
    font-size: 15px;
  }

  .shop-banner__badge-icon {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  body {
    letter-spacing: 0.05rem;
  }

  .inner {
    width: min(100% - 24px, 1100px);
  }

  .section {
    padding-block: 48px;
  }

  /* header */

  .nav-menu__inner {
    width: min(100% - 28px, 420px);
  }

  .nav-menu__reserve {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 28px;
    padding: 18px 16px;
  }

  .nav-menu__reserve-button {
    width: 100%;
  }

  .nav-menu .nav-list {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .nav-menu .nav-list a {
    grid-template-columns: 96px 1fr;
    gap: 14px;
    padding: 16px 0;
  }

  .nav-menu__foot {
    display: grid;
    gap: 8px;
    padding-top: 26px;
  }

  .mv {
    height: 420px;
  }

  .mv__sub {
    font-size: 0.82rem;
    letter-spacing: 0.18em;
    text-indent: 0.18em;
  }

  .mv__logo-text {
    font-size: 2rem;
    letter-spacing: 0.14em;
    text-indent: 0.14em;
  }

  .section-heading__en {
    letter-spacing: 0.32em;
    text-indent: 0.32em;
  }

  .section-heading__ja {
    font-size: 1.65rem;
    letter-spacing: 0.1em;
    text-indent: 0.1em;
  }

  .about__lead,
  .about__text p,
  .contact__lead {
    line-height: 1.9;
  }

  .about__text {
    padding: 0;
    border-left: 0;
  }

  .about__image::before {
    display: none;
  }

  .about-card {
    grid-template-columns: 44px 1fr;
    gap: 14px;
    padding: 20px 16px;
  }

  .about-card__icon {
    width: 44px;
  }

  .about-card__text h3 {
    font-size: 1rem;
  }

  .about-card__text p {
    font-size: 0.85rem;
  }

  .products__lead {
    margin-bottom: 30px;
    text-align: left;
  }

  .products__list {
    margin-inline: -12px;
    padding-inline: 12px;
  }

  .product-card {
    flex-basis: 78%;
  }

  .product-card__image {
    aspect-ratio: 16 / 10;
  }

  .shop-banner {
    padding-block: 18px 48px;
  }

  .shop-banner .inner {
    width: min(100% - 16px, 1100px);
  }

  .blog__list,
  .instagram__grid {
    grid-template-columns: 1fr;
  }

  /* アクセス */
  .access-map iframe {
    height: 320px;
  }

  .btn,
  .submit-btn {
    width: 100%;
    min-width: auto;
  }
}
