/* 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;
  background-color: #f5f5f5;

  @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;
  }
}

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;
  }
}
/* ベーススタイル ここまで ------------------------- */

/* ハンバーガーメニュー */
.hamburger-menu {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: #338a41;
  border-radius: 50%;
  z-index: 1000;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.hamburger-menu:hover {
  background: #2a5a33;
  transform: scale(1.05);
}

.hamburger-menu span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

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

.hamburger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

@media screen and (max-width: 740px) {
  .hamburger-menu {
    display: flex;
  }

  .side-wrap__right {
    position: fixed;
    top: 0;
    right: 0;
    width: 100vw;
    height: 0;
    z-index: 999;
    overflow-y: auto;
    animation: slideIn 0.3s ease;
  }

  .side-wrap__right.open {
    display: block;
  }

  @keyframes slideIn {
    from {
      opacity: 0;
      transform: translateY(-20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .nav {
    padding: 80px 20px 40px;
  }

  .nav-section,
  .social-section,
  .images-section {
    margin-bottom: 30px;
  }

  .nav-item {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    font-weight: 600;
    text-align: left;
  }

  .nav-item:hover {
    color: #ffd700;
  }

  .nav-item__icon {
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-right: 10px;
    vertical-align: middle;
  }

  .nav-item__text {
    vertical-align: middle;
  }

  .badge {
    margin-left: 8px;
    padding: 4px 8px;
    font-size: 0.75rem;
    border-radius: 3px;
  }

  .social-btn {
    display: block;
    padding: 12px 0;
    color: white;
    text-align: left;
  }

  .social-btn__icon {
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-right: 10px;
    vertical-align: middle;
  }

  .social-btn__text {
    vertical-align: middle;
  }

  .image-placeholder {
    color: white;
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    margin-bottom: 15px;
  }

  .image-container img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
  }
}

/* メインコンテンツ ------------------------- */

:root {
  --font-main: "LINESeedJP OTF", sans-serif;
  --c-main-text: #550a25;

  --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;
}

.main-image {
  width: 100%;
}

.main-h2 {
  margin-top: 3rem;
}

/* 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);
}

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

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

.nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  background: linear-gradient(to right, #fff9d9, #ffdbdc);
  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-bottom: 32px;
}

.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: #a72839;
  }

  /* チェックされた時にメニューを表示 */
  #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: #a72839;
    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;
  }

  /* 閉じるボタンを画面下部に固定 */
  .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: #a72839;
    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%;
  }
}

/* モーダルが開いている時はハンバーガーボタンを完全に隠す */
body:has(input.b-noDisplayInput:checked) .hamburger-btn {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
  z-index: -1 !important;
}

/* ハンバーガーメニューも同様に */
body:has(input.b-noDisplayInput:checked) .hamburger-menu {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
  z-index: -1 !important;
}

/* ナビゲーションメニューも隠す */
body:has(input.b-noDisplayInput:checked) .nav {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

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

.badge {
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: bold;
  color: white;
  white-space: nowrap;
  flex-shrink: 0;
}

.badge--new {
  background-color: #ff0014;
}

.badge--update {
  background-color: #006fff;
}

/* Social Buttons Section */
.social-section {
  display: flex;
  gap: 10px;
  padding: 0 16px;
  margin-bottom: 32px;
}

.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;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-btn__icon svg {
  width: 100%;
  height: 100%;
}

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

/* Images Section */
.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;
  font-family: "Rounded Mplus 1c", sans-serif;
}

/* Responsive */
@media (max-width: 480px) {
  .container {
    max-width: 100%;
    border-radius: 0;
  }

  .nav-item__text {
    font-size: 15px;
  }
}

/* セクション ------------------------- */

.promo-group {
  display: flex;
  gap: 1rem;
  row-gap: 3rem;
  margin-block: 3rem;
  flex-wrap: wrap;
  width: 100%;
  margin: 0rem auto;
}

#container > div:nth-child(4) > div,
body > div.base > main > div.promo-group {
  width: 90%;
}

.promo,
.promo--cp,
.promo--point,
.promo--fare {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  align-self: stretch;
  position: relative;
  width: 90%;
  margin: auto;
}

.promo--cp,
.promo--point {
  padding-bottom: 1rem;
  border: solid 2px var(--c-main-text);
}

.promo--cp-cont,
.promo--point-cont,
.promo--fare-cont {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

.promo--fare {
  padding-bottom: 1rem;
  border: solid 2px var(--c-main-text);
  width: calc((100% - 1rem) / 2);
  /* height: -webkit-fill-available; */
  margin: 0;

  @media screen and (max-width: 700px) {
    width: 100%;
  }
}

.promo__top-img {
  width: clamp(50px, 88vw, 41.5rem);
  position: relative;
  overflow: hidden;
  @media screen and (max-width: 700px) {
    width: 100%;
  }
}

.promo__top-background {
  background: url(images/coupon_632.webp);
  background-size: 100%;
  width: 100%;
  height: 100%;
  position: absolute;
  filter: blur(9px);
  top: -9px;
  left: 0;
  z-index: -1;
}

.promo__top-img2 {
  width: 100%;
  background-size: auto;
  position: relative;
}

.promo__top-img img,
.promo__top-img img {
  max-width: 446px;
  margin: auto;
}

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

.promo__title,
.promo__title--fare {
  overflow: hidden;
  color: var(--c-main-text);
  text-overflow: ellipsis;
  font-family: var(--font-main);
  font-size: 24px;
  font-style: normal;
  font-weight: 800;
  line-height: 130%; /* 31.2px */
  letter-spacing: 0.117px;
}

.promo__title--fare {
  font-size: 14px;
}

.promo__text {
  color: var(--c-main-text);
  font-family: "LINESeedJP OTF";
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%; /* 16.9px */
  letter-spacing: 0.117px;
}

.promo__visual {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-self: stretch;
  width: 95%;
  margin: 0 auto;
}

.promo__day-ttl,
.promo__day-ttl--coupon,
.promo__service-ttl,
.promo__genre-ttl {
  display: flex;
  width: 113px;
  padding: 3px 8px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background: #fff1a4;
  color: var(--c-main-text);
  font-family: var(--font-main);
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 105%; /* 12px */
  letter-spacing: 0.117px;
}

.promo__day-ttl--coupon {
  background: #ffbad4;
}

.promo__service-ttl {
  background: #d0f0d5;
}

.promo__genre-ttl {
  background: #dff8ff;
}

.promo__day-content {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;

  @media screen and (max-width: 700px) {
    flex-wrap: wrap;
  }
}

.promo__day-content--fare {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
}

.promo__day-item,
.promo__service-item,
.promo__genre-item {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;

  @media screen and (max-width: 700px) {
    flex-wrap: wrap;
  }
}

.promo__day,
.promo__service,
.promo__genre,
.promo__day--fare {
  color: var(--c-main-text);
  font-family: var(--font-main);
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 105%; /* 15px */
  letter-spacing: 0.117px;
}

.promo__service,
.promo__genre,
.promo__day--fare {
  font-size: 12px;
}

.promo__pickup-box,
.promo__pickup-box--02 {
  display: flex;
  background: #ddffee;
  align-items: center;
  width: 100%;
  margin: auto;
  gap: 1rem;
  margin-top: 2rem;
  justify-content: center;
  padding: 1rem;
  position: relative;
  @media screen and (max-width: 700px) {
    flex-wrap: wrap;
    justify-content: center;
    padding: 1rem 0;
  }
}

.promo__pickup-box--02 {
  background: #fff3dd;
  flex-direction: column;
}

.promo__pickup-text,
.promo__pickup-text--02 {
  color: #181d53;
  text-align: center;
  font-family: var(--font-main);
  font-size: 20px;
  font-style: normal;
  font-weight: 800;
  line-height: 130%;
  margin: auto;
}

.promo__pickup-text--02 {
  color: var(--c-main-text);
}

.promo__text-color--red {
  color: #ff0000;
}

.promo__pickup-img {
  width: 30%;
  margin: -3rem 0 -1rem -3rem;
  @media screen and (max-width: 700px) {
    margin: -3rem 0 0 0;
  }
}

.promo__pickup-img--02 {
  position: absolute;
  width: 14%;
  top: -1rem;
  left: -1rem;
  @media screen and (max-width: 700px) {
    width: 23%;
    top: 65%;
    left: -4%;
  }
}

.promo__btn-box {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  justify-content: center;
  @media screen and (max-width: 700px) {
    gap: 0.5rem;
  }
}

.promo__point-box {
  display: flex;
  gap: 1rem;
  @media screen and (max-width: 700px) {
    gap: 0.5rem;
    flex-direction: column;
  }
}

.promo__point-group {
  display: flex;
  gap: 0.5rem;
}

.promo__point {
  color: var(--c-main-text);
  font-family: var(--f-default);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 20px */
  letter-spacing: 0.117px;
}

.promo__point::after {
  content: "ポイント";
  color: var(--c-main-text);
  font-family: var(--f-default);
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 12px */
  letter-spacing: 0.117px;
}

.promo__point-people,
.promo__point-people--blue {
  color: #fff;
  font-family: var(--f-default);
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 15px */
  letter-spacing: 0.117px;
  background: #bd0003;
  display: flex;
  padding: 3px 8px;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.promo__point-people--blue {
  background: #a72839;
}

.no-active-items-message {
  overflow: hidden;
  color: var(--c-main-text);
  text-overflow: ellipsis;
  font-family: var(--font-main);
  font-size: 24px;
  font-style: normal;
  font-weight: 800;
  line-height: 130%;
  letter-spacing: 0.117px;
  margin: auto;
}
/* クーポン　------------------------- */

.coupon-end::after {
  content: "終了しました";
  position: absolute;
  width: 100%;
  height: 100%;
  color: #fff;
  display: flex;
  font-size: 16px;
  background: #000000a1;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin: -1.1% -4.2%;
  border-radius: 10vw;
}

.coupon-end::after {
  content: "終了しました";
  position: absolute;
  width: 100%;
  height: 100%;
  color: #fff;
  display: flex;
  font-size: 16px;
  background: #000000a1;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin: -1.1% -4.2%;
  border-radius: 10vw;
  cursor: ;
}

.coupon-end {
  max-width: 95%;
  margin: 1% auto 0;
  border-radius: 100px;
  outline-offset: -3px;
  outline: 3px solid #a72839;
  display: flex;
  justify-content: space-between;
  padding: 1% 4%;
  position: relative;
  width: 95%;
  align-items: center;
  cursor: default;
}

.coupon_info {
  padding: 10px 0;
  color: #a72839;
  font-size: 16px;
  text-align: center;
  font-weight: bold;
  background-color: #f5f5f5;
}

.success-msg {
  display: none;
  position: fixed;
  width: 40%;
  height: 48px;
  line-height: 40px;
  background-color: #a72839;
  color: #ffffff;
  top: 10%;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
  border-radius: 5px;
}

.success-msg p {
  font-size: 16px;
  font-weight: 600;
  font-family: "Noto Sans JP", serif;
  color: #ffffff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
}

@media screen and (max-width: 781px) {
  .success-msg {
    width: 300px;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

.promo__coupon,
.promo__coupon--02,
.promo__coupon--03,
.promo__coupon--04,
.promo__coupon--05 {
  display: flex;
  width: calc((100% - 1rem) / 2);
  align-items: center;
  border: solid 2px;
  color: #e60055;
  border-radius: 10px;
  gap: 0.5rem;
  justify-content: space-between;
  padding-right: 0.8rem;

  @media screen and (max-width: 781px) {
    width: 100%;
  }
}

.promo__coupon:hover,
.promo__coupon--02:hover,
.promo__coupon--03:hover,
.promo__coupon--04:hover,
.promo__coupon--05:hover {
  opacity: 0.6;
}

.promo__coupon--02 {
  color: #ea5514;
}
.promo__coupon--03 {
  color: #bd0003;
}
.promo__coupon--04 {
  color: #1e2789;
}
.promo__coupon--05 {
  color: var(--c-main-text);
}

.promo__coupon-box {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.promo__coupon-ttl {
  color: #fff;
  font-family: "LINESeedJP OTF";
  font-size: 20px;
  font-weight: 800;
  border-radius: 6px 0 0 6px;
  background: #e60055;
  display: flex;
  width: 45%;
  height: auto;
  justify-content: center;
  padding: 0.4rem;
}

.promo__coupon--02 .promo__coupon-ttl {
  background: #ea5514;
}
.promo__coupon--03 .promo__coupon-ttl {
  background: #bd0003;
}
.promo__coupon--04 .promo__coupon-ttl {
  background: #1e2789;
}
.promo__coupon--05 .promo__coupon-ttl {
  background: var(--c-main-text);
}

.promo__coupon-cont {
  display: flex;
  color: #e60055;
  font-family: "LINESeedJP OTF";
  font-size: 10px;
  font-style: normal;
  font-weight: 300;
  line-height: 130%;
}

.promo__coupon--02 .promo__coupon-cont {
  color: #ea5514;
}
.promo__coupon--03 .promo__coupon-cont {
  color: #bd0003;
}
.promo__coupon--04 .promo__coupon-cont {
  color: #1e2789;
}
.promo__coupon--05 .promo__coupon-cont {
  color: var(--c-main-text);
}

.promo__coupon-img {
  width: 14px;
  filter: invert(9%) sepia(97%) saturate(6317%) hue-rotate(332deg)
    brightness(104%) contrast(100%);
}
.promo__coupon--02 .promo__coupon-img {
  filter: invert(39%) sepia(64%) saturate(3913%) hue-rotate(340deg)
    brightness(101%) contrast(97%);
}
.promo__coupon--03 .promo__coupon-img {
  filter: invert(8%) sepia(98%) saturate(6112%) hue-rotate(355deg)
    brightness(93%) contrast(104%);
}
.promo__coupon--04 .promo__coupon-img {
  filter: invert(11%) sepia(86%) saturate(2369%) hue-rotate(228deg)
    brightness(108%) contrast(101%);
}
.promo__coupon--05 .promo__coupon-img {
  filter: invert(9%) sepia(54%) saturate(3784%) hue-rotate(321deg)
    brightness(89%) contrast(24%);
}

/* アコーディオン　やら------------------------- */

.badge-container {
  position: absolute;
  top: -0.5rem;
  left: -0.2rem;
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}

.badge {
  display: inline-block;
  padding: 0 1rem;
  border-radius: 100rem;
  font-size: 1rem;
}

.badge-new {
  background: #ff0014;
  color: white;
}

.badge-updated {
  background: #006eff;
  color: white;
}

.badge-expired {
  background: #1f1f1f;
  color: white;
}

.accordion-content {
  display: none;
}

.accordion-content.active {
  display: flex;
}

.hidden {
  display: none;
}

.accordion-header {
  gap: 10px;
  border: 1px solid;
  display: flex;
  padding: 0.2rem 1rem;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  color: var(--c-main-text);
  margin: 0 auto;
  width: 90%;
  font-family: "LINESeedJP OTF";
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
}

/* メインコンテンツ ここまで------------------------- */
.promo__visual {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.promo__title {
  color: var(--c-main-text);
  font-size: 20px;
  font-weight: 800;
  text-align: left;
  margin-bottom: 0;
}

.promo__btn-box {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  width: 12rem;
  padding-block: 0.4rem;
  border-radius: 100rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: opacity 0.3s;
  color: var(--c-main-text);
  position: relative;
  line-height: 130%;
  display: inline-grid;
  grid-template-columns: 1fr auto 1fr;
}

.btn:hover {
  opacity: 0.7;
}

.btn::before {
  content: "";
}

.btn::after {
  content: "";
}

.btn--buy {
  background: #ffffff;
  color: var(--c-main-text);
  border: solid 1px;
}

.btn--popup {
  border-radius: 100rem;
  border: 1px solid;
  background: #fff;
  text-align: center;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.117px;
}

.btn--popup::after {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  margin: -3px 5px 0 0;
  background: url(../images/popup.svg) no-repeat;
  background-size: contain;
  vertical-align: middle;
  position: absolute;
  right: 3%;
  top: 35%;
}

.btn-link {
  background: #f4e417;
}

.btn-link::after {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  margin: -3px 5px 0 0;
  background: url(../images/arrow-right.svg) no-repeat;
  background-size: contain;
  vertical-align: middle;
  position: absolute;
  right: 3%;
  top: 35%;
}

/* モーダル用の非表示input */
.b-noDisplayInput {
  display: none;
}

/* モーダルの基本スタイル */
.b-modal01 {
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 107;
  width: 100%;
  height: 100%;
  transition: opacity 0.3s, visibility 0.3s;
}

/* 汎用的なチェック状態での表示 - IDに依存しない */
input[id$="-main"]:checked + .b-modal01,
input[id$="-info"]:checked + .b-modal01,
input[id$="-terms"]:checked + .b-modal01 {
  visibility: visible;
  opacity: 1;
}

/* 背景クリックエリア */
.e-modal01__closeArea {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  cursor: pointer;
}

/* モーダルコンテンツ */
.l-modal01__content-wrapper {
  position: relative;
  z-index: 1;
  width: 90%;
  max-width: 800px;
  max-height: 80vh;
  background: white;
  border-radius: 8px;
  padding: 2.5rem 0 0;
  display: flex;
  flex-direction: column;
}

/* 閉じるボタン */
.e-modal01__closeBtn {
  position: absolute;
  top: 0.5rem;
  right: 0.7rem;
  font-size: 2rem;
  font-weight: 900;
  color: #333;
  cursor: pointer;
  line-height: 1;
  transition: opacity 0.3s;
  z-index: 10;
}

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

/* スクロール可能なコンテンツエリア */
.e-modal01__content {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
  margin-bottom: 0;
}

/* 固定される下部ボタンエリア */
.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,
.modal-info,
.modal-terms {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.modal-terms__group {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* モーダル内のテーブル */
.modal-info__cont {
  width: 100%;
  border-collapse: collapse;
}

.modal-info__h1 {
  background: #aeceff;
  color: var(--c-main-text);
  padding: 8px;
  border: 1px solid var(--c-main-text);
  font-size: 14px;
}

.modal-main__text {
  color: var(--c-main-text);
  font-family: "LINESeedJP OTF";
  font-size: 15px;
  font-style: normal;
  font-weight: 300;
  line-height: 130%;
}

.modal-info__text {
  background: white;
  color: var(--c-main-text);
  padding: 8px;
  border: 1px solid var(--c-main-text);
  text-align: center;
}

.modal-terms__text {
  color: var(--c-main-text);
  font-size: 0.9rem;
}

.modal-info__attn p,
.modal-terms__attn p {
  color: var(--c-main-text);
  font-size: 12px;
  line-height: 1.5;
}

.modal-info__attn p::before,
.modal-terms__attn p::before {
  content: "※";
}

.modal-terms__ttl,
.modal-info__ttl,
.modal-main__ttl {
  color: var(--c-main-text);
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 130%;
}

.modal-terms__item {
  padding: 0 0 0.5rem;
  border-bottom: 2px solid var(--c-main-text);
}

.modal-terms__h1 {
  color: var(--c-main-text);
  font-size: 1.1rem;
  font-weight: 700;
}

.modal-main__img {
  display: flex;
  width: 90%;
  max-width: 350px;
  margin: auto;
}

/* htmlのスクロール制御 */
html:has(input[class="b-noDisplayInput"]:checked) {
  overflow: hidden;
}

/* ///// Slider ///////////////////////////////// */
/* --- Service Slider --- */
.b-serviceSlider {
  padding-block: 1rem;
}

.swiper.b-serviceSlider {
  width: 100%;
  overflow: hidden;
  padding: 2rem 0;
}

.swiper.b-serviceSlider .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0.7;
  transform: scale(0.85);
  width: 80%;
  max-width: 700px;
  height: auto;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

@media (min-width: 768px) {
  .swiper.b-serviceSlider .swiper-slide {
    width: 80%;
  }
}
.swiper.b-serviceSlider .swiper-slide-active {
  opacity: 1;
  transform: scale(1);
}

.e-serviceSlider__content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--serviceSlider-content-border);
  border-radius: 5px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  background: var(--serviceSlider-content-background);
}
/* --- Service Slider Elements --- */
.e-serviceSlider__icon {
  width: 1.56rem;
}

@media (min-width: 769px) {
  .e-serviceSlider__icon {
    width: 2.81rem;
  }
}
.e-serviceSlider__heading {
  width: 100%;
  margin: 0;
  background: var(--serviceSlider-heading-background);
  color: var(--serviceSlider-heading-text);
  font-weight: bold;
  font-size: 16px;
  font-size: clamp(18px, 2.3vw, 32px);
  line-height: 1.4;
  text-align: center;

  text-box: trim-both cap alphabetic;
  padding-block: 0.94rem;
  position: relative;
  line-height: 130%;
  display: inline-grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 5px;
}

.e-serviceSlider__heading-icon {
  width: calc(23% - 0.75rem);
  margin-left: auto;
}

.e-serviceSlider__heading-icon--02 {
  width: calc(18% - 0.75rem);
  margin-left: auto;
}

.e-serviceSlider__textWrap {
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  align-items: center;
  margin-block: 1.13rem;

  gap: 1rem;
  width: 100%;
}

@media (min-width: 769px) {
  .e-serviceSlider__textWrap {
    gap: 1rem;
    width: 100%;
  }
}
.e-serviceSlider__imgWrap {
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  justify-content: center;
  width: 90%;
  align-items: center;
}

.e-serviceSlider__imgWrap a {
  width: 80%;
}

.e-serviceSlider__text-group {
  display: flex;
  gap: 2rem;
}

.e-serviceSlider__text-box-green {
  background: #000000;
}

.e-serviceSlider__text {
  color: #200710;
  text-align: center;
  font-family: "LINESeedJP OTF";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 26.18px; /* 163.625% */
}

.e-serviceSlider__text-box-green,
.e-serviceSlider__text-box-red {
  background: #eeffea;
  padding: 0.5rem;
}

.e-serviceSlider__text-box-red {
  background: #ffeaeb;
}

.e-serviceSlider__imgIconWrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 80%;

  gap: 0.5rem 1rem;
}

@media (min-width: 769px) {
  .e-serviceSlider__imgIconWrap {
    width: 50%;
  }
}
.e-serviceSlider__imgIcon {
  width: calc(25% - 0.75rem);
}

.e-serviceSlider__imgIcon--02 {
  width: calc(33% - 0.75rem);
}

.e-serviceSlider__imgIcon--point {
  width: 35%;
}

.e-serviceSlider__icon {
  margin-left: auto;
}

/* ///// Variables ///////////////////////////////// */
:root {
  /* --- Service Slider --- */
  --serviceSlider-content-background: #ffffff;
  --serviceSlider-content-border: #000000;
  --serviceSlider-heading-background: #000000;
  --serviceSlider-heading-text: #ffffff;
  /* --- Tables --- */
  --table-default-border: #000000;
  --campaignTable-header-background: #bfe4e1;
  --shopInfo-header-background-base: #000000;
  --shopInfo-header-background-melonbooks: #31aa6e;
  --shopInfo-header-background-lashinban: #00b8ff;
  --shopInfo-header-background-animate: #3355af;
  --shopInfo-header-text: #ffffff;
}

/* ///// Shop Info ///////////////////////////////// */
.b-shopInfo {
  width: 100%;
}

.b-shopInfo th,
.b-shopInfo td {
  list-style: 1.4;
  width: 25%;
  padding: 0.5rem 0;
  border-right: solid 1px var(--table-default-border);
  border-bottom: solid 1px var(--table-default-border);
  font-size: clamp(12px, 1vw, 1rem);
  font-family: var(--font-family-base);
  text-align: center;
  vertical-align: middle;
}

.b-shopInfo th:first-child {
  width: 14%;
}

.b-shopInfo th:nth-of-type(1) {
  background-color: var(--shopInfo-header-background-base);
  color: var(--shopInfo-header-text);
}

.b-shopInfo th:nth-of-type(2) {
  background-color: var(--shopInfo-header-background-melonbooks);
  color: var(--shopInfo-header-text);
}

.b-shopInfo th:nth-of-type(3) {
  background-color: var(--shopInfo-header-background-lashinban);
  color: var(--shopInfo-header-text);
}

.b-shopInfo th:nth-of-type(4) {
  background-color: var(--shopInfo-header-background-animate);
  color: var(--shopInfo-header-text);
}

.e-shopInfo__textSmall {
  font-size: 0.7em;
}

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