/* font */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");

@font-face {
  font-family: "LINESeedJP OTF";
  font-weight: 300;
  src: url("../font/LINESeedJP_OTF_Rg.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "LINESeedJP OTF";
  font-weight: 700;
  src: url("../font/LINESeedJP_OTF_Bd.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "LINESeedJP OTF";
  font-weight: 800;
  src: url("../font/LINESeedJP_OTF_Eb.woff2") format("woff2");
  font-display: swap;
}

/* ベーススタイル  ------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html:focus-within {
  scroll-behavior: smooth;
}

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

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
  width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

ul,
ol {
  list-style: none;
}

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

table {
  border-collapse: collapse;
  border-spacing: 0;
}

fieldset,
legend {
  padding: 0;
  margin: 0;
  border: 0;
}

button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-size: 16px;

  @media screen and (max-width: 428px) {
    font-size: 15px;
  }

  @media screen and (max-width: 375px) {
    font-size: 14px;
  }
}

/* Scrollbar Styles */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 4px;

  &:hover {
    background: #a8a8a8;
  }
}

[id^="a_"] {
  @media screen and (max-width: 1420px) {
    scroll-margin-top: 54px;
  }
}

[id^="nav"]:target {
  scroll-margin: 64px;
}

main {
  flex: 1;
  padding: 0;
  max-width: 740px;
  margin: 0 auto;
  width: 100%;
  margin-top: 64px;
  background-color: white;
  position: relative;

  @media screen and (max-width: 428px) {
    margin-top: 48px;
    padding: 0;
    min-height: calc(100vh - 48px - 56px);
    padding-bottom: 56px;
  }

  @media screen and (max-width: 375px) {
    min-height: calc(100vh - 48px - 52px);
    padding-bottom: 52px;
  }
}
/* ベーススタイル ここまで ------------------------- */

/* nav Items Section */
/* チェックボックスを非表示 */
#menu-toggle {
  display: none;
}

/* ハンバーガーメニューボタン */
.hamburger-btn {
  display: none;
  position: fixed;
  bottom: 6px;
  right: 50%;
  transform: translate(50%, 0);
  z-index: 200;
  width: 90%;
  height: 50px;
  background: #ea5514;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  margin: auto;
}

.hamburger-btn--deco {
  display: flex;
  gap: 4px;
  flex-direction: column;
  align-items: center;
}

.hamburger-btn--deco span {
  display: block;
  width: 20px;
  height: 3px;
  background-color: #ffffff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger-btn-text {
  color: #fff;
  leading-trim: both;
  text-edge: cap;
  font-family: "Noto Sans JP";
  font-size: 1rem;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
}

/* チェックされた時のハンバーガーアイコン */
#menu-toggle:checked ~ .hamburger-btn--deco span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

#menu-toggle:checked ~ .hamburger-btn--deco span:nth-child(2) {
  opacity: 0;
}

#menu-toggle:checked ~ .hamburger-btn--deco span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* body全体でモーダルが開いているかチェック */
body:has(input[id^="modal-open--"]:checked) .hamburger-btn {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* モーダルが開いている時はheaderも隠す */
body:has(input[id^="modal-open--"]:checked) .header,
body:has(input[id^="modal-open--"]:checked) #header {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* ナビゲーションコンテナ */

.nav-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  background: linear-gradient(to right, #dbfeff, #fff2aa);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* ページ内リンククリックでメニューを閉じる */
.nav-item[href^="#"] {
  position: relative;
}

.nav-item[href^="#"]::before {
  content: "";
  position: absolute;
  inset: 0;
}

.nav-item[href^="#"]:target ~ #menu-toggle {
  display: none;
}

.nav-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.nav-item__icon {
  width: 20px;
  height: 23px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-item__icon svg {
  width: 100%;
  height: 100%;
}

.nav-item__text {
  font-weight: 800;
  font-size: 16px;
  color: #550a25;
  flex: 1;
  line-height: normal;
}

.schedule-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 30px;
  border-radius: 999px;
  background: #ea5514;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* ページ内リンククリックでメニューを閉じる */
.schedule-btn[href^="#"] {
  position: relative;
}

.schedule-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.schedule-btn__icon {
  width: 20px;
  height: 23px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.schedule-btn__text {
  font-weight: 800;
  font-size: 16px;
  color: #fff;
  flex: 1;
  line-height: normal;
}

.social-section {
  display: flex;
  gap: 10px;
  padding: 0 16px;
  margin-block: 16px;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 1100px;
  border: 2px solid #1a1a1a;
  background-color: #1a1a1a;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
}

.social-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.social-btn__icon {
  width: 14px;
  height: 14px;
}

.social-btn__text {
  font-size: 13px;
  font-weight: bold;
  color: white;
  line-height: 1;
}

.images-section {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0 16px;
}

.image-container {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  background-color: #e0e0e0;
}

.image-container--large {
  aspect-ratio: 700 / 200;
}

.image-container--fair {
  aspect-ratio: 1560 / 446;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2);
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.image-placeholder {
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #999999;
  color: white;
  font-size: 24px;
  font-weight: 800;
  border-radius: 8px;
  text-decoration: none;
}

/* オーバーレイ */
.nav-overlay {
  display: none;
}

/* モバイル対応 */
@media (max-width: 1000px) {
  .hamburger-btn {
    display: flex;
  }

  .nav {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    max-height: 100vh;
    overflow-y: auto;
    transition: bottom 0.3s ease;
    padding: 20px 0 100px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 16px 16px 0 0;
    background: #1e1eb9;
  }

  /* チェックされた時にメニューを表示 */
  #menu-toggle:checked ~ .nav {
    bottom: 0;
  }

  /* オーバーレイ */
  .nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    cursor: pointer;
  }

  #menu-toggle:checked ~ .nav-overlay {
    opacity: 1;
    visibility: visible;
    display: block;
  }

  /* メニューが開いている時はbodyのスクロールを防止 */
  #menu-toggle:checked ~ * {
    overflow: auto;
  }
}

/* 閉じるボタン */
.nav-close-btn {
  display: none;
}

.side-wrap__left {
  position: relative;
}

.side-wrap__left-cmk50th {
  position: absolute;
  width: 8rem;
  top: 8%;
  left: 10%;
}

/* モバイル対応 */
@media (max-width: 1024px) {
  .hamburger-btn {
    display: flex;
  }

  /* side-wrapは非表示 */
  .side-wrap__left {
    display: none;
  }

  /* navをモバイル用に全画面表示 */
  .nav {
    position: fixed;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #1e1eb9;
    overflow-y: auto;
    transition: top 0.3s ease;
    padding: 80px 0 80px;
    z-index: 150;
  }

  /* チェックされた時にメニューを表示 */
  #menu-toggle:checked ~ * .nav,
  #menu-toggle:checked ~ .nav {
    top: 0;
    padding-inline: 1rem;
  }

  /* 閉じるボタンを画面下部に固定 */
  .nav-close-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 16px;
    color: #fff;
    background-color: #1e1eb9;
    border: none;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    z-index: 151;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    transition: opacity 0.3s ease;
    opacity: 0;
    pointer-events: none;
  }

  #menu-toggle:checked ~ * .nav-close-btn,
  #menu-toggle:checked ~ .nav-close-btn {
    opacity: 1;
    pointer-events: auto;
  }

  .nav-close-btn::before {
    content: "×";
    font-size: 28px;
    line-height: 1;
  }

  /* ハンバーガーボタンをメニュー開いている時は隠す */
  #menu-toggle:checked + .hamburger-btn {
    display: none;
  }

  /* bodyのスクロール防止（メニューが開いている時） */
  body:has(#menu-toggle:checked) {
    overflow: hidden;
    position: fixed;
    width: 100%;
  }
}

/* Recreated styles for Figma node 59:1188 */
:root {
  --blue: #1e1eb9;
  --deep: #181d53;
  --accent: #ea5514;
  --bg-pale: #fff9d7;
  --text-dark: #181d53;
  --purple: #7e3ab2;
  --orange: #ca8c35;

  --goodsCatalogCard-bg: #ffffff;
  --goodsCatalogCard-shadow: #3e757f9e;
  --goodsCatalogCard-zoom-bg: #000000;
  --goodsCatalogCard-zoom-text: #ffffff;

  --modal01-bg: #0000008e;
  --modal01-shadow: #0000008e;
  --modal01-detail-shadow: #b5b5b58e;
  --modal01-content-bg: #ffffff;
  --modal01-img-nav: #333333;
  --modal01-scrollbar: #1d1b1b;

  --f-default: "LINESeedJP OTF", sans-serif;
}

* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  color: var(--text-dark);
}

.partition {
  height: 1px;
  background: #7f90af;
  width: 95%;
  margin: auto;
}

.wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px;
  background: #fff9d7;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.all-wrap--2 .wrap {
  background: #cff5ff;
}

.all-wrap--3 .wrap {
  background: #ffdede;
}

.all-wrap--4 .wrap {
  background: #e3f3d6;
}

/* Promo header */
.promo {
  border-radius: 4px;
}
.promo-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: center;
}
.promo-number {
  color: var(--blue);
  font-weight: 900;
  font-size: 70px;
  line-height: 1;
  letter-spacing: 2px;
  font-family: var(--f-default);
}

.promo-deco {
  color: var(--blue);
  font-weight: 100;
  font-size: 70px;
  line-height: 1;
  letter-spacing: 2px;
  font-family: auto;
}

.promo-title,
.promo-title--2 {
  margin: 0;
  color: var(--blue);
  font-weight: 900;
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.2;
  font-family: var(--f-default);
  margin-block: auto;
  @media screen and (max-width: 900px) {
  }
}

.promo-title--2 {
  text-align: center;
}

.promo-shop {
  color: #1e1eb9;
  text-align: center;
  font-family: "LINESeedJP OTF";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%; /* 23.4px */
}

.promo-hr {
  color: #7f90af;
}

/* Goods grid */
.goods-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
  @media screen and (max-width: 900px) {
    grid-template-columns: repeat(1, 1fr);
  }
}
.card {
  text-align: center;
}
.card-media {
  position: relative;
  border: 2px solid var(--deep);
  overflow: hidden;
  background: white;
}
.card-media .thumb {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 1/1; /* square */
}
.badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.06);
  color: #666;
  padding: 6px 8px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 700;
}
.zoom {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 28px;
  height: 28px;
  border-radius: 0;
  border: 0;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  cursor: pointer;
}
.zoom img {
  width: 16px;
  height: 16px;
  display: block;
}

.card-title {
  margin: 12px 6px 0 6px;
  color: var(--blue);
  font-weight: 700;
  font-size: 15px;

  color: #181d53;
  text-align: center;
  font-family: "LINESeedJP OTF";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
  letter-spacing: 0.117px;
}

.attention {
  margin-top: 18px;
  text-align: center;
  color: var(--deep);
  font-size: 10px;
  line-height: 1.6;
  width: 340px;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Responsive */
@media screen and (max-width: 900px) {
  .promo-number {
    font-size: 72px;
  }
}
@media screen and (max-width: 600px) {
  .wrap {
    padding: 16px;
  }
  .promo-inner {
    align-items: flex-start;
    flex-wrap: wrap;
  }
  .promo-number {
    font-size: 56px;
  }
  .promo-title {
    font-size: 18px;
  }
  .card-title {
    font-size: 14px;
  }
}

.offer,
.offer--02 {
  padding: 0 20px;
  max-width: 820px;
  margin: 0 auto;
  gap: 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  @media screen and (max-width: 900px) {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media screen and (max-width: 900px) {
  .offer--02 {
    grid-template-columns: repeat(2, 1fr);
    padding: 0;
    gap: 10px;
  }
}

.all-wrap,
.all-wrap--2,
.all-wrap--3,
.all-wrap--4 {
  padding: 2rem 1rem;
}

.offer__container {
  display: flex;
  flex-direction: column;
}

.offer__figure {
  position: relative;
  margin: 0;
  border: 2px solid var(--deep);
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
}
.offer__img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 801/800;
}
.offer__zoom {
  position: absolute;
  right: 8px;
  top: 8px;
  width: 34px;
  height: 34px;
  border-radius: 6px;
  border: 0;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  cursor: pointer;
}
.offer__zoom img {
  width: 18px;
  height: 18px;
  display: block;
}

.offer__bar,
.offer__bar--orange,
.offer__bar--purple {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 8px;
  background: var(--deep);
  color: #fff;
  padding: 10px 12px;
  font-weight: 800;
}

.offer__bar--orange {
  background: var(--orange);
}

.offer__bar--purple {
  background: var(--purple);
}

.offer__bar-number {
  font-size: 18px;
}

.offer__bar-yen {
  font-size: 13px;
}

.offer__bar-suffix {
  font-size: 18px;
}

.offer__body {
  text-align: center;
  padding: 12px 0;
}
.offer__title {
  margin: 0;
  color: var(--deep);
  font-size: 16px;
  font-weight: 700;
}

.offer__meta {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.offer__period--pill {
  background: var(--blue);
  color: #fff;
  padding: 4px 8px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 12px;
}
.offer__period {
  color: var(--deep);
  font-size: 13px;
}

.offer__attention {
  color: var(--deep);
  font-size: 13px;
  display: flex;
}

.offer__attention::before {
  content: "※";
}

/* Responsive */
@media (max-width: 900px) {
  .offer {
    padding: 16px;
  }
  .offer__bar-number {
    font-size: 16px;
  }
}
@media (max-width: 600px) {
  .offer {
    padding: 12px;
  }
  .offer__bar {
    padding: 8px;
  }
  .offer__bar-number {
    font-size: 15px;
  }
  .offer__bar-yen {
    font-size: 12px;
  }
  .offer__bar-suffix {
    font-size: 15px;
  }
  .offer__zoom {
    right: 6px;
    top: 6px;
    width: 30px;
    height: 30px;
  }
  .offer__title {
    font-size: 12px;
  }
}

.offer__text-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.offer__ttl-text,
.offer__ttl-text--02,
.offer__ttl-text--03 {
  color: #181d53;
  text-align: center;
  font-family: "LINESeedJP OTF";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%; /* 26px */
  letter-spacing: 0.117px;
}

.offer__ttl-text--02 {
  text-align: left;
}

.offer__ttl-text--03 {
  font-size: 18px;
}

.product__title {
  margin: 0;
  color: var(--text);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.4px;
}
.product__price {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
}
.product__price-value {
  font-weight: 900;
  font-size: 28px;
  line-height: 1;
  color: var(--text);
}
.product__price-suffix {
  font-weight: 700;
  font-size: 14px;
  color: var(--text);
}

@media (max-width: 480px) {
  .product {
    padding: 18px;
  }
  .product__title {
    font-size: 14px;
  }
  .product__price-value {
    font-size: 20px;
  }
  .product__price-suffix {
    font-size: 12px;
  }
}

.notes__attn {
  text-align: center;
  color: #181d53;
  font-family: "LINESeedJP OTF";
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 13px */
  letter-spacing: 0.576px;
}

/* ///// goods ///////////////////////////////// */
.goods {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.p_goods_popup_area {
  display: flex;
  gap: 1em;
  flex-wrap: wrap;
  justify-content: center;
}

.p_goods_popup_area span {
  display: inline-block;
  width: 42.5%;
}

.b-goodsCatalogCardList {
  display: flex;
  flex-wrap: wrap;
  background-color: var(--goods-bg);
  padding-block: 0 1rem;
  gap: 0.5rem;
}

.b-goodsCatalogCardList * {
  box-sizing: border-box;
}

.b-goodsCatalogCardList > section {
  display: inline-block;
  width: calc(100% / 2 - 0.25rem);
}

.b-goodsCatalogCard:hover {
  opacity: 0.5;
}

.e-goodsCatalogCard__pic {
  position: relative;
  filter: drop-shadow(0px 0px 1px var(--goodsCatalogCard-shadow));
}

.e-goodsCatalogCard__picZoomMark {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 1rem;
  height: 1rem;
  background-color: var(--goodsCatalogCard-zoom-bg);
}

@media (min-width: 769px) {
  .e-goodsCatalogCard__picZoomMark {
    width: 1.5rem;
    height: 1.5rem;
  }
}

.e-goodsCatalogCard__picZoomMark::before,
.e-goodsCatalogCard__picZoomMark::after {
  position: absolute;
  background-color: var(--goodsCatalogCard-zoom-text);
  content: "";
}

.e-goodsCatalogCard__picZoomMark::before {
  top: 50%;
  left: 25%;
  transform: translateY(-50%);
  width: 50%;
  height: 2px;
}

.e-goodsCatalogCard__picZoomMark::after {
  top: 25%;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 50%;
}

.e-goodsCatalogCard__head {
  font-weight: 700;
  font-size: 0.81rem;
  line-height: 1.2;
  font-family: var(--f-base-font);
  letter-spacing: 0;
  word-break: break-all;
}

.e-goodsCatalogCard__price-group {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.1em;
  font-weight: 500;
  font-size: 0.81rem;
  font-family: var(--f-base-font);
  text-align: right;
  white-space: nowrap;
}

.e-goodsCatalogCard__label {
  margin-right: 0.4em;
  font-size: 0.95em;
  font-weight: 500;
  color: #555;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.e-goodsCatalogCard__price {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.1em;
  font-weight: 500;
  font-size: 0.81rem;
  font-family: var(--f-base-font);
  text-align: right;
  white-space: nowrap;
}

.e-goodsCatalogCard__price::before {
  font-size: 0.75em;
  margin-right: 0.1em;
  white-space: nowrap;
  content: "￥";
}

.e-goodsCatalogCard__price::after {
  font-size: 0.8em;
  margin-left: 0.2em;
  color: #888;
  white-space: nowrap;
  content: "(tax in)";
}

/* 価格部分の数字も改行しないように */
.e-goodsCatalogCard__price > .e-goodsCatalogCard__price::before + text,
.e-goodsCatalogCard__price > .e-goodsCatalogCard__price::before + span,
.e-goodsCatalogCard__price > .e-goodsCatalogCard__price::before + .price-value {
  white-space: nowrap;
}

.e-goodsCatalogCard__price:empty {
  display: none;
}

.b-popList {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

.b-popPic {
  width: 48%;
}

/* ///// modal01 ///////////////////////////////// */

.b-noDisplayInput {
  display: none;
}

input[id^="modal-open--"]:checked ~ .b-modal01 {
  visibility: visible;
  opacity: 1;
}

html:has(input[id^="modal-open--"]:checked) {
  overflow: hidden;
  background-color: var(--modal01-scrollbar);
  scrollbar-gutter: stable;
}

/* ///// モーダルレイアウト ///// */
.b-modal01 {
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999 !important;
  width: 100%;
  height: 100%;
  transition: opacity 0.3s, visibility 0.3s;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.e-modal01__closeArea {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: var(--modal01-bg);
  transition: 0.3s;
}

.e-modal01__closeArea:hover {
  opacity: 1;
  transform: none;
}

/* ///// モーダル内コンテンツ ///// */
/* 表 */
.schedule__table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}

.schedule__frame {
  text-align: left;
  border-bottom: 1px solid #a8b7c5;
  border-top: none;
  width: 100%;
  padding: 1rem 0;
  display: flex;
  justify-content: space-between;
  padding: 1rem;
  @media screen and (max-width: 900px) {
    padding: 1rem 0rem;
    flex-direction: column;
    gap: 0.5rem;
    justify-content: flex-start;
  }
}

.schedule__item {
  width: auto;
  display: flex;
  gap: 1rem;
  width: 80%;
  @media screen and (max-width: 900px) {
    justify-content: flex-start;
    width: 100%;
  }
}

.schedule__shop-name,
.schedule__time-ttl,
.schedule__time,
.schedule__exception-ttl,
.schedule__exception {
  color: #181d53;
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  @media screen and (max-width: 900px) {
    width: 50%;
  }
}

.schedule__exception-ttl,
.schedule__exception {
  color: #bd0003;
  width: 50%;
}

.schedule__shop-name {
  width: 40%;
}

/* 画像 */
.l-modal01__content-wrapper {
  position: relative;
  z-index: 1;
  width: 95%;
  border-radius: 8px;
  box-shadow: 0 0 15px var(--modal01-shadow);
  background-color: var(--modal01-content-bg);
  padding-block: 2.5rem 0;
}

@media (min-width: 769px) {
  .l-modal01__content-wrapper {
    width: min(70%, 1000px);
  }
}

.e-modal01__content {
  display: grid;
  grid-template:
    "pic"
    "." 1rem
    "tmb"
    "." 2rem
    "text";
  padding-inline: 2rem;
  padding-bottom: 2rem;
  max-height: 75vh;
  overflow-y: scroll;
}

/* モーダル内の画像コンテナ */
.e-modal01__imgContainer {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
  grid-area: pic;
  filter: drop-shadow(0px 0px 4px var(--modal01-detail-shadow));
}

/* モーダル内の画像 */
.e-modal01__img {
  display: none;
  width: auto;
  height: auto;
}

.e-modal01__img img {
  width: auto;
  max-width: 100%;
  max-height: 500px;
}

@media (min-width: 769px) {
  .e-modal01__img img {
    height: 50dvh;
  }
}

@media (769px <=width <=1279px) {
  .e-modal01__img img {
    max-height: 300px;
  }
}

@keyframes modal01-fade-in {
  0% {
    opacity: 0;
  }

  1% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/* 閉じるボタン */
.e-modal01__closeBtn {
  position: absolute;
  top: 0.5rem;
  right: 0.7rem;
  z-index: 106;
  color: #333333;
  font-weight: bold;
  font-weight: 900;
  font-size: 2rem;
  line-height: 1;
  text-decoration: none;
  transition: 0.3s;
}

.e-modal01__closeBtn:hover {
  opacity: 0.5;
  cursor: pointer;
}

/* サムネイル */
.e-modal01__thumbnailList {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  grid-area: tmb;
  gap: 1rem;
}

.e-modal01__thumbnail {
  cursor: pointer;
  transition: 0.3s;
  filter: drop-shadow(0px 0px 2px var(--modal01-detail-shadow));
}

.e-modal01__thumbnail:hover {
  opacity: 0.5;
}

.e-modal01__thumbnail img {
  width: auto;
  max-height: 50px;
}

.e-modal01__detailTextContainer {
  display: grid;
  flex-shrink: 0;
  max-height: 26dvh;
  padding-bottom: 0.2rem;
  grid-area: text;
  grid-template: "head" "detail" "." 0.5rem "text" "." 1.5rem "price" 1rem "price1";
  padding-inline: 0.5rem;
}

.e-modal01__detailTextContainer:has(
    .e-modal01__detailText:last-of-type:empty
  ):has(.e-modal01__detailPrice:empty) {
  min-height: 3.9rem;
  padding-bottom: 0.5rem;
  grid-template: "head" min-content "detail" auto;
}

.e-modal01__detailTextContainer::-webkit-scrollbar {
  width: 3px;
  height: 3px;
  background-color: transparent;
}

.e-modal01__detailTextContainer::-webkit-scrollbar-track {
  background-color: transparent;
}

.e-modal01__detailTextContainer::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background-color: #858585;
}

.e-modal01__detailHead {
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.2;
  font-family: var(--f-base-font);
  grid-area: head;
}

.e-modal01__detailSubHead {
  display: flex;
  flex-direction: column;
  margin-top: 0.5rem;
  grid-area: detail;
}

@media (min-width: 769px) {
  .e-modal01__detailSubHead {
    flex-direction: row;
    gap: 1rem;
  }
}

.e-modal01__detailSubHead__text {
  font-size: 0.88rem;
  line-height: 1;
  font-family: var(--f-base-font);
}

.e-modal01__detailSubHead__text:empty {
  display: none;
}

.l-modal01__detailText-wrapper {
  display: flex;
  flex-direction: column;
  padding-top: 0.5rem;
  border-top: solid 1px;
  grid-area: text;
  gap: 1rem;
}

@media (min-width: 769px) {
  .l-modal01__detailText-wrapper {
    flex-direction: row;
  }
}

.e-modal01__detailText {
  font-size: 1rem;
  line-height: 1.2;
  font-family: var(--f-base-font);
}

.e-modal01__detailPrice {
  font-weight: 500;
  font-size: 1.25rem;
  font-family: var(--f-base-font);
  text-align: right;
  grid-area: price;
}

.e-modal01__detailPrice1 {
  font-weight: 500;
  font-size: 1.25rem;
  font-family: var(--f-base-font);
  text-align: right;
  grid-area: price1;
  line-height: 2rem;
}

.e-modal01__detailPrice::before,
.e-modal01__detailPrice::after,
.e-modal01__detailPrice1::before,
.e-modal01__detailPrice1::after {
  font-size: 0.8em;
}

.e-modal01__detailPrice::before,
.e-modal01__detailPrice1::before {
  content: "";
}

.e-modal01__detailPrice::after,
.e-modal01__detailPrice1::after {
  content: "円(税込)";
}

a.e-modal01__buyBtn {
  background: var(--c-03);
  color: var(--c-03-con);
  font-weight: bold;
  padding: 0.5em 1em;
  border-radius: 5px;
  text-align: center;
}

.l-modal01__detailText-wrapper:has(.e-modal01__detailText:empty),
.e-modal01__detailPrice:empty,
.e-modal01__detailPrice1:empty {
  display: none;
}

/* ナビゲーションボタン */
.e-modal01__navBtn {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  z-index: 10;
  transform: translateY(-50%);
  width: 35%;
  height: 100%;
  background-color: initial;
  font-size: 1rem;
  text-decoration: none;
  transition: 0.3s;
  animation-name: modal01-fade-in;
  animation-duration: 0.5s;
}

.e-modal01__navBtn::before {
  display: block;
  clip-path: polygon(17% 0, 100% 50%, 20% 100%, 0 100%, 77% 50%, 0 0);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 0.7rem;
  background-color: var(--modal01-img-nav);
  content: "";
  aspect-ratio: 1/3;
}

.e-modal01__navBtn:hover {
  opacity: 0.5;
  cursor: pointer;
}

.e-modal01__navBtn--prev {
  left: 2%;
}

.e-modal01__navBtn--prev::before {
  left: 0;
  transform: scale(-1) translateY(50%);
}

@media (min-width: 769px) {
  .e-modal01__navBtn--prev::before {
    left: 1rem;
  }
}

.e-modal01__navBtn--next {
  right: 2%;
}

.e-modal01__navBtn--next::before {
  right: 0;
}

@media (min-width: 769px) {
  .e-modal01__navBtn--next::before {
    right: 1rem;
  }
}

/* 固定される下部ボタンエリア */
.modal-footer {
  position: sticky;
  bottom: 0;
  background: white;
  padding: 1rem;
  text-align: center;
  border-top: 1px solid #e0e0e0;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
  border-radius: 0 0 8px 8px;
}

.modal-main__ttl {
  color: #181d53;
  text-align: center;
  font-family: "Segoe UI";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 36px;
  padding-block: 0 1rem;
}

/* ///// モーダル個別設定 ///// */
.b-modal01 .e-modal01__img:only-of-type {
  display: block;
  animation-name: modal01-fade-in;
  animation-duration: 0.5s;
}

.b-modal01:has(.e-modal01__img:only-of-type) .e-modal01__thumbnailList {
  display: none;
}

.b-modal01:has(.e-modal01__imgContainer input:nth-of-type(1):checked)
  .e-modal01__img:nth-of-type(1),
.b-modal01:has(.e-modal01__imgContainer input:nth-of-type(2):checked)
  .e-modal01__img:nth-of-type(2),
.b-modal01:has(.e-modal01__imgContainer input:nth-of-type(3):checked)
  .e-modal01__img:nth-of-type(3),
.b-modal01:has(.e-modal01__imgContainer input:nth-of-type(4):checked)
  .e-modal01__img:nth-of-type(4),
.b-modal01:has(.e-modal01__imgContainer input:nth-of-type(5):checked)
  .e-modal01__img:nth-of-type(5),
.b-modal01:has(.e-modal01__imgContainer input:nth-of-type(6):checked)
  .e-modal01__img:nth-of-type(6),
.b-modal01:has(.e-modal01__imgContainer input:nth-of-type(7):checked)
  .e-modal01__img:nth-of-type(7),
.b-modal01:has(.e-modal01__imgContainer input:nth-of-type(8):checked)
  .e-modal01__img:nth-of-type(8),
.b-modal01:has(.e-modal01__imgContainer input:nth-of-type(9):checked)
  .e-modal01__img:nth-of-type(9),
.b-modal01:has(.e-modal01__imgContainer input:nth-of-type(10):checked)
  .e-modal01__img:nth-of-type(10),
.b-modal01:has(.e-modal01__imgContainer input:nth-of-type(11):checked)
  .e-modal01__img:nth-of-type(11) {
  display: block;
  animation-name: modal01-fade-in;
  animation-duration: 0.5s;
}

/**** link **********************/
.p_btn_link {
  display: flex;
  flex-direction: column;
  align-items: center;

  gap: 0.7em;
}

.p_btn_link [class*="c_btn-"] a {
  padding: 0.55em 2em 0.65em;
}

.p_logo_melon {
  margin-top: 3em;
  text-align: center;
}

.p_logo_melon a {
  width: 40%;
  height: auto;

  aspect-ratio: 115/36;
  /* filter:var(--c-logo-melon); */
}

.p_credit {
  margin-top: 1em;
}

.p_credit p {
  font-weight: 400;
  text-align: center;
}

.b-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-top: solid 1px var(--head-border);
  padding-block: 2rem 1rem;
  gap: 1rem;
}

a.b-linkXBtn {
  background-color: var(--btn--linkXBtn-bg);
  color: var(--btn--linkXBtn-text);
  letter-spacing: 0;
}

a.b-linkContactBtn {
  width: 100%;
  background-color: var(--btn--linkContactBtn-bg);
  color: var(--btn--linkContactBtn-text);
  font-size: 0.75rem;
  letter-spacing: 0;
}

@media (min-width: 769px) {
  a.b-linkContactBtn {
    width: -moz-fit-content;
    width: fit-content;
    font-size: 0.8rem;
  }
}

a.b-logo--melon {
  width: 40%;
  height: auto;
  margin: 0 auto;
  aspect-ratio: 115/36;
  filter: var(--c-logo-melon);
}

/* インフォメーション ------------------------- */

.info {
  display: flex;
  flex-direction: column;
  width: 90%;
  margin: auto;
  align-items: center;
  gap: 2rem;
  padding: 1rem 0 5rem;
}

.info__banner-area {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.info__ttl {
  color: #181d53;
  text-align: center;
  leading-trim: both;
  text-edge: cap;
  font-family: "LINESeedJP OTF";
  font-size: clamp(1.5rem, 3vw, 3rem);
  font-style: normal;
  font-weight: 800;
  line-height: 130%; /* 65px */
}

.info__text {
  color: #181d53;
  text-align: center;
  leading-trim: both;
  text-edge: cap;
  font-family: "LINESeedJP OTF";
  font-size: clamp(0.8rem, 1.5vw, 1.5rem);
  font-style: normal;
  font-weight: 800;
  line-height: 130%; /* 33.8px */
}

/* メインコンテンツ ------------------------- */
.main-image {
  width: 100%;
}

/* メインコンテンツ ここまで------------------------- */
