@charset "UTF-8";
/*
Theme Name: My Custom Theme
*/

/* =========================================
   1. 基本設定 (Base & Variables)
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@400;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap');

:root {
    /* タイムテーブル用カラー */
    --tt-font: 'M PLUS Rounded 1c', 'Noto Sans JP', sans-serif;
    --tt-accent-cherry: #E11D48;
    --tt-accent-banana: #F59E0B;
    --tt-accent-peach: #EA580C; 
    --tt-accent-stage: #3B82F6;

    /* チケット・注意事項用カラー */
    --tk-font: 'M PLUS Rounded 1c', 'Noto Sans JP', sans-serif;
    --tk-color-sign: #E11D48;
    --tk-color-stage: #10B981;
    --tk-color-early: #4F86F7;
    --tk-color-general: #F59E0B;
    --tk-color-today: #EAB308;
    --tk-color-text-main: #333;
    --tk-color-text-sub: #555;
    --tk-color-bg-gray: #f0f2f5;
    --tk-color-border: #e5e7eb;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: "Noto Sans JP", sans-serif;
    background-color: #ffffff;
    color: #001f3f;
    min-height: 100vh;
    padding-top: 80px;
    overflow-x: hidden;
}

p, div { font-weight: 400; letter-spacing: 1px; }

.entry-content { margin-bottom: 0; margin-top: 0; }
.entry-content > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.wp-block-separator) { max-width: 100%; margin-bottom: 0; }
.site-main > article > *, .site-main > .not-found > *, .entry-content > *, [class*=inner-container] > *, .wp-block-template-part > *, .wp-block-post-template :where(li > *) { margin-bottom: 0; margin-top: 0; }
body:not(.single) .site-main > article:last-of-type .entry-footer { display: none; }

a { text-decoration: none !important; color: inherit; transition: 0.8s; }
a:hover { text-decoration: none; opacity: 0.4; }
a:link, a:active, a:focus { outline: 1px solid transparent !important; text-decoration: none; }
.site a:focus:not(.wp-block-button__link):not(.wp-block-file__button) { background: transparent !important; color: #333; }
:focus { outline: none !important; }
.site a:focus:not(.wp-block-button__link):not(.wp-block-file__button) img { outline: none !important; box-shadow: none !important; }

/* =========================================
   2. ユーティリティ (Utility Classes)
   ========================================= */

.pc { display: block !important; }
.sp { display: none !important; }
.sp-img { display: none; }
.pc-img { display: block; }

@media only screen and (max-width: 768px) {
    .sp-img { display: block; }
    .pc-img { display: none; }
}
@media only screen and (max-width: 500px) {
    .pc { display: none !important; }
    .sp { display: block !important; }
}

/* =========================================
   3. ヘッダー & ナビゲーション (Header & Nav)
   ========================================= */

.fixed-header {
    position: fixed; top: 0px; left: 0; width: 100%; height: 90px !important; background-color: transparent; z-index: 10000; display: flex; justify-content: flex-start; align-items: center; padding-left: 2vw; pointer-events: none; padding-top: 1.5vw;
}
.header-logo-img { height: 4vw !important; width: auto; display: block; filter: none; pointer-events: auto; }
.fixed-logo { opacity: 1; visibility: visible; transition: none; }
header.is-show .fixed-logo { opacity: 1; visibility: visible; pointer-events: auto; }

.site-header { display: block; padding-top: 0; }
.site-header > .site-logo { width: 30%; padding-bottom: calc(var(--global--spacing-vertical) * 0.2); border-bottom: none; text-align: left; }
.site-logo .custom-logo { max-width: 400px; max-height: var(--branding--logo--max-height); height: auto; width: 100%; }
.site-logo .custom-logo img { width: 100%; }

.hamburger-btn {
    position: fixed; top: 20px; right: 20px; width: 65px; height: 65px; z-index: 2147483647 !important; cursor: pointer; background: #af4154 !important; border: none !important; border-radius: 50% !important; box-shadow: none !important; outline: none; display: flex; flex-direction: column; justify-content: space-evenly !important; padding: 10px 6px; pointer-events: auto !important; transform: translateZ(0) !important;
}
.hamburger-btn span { display: block; width: 60% !important; height: 3px !important; margin: 0 auto; background-color: #fff !important; transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55); border-radius: 10px; box-shadow: none !important; }
.hamburger-btn.active span:nth-child(1) { transform: translateY(11.5px) rotate(45deg); }
.hamburger-btn.active span:nth-child(2) { opacity: 0; transform: scale(0); }
.hamburger-btn.active span:nth-child(3) { transform: translateY(-11.5px) rotate(-45deg); }

.x_btn { background-color: #fff !important; right: 95px !important; border: solid 2px #af4154 !important; justify-content: center !important; align-items: center !important; }
.x_btn img { width: 50%; height: auto; margin: 0; }
.x_btn2 { display: none; }
.x_btn a {
    padding: 0 0 2px 0 !important;
}
.global-nav {
    position: fixed; top: 0; left: auto !important; right: 0 !important; width: 50% !important; height: 100vh !important; min-height: 100%; gap: 0 !important; background-color: rgb(255 248 251 / 96%) !important; border-left: solid 4px #af4154; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; padding-top: 3vw; text-align: left !important; z-index: 9998; transform: translateY(-100%); transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94); visibility: visible; opacity: 1; pointer-events: auto;
}
.global-nav.active { transform: translateY(0); }

.nav_warp { width: 80%; margin: 0 auto; }
.nav_box_warp { width: 100% !important; display: flex !important; justify-content: flex-start; }
.global-nav ul { text-align: left !important; list-style: none; }
.global-nav ul.nav_box { width: 48% !important; max-width: 1000px; display: flex !important; flex-direction: column; align-content: flex-start; padding-left: 1rem; gap: 0 !important; }
li.nav_box_li { padding: 0.6rem 0; }
.global-nav ul li a { position: relative; display: block; font-weight: 900; font-size: 1.75rem; line-height: 1.3em; }
.global-nav a { color: #af4154; padding: 10px 0; font-family: 'Noto Sans JP', sans-serif; font-weight: 700; letter-spacing: 0.1em;}
.global-nav a::after { background: transparent !important; }

a.nav_top:before { content: ""; background-color: #ff85b5; display: inline-block; left: 0; top: 50%; bottom: 50%; height: 1.5rem; width: 1.5rem; margin-right: 0.5rem; -webkit-mask: url("https://boyslove.tokyo/wp-content/uploads/image/icon_flower.svg"); mask: url("https://boyslove.tokyo/wp-content/uploads/image/icon_flower.svg"); -webkit-mask-size: cover; mask-size: cover; vertical-align: middle; transform: translateY(-16%) translateX(0%); }

ul.dropdown__lists { width: 100%; display: flex !important; flex-direction: column; align-items: flex-start; gap: 0 !important; padding-left: 2rem; }
.dropdown__lists li a { font-size: 1.1rem !important; padding: 0px 0 7px 1rem; line-height: 1em; font-weight: 700 !important; }
.dropdown__lists li a:before { content: ''; width: 7px; height: 7px; border: 0; border-bottom: solid 3px #ff85b5; border-right: solid 3px #ff85b5; transform: rotate(45deg); position: absolute; top: -0.3em; left: 0; bottom: 0; margin: auto; }

.nav_button {
    width:100%;
}
.nav_button a {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 60%;
    margin: 0 1rem 2rem 1rem;
    padding: .5em 1em .5em 1em;
    border: 2px solid #ffffff;
    border-radius: 10px;
    background-color: #ff85b5;
    color: #fff;
    font-size: 1.25em;
}

@media only screen and (min-width: 769px) {
.site-header {
    padding-top: calc(var(--global--spacing-vertical) / 0.75);
    }
.page-overlay {
    background-color: rgb(255 255 255 / 0%);
    }
}
@media only screen and (max-width: 768px) {
.x_btn {
    right: 10px !important;
    top: 70px !important;
}
.x_btn img {
    width:50%;
    text-align:center;
    margin: 0 auto;
}
.x_btn1 {
    display:none;
}
.x_btn2 {
    display:block;
    position: static !important;
    margin-bottom:1rem;
    border: none !important;
}
.global-nav {
    width: 70% !important;
    padding-right: 0px;
    border-left: solid 3px #af4154;
}
.nav_warp {
    width: 80%;
}
.nav_box_warp {
    flex-direction: column;
}
    
.nav_button a {
    width: 80%;
    margin: 0 0rem 2rem 0rem;
    padding: .5em 1em .5em 1em;
    font-size: 1.25em;
}
.global-nav ul li a {
    font-weight: 900;
    font-size: 5vw;
    line-height: 1em;
}
.global-nav ul.nav_box {
    width: 100% !important;
}
li.nav_box_li {
    padding: 0.6rem 0 0.9em;
}
ul.dropdown__lists {
    padding-left: 8vw;
}
.dropdown__lists li a {
    font-size: 3vw !important;
    padding:5px 0 10px 1rem;
    line-height: 1em;
}
}
@media only screen and (max-width: 500px) {
.fixed-header {
    height:60px !important;
    }
.header-logo-img {
    height: 8vw !important;
}
.hamburger-btn {
    width: 55px;
    height: 55px;
    top: 10px;
    right: 10px;
}
.hamburger-btn.active span:nth-child(1) {
    transform: translateY(8.6px) rotate(45deg);
}
.hamburger-btn.active span:nth-child(3) {
    transform: translateY(-8.6px) rotate(-45deg);
}
.nav_warp {
    width: 80%;
}
.nav_button a {
        width: 100%;
        margin: 0 0rem 1rem 0rem;
        padding: .5em 0.5em .5em 0.5em;
        font-size: 0.8em;
    }
li.nav_box_li {
        padding: 0.2rem 0 0.5em;
    }
.global-nav ul li a {
        font-size: 5.5vw;
}
.global-nav a {
        padding: 10px 0 5px;
    }
.dropdown__lists li a {
        font-size: 4vw !important;
        padding: 5px 0 5px 1rem;
}
.global-nav ul.nav_box {
     padding-left: 0rem;
    }
}

/* =========================================
   4. 共通コンポーネント & エフェクト
   ========================================= */

.page-title-area {
    text-align: center; margin: 50px auto 30px; background-color: #ffffff; border: 2px solid #001f3f; width: fit-content; min-width: 300px; padding: 10px 13px 15px; display: block; position: relative; z-index: 1;
}
.page-title-area .page-title { font-size: 4rem; font-weight: 900; color: #222; letter-spacing: 0.1em; line-height: 1; }
.page-subtitle { font-size: 0.9rem; margin-top: 5px; color: #666; font-weight: 700; }
@media (min-width: 769px) { .page-title-area { margin-bottom: 90px; } }
@media (max-width: 768px) { .page-title-area .page-title { font-size: 2.5rem; } }

.contents_title { width:100%; margin: 0 auto 1rem; text-align:center; }
.contents_title img { width: auto; height: 3.5rem; display:block; margin: 0 auto; }
.contents_title_sub { margin : 0 auto; text-align:center; font-weight:800; padding-top:10px; font-size:1.25rem; letter-spacing:1px; color:#ff4595; }
.content h2 { font-size: 2.5rem; margin: 3rem auto 0rem; font-weight:800; text-align:center; color :#afa15a; letter-spacing : 10px; }
@media only screen and (max-width: 500px) {
    .contents_title { padding-bottom: 0rem !important; margin: 0 auto 0.5rem; }
    .contents_title img { height: 2.2rem; object-fit: contain; }
    .contents_title_sub { padding-top: 3px; font-size: 1.2rem; }
}

.confetti { position: fixed; top: -20px; z-index: 5000 !important; pointer-events: none; animation: fall-heart linear infinite; user-select: none; line-height: 1; font-size: 1.3rem; text-shadow: 0 0 5px rgba(255, 182, 193, 0.4); }
@keyframes fall-heart { 0% { transform: translateY(-10vh) translateX(0) rotate(0deg); opacity: 0.2; } 50% { transform: translateY(50vh) translateX(25px) rotate(180deg); opacity: 0.2; } 100% { transform: translateY(110vh) translateX(-25px) rotate(360deg); opacity: 0.1; } }
div#confetti-container { display: none; }

.page-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.4); z-index: 990; opacity: 0; visibility: hidden; pointer-events: none; transition: opacity 0.5s ease, visibility 0.5s ease; }
.page-overlay.active { opacity: 1; visibility: visible; pointer-events: auto; }
@media only screen and (min-width: 769px) { .page-overlay { background-color: rgb(255 255 255 / 0%); } }

.scroll-to-top { display: none !important; }

.button_warp { margin : 2rem auto 3rem; }
a.button_a { text-align:center; font-size:1.25rem; margin : 0 auto; display:block; border-radius:100px; padding:1.5rem 1.5rem; font-weight:800; letter-spacing:1px; }

a.button_b { position: relative; z-index: 1; background: linear-gradient(90deg, rgba(175, 65, 84, 1), rgba(149, 37, 47, 1) 50%, rgba(175, 65, 84, 1)); overflow: hidden; width:60%; color:#fff; outline : 2px solid #FFFFFF !important; outline-offset : -5px }
a.button_b::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; background-image: url('https://boyslove.tokyo/wp-content/uploads/image/bg_button01.png'); background-repeat: no-repeat; background-size:cover; background-position: center; opacity: 0.1;  }
a.button_b_layer { display: flex; justify-content: center; align-items: center; position: relative; margin: 0 auto; padding: .9em 2em .9em 2em; font-size: 1em; }
a.button_b_layer::after { position: absolute; right: 1em; transform: translateY(-50%) translateX(-50%);  transform-origin: left; width: 2em; height: .5em; background-color: #fff; clip-path: polygon(0 100%, 100% 100%, 70% 40%, 70% 90%, 0% 90%); content: ''; transition: transform .3s; }
a.button_b_layer span::before{ position: absolute; content: ""; background-image: linear-gradient(23deg, rgba(158, 216, 255, 1), rgba(255, 246, 216, 1)); display: inline-block; left: 2em; top:50%; height: 1.5rem; width: 1.5rem; -webkit-mask: url("https://boyslove.tokyo/wp-content/uploads/image/icon_flower.svg"); mask: url("https://boyslove.tokyo/wp-content/uploads/image/icon_flower.svg"); -webkit-mask-size: cover; mask-size: cover; vertical-align: middle; transform: translateY(-50%) translateX(-50%); }
a.button_b_layer:hover::after { transform: translateY(-50%) scaleX(1.2); }

.button_white { position: relative; display: flex; justify-content: space-around; align-items: center; min-width: 70% !important; margin: 10px auto; padding: 2rem 1rem; background-color: #fff !important; color: #000 !important; transition: 0.3s ease-in-out; font-weight: 600; font-size: 1.5rem; border-radius: 50px; border: 0.2rem solid #543618; box-shadow: 0.2rem 0.2rem 0px 0.1rem #3a3cff; }
a .button_white:hover { transform: translate3d(0.2rem, 0.2rem, 0); box-shadow: none; opacity: 1; transition: all 0.2s; }
.button_white:after { content: ''; width: 20px; height: 20px; border-top: 5px solid #543618; border-right: 5px solid #543618; transform: rotate(45deg) translateY(-50%); position: absolute; top: 50%; right: 10%; border-radius: 1px; transition: 0.3s ease-in-out; }

@media screen and (max-width:500px){
    .button_warp { margin: 4vw auto 3vw; }
    a.button_b { width: 95%; color: #fff; }
    a.button_b_layer { padding: .7em 1em .7em 1em; font-size: 0.8em; }
    a.button_b_layer span::before { left: 1.8em; top: 50%; height: 1.3rem; width: 1.3rem; }
    a.button_b_layer::after { right: 0em; }
    .button_white { min-width: 100% !important; font-size: 1.25rem; padding: 1rem 1rem; }
}

/* =========================================
   5. セクションデザイン (About, Event, News...)
   ========================================= */

.warp { position: relative; margin: 0; padding: 0; z-index: 0; overflow: hidden; }
.warp::before { content: ''; top: 0; left: 0; width: 100%; height: 100vh; display:block; z-index:-1; background-image: url('https://boyslove.tokyo/wp-content/uploads/image/bg.webp'), linear-gradient(90deg, #dbdbdb80 1px, transparent 1px), linear-gradient(#dbdbdb80 1px, transparent 1px); background-position: top, 10px 10px, 10px 10px; background-size: 100% auto, 33px 33px, 33px 33px; position: fixed; }
@media only screen and (max-width: 500px) {
    .warp::before { background-image: url('https://boyslove.tokyo/wp-content/uploads/image/bg_sp.webp'), linear-gradient(90deg, #dbdbdb80 1px, transparent 1px), linear-gradient(#dbdbdb80 1px, transparent 1px); }
}

.mv-content { background-image: linear-gradient(0deg, #fff2f6, #ffd4e1); background-size: contain; background-repeat: no-repeat; background-position: center center; margin: 0 auto; padding: 0; }
.mv { max-width:100% !important; width: 100% !important; margin: 0 auto; }
.mv img { max-width:auto !important; width: 100% !important; }

body.home { overflow: hidden; padding-top: 0; }
body.home .hamburger-btn span { background-color: #ffffff; }

.scroll-container { height: 100vh; scroll-snap-type: y mandatory; overflow-y: scroll; scroll-behavior: smooth; }
.scroll-container .section { height: 100vh; width: 100%; scroll-snap-align: start; position: relative; overflow: hidden; }
.scroll-container .section.footer-section { height: auto; min-height: auto; scroll-snap-align: start; }
.text-content { position: relative; z-index: 2; text-align: left; width: 100%; background-color: transparent; padding: 20px 5%; display: flex; justify-content: space-between; align-items: flex-end; }
.page-number { position: relative; z-index: 10; color: #001f3f; font-family: "M PLUS 1p", sans-serif; display: flex; align-items: baseline; gap: 5px; pointer-events: none; margin-left: 20px; flex-shrink: 0; }
.page-num-current, .page-num-divider, .page-num-total { font-size: 2.5rem; font-weight: 900; line-height: 1; }
.section-link { display: flex; flex-direction: column; justify-content: flex-end; align-items: center; width: 100%; height: 100%; text-decoration: none; padding-bottom: 12vh; }
.bg-image { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; object-position: center center; z-index: 1;  }
.section-title { font-family: "M PLUS 1p", sans-serif; font-size: 3.5rem; font-weight: 800; color: #001f3f; line-height: 1.4; letter-spacing: 0.1em; padding: 0; display: inline-block; }
.scroll-container .section:nth-child(1), .scroll-container .section:nth-child(2), .scroll-container .section:nth-child(3) { background-color: #fff0f5; background-image: radial-gradient(#ffb6c1 3px, transparent 3px), radial-gradient(#ffb6c1 3px, transparent 3px); background-size: 24px 24px; background-position: 0 0, 12px 12px; position: relative; z-index: 1; }
@media (max-width: 768px) {
    .section-title { font-size: 1.8rem; } .text-content { padding: 20px 5%; } .section-logo-img { width: 260px; margin-top: 15px; } .page-number { margin-left: 10px; } .page-num-current, .page-num-divider, .page-num-total { font-size: 1.2rem; }
}

.content { max-width: 90%; margin: 5% auto 1%; }
.content_box { max-width: 1000px !important; width: 90%; margin: 0 auto; }
p.contents_text { font-size:1.1rem; line-height:1.5rem; font-weight:500; }
.bg .content { margin: 0 auto ; padding: 5% 0 4%; }
.bg h2 { margin: 0rem auto 0.5rem !important; color: #fff !important; }
@media only screen and (max-width: 500px) {
    .content_box { width: 95%; } .content { max-width: 95%; } p.contents_text { font-size: 0.9rem; line-height: 1.35rem; }
    .bg .content { padding: 12% 0 11% !important; }
}

.about_warp { position:relative; }
.bg_about { margin-top: 14vw; background:#abdcf4; width: auto; position: relative; margin-bottom: 8vw; }
.bg_about::before { position: absolute; content: ""; background-image: url('https://boyslove.tokyo/wp-content/uploads/image/about_f.svg'); background-repeat: no-repeat; background-position: center top; background-size: contain; top: -13vw; bottom: -13vw; left: 0; right: 0; z-index: 0; display: block; }
.bg_about::after { position: absolute; content: ""; background-image: url('https://boyslove.tokyo/wp-content/uploads/image/nami.svg'); background-repeat: no-repeat; background-position: center top; background-size: contain; height: 10vw; bottom: 0; top: 98%;  left: 0; right: 0; z-index: 0; display: block; }
.bg_about .content { padding: 0% 0 2% !important; }
.bg_about .content_box { position: relative;  }
.about p { text-align:center; color: #af4154 !important; font-weight: 800 !important; font-size: 1.5rem !important; line-height: 2.5rem !important; }
.about { background-color:#fff; width:70%; padding: 2rem 3rem 4rem 3rem; margin:0 auto; border-radius: 0px 0px 12px 12px; }
.about_1 { border-radius: 2000px 2000px 0px 0px; padding:4rem 3rem 0rem 3rem; }
.about .accent { display:block !important; width:55%; margin:2% auto 0 !important; text-align:center; }
.about .accent img { width:100%; text-align:center; }
.about ul { text-decoration:none !important; display:flex; flex-wrap: wrap; justify-content: center; width:80%; margin : 0 auto; list-style: none; padding: 4% 0 1%; }
.about ul li { width:32%; margin: 2px; }

.about_warp .uchiwa, .about_warp .flower_01left2, .about_warp .flower_02left, .about_warp .flower_01left3, .about_warp .ribbon_y, .about_warp .ribbon_p, .about_warp .flower_02right2, .about_warp .flower01right, .about_warp .flower_01right3, .about_warp .oshi { pointer-events: none; }
.about_warp .ribbon_p { width: 21%; height: auto; top: 5%; right: 6%; transform:rotate(20deg); }
.about_warp .uchiwa { width: 17%; height: auto; top: 0%; left: 8%; transform: rotate(-20deg); }
.about_warp .oshi { width: 16%; height: auto; bottom: 0%; right: 8%; transform:rotate(10deg); }
.about_warp .ribbon_y { width: 21%; height: auto; bottom: 0%; left: 4%; transform:rotate(-20deg); }
.about_warp .flower_02left { width: 12%; height: auto; top: 49%; left: 10%; transform:rotate(89deg); }
.about_warp .flower_01left2 { width: 12%; height: auto; top: 28%; left: -3%; }
.about_warp .flower_01left3 { width: 8%; height: auto; bottom: 23%; left: 3%; }
.about_warp .flower01right { width: 9%; height: auto; top: 48%; right: 11%; }
.about_warp .flower_02right2 { width: 14%; height: auto; top: 33%; right: -4%; }
.about_warp .flower_01right3 { width: 8%; height: auto; bottom: 24%; right: 5%; }

@media only screen and (max-width: 768px) {
    .about { margin: 0vw auto 0vw !important; width: 90% !important; padding: 4% 8% 7% 8% !important; }
    .bg_about { margin-top: 14%; margin-bottom: 8%; padding-bottom: 7%; padding-top: 2%; }
    .about_1 { padding: 10% 8% 0% 8% !important; }
    .about_warp .uchiwa { width: 21%; top: 2%; left: 0%; }
    .about_warp .ribbon_p { width: 23%; top: 5%; right: -2%; }
    .about_warp .flower_02left { width: 17%; height: auto; top: 55%; left: -2%; }
    .about_warp .flower_01left2 { width: 16%; height: auto; top: 27%; left: -3%; }
    .about_warp .ribbon_y { width: 25%; height: auto; bottom: -3%; left: -3%; }
    .about_warp .flower_01left3 { width: 14%; height: auto; bottom: 15%; left: -3%; }
    .about_warp .flower_02right2 { width: 20%; height: auto; top: 25%; right: -6%; }
    .about_warp .flower_01right3 { width: 14%; height: auto; bottom: 16%; right: -3%; }
    .about_warp .flower01right { width: 12%; height: auto; top: 53%; right: 0%; }
    .about_warp .oshi { width: 21%; height: auto; bottom: -4%; right: 0%; }
}
@media only screen and (max-width: 500px) {
    .about .accent { font-size: 1.2rem; line-height: 2.3rem; width: 81%; margin: 5% auto 0 !important; }
    .about p { text-align:center !important; font-size: 1rem !important; line-height: 1.5rem !important; }
    .about ul { width: 100%; padding: 4vw 0 1%; }
    .about ul li { margin: 0px; }
    .about_warp .flower_02left { width: 17%; height: auto; top: 55%; left: -2%; }
    .about_warp .flower_01left2 { width: 16%; height: auto; top: 23%; left: -2%; }
    .about_warp .ribbon_y { width: 25%; height: auto; bottom: -3%; left: -3%; }
    .about_warp .flower_01left3 { width: 14%; height: auto; bottom: 15%; left: -3%; }
    .about_warp .flower_02right2 { width: 20%; height: auto; top: 23%; right: -4%; }
    .about_warp .flower_01right3 { width: 14%; height: auto; bottom: 16%; right: -3%; }
    .about_warp .flower01right { width: 12%; height: auto; top: 53%; right: 0%; }
}

.creator_warp { width:80%; margin : 2vh auto; }
.creator p.contents_text { color:#af4154 !important; text-align:center; margin: 1rem auto; }
@media only screen and (max-width: 500px) {
    .bg_creator .content { padding: 15% 0 8% !important; }
    .creator_warp { width: 95%; margin: 1vh auto; }
    .creator p.contents_text { text-align: left; margin: 0vw auto 5vw; }
}

.event { position:relative; }
.bg_event { margin-top: 0%; background: url(https://boyslove.tokyo/wp-content/uploads/image/bg_event.webp) repeat top left ; width: auto; margin-bottom: 8vw; background-size: 30%; clip-path: ellipse(100% 100% at 50% 100%); }
.event .bg_cherry { width:8vw; height:auto; top:1vw; right:9vw; transform:rotate(20deg); }
.event .blt_f01 { width: 14%; height: auto; bottom: -3%; left: 9%; pointer-events: none; }
.bg_event .content { padding: 6% 0 5% !important; }
.contents_text2 { color: #af4154; font-weight: 800 !important; text-align:center; font-size: 1.75rem; line-height: 2.6rem; margin-bottom:2.8rem; }
.event .content_box{ max-width: 1200px !important; display:flex; justify-content: center; margin: 1vw auto 0vw; flex-direction: row; flex-wrap: wrap; }
.event_box { border-radius: 20px; width: 28%; display: flex; justify-content: center; align-items: center; outline: 2px solid rgb(255, 255, 255); outline-offset: -10px; margin: 1% 1.5%; padding : 1% 1%; position:relative; box-shadow: 2px 3px 0px 2px #62c7ff80; }
.event_box::before { position: absolute; content: ""; display: block; background-repeat: no-repeat; background-size: contain;  vertical-align: middle; z-index:100; pointer-events: none; }
.event_box_exhibition{ background-color: #7fb2ff; }
.event_box_exhibition::before { left: 2%; top: -1%; height: 100%; width: 27%; transform: scaleX(-1); background-image: url('https://boyslove.tokyo/wp-content/uploads/image/flower_02.webp'); }
.event_box_sainkai{ background-color: #ff94c6; }
.event_box_sainkai::before { left: 6%; top: -2%; height: 100%; width: 21%; background-image: url('https://boyslove.tokyo/wp-content/uploads/image/pen.webp'); }
.event_box_stage{ background-color: #ffa25c; }
.event_box_stage::before { left: 11%; top: 4%; height: 100%; width: 28%; background-image: url('https://boyslove.tokyo/wp-content/uploads/image/star.webp'); transform: rotate(342deg); }
.event_box_goods { background-color: #c3a5f7; }
.event_box_cafe { background-color: #ffda00; }
.event_box_goods, .event_box_cafe { margin-top:2vw; }
.button_heart { position:absolute; width: 30%; right: -6%; bottom: -3%; }
.event_box .contents_text { padding: 2% 0 2%; width:100%; margin:0 auto; color:#7c1829; font-weight:800; }
.event_box .contents_text_cs { text-align:center; }
.event_warp { width: 85%; margin: 1.5rem auto 1rem; }
.event_whitebox { background-color:#fff; position:relative; width:100%; height: 10.5rem; margin-top: 2.8rem; margin-bottom: 1rem; border-radius:10px; }
.event_whiteimg { position:absolute; bottom: 0.8rem; left: 50%; transform: translateX(-50%); text-align:center; width:100%; }
.event_whiteimg img { display:block; width: 78%; margin: 0 auto; }
.event_warp .contents_title { width: 95% !important; margin: 0 auto 0rem; display: flex; flex-direction: column; align-items: center; }
.event_warp .contents_title img { width: auto; height: 1.8vw; text-align: center; object-fit: contain; }
.event_warp .contents_title_sub { color:#fff; font-size: 2.2rem; padding-top: 0px; padding-bottom: 0rem; }

@media screen and (max-width:500px){
    .event .content { padding: 10% 0 10vw !important; }
    .bg_event { margin-bottom: 8vw; background-size: 90%; clip-path: ellipse(190% 100% at 50% 100%); padding-top: 6vw; margin-top: 5vw; padding-bottom: 10vw; }
    .event_box .contents_text { padding: 2% 0 6%; }
    .event_box_cafe .contents_text, .event_box_goods .contents_text { padding: 2% 0 0%; }
    .contents_text2 { font-size: 1.1rem; line-height: 1.7rem; margin: 0 auto 3vw; }
    .event .contents_text2 { font-size: 1.1rem; line-height: 1.8rem; width: 80%; margin: 2vw auto 4vw; }
    .event .content_box { justify-content: center; flex-direction: column; flex-wrap: wrap; align-content: center; }
    .event_box { width: 90%; display: flex; justify-content: center; margin: 1.8vw auto 5vw; padding: 4vw 0 5vw; box-shadow: 2px 2px 0px 1px #62c7ff80; }
    .event_warp { padding: 3.5% 0 3.5%; width: 80%; margin: 1% auto 1%; }
    .event_warp .contents_title img { height: 1.5rem; }
    .event_box_sainkai .event_whiteimg, .event_box_stage .event_whiteimg { bottom: 0.8rem; }
    .event_whiteimg img { width: auto; height: 10rem; }
    .event_whitebox { height: 9rem; margin: 8% auto 1.5%; width: 95%; }
    .button_heart { width: 23vw; right: -4vw; bottom: -2vw; }
    .event_box_exhibition::before { left: -2%; top: -2%; width: 28%; }
    .event_box_sainkai::before { left: 0%; top: -2%; width: 22%; }
    .event_box_stage::before { left: 8%; top: 5%; width: 26%; }
    .event .bg_cherry { width: 14vw; top: -6vw; left: 44%; }
    .event .blt_f01 { width: 37%; bottom: -2%; left: 32%; }
}

.bg_news { background: #f5f5f5 !important; }
.news_box { background-color: #fff; padding: 30px 60px; border-radius: 20px; }
.news-list{ list-style: none outside; margin: 0; padding: 0; }
.news-list .item a { display: flex; flex-wrap: wrap; flex-wrap: nowrap; text-decoration: none; color: #333 !important; border-bottom: 1px solid #CCC; padding: 20px 20px; }
.news-list .item:last-child a{ border:none; }
.news-list .item .date{ margin: 0; min-width: 140px; font-size: 0.9em; color: #999; padding: 0 20px 0 0; }
.news-list .item .category{ margin: 0; min-width: 140px; padding: 0 20px 0 0; }
.news-list .item .category span{ background: #afa15a; color: #FFF; text-align: center; display: inline-block; padding: 5px 20px 7px 20px; font-size: 0.9em; line-height: 1; border-radius: 2px; }
.news-list .item .title{ margin: 0; width: 100%; font-size: 1em; }
.news-list .item a:hover .title{ color: #00F; }
@media only screen and (max-width: 768px) {
    .news-list .item a{ flex-wrap: wrap; }
    .news-list .item .title{ margin-top: 0px; font-size: 1.2em; }
    .news-list .item .date { font-size: 1.4em; }
    .news_box { padding: 30px 40px; }
    .news-list .item .category span { padding: 5px 20px 5px 20px; font-size: 0.8em; }
    .news-list .item .category { line-height: 2; }
}
@media screen and (max-width:500px){
    .bg_news { margin: 20vw auto 0; }
    .bg_news .content_box { width:90%; }
    .news-list .item a{ padding: 10px 10px; }
    .news-list .item .date{ min-width: 100px; font-size: 0.9em; }
    .news-list .item .title{ margin-top: 0px; font-size: 0.9em; }
    .news_box { padding: 15px 10px; border-radius: 20px; }
    .news-list .item .category span { padding: 5px 20px 5px 20px; font-size: 0.6em; }
    .news-list .item .category { line-height: 1.2; }
}

.sns .contents_text2 { margin-bottom: 0vw; margin-top: 3vw; }
.button-56 { display: flex; justify-content: center; align-items: center; min-width: 70%; margin: 10px auto; padding: 2rem 0.5rem; border: 1px solid #afa15a; border-radius: 2px; background-color: #000000; color: #fff; font-weight: 600; font-size: 1.5rem; }
a .button-56:hover { background-color: #494949; color: #fff; }
.button-56::before { content: ""; display: inline-block; background: url(https://boyslove.tokyo/wp-content/uploads/2025/10/logo-white.png) no-repeat; width: 35px; height: 35px; margin: -3px 15px 0 0; background-size: contain; vertical-align: middle; }
@media only screen and (max-width: 500px) {
    .button-56 { min-width: 100%; padding: 1rem 0.5rem; font-size: 1rem; }
    .button-56::before { width: 25px; height: 25px; }
}

.information { margin: 8vw auto 8vw; }
.content table{ border-collapse:collapse; margin:3% auto; }
.content th { color: #af4154 !important; font-weight: 800; letter-spacing: 1px; font-size: 1.25rem; }
.content td, .content th{ border-top:1px solid #af4154 !important; padding:2rem; text-align: left; vertical-align: top; }
.content tr:last-child td, .content tr:last-child th{ border-bottom:1px solid #666;  }
.content td p { margin: 0 0 10px 0; }
table td, table th, .wp-block-table td, .wp-block-table th { padding: calc(0.5 * var(--global--spacing-unit)); border: none; }
.content tr:last-child td, .content tr:last-child th { border-bottom: 1px solid #af4154 !important; }
@media only screen and (max-width: 500px) {
    .information { margin: 20vw auto 25vw; }
    .information .content td { line-height: 1.4rem; }
    .information .content_box { width: 90%; }
    .content td p { line-height: 1.4rem; }
    .content table{ margin:5% auto; font-size: 1rem; }
    .content tr { padding: 1rem 0rem 1rem; }
    .content td, .content th{ display:block; }
    .content th{ padding: 1.5rem 0rem 0.5em 0rem !important; border-top: 2px solid #af4154 !important; font-size: 1.25rem; line-height: 100%; }    
    .content td { border-top:none !important; padding: 0rem 0rem 1.5rem 0rem !important; }
    .content tr:last-child td, .content tr:last-child th { border-bottom: none !important; }
}

.bg_blue { padding: 8% 0; margin-top:5%;  background: #4283eb; position: relative; }
.bg_blue::before { content: ""; width: 100%; height: 80px;  background-color: #fff; position: absolute; top: -1px; clip-path: polygon(50% 100%, 100% 0%, 0% 0%); }
.bg_blue .content h2 { color:#fff; }
@media only screen and (max-width: 500px) {
    .bg_blue { margin-top: 15%; }
    .bg_blue::before { height: 40px; }
    .bg_blue .content h2 { font-size: 1.2rem; letter-spacing: 3px; }
}

.company { display:flex; gap: 1.25rem; flex-wrap: wrap; justify-content: center; margin-top:1vw; }
.company_img { display:inline-block; width:30%; }
@media only screen and (max-width: 500px) {
    .company { gap: 0.1rem; }
    .company_img { width: 45%; font-size: 0.8rem; }
}

.popup { 
    width: 12vw !important; 
    bottom: 25px; 
    right: 1rem; 
    z-index: 9997 !important; /* メニュー(9998)やヘッダー(10000)の下に隠れるように調整 */
    position: fixed; 
    background: transparent; 
    opacity:1 !important; 
    visibility:visible !important; 
    pointer-events: auto !important; /* ←クリックを有効にする魔法の1行は残したまま！ */
}
.popup a{ display: block; text-decoration: none; outline: 1px solid transparent; background: transparent !important; }
.popup a:focus { outline: 1px solid transparent; }
.popup a:hover, .popup a:active { text-decoration: none; background: transparent !important; }
.popup img { width: 100%; height: auto; }
@media only screen and (max-width: 1024px) { .popup { width: 20vw; bottom: 10px; } }
@media only screen and (max-width: 500px) { .popup { width: 28vw !important; bottom: 1vw !important; right: 1vw !important; } }

.swiper { margin: 3vw 0 0.5vw; }
.slide-pagination-wrapper { display: flex; justify-content: center; }
.swiper-pagination { position: static; }
.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction { width: auto; }
.swiper-pagination-bullets { display: flex; align-items: center; }
.swiper-button-prev, .swiper-button-next { position: static; margin-top: initial; color:#ff70ae; }
.swiper-button-prev { margin-right:10px; }
.swiper-button-next { margin-left:10px; }
.swiper-button-prev::after, .swiper-button-next::after { display: none; }
.swiper-slide img { border: 1px solid #7c1829; }
@media only screen and (max-width: 500px) { .swiper { margin: 8vw 0 0vw; } }


/* =========================================
   6. 参加作家一覧 (Artists)
   ========================================= */
.artists-container { max-width: 800px; margin: 0 auto; padding: 60px 20px 100px; position: relative; z-index: auto !important; }
.artists-list { display: flex; flex-direction: column; gap: 0; }
.artist-item { padding: 8px 0 15px; border-bottom: 1px solid rgba(0, 0, 0, 0.1); display: flex; flex-direction: column; gap: 5px; }
.artist-item:last-child { border-bottom: none; }
.name-row { display: flex; align-items: center; flex-wrap: wrap; gap: 15px; }
.artist-group { display: flex; flex-direction: column; gap: 7px; }
.work-row { display: flex; align-items: center; flex-wrap: wrap; margin: 5px 0; font-size: 1rem; line-height: 1.4; color: #333; }
.artist-name { font-size: 2rem; font-weight: 800; color: #001f3f; letter-spacing: 0.07em; padding-top: 3px; }
.artist-name-sub { font-size: 1rem; font-weight: 700; color: #333; padding-top: 3px; }
.honorific { font-size: 0.5em; font-weight: 500; margin-left: 10px; color: #333; }
.work-title { font-size: 1rem; font-weight: 700; color: #333; }
.publisher-name { font-size: 0.7rem; font-weight: 700; color: #333; }

.artist-nav-container { display: flex; justify-content: center; gap: 15px; max-width: 800px; margin: 30px auto 60px; padding: 0 10px; box-sizing: border-box; }
.artist-nav-btn { display: flex; justify-content: center; align-items: center; width: 48%; max-width: 380px; padding: 15px 10px; border-radius: 6px; text-decoration: none !important; font-weight: 700; font-size: 1.1rem; line-height: 1.4; transition: all 0.2s ease; background-image: none !important; box-shadow: none; }
.artist-btn-pink { background-color: #D65F6F !important; color: #ffffff !important; border: none !important; opacity: 0.4; }
.artist-btn-pink:hover { background-color: #C45363 !important; transform: translateY(-2px); opacity: 1; }
.artist-btn-pink.active { opacity: 1 !important; }
.artist-btn-blue { background-color: #001f3f !important; color: #ffffff !important; border: none !important; opacity: 0.4; }
.artist-btn-blue:hover { background-color: #003366 !important; transform: translateY(-2px); opacity: 1; }
.artist-btn-blue.active { background-color: #003366 !important; color: #ffffff !important; border: none !important; opacity: 1 !important; }

@media (min-width: 769px) { .artist-item { padding: 24px 0 45px; } }
@media (max-width: 768px) {
    .artists-container { padding-top: 40px; }
    .artist-name { font-size: 1.3rem; } .artist-name-sub { font-size: 1rem; } .honorific { font-size: 0.5em; } .work-title { font-size: 1rem; } .publisher-name { font-size: 0.7rem; }
    .artist-nav-container { flex-direction: column; align-items: center; gap: 15px; }
    .artist-nav-btn { width: 100%; max-width: 320px; font-size: 1rem; }
}


/* =========================================
   7. タイムテーブル (TimeTable)
   ========================================= */
.tt-wrapper { font-family: var(--tt-font); background-color: #fff; padding-bottom: 120px !important; color: #333; position: relative; z-index: auto; }
.artists-container.tt-wrapper { width: 90% !important; max-width: 1400px !important; margin: 0 auto !important; padding: 40px 0 120px !important; }

.tt-date-tabs { display: flex; justify-content: center; margin-bottom: 20px; }
.tt-date-tabs-inner { display: flex; gap: 10px; }
.tt-tab-btn { border-radius: 40px; border: none; background: #000 !important; color: #fff !important; font-weight: 900; cursor: pointer; transition: 0.3s; text-decoration: none !important; }
.tt-tab-btn:hover { background: #333 !important; color: #fff !important; opacity: 0.9; }
.tt-tab-btn.active { background-color: var(--tt-accent-cherry) !important; color: #fff !important; box-shadow: 0 4px 10px rgba(225, 29, 72, 0.4); }
.tt-tab-btn:focus, .tt-tab-btn:active, .tt-tab-btn:visited { color: #fff !important; outline: none; }

.tt-pc-container { display: none; background: #fff; border-radius: 24px; border: 2px solid #f3f4f6; box-shadow: 8px 8px 0px 0px rgba(0,0,0,0.05); overflow: hidden; position: relative; margin-bottom: 60px; }
.tt-header-row { display: grid; grid-template-columns: 80px 1.5fr 1.5fr 1.5fr 2.5fr; border-bottom: 2px solid #f3f4f6; }
.tt-header-cell { padding: 16px; display: flex; align-items: center; justify-content: center; border-right: 2px solid #f3f4f6; text-align: center; }
.tt-header-time { background: #fafafa !important; color: #9ca3af; font-weight: 900; }
.tt-header-booth { font-weight: 900; color: #fff !important; border-radius: 50px; padding: 8px 16px; display: inline-block; }
.booth-1-bg { background-color: #FFF1F2 !important; } .booth-1 { background-color: var(--tt-accent-cherry) !important; }
.booth-2-bg { background-color: #FFFBEB !important; } .booth-2 { background-color: var(--tt-accent-banana) !important; }
.booth-3-bg { background-color: #FFF7ED !important; } .booth-3 { background-color: var(--tt-accent-peach) !important; }

.tt-body { position: relative; }
.tt-grid-bg, .tt-events-layer { position: absolute; top: 0; left: 0; width: 100%; display: grid; grid-template-columns: 80px 1.5fr 1.5fr 1.5fr 2.5fr; }
.tt-grid-col { border-right: 2px solid #f3f4f6; position: relative; }
.tt-time-marker { position: absolute; width: 100%; border-top: 2px dashed #e5e7eb; }
.tt-time-label { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: #333; color: #fff; font-size: 0.8rem; padding: 2px 8px; border-radius: 12px; z-index: 2; }

.tt-event-col { position: relative; padding: 0 4px; pointer-events: auto; }
.tt-card { position: absolute; left: 4px; right: 4px; background: #fff; border-radius: 16px; box-shadow: 0 4px 12px rgba(0,0,0,0.08); cursor: pointer; transition: 0.2s; display: flex; flex-direction: column; overflow: hidden; border: 1px solid #f0f0f0; container-type: inline-size; }
.tt-card:hover { transform: translateY(-3px); z-index: 10; box-shadow: 0 8px 20px rgba(0,0,0,0.12); }
.tt-card-top-bar { height: 6px; width: 100%; flex-shrink: 0; display: block; }
.tt-card-content { padding: 8px; display: flex; flex-direction: column; height: 100%; overflow: hidden; }
.tt-card-time-wrap { margin-bottom: 4px; flex-shrink: 0; }
.tt-card-time { display: inline-block; padding: 3px 10px; border-radius: 12px; color: #fff !important; font-size: 0.7rem; font-weight: 900; white-space: nowrap; }
.tt-card-author { font-size: 1.1rem; font-weight: 700; line-height: 1.3; color: #000; margin-bottom: 4px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; text-overflow: ellipsis; flex-shrink: 0; }
.is-pc-stage .tt-card-author { font-size: 1.25rem; line-height: 1.4; display: block; } /* 修正：2行表示(省略解除) */

@container (max-width: 130px) {
    .tt-card-content { padding: 6px 6px; }
    .tt-card-time { font-size: 0.6rem; padding: 2px 6px; }
    .tt-card-author { font-size: 0.85rem; margin-bottom: 2px; }
    .is-pc-stage .tt-card-author { font-size: 1rem; }
    .tt-card-info-group { padding-top: 2px; }
    .tt-card-title, .tt-card-publisher { font-size: 0.65rem; }
}
.tt-card-info-group { margin-top: auto; border-top: 1px dashed #eee; padding-top: 4px; flex-shrink: 0; }
.tt-card-title { font-size: 0.7rem; color: #444; line-height: 1.3; margin-bottom: 2px; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 1; overflow: hidden; text-overflow: ellipsis; }
.tt-card-publisher { font-size: 0.7rem; color: #444; }
.tt-card.is-stage .tt-card-author { font-size: 1.2rem; }

.tt-sp-container { display: block; padding: 0 16px; margin-bottom: 40px; }
.tt-sp-filters { display: flex; flex-direction: column; align-items: center; padding: 10px 0 20px; width: 100%; }
.tt-sp-filter-group { display: flex; justify-content: center; gap: 8px; margin-bottom: 10px; flex-wrap: wrap; }
.tt-sp-filter-group:last-child { margin-bottom: 0; }
.tt-filter-btn { flex-shrink: 0; border-radius: 50px; border: none; background: #000 !important; color: #fff !important; font-weight: 800; transition: all 0.3s; text-decoration: none !important; }
.tt-filter-btn:hover { background: #333 !important; color: #fff !important; }
.tt-filter-btn.active, .tt-filter-btn:active, .tt-filter-btn:focus, .tt-filter-btn:visited { background: var(--tt-accent-cherry) !important; color: #fff !important; outline: none; }
.tt-empty { padding: 40px; text-align: center; color: #999; border: 2px dashed #eee; border-radius: 10px; }
.tt-sp-list { display: flex; flex-direction: column; gap: 16px; padding-bottom: 20px; }
.tt-sp-card { background: #fff; border-radius: 16px; box-shadow: 0 4px 12px rgba(0,0,0,0.08); overflow: hidden; border: 1px solid #f0f0f0; }
.tt-sp-card-content { padding: 16px; }
.tt-sp-header { display: flex; justify-content: space-between; margin-bottom: 12px; }
.tt-sp-time { padding: 4px 12px; border-radius: 50px; color: #fff !important; font-size: 0.85rem; font-weight: 900; }
.tt-sp-booth { font-size: 0.75rem; background: #f0f0f0; padding: 4px 10px; border-radius: 50px; }
.tt-sp-card-author { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; line-height: 1.4; flex-shrink: 0; display: block;} /* 修正：SPも省略解除 */
.tt-sp-card-title { font-size: 0.85rem; color: #444; margin-bottom: 4px; }
.tt-sp-card-publisher { font-size: 0.85rem; color: #444; }

.tt-modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.6); backdrop-filter: blur(4px); z-index: 9999; display: none; align-items: center; justify-content: center; padding: 80px 20px 20px 20px; }
.tt-modal-overlay.active { display: flex; }
.tt-modal-container { background: #fff; width: 100%; max-width: 750px; border-radius: 24px; overflow: hidden; animation: ttPop 0.3s ease; font-family: var(--tt-font); color: #333; position: relative; }
@keyframes ttPop { 0% { transform: scale(0.95); opacity: 0; } 100% { transform: scale(1); opacity: 1; } }
.tt-modal-header { padding: 20px; display: flex; align-items: center; justify-content: center; color: #fff; position: relative; min-height: 60px; }
.tt-modal-close { position: absolute; right: 15px; top: 50%; transform: translateY(-50%); background: transparent !important; border: none; width: 36px; height: 36px; color: #fff !important; font-size: 26px; font-family: Arial, sans-serif; line-height: 0; cursor: pointer; padding: 0; padding-bottom: 4px; display: flex; align-items: center; justify-content: center; z-index: 10; }
.tt-modal-body { padding: 30px; max-height: 70vh; overflow-y: auto; }
.tt-modal-layout { display: flex; flex-direction: column; gap: 20px; }


.tt-modal-img-area { width: 100%; text-align: center; }

.tt-book-img { 
        width: 100%; 
        max-width: 100% !important; 
        max-height: 40vh; 
        height: auto; 
        object-fit: contain; 
    }

.tt-book-placeholder { width: 100%; max-width: 200px; margin: 0 auto; aspect-ratio: 2/3; background: #f3f4f6; border: 2px dashed #e5e7eb; border-radius: 12px; display: flex; flex-direction: column; align-items: center; justify-content: center; color: #aaa; }


.tt-modal-action-row { display: flex; gap: 10px; margin-bottom: 16px; width: 100%; align-items: flex-start; }
.tt-modal-time { flex: 1; display: flex; align-items: center; justify-content: center; padding: 8px 12px; border-radius: 50px; color: #fff !important; font-weight: 700; font-size: 0.9rem !important; text-align: center; box-sizing: border-box; min-height: 40px; max-height: 40px; line-height: 1; }
.tt-modal-ticket-btn { flex: 1; display: none; align-items: center; justify-content: center; padding: 8px 12px; border-radius: 50px; color: #fff !important; text-decoration: none !important; font-size: 0.9rem !important; font-weight: 700; font-family: 'M PLUS Rounded 1c', sans-serif; gap: 6px; transition: opacity 0.2s ease; box-sizing: border-box; min-height: 40px; max-height: 40px; line-height: 1; }
.tt-modal-ticket-btn:hover { opacity: 0.8; }
#tt-modal-author { font-size: 1.5rem; font-weight: 700; margin-bottom: 10px; line-height: 1.3; }
.tt-modal-mixed-info { font-size: 1rem; color: #444; line-height: 1.6; }
.tt-modal-pub { margin-top: 5px; font-size: 1rem; color: #444; }

.tt-modal-copyright { margin-top: 12px; font-size: 0.75rem; color: #888; line-height: 1.4; word-break: break-all; }

#tt-modal-booth { font-family: 'M PLUS Rounded 1c', sans-serif !important; font-weight: 800 !important; font-size: 1.4rem !important; letter-spacing: 0.1em; background: transparent !important; border: none !important; padding: 0 !important; text-shadow: 2px 2px 0px rgba(0,0,0,0.1); }
.tt-header-booth { font-family: 'M PLUS Rounded 1c', sans-serif !important; font-weight: 800 !important; letter-spacing: 0.05em; font-size: 1rem !important; }
.tt-sp-booth { font-family: 'M PLUS Rounded 1c', sans-serif !important; font-weight: 800 !important; letter-spacing: 0.05em; }
.tt-filter-btn { font-family: 'M PLUS Rounded 1c', sans-serif !important; font-weight: 800 !important; letter-spacing: 0.05em; }

@media (min-width: 769px) {
    .tt-pc-container { display: block; }
    .tt-sp-container { display: none; }
    .tt-modal-layout { flex-direction: row; align-items: flex-start; }
    .tt-modal-img-area { width: 48%; flex-shrink: 0; }
    .tt-tab-btn { padding: 15px 50px; font-size: 2rem; }
    .tt-filter-btn { padding: 8px 20px; font-size: 1rem; }
}
@media (max-width: 768px) {
    .tt-tab-btn { padding: 10px 30px; font-size: 1.2rem; }
    .tt-filter-btn { padding: 6px 14px; font-size: 0.85rem; }
    .tt-modal-time, .tt-modal-ticket-btn { font-size: 0.75rem !important; padding: 6px 10px; }
    .tt-sp-filters { padding: 10px 0 15px; }
    .tt-sp-filter-group { margin-bottom: 5px; }
    
    .tt-modal-img-area { width: 100%; display: block; text-align: center; margin-bottom: 15px; }
    .tt-book-img { width: 100%; max-width: 100% !important; max-height: 40vh; height: auto; object-fit: contain; }
    .tt-book-placeholder { max-width: 200px; margin: 0 auto; }
}
.tt-sp-filter-label { width: 100%; text-align: center; font-size: 1rem; font-weight: 800; color: #666; margin: 10px 0 5px; letter-spacing: 0.05em; position: relative; display: flex; align-items: center; justify-content: center; }
.tt-sp-filter-label::before, .tt-sp-filter-label::after { content: ""; flex: 1; height: 1px; background: #eee; margin: 0 15px; }


/* =========================================
   8. チケット・注意事項 (Tickets / Caution)
   ========================================= */
.tk-wrapper { font-family: var(--tk-font); background-color: #fff; padding-bottom: 120px !important; color: var(--tk-color-text-main); }
.artists-container.tk-wrapper { width: 90% !important; max-width: 1400px !important; margin: 0 auto !important; padding: 40px 0 120px !important; z-index: auto !important; }
.tk-container { width: 100%; max-width: 1400px; margin: 0 auto; padding: 20px 0; }

/* バンドル告知用スペシャルエリアのスタイル */
.tk-bundle-highlight {
    background: #fff5f7;
    border: 3px solid #ff4d85;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 8px 20px rgba(255, 77, 133, 0.15);
}
.tk-bundle-highlight h2 {
    color: #e6005c;
    margin-top: 0;
    font-size: 1.6rem;
    text-align: center;
    border-bottom: 2px dashed #ff99bb;
    padding-bottom: 15px;
    margin-bottom: 20px;
    font-weight: bold;
}
.tk-bundle-content {
    display: flex;
    flex-direction: column;
    align-items: center; 
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
}
.tk-bundle-text-area {
    width: 100%;
    text-align: center;
}
.tk-bundle-text-area .tk-bundle-intro {
    text-align: center;
    margin-bottom: 0;
}
.tk-bundle-img-area {
    width: 100%;
    max-width: 240px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.tk-bundle-img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 2px 4px 12px rgba(0,0,0,0.15);
    border: 1px solid #e5e7eb;
}
.tk-dummy-caption {
    font-size: 0.8rem;
    color: #666;
    margin-top: 8px;
    display: block;
    text-align: center;
}
.tk-bundle-intro {
    text-align: center;
    font-size: 1.1rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}
.tk-bundle-details {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #ffe6f0;
}
.tk-bundle-details ul {
    margin: 0;
    padding-left: 20px;
    line-height: 1.8;
    color: #444;
    font-size: 1.1rem;
}
.tk-bundle-details li {
    margin-bottom: 8px;
}
.tk-bundle-push {
    text-align: center;
    color: #e6005c;
    font-weight: bold;
    font-size: 1.2rem;
    margin-top: 20px;
    margin-bottom: 0;
}

.banner_warp {
    width: 60%;
    margin: 1em auto;
}
.banner_warp img {
    width: 100%;
    text-align: center;
}
@media (max-width: 768px) {
    .banner_warp {
        width: 95%;
        margin: 1em auto;
    }
}

.tk-section-heading { text-align: center; font-size: 1.8rem; font-weight: 900; letter-spacing: 0.05em; margin-bottom: 40px; position: relative; padding-bottom: 15px; color: #001f3f; }
.tk-section-heading::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 60px; height: 4px; background-color: #001f3f; border-radius: 50px; }

/* =========================================
   ▼ ナビゲーション（チケット・注意事項共通） ▼
   ========================================= */
.tk-ticket-nav,
.tk-page-nav { 
    background: #fff;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    margin: 0 auto 40px;
    max-width: 1400px;
    display: flex; 
    flex-wrap: wrap; 
    justify-content: center; 
    gap: 16px 32px; 
}

.tk-ticket-nav-row,
.tk-page-nav-row { 
    display: flex; 
    justify-content: center; 
    flex-wrap: wrap; 
    gap: 16px 32px; 
}

.tk-nav-btn {
    display: inline-flex;
    align-items: center;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none !important;
    color: #001f3f !important;
    transition: all 0.3s ease;
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 4px 8px !important;
    line-height: 1.4;
}

.tk-nav-btn::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-top: 2px solid #E11D48;
    border-right: 2px solid #E11D48;
    transform: rotate(45deg);
    margin-right: 10px;
    margin-top: 2px;
}

.tk-nav-btn:hover {
    color: #E11D48 !important;
    transform: translateX(4px);
}

/* =========================================
   ▼ 以下共通カードスタイル ▼
   ========================================= */

.tk-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; margin-bottom: 30px; }
.tk-card { background: #fff; border-radius: 20px; box-shadow: 0 8px 24px rgba(0,0,0,0.06); border: 1px solid var(--tk-color-border); overflow: hidden; display: flex; flex-direction: column; transition: transform 0.3s ease, box-shadow 0.3s ease; scroll-margin-top: 120px; }
.tk-card:hover { transform: translateY(-5px); box-shadow: 0 12px 32px rgba(0,0,0,0.1); }
.tk-card-header { color: #fff; font-size: 1.3rem; font-weight: 800; text-align: center; padding: 16px; letter-spacing: 0.05em; }

.tk-theme-sign { background-color: rgba(225, 29, 72, 0.05); }
.tk-theme-sign .tk-card-header { background-color: var(--tk-color-sign); }

.tk-theme-stage { background-color: rgba(16, 185, 129, 0.05); }
.tk-theme-stage .tk-card-header { background-color: var(--tk-color-stage); }

.tk-theme-early { background-color: rgba(79, 134, 247, 0.05); }
.tk-theme-early .tk-card-header { background-color: var(--tk-color-early); }

.tk-theme-general { background-color: rgba(245, 158, 11, 0.05); }
.tk-theme-general .tk-card-header { background-color: var(--tk-color-general); }

.tk-theme-today { background-color: rgba(234, 179, 8, 0.08); } 
.tk-theme-today .tk-card-header { background-color: var(--tk-color-today); }

.tk-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; background-color: transparent; }

.tk-buy-btn-wrapper { text-align: center; margin-bottom: 24px; padding-bottom: 20px; border-bottom: 1px dashed var(--tk-color-border); }
.tk-buy-btn { display: inline-flex; align-items: center; justify-content: center; color: #fff !important; font-weight: 800; font-size: 1.1rem; padding: 14px 30px; border-radius: 50px; text-decoration: none !important; transition: all 0.3s ease; box-shadow: 0 4px 12px rgba(0,0,0,0.15); width: 100%; max-width: 320px; letter-spacing: 0.05em; }
.tk-buy-btn:hover { transform: translateY(-3px); box-shadow: 0 6px 16px rgba(0,0,0,0.2); opacity: 0.9; }

.tk-theme-sign .tk-buy-btn { background-color: var(--tk-color-sign); }
.tk-theme-stage .tk-buy-btn { background-color: var(--tk-color-stage); }
.tk-theme-early .tk-buy-btn { background-color: var(--tk-color-early); }
.tk-theme-general .tk-buy-btn { background-color: var(--tk-color-general); }
.tk-theme-today .tk-buy-btn { background-color: var(--tk-color-today); }

.tk-info-list { flex: 1; }
.tk-info-list dt { font-weight: 800; font-size: 1rem; margin-bottom: 8px; padding-left: 12px; position: relative; color: #000; }
.tk-info-list dt::before { content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 4px; height: 14px; border-radius: 10px; background-color: #ccc; }
.tk-theme-sign dt::before { background-color: var(--tk-color-sign); }
.tk-theme-stage dt::before { background-color: var(--tk-color-stage); }
.tk-theme-early dt::before { background-color: var(--tk-color-early); }
.tk-theme-general dt::before { background-color: var(--tk-color-general); }
.tk-theme-today dt::before { background-color: var(--tk-color-today); }

.tk-info-list dd { margin: 0 0 20px 0; font-size: 0.95rem; color: var(--tk-color-text-sub); line-height: 1.6; }
.tk-info-list dd:last-child { margin-bottom: 0; }
.tk-info-list ul { list-style: none; padding: 0; margin: 0; }
.tk-info-list ul.tk-feature-list li { position: relative; padding-left: 1em; margin-bottom: 6px; }
.tk-info-list ul.tk-feature-list li::before { content: '・'; position: absolute; left: 0; }

.tk-text-red { color: #E11D48; font-weight: 700; }
.tk-note-small { font-size: 0.85em; color: #666; display: inline-block; margin-top: 2px; }

.tk-schedule-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}
.tk-schedule-list li {
    margin-bottom: 14px !important;
    padding-left: 0 !important;
    line-height: 1.6;
}
.tk-schedule-list li:last-child {
    margin-bottom: 0 !important;
}
.tk-schedule-list li::before {
    display: none !important;
}
.tk-schedule-badge {
    display: inline-block;
    background-color: #f0f4f8;
    color: #001f3f;
    font-weight: 800;
    font-size: 0.85rem;
    padding: 4px 10px;
    border-radius: 4px;
    border-left: 4px solid #001f3f;
    margin-bottom: 6px;
    line-height: 1.2;
    letter-spacing: 0.05em;
}

.tk-card-accordion { margin-top: 20px; }
.tk-card-accordion summary { font-size: 0.95rem; font-weight: 800; color: #001f3f; cursor: pointer; list-style: none; position: relative; padding: 12px 40px 12px 16px; background: rgba(255, 255, 255, 0.5); border: 1px solid var(--tk-color-border); border-radius: 10px; display: block; transition: background 0.3s; }
.tk-card-accordion summary:hover { background: rgba(255, 255, 255, 0.8); }
.tk-card-accordion summary::-webkit-details-marker { display: none; }
.tk-card-accordion summary::after { content: '＋'; position: absolute; right: 16px; top: 50%; transform: translateY(-50%); font-size: 1.3rem; color: #888; font-weight: 300; }
.tk-card-accordion[open] summary::after { content: 'ー'; }
.tk-card-accordion[open] summary { border-bottom-left-radius: 0; border-bottom-right-radius: 0; border-bottom: 1px dashed var(--tk-color-border); }
.tk-card-accordion-content { padding: 16px; background-color: rgba(255, 255, 255, 0.5); border: 1px solid var(--tk-color-border); border-top: none; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; animation: tkFadeIn 0.3s ease; }
.tk-card-accordion-content .tk-note-list { font-size: 0.85rem; margin-bottom: 0; }

.tk-accordion-wrapper { display: flex; flex-direction: column; gap: 16px; }
.tk-accordion-title { font-size: 1.1rem; font-weight: 800; padding: 16px 24px; cursor: pointer; position: relative; list-style: none; background: var(--tk-color-bg-gray); border: 1px solid var(--tk-color-border); border-radius: 12px; transition: background 0.3s; color: #001f3f; display: block; }
.tk-accordion-title::-webkit-details-marker { display: none; }
.tk-accordion-title:hover { background: #e5e7eb; }
.tk-accordion-title::after { content: '＋'; position: absolute; right: 24px; top: 50%; transform: translateY(-50%); font-size: 1.5rem; color: #888; font-weight: 300; }
.tk-accordion-item[open] .tk-accordion-title::after { content: 'ー'; }
.tk-accordion-item[open] .tk-accordion-title { border-bottom-left-radius: 0; border-bottom-right-radius: 0; border-bottom: 1px dashed var(--tk-color-border); }
.tk-accordion-content { padding: 24px; border: 1px solid var(--tk-color-border); border-top: none; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; background: #fff; animation: tkFadeIn 0.4s ease; }

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

.tk-note-subheading { font-size: 1.05rem; font-weight: 800; margin: 0 0 10px 0; color: #000; }
.tk-note-desc { font-size: 0.95rem; margin: 0 0 15px 0; line-height: 1.6; }
.tk-note-list { padding-left: 20px; margin: 0 0 24px 0; font-size: 0.95rem; line-height: 1.7; color: var(--tk-color-text-sub); }
.tk-note-list li { margin-bottom: 8px; }
.tk-note-list:last-child { margin-bottom: 0; }
.tk-id-card-box { background: #FFFBEB; border: 1px solid #FDE68A; border-radius: 12px; padding: 20px; margin: 20px 0; }
.tk-id-card-title { font-size: 1.1rem; font-weight: 800; color: #B45309; margin: 0 0 12px 0; }
.tk-id-card-cond { font-weight: 700; margin: 0 0 8px 0; }
.tk-mt-4 { margin-top: 16px; }

.tk-note-block { 
    margin-bottom: 40px; 
    border-radius: 12px; 
    overflow: hidden; 
    border: 1px solid var(--tk-color-border); 
    background: #f8f9fa; 
    scroll-margin-top: 120px; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}
.tk-note-title { font-family: var(--tk-font); font-size: 1.2rem; font-weight: 800; padding: 16px 24px; background: #e9ecef; color: #001f3f; margin: 0; border-bottom: 1px solid #dee2e6; letter-spacing: 0.05em;}
.tk-note-content { padding: 24px; background: #fff;}

.tk-back-top {
    text-align: right;
    padding: 0 24px 20px;
    background: #fff;
}
.tk-back-top a {
    color: #001f3f;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    transition: opacity 0.3s ease;
    display: inline-block;
    padding: 8px;
}
.tk-back-top a:hover {
    opacity: 0.6;
    text-decoration: underline;
}

.tk-wrapper .tk-note-list li, .tk-wrapper .tk-note-desc, .tk-wrapper .tk-id-card-cond, .tk-wrapper .tk-guide-list p, .tk-wrapper .tk-flow-text p { font-size: 0.85rem !important; line-height: 1.75 !important; color: #333 !important; }
.tk-wrapper .tk-note-list { padding-left: 1.3em !important; margin: 0 0 1.5em 0 !important; }
.tk-wrapper .tk-note-list.col-2 { display: block !important; width: 100% !important; }
.tk-wrapper .tk-id-card-title, .tk-wrapper .tk-guide-list-title, .tk-wrapper .tk-flow-title { font-size: 1.1rem !important; font-weight: 800; margin-bottom: 10px; color: inherit; }
.tk-wrapper .tk-note-small { font-size: 0.9rem !important; }

.tk-guide-section { margin-top: 60px; }
.tk-guide-block { margin-bottom: 40px; background: #fff; border: 1px solid var(--tk-color-border); border-radius: 16px; overflow: hidden; }
.tk-guide-title { font-size: 1.2rem; font-weight: 800; padding: 16px 24px; background: var(--tk-color-bg-gray); color: #001f3f; border-bottom: 1px solid var(--tk-color-border); margin: 0; }
.tk-guide-content { padding: 30px 24px; }
.tk-guide-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 20px; }
.tk-guide-list li { background: #fafafa; padding: 20px; border-radius: 12px; border-left: 5px solid #001f3f; }
.tk-guide-list-title { font-size: 1.1rem; font-weight: 800; color: #001f3f; margin-bottom: 10px; }
.tk-guide-list p { font-size: 0.95rem; color: var(--tk-color-text-sub); margin: 0; line-height: 1.6; }

.tk-flow-container { display: flex; flex-direction: column; gap: 16px; }
.tk-flow-step { display: flex; align-items: flex-start; background: #fff; border: 2px solid var(--tk-color-bg-gray); border-radius: 16px; padding: 24px; position: relative; }
.tk-flow-step:not(:last-child)::after { content: '▼'; position: absolute; bottom: -22px; left: 49px; font-size: 1.2rem; color: #ccc; font-weight: 900; }
.tk-flow-number { flex-shrink: 0; width: 66px; height: 66px; background: #001f3f; color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 1rem; margin-right: 24px; box-shadow: 0 4px 10px rgba(0,0,0,0.1); letter-spacing: 0.05em; }
.tk-flow-title { font-size: 1.1rem; font-weight: 800; color: #001f3f; margin-bottom: 8px; margin-top: 4px; }
.tk-flow-text p { font-size: 0.95rem; color: var(--tk-color-text-sub); margin: 0; line-height: 1.6; }

@media (min-width: 769px) {
    .tk-note-list.col-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 20px; }
    .tk-card-center { grid-column: 1 / -1; width: calc(50% - 15px); margin: 0 auto; }
}

.tk-lead-link-wrapper { text-align: center; margin: -25px 0 30px; }
.tk-lead-link { display: inline-flex; align-items: center; font-size: 1.2rem; font-weight: 800; color: #001f3f; text-decoration: underline; text-underline-offset: 4px; transition: all 0.3s ease; padding: 8px 20px; }
.tk-lead-link::after { content: ""; display: inline-block; width: 12px; height: 12px; margin-left: 8px; background-color: currentColor; mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14,3V5H17.59L7.76,14.83L9.17,16.24L19,6.41V10H21V3M19,19H5V5H12V3H5C3.89,3 3,3.9 3,5V19A2,2 0 0,0 5,21H19A2,2 0 0,0 21,19V12H19V19Z"/></svg>') no-repeat center; -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14,3V5H17.59L7.76,14.83L9.17,16.24L19,6.41V10H21V3M19,19H5V5H12V3H5C3.89,3 3,3.9 3,5V19A2,2 0 0,0 5,21H19A2,2 0 0,0 21,19V12H19V19Z"/></svg>') no-repeat center; }
.tk-lead-link:hover { color: #E11D48; opacity: 0.8; transform: translateX(3px); }

/* スマホでのチケットボタン崩れ修正 */
@media (max-width: 768px) {
    /* チケットページ用ボタンのスマホ調整 */
    .tk-ticket-nav { display: flex; flex-direction: column; gap: 10px; width: 100%; margin-bottom: 20px; }
    .tk-ticket-nav-row { display: flex; flex-direction: row; justify-content: center; gap: 6px; width: 100%; }
    
    .tk-ticket-nav .tk-nav-btn,
    .tk-nav-btn.theme-caution,
    .tk-nav-btn.theme-sign,
    .tk-nav-btn.theme-stage,
    .tk-nav-btn.theme-early,
    .tk-nav-btn.theme-general,
    .tk-nav-btn.theme-today { 
        flex: 1; display: inline-flex; justify-content: center; align-items: center; font-size: 0.9rem; padding: 10px 4px; letter-spacing: -0.05em; white-space: normal; line-height: 1.3; text-align: center; 
    }

    /* 注意事項ページ用ナビのスマホ調整 */
    .tk-page-nav { 
        display: flex; 
        flex-direction: column; 
        align-items: flex-start;
        gap: 14px; 
        padding: 20px 16px;
    }
    .tk-page-nav .tk-nav-btn { 
        width: auto;
        font-size: 0.9rem; 
        padding: 0; 
        text-align: left; 
        line-height: 1.4;
        flex: initial;
    }
    
    .tk-lead-link-wrapper { margin: -20px 0 25px; }
    .tk-lead-link { font-size: 0.75rem; padding: 5px 10px; }
    
    .tk-grid { grid-template-columns: 1fr; gap: 20px; margin-bottom: 20px; }
    .tk-section-heading { font-size: 1.3rem; }
    .tk-card-header { font-size: 1.05rem; padding: 12px; }
    
    /* 本文リストの縮小 */
    .tk-info-list dt { font-size: 0.9rem; }
    .tk-info-list dd { font-size: 0.8rem; }
    
    .tk-buy-btn { font-size: 0.85rem; padding: 12px 20px; max-width: 100%; }
    .tk-accordion-title { font-size: 0.9rem; padding: 14px 20px; }
    .tk-accordion-content { padding: 16px; }
    .tk-id-card-box { padding: 16px; }
    .tk-guide-title { font-size: 1rem; padding: 14px 20px; }
    .tk-guide-content { padding: 20px 16px; }
    .tk-guide-list li { padding: 16px; }
    .tk-flow-step { flex-direction: column; align-items: center; text-align: center; padding: 24px 16px; }
    .tk-flow-number { margin-right: 0; margin-bottom: 16px; width: 60px; height: 60px; font-size: 0.8rem; }
    .tk-flow-step:not(:last-child)::after { left: 50%; transform: translateX(-50%); bottom: -22px; }
    
    .tk-note-title { font-size: 0.95rem; padding: 14px 16px; }
    .tk-note-content { padding: 16px; }
    
    .tk-wrapper .tk-note-list li { 
        margin-bottom: 0.5em; 
        font-size: 0.75rem !important; 
        line-height: 1.6 !important; 
    }
    .tk-card-accordion summary { font-size: 0.75rem !important; }
    a[href*="caution"].tk-buy-btn { font-size: 0.75rem !important; }
    .tk-notice-title { font-size: 0.65rem !important; }
    .tk-notice-ul { font-size: 0.75rem !important; }
    .tk-back-top { padding: 0 16px 16px; }
    .tk-bundle-highlight { padding: 20px 15px; margin-bottom: 25px; }
    .tk-bundle-highlight h2 { font-size: 1.1rem; }
    .tk-bundle-intro { font-size: 0.85rem; }
    .tk-bundle-details ul { font-size: 0.85rem; } 
    .tk-bundle-push { font-size: 0.9rem; }
    .tk-bundle-img-area { width: 60%; max-width: 200px; }
}

/* =========================================
   9. フッター (Footer)
   ========================================= */

footer { background-color: #4283eb; color: #fff; text-align: center; padding-bottom: 2rem; padding-top: 0.5rem; }
.entry-content footer { margin-top:0; }
.site-footer { display:none; }
.site-header, .site-main, .widget-area, .site-footer { padding-bottom: 0; }
.site-footer > .site-info { border-top: none; }

.section.footer-section { background-color: #465DAA; color: #fff; padding: 0; position: relative; z-index: 2; width: 100%; }
.footer-container { max-width: 1200px; margin: 0 auto; padding: 60px 20px 30px; }
.footer-top { display: flex; justify-content: space-between; flex-wrap: wrap; margin-bottom: 50px; }
.footer-brand { margin-bottom: 30px; }
.footer-logo img { width: 400px; max-width: 100%; height: auto; display: block; margin-bottom: 15px;}
.footer-sns { display: flex; gap: 15px; margin-top: 20px;}
.footer-sns a { color: #fff; border: 1px solid rgba(255,255,255,0.3); width: 40px; height: 40px; border-radius: 50%; display: flex; justify-content: center; align-items: center; transition: all 0.3s; }
.footer-sns a:hover { background-color: #fff; color: #1a1a1a; }
.footer-sns a svg { width: 18px; height: 18px; fill: currentColor; }
.footer-links { display: flex; gap: 50px; }
.footer-link-group h3 { font-size: 1rem; font-weight: 700; margin-bottom: 15px; color: rgba(255,255,255,0.5); text-align: left; width: 100%; }
.footer-link-group ul { list-style: none; padding: 0; margin: 0; }
.footer-link-group li { list-style: none; padding-left: 0; margin-left: 20px; text-align: left; margin-bottom: 12px; line-height: 1.5; }
.footer-link-group li:last-child { margin-bottom: 30px; }
.footer-link-group a { color: #fff; font-size: 0.95rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 30px; text-align: center; font-size: 0.5rem; color: rgba(255,255,255,0.4); }
.copyright-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 20px; line-height: 1.4; }

@media (max-width: 768px) {
    .footer-top, .footer-links { flex-direction: column; align-items: flex-start; text-align: left; }
    .footer-links { width: 100%; gap: 30px; }
    .footer-link-group { width: 100%; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 20px; text-align: left; }
    .footer-link-roup h3 { text-align: left; width: 100%; }
    .footer-logo img { width: 280px; }
    .footer-link-group:last-child { border-bottom: none; }
    .copyright-list { gap: 5px 12px; font-size: 0.35rem; }
}

/* ▼ リンクテキスト用のスタイル ▼ */
.tk-text-link {
    color: #0066cc !important;
    text-decoration: underline !important;
    text-underline-offset: 3px;
    font-weight: 700;
    transition: opacity 0.3s ease;
}
.tk-text-link:hover {
    opacity: 0.6;
}

/* ▼ マトリクス表用のCSSを追加 ▼ */
/* ★ バナー・表を囲む枠の余白短縮 */
.tk-matrix-wrapper {
    width: 100%;
    max-width: 1000px;
    margin: 20px auto 0;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    border: 1px solid #e5e7eb;
}
/* ★ 連続する枠の隙間を調整 */
.tk-matrix-wrapper + .tk-matrix-wrapper {
    margin-top: 30px;
}

.tk-matrix-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: #001f3f;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
}
.tk-matrix-table-container {
    overflow-x: auto; /* スマホではみ出た場合にスクロール可能に */
}
.tk-matrix-table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
    min-width: 600px; /* PC/スマホ共通の最小幅 */
}
.tk-matrix-table th, 
.tk-matrix-table td {
    border: 1px solid #333;
    padding: 12px 10px;
    font-size: 1rem;
    color: #333;
}
.tk-matrix-table th {
    font-weight: 700;
}
.tk-matrix-table th:first-child {
    text-align: left;
    width: 25%;
}
.tk-matrix-circle {
    font-size: 1.2rem;
}
.tk-matrix-cross {
    font-size: 1.2rem;
    font-weight: bold;
}

@media (max-width: 768px) {
    /* ★ スマホ版のバナー・表の余白短縮 */
    .tk-matrix-wrapper {
        padding: 20px 10px;
        margin: 15px auto 0;
        width: 95%;
    }
    .tk-matrix-wrapper + .tk-matrix-wrapper {
        margin-top: 20px;
    }
    
    .tk-matrix-title {
        font-size: 1.2rem;
    }
    .tk-matrix-table th, 
    .tk-matrix-table td {
        padding: 10px 5px;
        font-size: 0.85rem;
    }
}

/* ▼ エリア確認モーダル用のCSS ▼ */
.tk-modal-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,0.6); backdrop-filter: blur(4px); z-index: 9999; display: none; align-items: center; justify-content: center; padding: 20px;
}
.tk-modal-overlay.active { display: flex; }
.tk-modal-container {
    background: #fff; width: 100%; max-width: 800px; border-radius: 16px; overflow: hidden; animation: tkPop 0.3s ease; display: flex; flex-direction: column; max-height: 90vh;
}
@keyframes tkPop { 0% { transform: scale(0.95); opacity: 0; } 100% { transform: scale(1); opacity: 1; } }
.tk-modal-header {
    padding: 16px 20px; display: flex; align-items: center; justify-content: space-between; background: #001f3f; color: #fff;
}
.tk-modal-title { font-size: 1.2rem; font-weight: 800; }
.tk-modal-close {
    background: transparent !important; border: none; font-size: 28px; color: #fff !important; cursor: pointer; line-height: 1; padding: 0; display: flex; align-items: center; justify-content: center;
}
.tk-modal-body {
    padding: 20px; overflow-y: auto; background: #fff;
}
/* ▲ ここまで ▲ */

/* =========================================
   10. FAQ（よくある質問）ページ用スタイル
   ========================================= */

/* ▼ カテゴリナビゲーション（目次エリア） ▼ */
.faq-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 32px; /* 上下16px、左右32pxの隙間 */
    margin-bottom: 40px;
    background: #fff;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid #e5e7eb; /* 全体を薄いグレーの枠で囲む */
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.faq-nav-btn {
    display: inline-flex;
    align-items: center;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none !important;
    color: #001f3f; /* テキストの色 */
    transition: all 0.3s ease;
    background-color: transparent; /* 背景色なし */
    border: none; /* 枠線なし */
    box-shadow: none; /* 影なし */
    padding: 4px 8px;
    line-height: 1.4;
}

/* リンクの先頭に「>」のような矢印を付ける */
.faq-nav-btn::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-top: 2px solid #E11D48; /* 矢印の色（ピンク/赤系） */
    border-right: 2px solid #E11D48;
    transform: rotate(45deg);
    margin-right: 10px;
    margin-top: 2px;
}

/* ホバー（カーソルを合わせた時）のアクション */
.faq-nav-btn:hover {
    color: #E11D48; /* 文字色がアクセントカラーに変わる */
    background-color: transparent;
    transform: translateX(4px); /* 少し右にスライドする */
    box-shadow: none;
}


/* ▼ FAQリスト本体 ▼ */
.faq-list-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.faq-category-block {
    background: #f8f9fa;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    margin-bottom: 40px;
    overflow: hidden;
    scroll-margin-top: 120px; /* スムーススクロール時のヘッダー被り防止 */
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.faq-category-title {
    background: #e9ecef;
    color: #001f3f;
    padding: 16px 24px;
    margin: 0;
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    border-bottom: 1px solid #dee2e6;
}

.faq-content {
    padding: 24px;
}

.faq-item {
    background: #fff;
    border-radius: 8px;
    margin-bottom: 16px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 6px rgba(0,0,0,0.02);
    transition: all 0.3s ease;
}
.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}
.faq-item:last-child {
    margin-bottom: 0;
}

.faq-item summary {
    padding: 16px 48px 16px 20px;
    font-size: 1.05rem;
    font-weight: 700;
    color: #222;
    cursor: pointer;
    list-style: none;
    position: relative;
    display: flex;
    align-items: flex-start;
    line-height: 1.5;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '＋';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
    font-size: 1.4rem;
    font-weight: 300;
}
.faq-item[open] summary::after {
    content: 'ー';
}
.faq-item[open] summary {
    border-bottom: 1px dashed #e5e7eb;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    background-color: #fafafa;
}

.faq-answer {
    padding: 20px;
    font-size: 0.85rem;
    line-height: 1.7;
    color: #444;
    display: flex;
    align-items: flex-start;
    animation: faqFadeIn 0.3s ease;
}

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

.faq-q-icon {
    color: #E11D48;
    font-weight: 900;
    font-size: 1.2rem;
    margin-right: 12px;
    line-height: 1.3;
    font-family: Arial, sans-serif;
}
.faq-a-icon {
    color: #3B82F6;
    font-weight: 900;
    font-size: 1.2rem;
    margin-right: 12px;
    line-height: 1.3;
    font-family: Arial, sans-serif;
}
.faq-answer-text {
    flex: 1;
}

/* ★追加：TOPへ戻るリンクのスタイル */
.faq-back-top {
    text-align: right;
    padding: 0 24px 20px;
}
.faq-back-top a {
    color: #001f3f;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    transition: opacity 0.3s ease;
    display: inline-block;
    padding: 8px;
}
.faq-back-top a:hover {
    opacity: 0.6;
    text-decoration: underline;
}

/* ▼ スマホ表示の調整 ▼ */
@media (max-width: 768px) {
    /* 目次エリアのスマホ対応 */
    .faq-nav {
        flex-direction: column; /* 縦並びのリストにする */
        align-items: flex-start; /* 左寄せ */
        gap: 14px;
        padding: 20px 16px;
    }
    .faq-nav-btn {
        width: auto;
        font-size: 0.9rem; /* スマホ向けに少し調整 */
        padding: 0; /* 余白を消す */
        text-align: left;
        line-height: 1.4;
    }
    
    /* アコーディオン部分のスマホ対応 */
    .faq-category-title {
        font-size: 1.05rem;
        padding: 14px 16px;
    }
    .faq-content {
        padding: 16px;
    }
    .faq-item summary {
        font-size: 0.85rem;
        padding: 14px 40px 14px 16px;
    }
    .faq-answer {
        font-size: 0.75rem;
        padding: 16px;
    }
    .faq-q-icon, .faq-a-icon {
        font-size: 0.9rem;
        margin-right: 8px;
    }
    .faq-back-top {
        padding: 0 16px 16px;
    }
}

/* =========================================
   11. GOODS（グッズ）ページ用スタイル
   ========================================= */

.artists-container.gd-wrapper {
    width: 90% !important;
    max-width: 1400px !important;
    margin: 0 auto !important;
    padding: 40px 0 100px !important;
    font-family: 'Noto Sans JP', sans-serif;
    background-color: transparent !important;
    color: #333;
    line-height: 1.6;
    display: block;
    box-sizing: border-box;
    position: relative;
    z-index: auto;
}

.gd-section {
    width: 100%;
    display: block;
    margin-bottom: 40px; 
}
.gd-container {
    width: 100%;
    margin: 0 auto;
    display: block;
}

/* ▼ アンカーメニュー ▼ */
.gd-anchor-menu {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 0 auto 60px;
    flex-wrap: nowrap; 
    width: 100%;
    max-width: 900px;
}
.gd-anchor-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1; 
    min-width: 0;
    padding: 16px 24px;
    background: #fff;
    color: #001f3f !important;
    font-size: 1.05rem;
    font-weight: 700;
    border: 1.5px solid #001f3f;
    border-radius: 50px;
    text-decoration: none !important;
    transition: all 0.2s ease;
    letter-spacing: 0.05em;
    -webkit-tap-highlight-color: transparent;
    outline: none;
    box-sizing: border-box;
}
.gd-anchor-btn::after {
    content: '';
    position: absolute;
    right: 24px;
    top: 50%;
    width: 8px;
    height: 8px;
    border-right: 1.5px solid #001f3f;
    border-bottom: 1.5px solid #001f3f;
    transform: translateY(-60%) rotate(45deg);
    transition: all 0.2s ease;
}
@media (hover: hover) {
    .gd-anchor-btn:hover {
        background: #001f3f;
        color: #fff !important;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0,31,63,0.15);
    }
    .gd-anchor-btn:hover::after {
        border-color: #fff;
    }
}
.gd-anchor-btn:active {
    transform: scale(0.96);
    box-shadow: none;
}

/* ▼ 特典セクション ▼ */
.gd-special-section {
    background: #fffafa;
    border: 1px solid #ffeef3;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 40px; 
    width: 100%;
    box-sizing: border-box;
}
.gd-special-section.purchase-privilege {
    background: #f7fbff;
    border-color: #ebf3ff;
}
.gd-section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.3rem;
    font-weight: 700;
    color: #001f3f;
    margin: 0 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 1px dashed #ddd;
    flex-wrap: wrap;
}
.gd-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 14px;
    border-radius: 4px;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1;
}
.gd-badge.bg-pink { background-color: #FF4D85; }
.gd-badge.bg-blue { background-color: #3B82F6; }

/* ▼ 通常グッズ 見出し ▼ */
.gd-goods-section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #001f3f;
    text-align: center;
    margin: 20px auto 30px; 
    letter-spacing: 0.1em;
    position: relative;
    display: block;
    width: 100%;
}
.gd-goods-section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #001f3f;
    border-radius: 2px;
}

/* ▼ フィルタ用プルダウン ▼ */
.gd-filter-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px 40px;
    margin: 0 auto 40px; 
    background: #fcfcfc;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #eee;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    z-index: 100; 
}
.gd-filter-group {
    display: flex;
    align-items: center;
    gap: 12px;
}
.gd-filter-label {
    font-size: 0.95rem;
    font-weight: 700;
    color: #333;
    white-space: nowrap;
}
.gd-filter-select {
    padding: 10px 40px 10px 15px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #333;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    cursor: pointer;
    outline: none;
    appearance: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23333333%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%0-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E');
    background-repeat: no-repeat;
    background-position: right 12px top 50%;
    background-size: 10px auto;
    transition: border-color 0.2s;
    min-width: 240px;
    max-width: 100%;
}
.gd-filter-select:focus,
.gd-filter-select:hover {
    border-color: #001f3f;
}

/* ▼ グッズカードグリッド（PC：4列表示） ▼ */
.gd-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
    gap: 40px 24px; 
    position: relative;
    z-index: 1;
}
.gd-card {
    background: #fff;
    border-radius: 12px;
    padding-bottom: 12px;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: transform 0.2s ease;
}
@media (hover: hover) {
    .gd-card:hover {
        transform: translateY(-5px);
    }
}
.gd-card:active {
    transform: scale(0.98);
}

.gd-card-img-area {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #f9f9f9;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 12px;
    position: relative; 
    box-sizing: border-box;
}
.gd-card-img-area img {
    width: 90%;
    height: 90%;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}
.gd-img-hover-icon {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0,31,63,0.85);
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    opacity: 0;
    transition: opacity 0.2s;
}
@media (hover: hover) {
    .gd-card:hover .gd-img-hover-icon { opacity: 1; }
}
.gd-no-img { color: #ccc; font-size: 0.9rem; font-weight: 700; letter-spacing: 0.1em; }

/* 指示：リストでは バッジ → 先生名 の順に配置 */
.gd-item-author-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
    flex-wrap: wrap;
    padding: 0 12px;
}

.gd-type-badge {
    display: inline-block;
    background: #20374e;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
    letter-spacing: 0.05em;
    white-space: nowrap;
}
.gd-type-badge.order {
    background: #ff4d85;
}
.gd-type-badge.after-sales {
    background: #007bff;
}

.gd-card-content { flex: 1; display: flex; flex-direction: column; }
.gd-item-author {
    font-size: 0.85rem;
    color: #666;
    font-weight: 500;
    margin: 0;
}
.gd-item-name {
    font-size: 0.95rem;
    color: #111;
    font-weight: 700;
    margin: 0 0 15px 0;
    line-height: 1.5;
    padding: 0 12px;
}

/* ★ 右寄せ＆単位表示 */
.gd-item-bottom-row {
    margin-top: auto; 
    display: flex;
    justify-content: flex-end; 
    align-items: center; 
    border-top: 1px solid #f0f0f0; 
    padding-top: 12px;
    padding: 12px 12px 0 12px;
    width: 100%;
    gap: 8px;
}
.gd-item-note {
    font-size: 0.8rem;
    color: #555;
    background: #f5f5f5;
    padding: 2px 6px;
    border-radius: 4px;
    margin-right: auto; 
    margin-bottom: 0; 
}
.gd-item-price {
    font-size: 1.25rem;
    color: #111 !important; 
    font-weight: 700;
    line-height: 1;
}
.gd-item-price span {
    font-size: 0.8rem;
    color: #666;
    margin-left: 2px;
    font-weight: 500;
}

/* ▼ TOPへ戻るボタン ▼ */
.gd-back-top {
    text-align: right;
    margin-top: 30px;
    padding-bottom: 10px;
}
.gd-back-top a {
    display: inline-block;
    color: #001f3f;
    font-size: 0.8rem;
    font-weight: 500;
    text-decoration: none !important;
    background: #f0f2f5;
    padding: 10px 24px;
    border-radius: 50px;
    transition: all 0.3s ease;
}
.gd-back-top a:hover {
    background: #e5e7eb;
    transform: translateY(-2px);
}

/* ▼ 注意事項セクション ▼ */
.gd-caution-section {
    margin-top: 40px; 
    border-top: 1px solid #eee;
    padding-top: 40px;
    scroll-margin-top: 60px;
}
.gd-caution-content {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 40px;
    width: 100%;
    box-sizing: border-box;
}
.gd-caution-item {
    margin-bottom: 40px;
}
.gd-caution-item:last-child {
    margin-bottom: 0;
}
.gd-caution-item h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #001f3f;
    margin: 0 0 16px 0;
    display: flex;
    align-items: center; gap: 10px;
}
.gd-caution-item h3::before {
    content: '';
    display: block;
    width: 4px;
    height: 1.1em;
    background-color: #001f3f; 
}
.gd-caution-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.gd-caution-list li {
    position: relative;
    padding-left: 1.2em;
    margin-bottom: 10px;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #444;
}
.gd-caution-list li::before {
    content: '・';
    position: absolute;
    left: 0;
    color: #888;
}
.gd-caution-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #444;
}
.gd-caution-text p {
    margin: 0 0 10px 0;
}
.gd-caution-note {
    font-size: 0.85rem;
    color: #777;
}

/* ▼ モーダルウィンドウ（縦長レイアウト） ▼ */
.gd-modal-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,0.75); backdrop-filter: blur(4px); z-index: 9999; display: none; align-items: center; justify-content: center; padding: 20px;
    opacity: 0; transition: opacity 0.3s ease;
    box-sizing: border-box;
}
.gd-modal-overlay.active { display: flex; opacity: 1; }

.gd-modal-container {
    background: #fff; width: 100%; max-width: 600px;
    border-radius: 12px; overflow: hidden; transform: translateY(20px); transition: transform 0.3s ease; display: flex; flex-direction: column; max-height: 80vh; box-shadow: 0 10px 40px rgba(0,0,0,0.2); position: relative;
}
.gd-modal-overlay.active .gd-modal-container { transform: translateY(0); }

.gd-modal-close {
    position: absolute; top: 15px; right: 15px; width: 40px; height: 40px; background: #fff; border-radius: 50%; box-shadow: 0 2px 10px rgba(0,0,0,0.1); display: flex; align-items: center; justify-content: center; font-size: 24px; color: #666; cursor: pointer; z-index: 10; transition: color 0.2s;
}
.gd-modal-close:hover { color: #000; }

.gd-modal-body {
    display: flex; 
    flex-direction: column;
    overflow-y: auto;
}
.gd-modal-left {
    width: 100%;
    background: #f9f9f9; display: flex; align-items: center; justify-content: center; padding: 40px 40px 20px; position: relative;
}
.gd-modal-left img {
    max-width: 100%; 
    max-height: 40vh;
    object-fit: contain; display: block; margin: 0 auto;
}

.gd-modal-right {
    width: 100%;
    padding: 20px 40px 40px; 
    display: flex; 
    flex-direction: column; 
    box-sizing: border-box;
    text-align: left; 
}

/* 指示：バッジ → 先生名 のみにするため出版社スタイルは作品名エリアで継承させる */
.gd-modal-pub-author-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.gd-modal-author-info { 
    font-weight: 700;
    font-size: 0.95rem;
    color: #333; 
    background: transparent !important; 
    padding: 0 !important;
    letter-spacing: 0.05em; 
}

/* ★ 作品名と出版社名、ブラインド表記をまとめたブロック */
.gd-modal-work-title {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.4;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    text-align: left !important; 
    display: block;
}

/* ★ 出版社名のスタイル（親要素である作品名と同じフォントサイズ・色などを継承させる） */
#gd-modal-publisher {
    margin-left: 4px;
}

/* ★ ブラインド表記のスタイル */
#gd-modal-blind {
    margin-top: 4px; 
    display: block;
}

.gd-modal-item-name { 
    font-size: 1.2rem; 
    color: #111; 
    font-weight: 700; 
    margin: 0 0 25px 0; 
    line-height: 1.4; 
    text-align: left; 
}

/* ★ モーダル内の価格エリア：単位と価格を横並びに右寄せ */
.gd-modal-price-box { 
    margin-bottom: 30px; 
    padding-bottom: 20px; 
    border-bottom: 1px solid #eee; 
    display: flex;
    align-items: baseline;
    justify-content: flex-end;
    gap: 8px;
}
.gd-modal-item-unit {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}
.gd-modal-price-inner {
    display: flex;
    align-items: baseline;
}
.gd-modal-price-val { color: #111 !important; font-weight: 700; font-size: 1.8rem; }
.gd-modal-price-tax { font-size: 0.9rem; color: #666; margin-left: 4px; }

/* テーブルのセル内で改行を反映させる */
.gd-modal-meta-table { width: 100%; border-collapse: collapse; }
.gd-modal-meta-table th, .gd-modal-meta-table td { padding: 12px 0; border-bottom: 1px solid #eee; text-align: left; vertical-align: top; line-height: 1.6;}
.gd-modal-meta-table th { width: 90px; font-size: 0.85rem; color: #666; font-weight: 700; white-space: nowrap; }
.gd-modal-meta-table td { font-size: 0.95rem; color: #222; white-space: pre-wrap; word-break: break-word; }

/* 画像保護：右クリックおよびドラッグ禁止 */
.gd-no-right-click {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
}

/* ▼ スマホ表示の調整 ▼ */
@media (max-width: 768px) {
    .page-title-area { margin-bottom: 30px; }
    .page-title { font-size: 2rem; }
    .page-subtitle { font-size: 0.9rem; }

    .gd-wrapper {
        padding: 40px 0 60px !important;
        width: 95% !important;
    }
    
    .gd-anchor-menu { flex-wrap: nowrap; gap: 8px; margin-bottom: 30px; padding: 0 5px; }
    .gd-anchor-btn { flex: 1; min-width: 0; width: auto; padding: 12px 14px 12px 8px; font-size: 0.75rem; letter-spacing: 0; white-space: nowrap; border-radius: 8px; }
    .gd-anchor-btn::after { right: 6px; width: 6px; height: 6px; }

    .gd-special-section { padding: 20px; margin-bottom: 30px; }
    .gd-section-title { font-size: 1.15rem; gap: 8px; margin-bottom: 15px; }
    .gd-badge { font-size: 0.75rem; padding: 4px 8px; }
    
    .gd-filter-container { padding: 16px; margin-bottom: 20px; flex-direction: column; gap: 16px; align-items: flex-start; }
    .gd-filter-group { flex-direction: column; align-items: flex-start; width: 100%; gap: 6px; }
    .gd-filter-label { margin-right: 0; font-size: 0.9rem; }
    .gd-filter-select { width: 100%; font-size: 0.9rem; padding: 10px 30px 10px 12px; }
    
    .gd-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 20px 12px; }
    .gd-item-author-row { gap: 6px; margin-bottom: 4px; padding: 0 8px; }
    .gd-type-badge { font-size: 0.6rem; padding: 2px 5px; }
    .gd-item-author { font-size: 0.7rem; }
    .gd-item-name { font-size: 0.85rem; margin-bottom: 10px; padding: 0 8px; }
    
    .gd-item-bottom-row { flex-direction: row; justify-content: flex-end; align-items: center; gap: 6px; padding-top: 10px; width: 100%; padding: 10px 8px 0 8px; }
    
    .gd-item-price { font-size: 1.1rem; }
    .gd-item-price span { font-size: 0.75rem; }

    .gd-caution-section { margin-top: 30px; padding-top: 30px; }
    .gd-caution-content { padding: 20px 16px; }
    .gd-caution-item h3 { font-size: 1rem; margin-bottom: 12px; }
    .gd-caution-list li, .gd-caution-text { font-size: 0.85rem; }
    .gd-caution-note { font-size: 0.8rem; }

    .gd-modal-left { padding: 40px 20px 20px; min-width: 100%; }
    .gd-modal-right { padding: 20px; min-width: 100%; }
    .gd-modal-pub-author-wrap { font-size: 0.85rem; gap: 8px; }
    .gd-modal-author-info { font-size: 0.85rem; }
    .gd-modal-item-name { font-size: 1rem; margin-bottom: 15px; }
    
    #gd-modal-blind { margin-top: 4px; }

    .gd-modal-price-val { font-size: 1.5rem; }
    .gd-modal-meta-table th, .gd-modal-meta-table td { padding: 12px 8px; }
    .gd-modal-meta-table th { width: 70px; font-size: 0.8rem; }
    .gd-modal-meta-table td { font-size: 0.85rem; }
}

/* ▼ POP画像エリア（追加） ▼ */
.gd-pop-images {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    margin-top: 40px;
    width: 100%;
    box-sizing: border-box;
}

.gd-pop-images img {
    width: calc(50% - 20px);
    max-width: 600px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

@media (max-width: 768px) {
    .gd-pop-images {
        gap: 12px;
        margin-top: 30px;
    }
    .gd-pop-images img {
        width: calc(50% - 6px);
        border-radius: 6px;
    }
}