@charset "UTF-8";

/* ==============================
  Base
============================== */

:root {
  --color-blue: #005bac;
  --color-pink: #f48baa;
  --color-pink-light: #ffe8ef;
  --color-navy: #003f7d;
  --color-text: #1d1d1d;
  --color-bg: #ffffff;
  --color-dark: #000000;
  --color-gray: #f4f4f4;
  --color-gray02: #717071;
  --color-border: #e6e6e6;
  --font-serif: "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;
  --font-sans: "Yu Gothic", "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;

  --container: 1080px;
  --radius: 14px;

  /* PCヘッダー高 */
  --header-height-pc: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-text);
  font-family: var(--font-serif);
  line-height: 1.8;
  background: var(--color-bg);
}

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

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

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.visible-sp {
  display: none;
}

.visible-pc {
  display: inline-block;
}

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.section {
  padding: 90px 0;
}

.section-dark {
  color: #fff;
  background: var(--color-dark);
}

.section-title {
  margin: 0 0 28px;
  color: var(--color-blue);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.25;
}

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

.stripe {
  display: grid;
  place-items: center;
  letter-spacing: 0.04em;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.2)),
    repeating-linear-gradient(
      -45deg,
      #f3f3f3 0 10px,
      #e9e9e9 10px 20px
    );
  border: 1px solid var(--color-border);
}

.hero-visual,
.about-image,
.menu-image,
.drink-image,
.gallery-image,
.access-map,
.instagram-qr,
.instagram-image {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

/* ==============================
  Header
============================== */

.site-header {
  height: var(--header-height-pc);
  background: #fff;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 40px, 1120px);
  height: var(--header-height-pc);
  min-height: var(--header-height-pc);
  margin-inline: auto;
  gap: 32px;
  padding: 0 15px;
}

.logo {
  width: 140px;
  padding: 0px 0px;
}

.logo img {
  display: block;
  width: 100%;
  height: auto;
}

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

.global-nav a {
  position: relative;
  display: block;
  padding-bottom: 6px;
  color: var(--color-blue);
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 700;
}

/* 小さいピンクの〇 */
.global-nav a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-pink);
}

/* 〇の右に伸びる線 */
.global-nav a::after {
  content: "";
  position: absolute;
  left: 10px;
  bottom: 2px;
  width: 100%;
  height: 1px;
  background: var(--color-pink);
}

.nav-toggle,
.nav-button {
  display: none;
}

/* ==============================
  Hero
============================== */

.hero {
  position: relative;
  display: flex;
  align-items: center;

  min-height: calc(100svh - var(--header-height-pc));
  padding: 28px 0 48px;

  background: url("/images/fv.jpg") no-repeat center / cover;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 46px;
  background: #fff;
  clip-path: polygon(0 38%, 100% 0, 100% 100%, 0 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;

  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: center;

  width: min(100% - 40px, 1120px);
  margin-inline: auto;
  gap: 32px;
}

.hero-title {
  margin: 0;
  color: var(--color-blue);

  /* 最大58pxから50pxへ縮小 */
  font-size: clamp(32px, 4vw, 50px);

  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.06em;
}

.hero-title span {
  color: var(--color-pink);
}

.hero-text {
  margin: 20px 0 0;
  font-size: 16px;
  line-height: 1.85;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 190px;
  min-height: 46px;
  padding: 10px 22px;

  border-radius: 999px;

  font-family: var(--font-sans);
  font-weight: 700;
  line-height: 1;

  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  opacity: 0.85;
}

.button-pink {
  color: #fff;
  background: var(--color-pink);
}

.button-white {
  color: var(--color-blue);
  background: #fff;
  border: 2px solid var(--color-blue);
}

.hero-visual {
  width: 100%;

  /* 520px固定をやめ、画面高に応じて縮小 */
  height: clamp(340px, 58vh, 500px);
  min-height: 0;

  border: 0;
  border-radius: 0;
}

/* ==============================
  About
============================== */

.about {
  padding-top: 70px;
  background: #fff;
  background: url(/images/fv02.jpg) no-repeat center / cover;
}

.about-title {
  position: relative;
  display: inline-block;
  padding-bottom: 20px;
}

.about-title::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 10px;
  bottom: 0;
  left: 0;
  background: url(/images/line.png) no-repeat center / contain;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 56px;
}

.section-text p {
  margin: 0 0 16px;
  font-size: 17px;
}

.about-text {
  margin-bottom: 0 !important;
}

.about-image {
  min-height: 310px;
  border-radius: 0 0 0 80px;
}

/* ==============================
  Concept
============================== */

.concept-list {
  display: grid;
  /*grid-template-columns: repeat(3, minmax(0, 300px));*/
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
  justify-content: center;
}

.concept-title {
  position: relative;
  display: inline-block;
  padding-bottom: 20px;
  text-align: center;
  width: 173px;
  margin: auto;
  display: flex;
}

.concept-title::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 7px;
  bottom: 0;
  left: 0;
  background: url(/images/line.png) no-repeat center / cover;
}

.concept-card {
  padding: 34px 28px 38px;
  color: var(--color-text);
  text-align: center;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 0 8px #80808070;
}

.concept-icon {
  display: grid;
  place-items: center;
  width: 180px;
  height: auto;
  margin: 0 auto 18px;
  font-size: 42px;
  background: var(--color-pink-light);
  border-radius: 50%;
}

.concept-card h3 {
  margin: 0 0 12px;
  color: var(--color-gray02);
  font-size: 27px;
  line-height: 1.4;
  font-weight: 600;
}

.concept-card p {
  margin: 0;
  font-size: 15px;
  color: var(--color-gray02);
  font-weight: 500;
}

@media screen and (min-width: 769px) and (max-width: 1100px) {
  .concept-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(16px, 2.5vw, 32px);
  }

  .concept-card {
    min-width: 0;
    padding:
      clamp(22px, 2.8vw, 34px)
      clamp(16px, 2.2vw, 28px)
      clamp(24px, 3vw, 38px);
  }
}

/* ==============================
  Menu
============================== */

.menu-section {
  padding-top: 60px;
}

.menu-title {
  position: relative;
  display: inline-block;
  padding-bottom: 20px;
  text-align: center;
  width: 173px;
  margin: auto;
  display: flex;
  justify-content: center;
}

.menu-title::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 7px;
  bottom: 0;
  left: 0;
  background: url(/images/line.png) no-repeat center / cover;
}

.menu-list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 42px 36px;
  margin-top: 56px;
}

/* 上の3つ */
.menu-card:nth-child(1),
.menu-card:nth-child(2),
.menu-card:nth-child(3) {
  grid-column: span 2;
}

/* 下の2つを中央寄せ */
.menu-card:nth-child(4) {
  grid-column: 2 / span 2;
}

.menu-card:nth-child(5) {
  grid-column: 4 / span 2;
}

/* 最後の1つを全体幅 */
.menu-card:nth-child(6) {
  grid-column: 1 / -1;
}

.menu-card {
  overflow: hidden;
  color: var(--color-text);
  background: #fff;
  border-radius: 8px 8px 0 0;
  box-shadow: 0 0 8px #80808070;
}

.menu-image {
  aspect-ratio: 4 / 3;
  border: 0;
   border-radius: 8px 8px 0 0;
}

.menu-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
}

.menu-body {
  padding: 16px 18px 20px;
}

.menu-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.menu-head h3 {
  margin: 0;
  font-size: 27px;
  line-height: 1.35;
  color: var(--color-gray02);
}

.menu-head p {
  margin: 0;
  color: var(--color-pink);
  font-family: var(--font-sans);
  font-size: 25px;
  font-weight: 500;
  white-space: nowrap;
}

.menu-body > p {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
}



.menu-card:nth-child(6) {
  grid-column: 1;
}

.drink-banner {
  position: relative;
  display: grid;
  grid-template-columns: 170px 1fr 260px;
  align-items: center;
  gap: 22px;
  margin-top: 60px;
  padding: 18px 24px;
  color: var(--color-text);
  border-radius: 18px;
  height: 180px;
  overflow: visible;
}

.drink-label {
  position: absolute;
  left: -8px;
  top: -18px;
  display: grid;
  place-items: center;
  width: 175px;
  height: 78px;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  background: var(--color-pink);
  border-radius: 10px;
  transform: rotate(-7deg);
}

.drink-image {
  grid-column: 2 / 3;
  position: relative;
  top: -52px;
    height: 177px;
  max-height: 177px;
  min-height: 140px;
  border: 0;
}

  .drink-image-pc {
    display: block;
    width: 100%;
    height: 100%;
  }

  .drink-image-pc img {
    display: block;
    width: 115%;
    max-width: none;
    height: auto;
    margin-left: -7.5%;
  }

.drink-menu {
  padding: 7px 16px;
  color: #fff;
  font-family: var(--font-sans);
  background: rgb(123 123 123 / 48%);
  border-radius: 8px;
  position: relative;
  top: -18px;
}

.drink-menu dl {
  margin: 0;
}

.drink-menu dl > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid rgba(255,255,255,.45);
  padding-top: 8px;
}

.drink-menu dl > div:last-child {
  border-bottom: 0;
}

.drink-menu dt,
.drink-menu dd {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  padding-bottom: 4px;
}

.drink-menu dt span {
  font-size: 11px;
  font-weight: 500;
}

@media screen and (min-width: 769px) and (max-width: 1100px) {
  .drink-banner {
    grid-template-columns: 150px minmax(420px, 1fr) 240px;
    gap: 14px;
  }

  .drink-image {
    top: 0;
    height: 190px;

    display: flex;
    align-items: center;
    justify-content: center;
  }

  .drink-image-pc img {
    display: block;
    width: clamp(420px, 42vw, 500px);
    min-width: 420px;
    max-width: none;
    height: auto;
    margin-inline: auto;
  }
}
/* 769px〜970px：画像＋メニューを縦積み */
@media screen and (min-width: 769px) and (max-width: 970px) {
  .drink-banner {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    height: auto;
    min-height: 0;
    padding: 60px 24px 28px;
    gap: 12px;
  }

  .drink-label {
    position: absolute;
    top: -16px;
    left: -8px;
    z-index: 2;
  }

  .drink-image {
    position: static;
    grid-column: 1;
    width: 100%;
    height: 220px;
    min-height: 0;
    max-height: none;

    display: flex;
    align-items: center;
    justify-content: center;
  }

  .drink-image-pc {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .drink-image-pc img {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
  }

  .drink-image img {
    object-fit: contain;
  }

  .drink-menu {
    position: static;
    grid-column: 1;
    width: min(100%, 520px);
    margin: 0 auto;
  }
}

/* ==============================
  Gallery
============================== */

.gallery-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  margin-top: 56px;
  justify-content: center;
}

.gallery-image {
  aspect-ratio: 4 / 3;
  border: 0;
}

.gallery-title {
  position: relative;
  display: inline-block;
  padding-bottom: 20px;
  text-align: center;
  width: 173px;
  margin: auto;
  display: flex;
  justify-content: center;
}

.gallery-title::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 7px;
  bottom: 0;
  left: 0;
  background: url(/images/line.png) no-repeat center / cover;
}

/* ==============================
  Access
============================== */

.access-title {
  position: relative;
  display: inline-block;
  padding-bottom: 20px;
  text-align: center;
  width: 173px;
  margin: auto;
  display: flex;
  justify-content: center;
}

.access-title::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 7px;
  bottom: 0;
  left: 0;
  background: url(/images/line.png) no-repeat center / cover;
}

.access-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.9fr 0.85fr;
  align-items: center;
  gap: 42px;
  margin-top: 56px;
}

/* 左側ロゴ */
.access-logo {
  width: 180px;
  margin-bottom: 28px;
}

.access-logo img {
  width: 100%;
  height: auto;
  display: block;
}

/* 情報リスト */
.access-info dl {
  margin: 0;
}

.access-info dl > div {
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}

/* dtアイコン */
.access-info dt {
  margin: 0;
  padding-top: 3px;
}

.access-info dt img {
  width: 25px;
  height: 25px;
  object-fit: contain;
  display: block;
}

/* テキスト */
.access-info dd {
  margin: 0;
  font-size: 17px;
  line-height: 1.8;
}

/* 地図 */
.access-map {
  min-height: 300px;
  border: 0;
  overflow: hidden;
}

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

.access-map img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  display: block;
}

/* 右の丸いバッジ */
.access-badge {
  max-width: 220px;
  width: 100%;
  margin-inline: auto;
}

.access-badge p {
  margin: 0;
}

.access-badge img {
  width: 100%;
  height: auto;
  display: block;
}

/* ==============================
  Instagram / Footer
============================== */

.instagram {
  padding: 25px 0 25px;
  background: url(/images/bg01.png) no-repeat center / cover;
  width: 100%;
}

.instagram-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  align-items: flex-end;
  gap: 32px;
  justify-content: flex-end;
}

.instagram h2 {
  margin: 0 0 8px;
  color: var(--color-blue);
  font-size: clamp(24px, 3vw, 34px);
}

.instagram p {
  margin: 0 0 18px;
  font-size: 19px;
}

.instagram-link {
  display: inline-flex;
  align-items: center;
  width: 100%;
  padding: 10px 24px;
  color: var(--color-pink);
  font-family: var(--font-sans);
  font-size: 26px;
  font-weight: 700;
  background: #fff;
  max-width: 385px;
  border: 1px solid var(--color-pink);
  border-radius: 8px;
}

.instagram-copy {
  display: flex;
  align-items: flex-end;
}

.instagram-qr {
  max-width: 200px;
  aspect-ratio: 1;
  border: 0;
  justify-self: center;
  padding-left: 20px;
  margin-bottom: -17px;
}

.instagram-qr span {
  display: block;
  width: 100%;
  height: 100%;
}

.instagram-qr img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.site-footer {
  padding: 16px;
  text-align: center;
}

.site-footer small {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--color-gray02);
}

/* ==============================
  Responsive : 768px
============================== */

@media screen and (max-width: 768px) {
  section[id] {
    scroll-margin-top: 80px;
  }
  .container {
    width: min(100% - 28px, var(--container));
  }

  .section {
    padding: 64px 0;
  }

  .visible-sp {
    display: block !important;
  }

  .visible-pc {
    display: none !important;
  }

  .section-title {
    margin-bottom: 22px;
    font-size: 30px;
  }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: 64px;
  background: #fff;
  border: none;
}

.header-inner {
  position: relative;
  z-index: 1002;

  display: flex;
  align-items: center;
  justify-content: space-between;

  width: min(100% - 28px, 1120px);
  height: 64px;
  min-height: 64px;
  margin-inline: auto;

  background: #fff;
}

/* ロゴ */
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  width: 132px;
  height: 64px;
  padding: 5px 15px;
}

.logo img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 54px;
  object-fit: contain;
}

/* ハンバーガーボタン */
.nav-button {
  position: relative;
  z-index: 1003;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  gap: 5px;

  width: 48px;
  height: 40px;

  background: var(--color-pink);
  cursor: pointer;
}

.nav-button span {
  display: block;
  width: 22px;
  height: 2px;

  background: #fff;
  border-radius: 999px;
  transform-origin: center;

  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

/* ×マーク */
.nav-toggle:checked + .nav-button span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle:checked + .nav-button span:nth-child(2) {
  opacity: 0;
}

.nav-toggle:checked + .nav-button span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* 右から出るメニュー */
.global-nav {
  position: fixed;
  z-index: 1001;
  top: 64px;
  right: 0;
  left: auto;

  width: min(82%, 320px);
  height: calc(100dvh - 64px);
  padding: 32px 24px;

  overflow-y: auto;

  background: rgba(255, 255, 255, 0.98);
  border: none;
  box-shadow: -6px 8px 20px rgba(0, 0, 0, 0.12);

  transform: translateX(100%);
  visibility: hidden;
  pointer-events: none;

  transition:
    transform 0.3s ease,
    visibility 0.3s ease;
}

/* メニューを開く */
.nav-toggle:checked ~ .global-nav {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
}

.global-nav ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.global-nav li {
  width: 100%;
}

.global-nav a {
  display: block;
  width: 100%;
  min-width: 0;
  padding: 8px 0 10px;
  font-size: 16px;
}

  /* Hero */
  .hero {
    padding: 36px 15px 64px;
    position: relative;
    margin-bottom: 0;
  }

  .hero::after {
    display: none;
    content: none;
  }

  .hero-inner {
    width: min(100% - 28px, 1120px);
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 34px;
    line-height: 1.5;
  }

  .hero-text {
    margin-top: 20px;
    font-size: 15px;
  }

  .hero-buttons {
    gap: 12px;
  }

  .hero-buttons .button {
     max-width: 216px;
  }


  .button {
    width: 100%;
    min-width: auto;
  }

  .hero-visual {
    min-height: 300px;
    order: -1;
    border-radius: 20px;
  }

  /* About */
  .about {
  position: relative;
  isolation: isolate;
  margin-top: -45px;
  padding-top: 50px;
  background: none;
}

/* 背景画像＋斜めの境界 */
.about::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: url("/images/fv02.jpg") no-repeat 57% -39px / cover;
  clip-path: polygon(
    0 30px,
    100% 0,
    100% 100%,
    0 100%
  );
}
  .about-title::after {
  background-size:130%;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 15px;
  }

  .section-text p {
    font-size: 15px;
  }

  .about-image {
    min-height: 230px;
    border-radius: 20px;
  }

  .about .about-text {
    margin-bottom: 0 !important;
  }

  /* Concept */
  #concept {
    padding-top: 0 !important;
  }
  .concept-title {
    width: 120px;
  }
  .concept-list {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 36px;
  }
  .concept-card {
    padding: 28px 22px;
    min-width: 280px;
    margin: auto;
  }
  .concept-card h3 {
    color: var(--color-gray02);
    font-size: 28px;
  }



  /* Menu */
  .menu-section {
      padding-top: 0 !important;
  }
  .menu-title {
    width: 135px;
  }
  .menu-title::after {
    background-size: 300%;
  }
  .menu-list {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 36px;
  }
  .menu-card {
    max-width: 300px;
    margin: auto;
  }
  .menu-card:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
    margin: auto;
  }
  .menu-head h3 {
    font-size: 25px;
    color: var(--color-gray02);
  }
  .menu-head p {
    font-size: 25px;
    font-weight: 500;
  }
  .menu-body > p {
    font-size: 16px;
    line-height: 1.6;
  }
  /* Drink banner */
.drink-banner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 20px;
  width: 100%;
  height: auto;
  min-height: 0;
  margin-top: 70px;
  padding: 36px 20px 36px;
  border-radius: 18px;
  max-width: 328px;
  margin: 70px auto 0;
}

/* 左上のピンクラベル */
.drink-label {
  position: absolute;
  z-index: 2;
  top: -16px;
  left: -9px;
  display: grid;
  place-items: center;
  width: 122px;
  height: 64px;
  font-size: 17px;
  line-height: 1.35;

  transform: rotate(-6deg);
}

/* ドリンク画像 */
.drink-image {
  position: static;
  grid-column: auto;

  width: min(100%, 300px);
  height: auto;
  min-height: 0;
  max-height: none;

  margin: 10px auto 0;
}

.drink-image span {
  display: block;
  width: 100%;
}

.drink-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* メニュー */
.drink-menu {
  position: static;
  margin-top: -35px;
  width: 100%;
  padding: 12px 16px;
  color: #fff;
  background: rgb(123 123 123 / 55%);
  border-radius: 8px;
}

.drink-menu dl {
  margin: 0;
}

.drink-menu dl > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;

  padding: 10px 0;
}

.drink-menu dt,
.drink-menu dd {
  margin: 0;
  padding: 0;
}

.drink-menu dt {
    margin: 0;
    font-size: 17px;
    letter-spacing: 0;
    font-weight: 500;
    line-height: 1.4;
    padding-bottom: 4px;
}
.drink-menu dd {
   font-size: 18px;
   font-weight: 500;
}
.drink-menu dt span {
  font-size: 16px;
}

  /* Gallery */
  #gallery {
    padding-top: 0 !important;
  }
  .gallery-list {
    grid-template-columns: 1fr;
    grid-template-columns: minmax(0, 320px);
    justify-content: center;
    gap: 30px;
    margin-top: 36px;
  }
  .gallery-image img {
    display: block;
    margin: auto;
  }

  /* Access */
  #access {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .access-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 36px;
  }
  /* 1番上：マップ */
  .access-map {
    order: 1;
  }

  /* 2番目：ロゴ・住所・営業時間など */
  .access-info {
    order: 2;
  }

  /* 3番目：下の丸い画像 */
  .access-badge {
    order: 3;
  }

  .access-logo {
    font-size: 28px;
    margin: auto auto 22px;
  }
  .access-info dl {
    max-width: 320px;
        /* display: flex; */
    margin: auto;
  }
  .access-info dl > div {
    grid-template-columns: 82px 1fr;
    gap: 12px;
    grid-template-columns: 40px 1fr;
  }

  .access-map {
    min-height: auto;
    max-width: 340px;
    margin: auto;
  }

  .access-badge {
    width: 180px;
  }

  .access-badge p {
    font-size: 18px;
  }

  /* Instagram */
  .instagram {
    padding: 48px 0 0;
    background: url("/images/footer-bg-sp.jpg") no-repeat center top / cover;
    width: 100%;
  }

  .instagram-sp {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
    padding-top: 88px;
  }

  /* 写真 */
  .instagram-image-sp {
    position: relative;
    width: 100%;
  }

  .instagram-image-sp > img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 350px;
    margin: auto;
  }

.instagram-image-sp {
  position: relative;
  width: min(100%, 350px);
  margin-inline: auto;
}

.instagram-image-sp > .insta-img01 {
  display: block;
  width: 100%;
  height: auto;
}

.instagram-badge {
  position: absolute;
  z-index: 2;
  top: -25px;
  right: -13px;
  width: min(141px, 40vw);
}

.instagram-badge img {
  display: block;
  width: 100%;
  height: auto;
}

  .instagram-bg-white {
    width: auto;
    margin-inline: -14px;
    padding: 40px 15px;
    background: #fff;
    box-sizing: border-box;
  }

  /* QR */
  .instagram-qr-sp {
    width: 150px;
    margin-inline: auto;
    padding-bottom: 10px;
  }

  .instagram-qr-sp img {
    display: block;
    width: 100%;
    height: auto;
  }

  /* テキスト */
  .instagram-text-sp {
    text-align: center;
  }

  .instagram-text-sp h2 {
    margin: 0 0 0px;
    color: var(--color-blue);
    font-size: 24px;
    line-height: 1.5;
  }

  .instagram-text-sp p {
    margin: 0 0 18px;
    font-size: 14px;
    line-height: 1.8;
  }

  .instagram-text-sp .instagram-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 282px;
    margin-inline: auto;
    padding: 10px 18px;
  }

  .instagram-text-sp .instagram-link img {
    display: block;
    width: 100%;
    max-width: 300px;
    height: auto;
  }

  .site-footer {
    padding: 6px;
    text-align: center;
    background: #fcedf1;
  }
}