@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@400;500;700;900&family=M+PLUS+Rounded+1c:wght@400;700;900&display=swap');

/* ---------- ROOT TOKENS ---------- */
:root {
  --pink-bright:   #ff4da6;
  --pink-light:    #ffb3d9;
  --pink-pale:     #fff0f8;
  --blue-bright:   #00c8ff;
  --blue-light:    #b3eeff;
  --blue-pale:     #eafaff;
  --purple:        #a855f7;
  --purple-light:  #e9d5ff;
  --yellow:        #ffe600;
  --yellow-warm:   #ffb347;
  --dark:          #1a0a2e;
  --white:         #ffffff;

  --grad-main:     linear-gradient(135deg, #ffecfd 0%, #ffd6f0 30%, #c8f0ff 70%, #ebf8ff 100%);
  --grad-holo:     linear-gradient(120deg, #ff9de2, #b3eeff, #d4b3ff, #ffe680, #ffb3d9);
  --grad-btn:      linear-gradient(135deg, #ff4da6, #a855f7);
  --grad-title:    linear-gradient(90deg, #ff4da6, #a855f7, #00c8ff);

  --shadow-pink:   0 4px 24px rgba(255, 77, 166, 0.35);
  --shadow-blue:   0 4px 24px rgba(0, 200, 255, 0.3);
  --shadow-holo:   0 8px 40px rgba(168, 85, 247, 0.25);

  --radius-pill:   999px;
  --radius-card:   24px;
  --radius-md:     16px;

  --font-main:     'Zen Maru Gothic', 'M PLUS Rounded 1c', sans-serif;
}

/* ---------- BASE ---------- */
* { box-sizing: border-box; }

body {
  font-family: var(--font-main);
  color: var(--dark);
  letter-spacing: 0.02em;
}

/* ---------- BG ---------- */
.bg-color {
  height: 100%;
  width: 100%;
  background-image: linear-gradient(90deg, #fffaf6, #f8fff0);
  background-attachment: fixed;
  position: relative;
  overflow-x: hidden;
}

.kabegami {
top:0;
left:0;
z-index:-1;
width:100%;
height:100%;
background-image: url("/images/ll/p_new0224_xl_new02240.webp");
background-repeat: repeat;
background-size: 60%;
}

/* ---------- HEADER ---------- */
#header {
  background: rgba(255,255,255,0.97);
  border-bottom: 2px solid;
  border-image: var(--grad-holo) 1;
  box-shadow: 0 2px 20px rgba(255,77,166,0.15);
}

.header-item {
  color: rgb(255, 115, 181) !important;
  font-weight: 700;
  font-size: 1.3rem;
  position: relative;
  transition: color 0.2s;
}
.header-item::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 2px;
  background: var(--grad-btn);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.25s;
}
.header-item:hover {
  color: var(--pink-bright) !important;
}
.header-item:hover::after {
  transform: scaleX(1);
}

/* ---------- DRAWER ---------- */
.drawer-menu {
  background: rgba(255,240,248,0.97);
  backdrop-filter: blur(20px);
  border-right: 3px solid var(--pink-light);
}
.drawer-menu__list li a {
  font-weight: 700;
  color: var(--dark);
  border-bottom: 1px dashed var(--pink-light);
  transition: background 0.2s, color 0.2s;
}
.drawer-menu__list li a:hover {
  background: var(--pink-pale);
  color: var(--pink-bright);
}

/* hamburger */
.header-top__hamburger .bar {
  background: var(--pink-bright) !important;
  border-radius: 3px;
}

/* ---------- VISUAL / KV SECTION ---------- */
.visual {
  position: relative;
}
.visual::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 60px;
  background: linear-gradient(to bottom, transparent, rgb(255 140 140 / 70%));
  pointer-events: none;
}

/* ---------- SECTION HEADINGS ---------- */

/* ttl-a: キービジュアル下のリード文 */
.ttl-a {
    background:#ff73b5;
    color: var(--white);
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.04em;
    text-shadow: 0 2px 8px rgb(230 0 130);
    position: relative;
    overflow: hidden;
}
.ttl-a::before {
  content: '✦ ';
}
.ttl-a::after {
  content: ' ✦';
}

/* ttl-b: セクションタイトル (交換・返品など) */
.ttl-b {
  position: relative;
  margin-bottom: 5rem;
  padding-bottom: 0.6em;
  font-size: 3.4rem;
  line-height: 1.076923;
  letter-spacing: 0.01em;
  font-weight: 900;
  text-align: center;
  color: var(--dark) !important;
  border-bottom: none !important;
}
.ttl-b::before {
  content: '';
  position: absolute;
  left: 50%; bottom: 0;
  transform: translateX(-50%);
  width: 80px; height: 5px;
  background: var(--grad-btn) !important;
  border-radius: var(--radius-pill);
}
.ttl-b::after {
  content: '';
  position: absolute;
  left: 50%; bottom: -10px;
  transform: translateX(-50%);
  width: 40px; height: 5px;
  background: var(--grad-btn);
  border-radius: var(--radius-pill);
  opacity: 0.5;
}

/* ttl-c */
.ttl-c {
  border: solid 2px var(--pink-light) !important;
  background-image: repeating-linear-gradient(
    135deg,
    transparent, transparent 8px,
    rgba(255,179,217,0.15) 8px, rgba(255,179,217,0.15) 12px
  ) !important;
  color: var(--dark) !important;
  border-radius: var(--radius-md);
}

/* ttl-d */
.ttl-d__text {
  z-index: 5;
}
.ttl-d__text::before {
  background: var(--grad-btn) !important;
}

/* ttl-e */
.ttl-e {
  background: var(--grad-btn) !important;
  border-radius: var(--radius-pill);
}

/* ---------- ケーキアイコンにイチゴとロウソクを装飾 ---------- */
.ttl-g {
  font-size: 3.2rem;
  letter-spacing: -0.015em;
  margin-bottom: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  background:linear-gradient(90deg, #ff0000, #ff8686, #ff0000);;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.ttl-g::before,
.ttl-g::after {
  content: '🎂';
  /* テキストのグラデーションの影響を受けないようにリセット */
  -webkit-background-clip: initial;
  -webkit-text-fill-color: initial;
  font-size: 3rem;
  position: relative;
  display: inline-block;
}

/* イチゴとロウソクの強調（擬似要素を追加） */
.ttl-g::before::after {
  content: '🍓';
  position: absolute;
  top: -15px; left: 10px;
  font-size: 1.5rem;
}

.ttl-g::after::after {
  content: '🕯️';
  position: absolute;
  top: -20px; right: 10px;
  font-size: 1.5rem;
}

@keyframes cakeJump {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}


.summary.summary__page {
    margin-top: 0px !important;
}


@keyframes heartPulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.25); }
}

/* ---------- NEWS ---------- */
.news_container .line-container {
  border: 3px solid var(--pink-light) !important;
  border-radius: var(--radius-card) !important;
  background: rgba(255,255,255,0.7) !important;
  backdrop-filter: blur(10px);
}

.summary .news .txt {
    color: #740046;
}

.newsList li {
  transition: background 0.2s;
}
.newsList li:hover {
  background: rgba(255,77,166,0.05);
}
.newsList .time {
  color: #476dff;
  font-weight: 700;
}
.newsList .red {
  color: var(--pink-bright) !important;
  font-weight: 900;
  animation: blink 1.5s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.5; }
}

.summary .newsList a {
    background: #ffedfa26;
}
/* ---------- 開催会場：全体レイアウト ---------- */
.place_container { margin-bottom: 5rem; }
.placeList {
    display: grid;
    gap: 40px;
    padding: 0;
    margin: 0 auto;
    width: 100%;
    max-width: 600px;
    list-style: none;
}

/* 2店舗以上のPCレイアウト（現在のカード型） */
@media screen and (min-width: 768px) {
    .placeList { grid-template-columns: repeat(auto-fit, minmax(500px, 1fr)); }
}

/* 1店舗のみの時だけ横並びの表形式にする */
@media screen and (min-width: 768px) {
    .placeList:has(li:only-child) .place_info_table {
        display: flex;
        flex-direction: column;
    }
    .placeList:has(li:only-child) .place_info_table dl {
        display: grid;
        grid-template-columns: 150px 1fr; /* 左側の項目名を固定幅に */
        border-bottom: 1px solid var(--pink-light);
        padding: 1.5rem 0;
    }
}

/* ---------- カードデザイン ---------- */
.placeList li {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 30px;
    border: 2px solid var(--pink-light);
    padding: 3.5rem;
    position: relative;
}

.place_name {
    background: var(--grad-btn);
    color: var(--white);
    padding: 0.8em 2em;
    border-radius:10px;
    font-size: 2.0rem;
    text-align: center;
    margin-bottom: 3rem;
}

/* テーブル内の文字設定 */
.place_info_table dt { font-weight: 900; color: var(--pink-bright); font-size: 1.6rem; }
.place_info_table dd { margin: 0; font-size: 1.6rem; line-height: 1.6; color: #444; }

/* MAPボタンを右配置 */
.map_container { display: flex; justify-content: flex-end; margin-top: 2rem; }
.map_btn {
    display: inline-flex; align-items: center; gap: 0.6em;
    color: var(--white); background: var(--grad-btn);
    padding: 1rem 2.5rem; border-radius: var(--radius-pill);
    font-weight: 700; font-size: 1.6rem; text-decoration: none;
}
.map_btn:hover { opacity: 0.85; }

/* 1店舗のみの時の全体サイズ調整 */
.placeList li:only-child {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem;
}

.summary .place .placeList li {
    width: 100%;
}

.summary .place .place_name {
    background:#e60081;
    margin-bottom: 3.8rem;
}

/* マップボタンを住所の右下に配置 */
.map-btn-wrapper {
    display: flex;
    justify-content: flex-end; /* 右寄せ */
    margin-top: 10px;
}

.inline-map-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
    padding: 0.6rem 1.5rem;
    background: var(--grad-btn); /* ピンク系のグラデーション */
    color: var(--white);
    border-radius: var(--radius-pill);
    font-size: 1.3rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(255, 77, 166, 0.2);
    transition: transform 0.2s;
}

.inline-map-btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

/* クラス「no-border」がついたdlだけ下線を消す */
.no-border {
    border-bottom: none !important;
    padding-bottom: 0 !important;
}
 
.shop_sns {
color: #31a3ff;
}
/* ---------- LINE CONTAINER (共通) ---------- */
.line-container {
  border: 0px solid var(--pink-light) !important;
}

.line-container-bold {
    border: solid 4px #3f81ff;
}

.line-container {
    border: solid 0px #111111;
}

/* ---------- TABLE ---------- */
.tbl {
  margin-top: 4rem;
  border-collapse: separate;
  border-spacing: 0 1rem;
  width: 100%;
}
.tbl th {
  background: linear-gradient(135deg, green, skyblue);
  color: var(--white);
  font-weight: 900;
  border-radius: var(--radius-md) 0 0 var(--radius-md);
  padding: 1.2rem 1.6rem;
  text-align: center;
  vertical-align: middle;
  font-size: 1.4rem;
  white-space: nowrap;
}
.tbl td {
  background:#ffffffc7;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 1.2rem 1.6rem;
  font-size: 1.4rem;
  border-left: 3px solid #9cc1ff;
}

.tbl tr:first-of-type th {
 padding: 1.2rem 1.6rem !important;
}

.tbl tr:last-of-type th {
padding: 1.2rem 1.6rem !important;
}

/* ---------- BUTTONS ---------- */
.button .btn.btn-a,
.button .btn.btn-line {
  color: var(--white) !important;
  font-size: 1.6rem !important;
  font-weight: 900 !important;
  background: linear-gradient(135deg, green, skyblue);;
  border-radius: var(--radius-pill) !important;
  border: none !important;
  box-shadow: var(--shadow-pink) !important;
  letter-spacing: 0.05em;
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s !important;
  text-decoration: none;
  display: inline-block;
}

.button .btn.btn-ps {
  color: var(--white) !important;
  font-size: 1.6rem !important;
  font-weight: 900 !important;
  background:linear-gradient(135deg, #FFC1DE, #e60082);
  border-radius: var(--radius-pill) !important;
  border: none !important;
  box-shadow: var(--shadow-pink) !important;
  letter-spacing: 0.05em;
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s !important;
  text-decoration: none;
  display: inline-block;
}



.button .btn.btn-a:hover,
.button .btn.btn-line:hover {
  transform: translateY(-3px) scale(1.04) !important;
  box-shadow: 0 8px 32px rgba(255,77,166,0.5) !important;
  color: #6500FF !important;
}


.button .btn.btn-ps:hover {
  transform: translateY(-3px) scale(1.04) !important;
  box-shadow: 0 8px 32px rgba(255,77,166,0.5) !important;
  color: #e60081 !important;
}

.button-online .btn.btn-a {
  background: linear-gradient(135deg, #00c8ff, #a855f7) !important;
  border: none !important;
  border-radius: var(--radius-pill) !important;
  box-shadow: var(--shadow-blue) !important;
}
.button-online .btn.btn-a:hover {
  color: var(--white) !important;
  transform: translateY(-3px) scale(1.04) !important;
  opacity: 0.9 !important;
  background: linear-gradient(135deg, #00c8ff, #a855f7) !important;
}

/* ---------- INFO / CAUTION ---------- */
.info {
  background:#fff7ed96 !important;
  border-top: 3px solid;
  border-image: var(--grad-holo) 1;
}

.caution-container {
  background: linear-gradient(135deg, rgba(255,240,248,0.9), rgba(235,250,255,0.9)) !important;
  border-radius: var(--radius-md);
  border: 2px dashed var(--pink-light);
  padding: 1.6rem 2rem;
}

/* ---------- GOODS LIST ---------- */
.l-column.goods-list .goods-list__inner {
  background: rgba(255,255,255,0.9) !important;
  border-radius: var(--radius-card) !important;
  border: 2px solid var(--pink-light);
  box-shadow: var(--shadow-holo);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}
.l-column.goods-list .goods-list__inner:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(168,85,247,0.3);
}

.l-column.goods-list .col-1 .image {
  padding-right: 2rem;
  border-right: dotted 3px var(--pink-light) !important;
}

.image_boder {
  border: 6px solid var(--pink-light) !important;
  border-bottom: 0 !important;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}

/* ---------- MODAL ---------- */
.modal-content {
  border: 4px solid transparent !important;
  border-radius: var(--radius-card);
  background:
    linear-gradient(white, white) padding-box,
    var(--grad-holo) border-box !important;
  box-shadow: var(--shadow-holo);
  border-image: none !important;
}

tr:first-of-type td {
    padding: 2rem 2rem !important;
}

tr:last-of-type td {
    padding: 2rem 2rem !important;
}
/* ---------- RETURN SECTION ---------- */
.return {
border-top: 3px solid;
border-image: var(--grad-holo) 1;
}

/* ---------- CONTACT SECTION ---------- */
.contact {
  background:#fff7ed96 !important;
  border-top: 3px solid;
  border-bottom: 3px solid;
  border-image: var(--grad-btn) 1;
}

/* ---------- MISC ---------- */
.ps_color { fill: rgb(255, 115, 181); }

.red-bg {
  color: var(--pink-bright) !important;
  font-size: calc(1.4rem + (1vw - 0.32rem) * 0.3584);
}

.lead-navy  { color: var(--dark); }
.lead-bcm   { margin-bottom: 0; }
.lead-line  { text-align: center; margin-top: 4rem; }

.space {
  color: var(--pink-light);
  margin: 2rem 0;
}

.line-container_tktn { margin-top: 5rem; }
.item-tokuten        { margin-top: 5rem; }

.news_time { margin-top: 3rem; }

/* list bullets */
.list li {
  padding-left: 1.4em;
  position: relative;
  margin-bottom: 0.5em;
}

/* ---------- MAIN SECTION SPACING FIX ---------- */
.main section:nth-last-of-type(4) .inner {
  margin: 0 auto 0;
}

/* ---------- MOBILE ---------- */
@media only screen and (max-width: 599px) {
  .summary .place_container { margin-bottom: 0; }

  .header-top__hamburger .bar {
    background: var(--pink-bright) !important;
  }

  .lead-line { margin-top: 5rem; }

  .line-container { background-size: 19%; }


  .placeList li { padding: 1.4rem; }

  .ttl-g { font-size: 2.6rem; }
  .ttl-b { font-size: 2.6rem; }

.ttl-g_news_title {
    margin: 25% auto 7% !important;
}



  .tbl th {
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    white-space: normal;
  }
  .tbl td {
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    border-left: none;
    border-top: 3px solid var(--pink-light);
  }

.visual::after {
    background: linear-gradient(to bottom, transparent, rgb(251 160 255 / 20%));
}

.ttl-a {
    margin-bottom: 4em;
 }

.summary .news {
    margin-bottom: 6rem;
}

.summary .place .place_name {
    font-size: 1.6rem;
}
}

.ttl-g_news_title {
    margin: 13% auto 7% !important;
}
@media only screen and (max-width: 599px) {
    .ttl-g_news_title {
        margin: 25% auto 7% !important;
    }
}
