@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;700&family=Shippori+Mincho:wght@500;700;800&display=swap');

/* ---------- ROOT TOKENS（ゴスロリ・ダークロマンティック） ---------- */
:root {
  --goth-black:     #120c14; /* 漆黒・深紫 */
  --goth-crimson:   #800a20; /* 深紅・ルビー */
  --goth-crimson-lt:#b81435; /* 鮮やかな深紅 */
  --goth-purple:    #3b1c4d; /* 妖艶なナイトパープル */
  --goth-purple-lt: #62367d; /* 明るめの紫 */
  --goth-lace:      #f4efe9; /* アイボリーレース */
  --goth-silver:    #c5c6d0; /* アンティークシルバー */
  --goth-gold:      #c5a059; /* 鈍いアンティークゴールド */
  --goth-dark-card: #1c1421; /* カード背景用の暗紫 */

  /* 背景グラデーション・ホログラム */
  --grad-main:      linear-gradient(135deg, #0e0912 0%, #1c1124 50%, #150a12 100%);
  --grad-holo:      linear-gradient(120deg, #800a20, #3b1c4d, #120c14, #c5a059, #b81435);
  --grad-btn:       linear-gradient(135deg, #3b1c4d, #120c14); /* 漆黒と深紫 */
  --grad-btn-rose:  linear-gradient(135deg, #800a20, #4a0412); /* 薔薇の深紅 */
  --grad-title:     linear-gradient(90deg, #c5c6d0, #b81435, #c5a059);

  --shadow-crimson: 0 4px 25px rgba(128, 10, 32, 0.4);
  --shadow-purple:  0 4px 25px rgba(59, 28, 77, 0.5);
  --shadow-goth:    0 8px 32px rgba(0, 0, 0, 0.7);

  --radius-pill:    2px; /* クラシカルで鋭角な印象 */
  --radius-card:    4px;
  --radius-md:      2px;

  --font-main:      'Noto Serif JP', 'Sawarabi Mincho', serif;
}

/* ---------- BASE ---------- */

* { box-sizing: border-box; }

body {
  font-family: var(--font-main);
  color: var(--goth-lace);
  letter-spacing: 0.08em;
}

/* ---------- BG ---------- */

.bg-color {
  height: 100%;
  width: 100%;
  background: 
    repeating-linear-gradient(45deg, rgba(59, 28, 77, 0.08), rgba(59, 28, 77, 0.08) 2px, transparent 2px, transparent 6px),
    var(--grad-main);
  background-attachment: fixed;
  position: relative;
  overflow-x: hidden;
}

/* レースのようなストライプと闇のヴェールを演出 */
.bg-color::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: repeating-linear-gradient(90deg, rgba(0,0,0,0.15) 0px, rgba(0,0,0,0.15) 1px, transparent 1px, transparent 20px);
  z-index: -1;
}

.kabegami {
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  /* モノクロ・アンティークレース調のオーバーレイ */
  background-image: radial-gradient(circle, rgba(128, 10, 32, 0.1) 10%, transparent 10%);
  background-repeat: repeat;
  background-size: 30px 30px;
}

/* ---------- HEADER ---------- */
#header {
  background: rgba(18, 12, 20, 0.95);
  border-bottom: 1px solid #360a80;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.header-item {
  color: var(--goth-lace);
  font-weight: 700;
  font-size: 1.2rem;
  position: relative;
  transition: color 0.3s;
}

.header-item::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 2px;
  background: var(--goth-crimson);
  transform: scaleX(0);
  transition: transform 0.25s;
}

.header-item:hover {
  color: var(--goth-crimson-lt) !important;
}

.header-item:hover::after {
  transform: scaleX(1);
}

/* ---------- DRAWER ---------- */

.drawer-menu {
    background: rgb(7 7 7 / 63%);
    backdrop-filter: blur(15px);
    /* border-right: 3px solid var(--goth-crimson); */
}

.drawer-menu__list li a {
  font-weight: 700;
  color: var(--goth-lace);
  border-bottom: 1px solid rgba(197, 160, 89, 0.2);
  transition: background 0.3s, color 0.3s;
}

.drawer-menu__list li a:hover {
  background: var(--goth-purple);
  color: var(--goth-gold);
}

/* hamburger */

.header-top__hamburger .bar {
  background: #d1ff03;
}

.ps_color {
  fill: var(--goth-lace);
}



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

/* ttl-a: ゴシックフレーム・ベロア調 */
.ttl-a {
    background: #4a369e;
    color: var(--goth-lace);
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.12em;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8);
    position: relative;
    overflow: hidden;
    padding: 2.5rem;
    box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.6);
}

/*
.ttl-a::before {
  content: '✝ ';
  color: var(--goth-gold);
}

.ttl-a::after {
  content: ' ✝';
  color: var(--goth-gold);
}
*/

/* ttl-b: セクションタイトル */
.ttl-b {
  position: relative;
  margin-bottom: 5rem;
  padding-bottom: 0.6em;
  font-size: 2.8rem;
  font-weight: 800;
  text-align: center;
  color: var(--goth-lace) !important;
  border-bottom: none !important;
}

.ttl-b::before {
  content: '';
  position: absolute;
  left: 50%; bottom: 0;
  transform: translateX(-50%);
  width: 80px; height: 2px;
  background: var(--goth-crimson) !important;
}

.ttl-b::after {
  content: '◆';
  font-size: 0.8rem;
  color: var(--goth-gold);
  position: absolute;
  left: 50%; bottom: -6px;
  transform: translateX(-50%);
}

/* ttl-c */
.ttl-c {
  border: solid 1px var(--goth-crimson) !important;
  background: var(--goth-dark-card) !important;
  color: var(--goth-lace) !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: 2.6rem;
  letter-spacing: 0.08em;
  margin-bottom: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  background: #d1ff04;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  font-weight: 800;
}


.ttl-g::before,
.ttl-g::after {
  content: '✝';
  color: var(--goth-gold);
  -webkit-background-clip: initial;
  -webkit-text-fill-color: initial;
  font-size: 2.2rem;
  position: relative;
  display: inline-block;

}

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

/* ---------- NEWS ---------- */

.news_container .line-container {
  border: 1px solid var(--goth-crimson) !important;
  border-radius: var(--radius-card) !important;
  background: var(--goth-dark-card) !important;
  box-shadow: var(--shadow-goth);
}

.summary .news .txt {
  color: var(--goth-lace);
}

.newsList li {
  transition: background 0.3s;
  background-color: rgba(30, 18, 38, 0.6);
}

.newsList li:hover {
  background: var(--goth-purple);
}

.newsList .time {
  color: var(--goth-gold);
  font-weight: 700;
}

.newsList .red {
  color: var(--goth-crimson-lt) !important;
  font-weight: 900;
  padding: 1px 4px;
  font-size: 1.3rem;
  letter-spacing: 0;
  animation: gothBlink 1.5s ease-in-out infinite;
}

@keyframes gothBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.summary .newsList {
  border-bottom: solid 1px rgba(197, 160, 89, 0.3);
}

.summary .newsList a {
  border-top: solid 1px rgba(197, 160, 89, 0.3);
}

.news_container .line-container-news {
  padding: 3rem;
}

.ttl-g_news_title {
  margin-top: 120px;
}

/* ---------- PLACE ---------- */

.placeList {
  display: grid !important;
  gap: 20px !important;
  padding: 0 !important;
  width: 100% !important;
  max-width: 1200px !important;
  list-style: none !important;
}

.place_info_table dl {
  border-bottom: 1px dashed #a2c21a5c;
  margin-bottom: 3%;
  padding-bottom: 3%;
}

@media screen and (min-width: 768px) {
  .placeList { 
    grid-template-columns: repeat(2, 1fr) !important; 
  }
  
  .placeList:has(li:only-child) {
    grid-template-columns: 1fr !important;
  }

  .placeList:has(li:only-child) .place_info_table {
    display: flex !important;
    flex-direction: column !important;
  }

  .placeList:has(li:only-child) .place_info_table dl {
    display: grid !important;
    grid-template-columns: 150px 1fr !important;
    padding: 1.5rem 0 !important;
  }


}

.placeList li {
  background:#0000007a;
  border-radius: var(--radius-card) ;
  border: 1px solid #a2c21a;
  padding: 2.2rem ;
  position: relative ;
  box-shadow: var(--shadow-goth) ;
  width: 100% ;
  max-width: 100% ;
}

.placeList li:only-child {
  max-width: 600px ;
  margin: 0 auto ;
  padding: 3rem ;
}

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


.place_name {
  color: var(--goth-lace);
  padding: 0.8em 2em !important;
  border-radius: var(--radius-md) !important;
  font-size: 1.8rem !important;
  text-align: center !important;
}

.summary .place .place_name {
  background: #3161b1;
  margin-bottom: 3.8rem;
  border-left: 4px solid #a2c21a;
  border-right: 4px solid #a2c21a;
}

.summary .place .place_name_gm {
  background: #800a0a;
  border-left: 4px solid #a2c21a;
  border-right: 4px solid #a2c21a;
  color: var(--goth-lace) !important;
}

.place_info_table dt { 
  font-weight: 700; 
  color: var(--goth-gold); 
  font-size: 1.5rem; 
}
.place_info_table dd { 
  margin: 0; 
  font-size: 1.5rem; 
  line-height: 1.6; 
  color: var(--goth-lace); 
}

/* MAPボタン */
.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(--goth-crimson);
  color: var(--goth-lace);
  border: 1px solid var(--goth-gold);
  border-radius: var(--radius-pill);
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: var(--shadow-crimson);
  transition: all 0.3s;
}

.inline-map-btn:hover {
  background: var(--goth-crimson-lt);
  transform: translateY(-2px);
}

.shop_sns {
  color: var(--goth-gold);
  text-decoration: underline;
}

/* ---------- LINE CONTAINER ---------- */

.line-container {
  border: 0px solid transparent !important;
  padding: 2rem;
}

.line-container-bold { 
  border: 1px solid var(--goth-gold); 
  background: var(--goth-dark-card); 
  padding: 20px; 
}

/* ---------- TABLE（アンティークレース表組） ---------- */

.tbl {
  border-collapse: separate;
  border-spacing: 0 1rem;
  width: 100%;
}

.tbl th {
  background: var(--goth-purple);
  color: var(--goth-gold);
  font-weight: 700;
  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;
  border-left: 4px solid var(--goth-crimson);
  border-top: 1px solid var(--goth-purple-lt);
  border-bottom: 1px solid var(--goth-purple-lt);
}

.tbl td {
  background: var(--goth-dark-card);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 1.2rem 1.6rem;
  font-size: 1.4rem;
  border-bottom: 1px solid var(--goth-purple-lt) !important;
  border: 1px solid var(--goth-purple-lt);
  color: var(--goth-lace);
}

.tbl tr:first-of-type th, .tbl tr:last-of-type th,
.tbl tr:first-of-type td, .tbl tr:last-of-type td {
  padding: 1.2rem 1.6rem;
}

/* ---------- BUTTONS ---------- */

.button .btn.btn-a,
.button .btn.btn-line {
    color: var(--goth-lace) !important;
    font-size: 1.5rem !important;
    /* font-weight: 700 !important; */
    background: var(--grad-btn);
    border-radius: var(--radius-pill) !important;
    border: 1px solid #fffc954a !important;
    box-shadow: var(--shadow-goth) !important;
    letter-spacing: 0.1em;
    transition: all 0.3s !important;
    text-decoration: none;
    display: inline-block;
}

.button .btn.btn-ps {
  color: var(--goth-lace) !important;
  font-size: 1.5rem !important;
  font-weight: 700 !important;
  background: var(--grad-btn-rose);
  border-radius: var(--radius-pill) !important;
  border: 1px solid var(--goth-gold) !important;
  box-shadow: var(--shadow-crimson) !important;
  letter-spacing: 0.1em;
  transition: all 0.3s !important;
  text-decoration: none;
  display: inline-block;
}

.button .btn.btn-a:hover,
.button .btn.btn-line:hover {
  transform: translateY(-2px) !important;
  background: var(--goth-purple) !important;
  border-color: var(--goth-crimson) !important;
  color: var(--goth-gold) !important;
}

.button .btn.btn-ps:hover {
  transform: translateY(-2px) !important;
  background: var(--goth-crimson-lt) !important;
}

.button-online .btn.btn-a {
  background: var(--goth-purple) !important;
  box-shadow: var(--shadow-purple) !important;
}

/* ---------- INFO / CAUTION ---------- */
.info {
    background: rgba(18, 12, 20, 0.6) !important;
    border-top: 1px solid #33007a;
    border-bottom: 1px solid #33007a !important;
}

.caution-container {
  background: var(--goth-dark-card) !important;
  border-radius: var(--radius-md);
  border: 1px dashed var(--goth-crimson);
  padding: 1.6rem 2rem;
}

/* ---------- GOODS LIST ---------- */
.l-column.goods-list .goods-list__inner {
  background: var(--goth-dark-card) !important;
  border-radius: var(--radius-card) !important;
  border: 1px solid var(--goth-purple-lt);
  box-shadow: var(--shadow-goth);
  overflow: hidden;
}

.l-column.goods-list .goods-list__inner:hover {
  transform: translateY(-2px);
  border-color: var(--goth-gold);
}

.l-column.goods-list .col-1 .image {
  border-right: dotted 1px var(--goth-purple-lt) !important;
}

.image_boder {
  border: 1px solid var(--goth-purple-lt) !important;
}

/* ---------- RETURN & CONTACT ---------- */

.contact {
    background: rgba(18, 12, 20, 0.6) !important;
    border-top: 1px solid #33007a;
    border-bottom: 1px solid #33007a;
}


/* ---------- SNS ---------- */
.sns_x::before {
    content: "";
    position: absolute;
    width: 5%;
    height: 3rem;
    top: 0;
    bottom: 0;
    right: -8%;
    margin: auto 0;
    background: url(/asset/images/x-logo1.svg) no-repeat;
    background-size: 90%;
}

/* ---------- MOBILE ---------- */

@media only screen and (max-width: 599px) {
  .ttl-g { font-size: 2rem; }
  .ttl-b { font-size: 2rem; }
  .placeList li { padding: 1.5rem; }
  .tbl th {
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    border-left: none;
    border-bottom: 2px solid var(--goth-crimson);
  }

  .tbl td {
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    border-top: none;
  }

  .summary .newsList a {
    padding: 1.2rem 0.6rem;
  }
  .summary .place .placeList li {
    margin-bottom: 0;
  }

  .sns_x::before {
    width: 6%;
    color: #fff;
    background: url(/asset/images/x-logo1.svg) no-repeat;
    background-size: 85%;
 }

  .drawer-menu__inner {
   background:#00000000;
 }
}

.place_info_table .no-border {
  border-bottom: none;
}

.l-column.goods-list .type__text-blue {
  display: inline-block;
  padding: 0.1rem 0.6rem;
  margin: 0 0.8rem 0.8rem 0;
  font-size: 1.1rem;
  border: solid 1px var(--goth-crimson);
  color: var(--goth-crimson-lt);
}

.purchaselimit tr:last-of-type td {
  padding: 2.8rem 1.6rem;
}

.caution-container__text {
  color: var(--goth-lace);
}

.red {
    color: #ff599d;
}

.sns_list li a {
    display: block;
    border-bottom: dotted 1px #355a35;
    height: 100%;
    max-height: 8rem;
}


/* ---------- SPOTLIGHT EFFECT (2-LIGHT CROSS / YELLOW) ---------- */

/* 背景用コンテナ */
.spotlight-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

/* スポットライト共通設定 */
.spotlight {
  position: absolute;
  top: 0;
  width: 900px;
  height: 100vh;
  
  /* 黄色味のある単色グラデーション（中心から外側へ薄くなる設定） */
  background: conic-gradient(
    from 160deg at 50% 0%,
    transparent 0deg,
    rgba(255, 243, 161, 0.05) 10deg, /* 端の微光 */
    rgba(255, 243, 161, 0.35) 20deg, /* 中央の光軸（黄色味を強調） */
    rgba(255, 243, 161, 0.05) 30deg, /* 端の微光 */
    transparent 40deg
  );
  
  /* 下方向へ向かって滑らかに消え込むマスク */
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0.7) 60%, rgba(0,0,0,0) 100%);
  mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0.7) 60%, rgba(0,0,0,0) 100%);
  
  /* 上の頂点を中心に振り子運動 */
  transform-origin: 50% 0;
  filter: blur(18px);
}

/* 左側のライト */
.spotlight-left {
  left: 10%;
  animation: gothSpotlightSwingLeft 7s ease-in-out infinite alternate;
}

/* 右側のライト */
.spotlight-right {
  right: 10%;
  animation: gothSpotlightSwingRight 7s ease-in-out infinite alternate;
}

/* 左側のライトのアニメーション */
@keyframes gothSpotlightSwingLeft {
  0% {
    transform: translateX(-50%) rotate(-15deg);
  }
  100% {
    transform: translateX(-50%) rotate(25deg);
  }
}

/* 右側のライトのアニメーション */
@keyframes gothSpotlightSwingRight {
  0% {
    transform: translateX(50%) rotate(15deg);
  }
  100% {
    transform: translateX(50%) rotate(-25deg);
  }
}

/* ヘッダー用 LINEカラーボタン */
.header-line-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background-color: #06C755; /* 公式LINEグリーン */
  color: #ffffff !important;
  font-size: 13px;
  font-weight: bold;
  padding: 6px 14px;
  border-radius: 20px;
  text-decoration: none;
  line-height: 1;
  transition: background-color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
  box-shadow: 0 2px 6px rgba(6, 199, 85, 0.3);
}

.header-line-btn__icon {
  display: flex;
  align-items: center;
}

/* ホバー時の挙動 */
.header-line-btn:hover {
  background-color: #05b34c;
  opacity: 0.95;
  transform: translateY(-1px);
}

.l-column.goods-list .modal .type, .l-column.goods-list .modal .goods-list__info {
    text-align: left;
    color: #000;
}

.l-column.goods-list .type__text-blue {
    display: inline-block;
    padding: 0.1rem 0.6rem;
    margin: 0 0.8rem
8px
 0.8rem 0;
    font-size: 1.1rem;
    border: solid 1px #00a5ff;
    color: #00a5ff;
}