@charset "UTF-8";
/* section-common-space */
section {padding: 45px 0;}
footer {padding: 45px 0;}
/* space */
/* index */
.index .sec01 {padding: 45px 0 0;}
.index .sec02 {padding: 0;}
.index .sec03 {padding: 45px 0 0;}
.index .sec04 {padding: 0;}
.index .sec05 {padding: 0 0 45px;}
/* backcover */
.backcover .sec01 {padding: 45px 0 0;}
.backcover .sec02 {padding: 45px 0 0;}
.backcover .sec03 {padding: 45px 0;}
/* cover */
.cover .sec01 {padding: 45px 0 0;}
.cover .sec02 {padding: 0 0 45px;}
/* tsunokids */
.tsunokids .sec01 {padding: 45px 0 0;}
/* tsunohug */
.tsunohug .sec01 {padding: 45px 0 0;}
.tsunohug .sec02 {padding: 45px 0 0;}
.tsunohug .sec03 {padding: 45px 0 0;}
.tsunohug .sec04 {padding: 45px 0 0;}
.tsunohug .sec05 {padding: 45px 0 0;}
.tsunohug .sec06 {padding: 45px 0;}
/* coac */
.coac .sec01 {padding: 45px 0 0;}
.coac .sec02 {padding: 0 0 45px;}
.coac .sec03 {padding: 0 0 45px;}
.coac .sec04 {padding: 0;}
/* shc */
.shc .sec01 {padding: 45px 0 0;}
.shc .sec02 {padding: 45px 0 0;}
.shc .sec03 {padding: 45px 0;}

/* animation */
.new {
    background: var(--color-primary);
    color: #fff;
    margin-left: 10px;
    padding: 0 5px;
    border-radius: 5px;
    font-weight: normal;
    font-size: 1.4rem;
}
.blink {
    animation: blink 1.5s ease infinite;
}
@keyframes blink {
    0% {opacity: 0;}
    100% {opacity: 1;}
}

/* wave-animation */
.wave-bg {
    position: absolute;
    bottom: 0;
    z-index: -1;
    width: 100%;
}
.timelag > use {
    animation: wave 25s cubic-bezier(.55,.5,.45,.5) infinite;
}
@keyframes wave {
    0% {transform: translate3d(-90px,0,0);}
    100% {transform: translate3d(85px,0,0);}
}
main img {
    border-radius: 8px;
}

/*
swiper
----------------------------------------------------------- */
.swiper {
    overflow: hidden;
    position: relative;
}
.swiper-slide {
    transition: filter 0.3s ease, opacity 0.3s ease;
    border-radius: 8px;
}
.swiper-slide:hover {
    filter: brightness(1.05);
    opacity: 0.9;
}
/* カスタムナビゲーションボタン */
.swiper-button-next, 
.swiper-button-prev {
    color: var(--color-primary);
}
.swiper-button-next:after, 
.swiper-button-prev:after {
    display: none;
}
.swiper-button-prev {
    background-image: url('../img/tsunopyon_l.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 30px;
    height: 30px;
}
.swiper-button-next {
    background-image: url('../img/tsunopyon_r.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 30px;
    height: 30px;
}
/* カスタムページネーション */
.swiper-pagination-bullet {
    background: var(--color-primary);
    opacity: 0.5;
}
.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--color-primary);
}
/* Navigation Toggle Button */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-primary-transparent);
    z-index: 9999; /* ナビゲーションより下、コンテンツより上 */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                visibility 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
/* ナビゲーション開いた時のオーバーレイ表示 */
body.nav-open .nav-overlay {
    opacity: 1;
    visibility: visible;
}
/* Navigation Toggle Button */
#nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0,0,0,0.15);
    z-index: 10001; /* coac-introのカスタムカーソル(9999)より上 */
    cursor: pointer;
    transition: background-color 0.3s;
}
#nav-toggle div {
    position: relative;
    width: 24px;
    height: 24px;
}
#nav-toggle span {
    display: block;
    height: 3px;
    background: var(--color-primary);
    position: absolute;
    width: 100%;
    left: 0;
    transition: all 0.3s ease-in-out;
    border-radius: 3px;
}
#nav-toggle span:nth-child(1) {
    top: 5px;
}
#nav-toggle span:nth-child(2) {
    top: 11px;
}
#nav-toggle span:nth-child(3) {
    top: 17px;
}
/* ナビゲーション開いた時のハンバーガーメニュー変化 */
header.open #nav-toggle span:nth-child(1) {
    top: 11px;
    transform: rotate(135deg);
}
header.open #nav-toggle span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}
header.open #nav-toggle span:nth-child(3) {
    top: 11px;
    transform: rotate(-135deg);
}
/* Navigation Menu */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 280px;
    max-width: 60%;
    height: 100vh;
    background-color: var(--color-primary-light);
    transform: translateX(-100%);
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 10000; /* オーバーレイより上、トグルボタンより下 */
    overflow-y: auto;
}
nav::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../img/nav-bg.webp);
    background-size: cover;
    opacity: 0.9;
    z-index: -1;
}
.logo {
    padding: 15px;
}
nav.open-nav {
    transform: translateX(0);
    box-shadow: 4px 0px 10px rgba(0,0,0,0.2);
}
nav ul.nav-menu-container {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
}
nav ul.nav-menu-container > li {
    width: 100%;
    border-bottom: 1px solid var(--color-primary-dark);
}
nav ul.nav-menu-container > li > a {
    display: block;
    padding: 18px 25px;
    color: var(--color-primary-dark);
    text-decoration: none;
    font-weight: bold;
    font-size: 1.6rem;
    transition: background-color 0.2s, padding-left 0.2s;
}
nav ul.nav-menu-container > li > a:hover {
    background-color: var(--color-primary-hover);
    color: #fff;
    padding-left: 30px;
    opacity: 1;
}
nav .nav-jp {
    padding-bottom: 0;
}
/* Navigation SNS Icons */
nav .nav-icon-list {
    display: flex;
    justify-content: center;
    padding: 10px;
}
nav .nav-icon-list li {
    border-bottom: none;
    margin: 0 12px;
    width: auto;
}

/*
left-area
----------------------------------------------------------- */
.left-area {
    position: fixed;
    top: 0;
    left: 0;
    width: 40%;
    height: 100%;
    z-index: -1;
    overflow: hidden; /* CRTエフェクトのはみ出しを防ぐ */
}
.left-area-bg {
    width: 100%;
    height: 100%;
    background: linear-gradient(-45deg, 
                var(--color-primary), 
                var(--color-primary), 
                var(--color-secondary), 
                var(--color-secondary));
    background-size: 400% 400%;
    animation: gradientFlow 10s ease infinite;
}
@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
.left-area video {
    display: block;
    max-width: 100%;
    margin: 0 auto;
    height: 100vh;
}
/*
CRTエフェクト（ノイズ + Vegas風ドット）- left-area / tabsp-movie オーバーレイ
----------------------------------------------------------- */
.crt-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

/* Vegas風ドットパターン（細かい暗い点） */
.crt-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(
        circle,
        rgba(120, 70, 30, 0.2) 0.5px,
        transparent 0.1px
    );
    background-size: 3px 3px;
    z-index: 1;
}

/* ノイズキャンバス（JS制御） */
.crt-noise-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    mix-blend-mode: screen;
    z-index: 2;
}

/* sec04 */
.sec04 {
    overflow: hidden;
    background: var(--color-pink03);
}

/* movie */
.tabsp-movie {
    position: relative;
}

/* sec05 */
.sec05 {
    position: relative;
}

.movie video {
    display: block;
    max-width: 100%;
    margin: 0 auto;
    height: auto;
}
.mv video {
    display: block;
    max-width: 100%;
    margin: 0 auto;
    height: auto;
}

/*
right-area
----------------------------------------------------------- */
.right-area {
    width: 60%;
    min-height: 100%;
    margin-left: auto;
}

/* other */
.underd-line {
    border-bottom: 3px solid var(--color-primary);
}
.line-icon {
    display: inline-block;
    width: 45px;
    height: 45px;
    text-align: center;
    border-radius: 10px;
    position: relative;
    background: var(--color-line);
    background: radial-gradient(circle at center, 
                #fff 0%, 
                #fff 40%, 
                var(--color-line) 40%, 
                var(--color-line) 100%);
    box-shadow: 0px 3px 10px rgba(0,0,0,.25);
}
.line-icon i {
    color: var(--color-line);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    font-size: 36px;
}
.instagram-icon {
    display: inline-block;
    width: 45px;
    height: 45px;
    text-align: center;
    border-radius: 10px;
    position: relative;
    background: #d6249f;
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
    box-shadow: 0px 3px 10px rgba(0,0,0,.25);
}
.instagram-icon i {
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    font-size: 36px;
}
/* ホバーエフェクト */
.instagram-icon:hover,
.line-icon:hover {
    transform: scale(1.05);
    transition: all 0.2s ease-in-out;
}

/* mv */
.mv {
    padding: 0;
}
.mv .container {
    padding: 0;
}
.mv img {
    border-radius: 0;
}
.movie {
    padding: 0;
}

/* sec02 */
.cmn-ttl-en {
    text-transform: uppercase;
    font-size: 4rem;
    font-weight: bold;
    text-align: center;
}
.cmn-ttl-ja {
    text-align: center;
    padding-bottom: 15px;
    position: relative;
    margin-bottom: 45px;
    font-family: var(--font-gothic);
}
.cmn-ttl-ja:after {
    content: "";
    background: linear-gradient(to right, var(--color-primary), var(--color-secondary));
    position: absolute;
    left: 40%;
    bottom: 0;
    width: 20%;
    height: 3px;
}
.sec02-ttl {
    position: relative;
    font-size: 1.2em;
    font-weight: 700;
    margin-bottom: 20px;
    padding-left: 0;
    padding-bottom: 12px;
    display: flex;
    align-items: center;
    color: var(--color-primary);
}
.sec02-ttl::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, var(--color-primary), var(--color-secondary));
}
.sec02-txt {
    padding-bottom: 15px;
}

/* sec03/sec04 - 共通 */
.info-list {
    padding-bottom: 30px;
}
.info-item {
    padding: 15px 0 15px 15px;
    border-bottom: 1px solid #ccc;
    transition: all 0.3s ease-in-out;
}
.info-item:hover {
    background: var(--color-primary-lightest);
}
.info-item:hover > a {
    transform: translateX(5px);
}
.info-item:first-child {
    border-top: 1px solid #ccc;
}
.info-item a {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    text-decoration: none;
}
.info-date {
    padding-top: 2px;
    font-size: 90%;
    color: #666;
    width: 150px;
    margin-right: 15px;
}
.info-cat {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--color-primary);
    height: 20px;
    line-height: 1;
    color: var(--color-primary);
    font-size: 1rem;
    margin-right: 15px;
    width: 130px;
}
.info-ttl {
    width: calc(100% - 290px);
    font-weight: bold;
}

/* sec04 */
.sec04 {
    overflow: hidden;
    background: var(--color-color-pink03);
}

/* sec05 */
.sec05 {
    position: relative;
}
.sec05 .wave-bg {
    position: absolute;
    bottom: 0;
    z-index: -1;
    width: 100%;
}
.timelag > use {
    animation: wave 25s cubic-bezier(.55,.5,.45,.5) infinite;
}
.timelag > use:nth-child(1) {
    fill: #109680cc; 
    animation-delay: -2s;
    animation-duration: 7s;
}
.timelag > use:nth-child(2) {
    fill: #0b6b5c99; 
    animation-delay: -3s;
    animation-duration: 10s;
}
.timelag > use:nth-child(3) {
    fill: #10968066; 
    animation-delay: -4s;
    animation-duration: 13s;
}
.timelag > use:nth-child(4) {
    fill: #0b6b5c33; 
    animation-delay: -5s;
    animation-duration: 20s;
}
@keyframes wave {
    0% {
        transform: translate3d(-90px,0,0);
    }
    100% {
        transform: translate3d(85px,0,0);
    }
}

/*
footer
----------------------------------------------------------- */
footer {
    color: #fff;
    background-color: #3b3b3b;
}
.copy {
    text-align: center;
    font-size: 80%;
}

/*
topicsはここから
----------------------------------------------------------- */
/*
sec01
----------------------------------------------------------- */
.topics .sec01 {
    padding: 45px 0 0;
}
.topics .sec01 .topics-list {
    padding-bottom: 45px;
}
.topics .sec01 .topics-content {
    padding: 15px 0;
    border-bottom:  1px solid #ccc;
}
.topics .sec01 .topics-content:nth-child(1) {
    border-top: 1px solid #ccc;
}
.topics .sec01 .topics-content a {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    text-decoration: none;
}
.topics .sec01 .topics-date {
    padding-top: 2px;
    font-size: 90%;
    color: #666;
    width: 100%;
    max-width: 140px;
}
.topics .sec01 .topics-category {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--color-blue);
    height: 20px;
    line-height: 1;
    color: var(--color-blue);
    font-size: 1rem;
    margin-right: 15px;
    width: 100%;
    max-width: 130px;
}
.topics .sec01 .topics-ttl {
    font-weight: bold;
}

/*
evlistはここから
----------------------------------------------------------- */
/*
sec01
----------------------------------------------------------- */

.evlist .sb-ttl {
    font-size: 1.2em;
    font-weight: bold;
    text-align: center;
    position: relative;
    padding: 5px 15px;
    border-radius: 10px;
    background: var(--color-primary-light);
    margin-bottom: 15px;
}
.evlist .sb-ttl::before {
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 0;
    height: 0;
    content: '';
    border-width: 15px 13px 0 13px;
    border-style: solid;
    border-color: var(--color-primary-light) transparent transparent transparent;
    transform: translate(-50%, 0);
}
.evlist .bg-gld {
    background: #d1d095;
    padding: 5px 15px;
    font-weight: bold;
}
.gbox {
    --grid-gap: 5px;
    display: flex;
    flex-wrap: wrap;
    gap: var(--grid-gap);
    width: 100%;
}

/*
tplist eventreportはここから
----------------------------------------------------------- */
.tplist,
.evlist {
    position: relative;
}
.tplist img,
.evlist img {
    border-radius: 8px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    backface-visibility: hidden;
    transform: translateZ(0) translateY(0);
    will-change: transform, filter;
}
.tplist img:hover,
.evlist img:hover {
    transform: translateZ(0) translateY(-8px);
    filter: brightness(1.05) contrast(1.05);
    box-shadow: 
        0 14px 14px rgba(0, 0, 0, 0.1),
        0 10px 10px rgba(0, 0, 0, 0.05);
}
.tplist .logo img:hover,
.evlist .logo img:hover {
    box-shadow: unset;
}

/* Common section padding
----------------------------------------------------------- */
.topics .sec01,
.tplist .sec01,
.eventreport .sec01,
.evlist .sec01 {
    padding: 45px 0 0;
}

/* Common list patterns
----------------------------------------------------------- */
.topics .sec01 .topics-list,
.eventreport .sec01 .eventreport-list {
    padding-bottom: 45px;
}

/* Common content styles */
.topics .sec01 .topics-content,
.eventreport .sec01 .eventreport-content {
    padding: 15px 0;
    border-bottom: 1px solid #ccc;
}
.topics .sec01 .topics-content:nth-child(1),
.eventreport .sec01 .eventreport-content:nth-child(1) {
    border-top: 1px solid #ccc;
}
.topics .sec01 .topics-content a,
.eventreport .sec01 .eventreport-content a {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    text-decoration: none;
}

/* Common date styles */
.topics .sec01 .topics-date,
.eventreport .sec01 .eventreport-date {
    padding-top: 2px;
    font-size: 90%;
    color: #666;
    width: 100%;
    max-width: 140px;
}

/* Common category styles */
.topics .sec01 .topics-category,
.eventreport .sec01 .eventreport-category {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--color-blue);
    height: 20px;
    line-height: 1;
    color: var(--color-blue);
    font-size: 1rem;
    margin-right: 15px;
    width: 100%;
    max-width: 130px;
}

/* Common title styles */
.topics .sec01 .topics-ttl,
.eventreport .sec01 .eventreport-ttl {
    font-weight: bold;
}

/* Background patterns
----------------------------------------------------------- */
.tplist .tplist-bg-inner,
.evlist .evlist-bg-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    clip-path: inset(0);
    z-index: -1;
}
.tplist .tplist-bg,
.evlist .evlist-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
}

/* Specific background patterns */
.tplist .tplist-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(-45deg, 
        #f5fbfd,  /* とても薄いアクア */
        #f0f9fa,  /* 薄いアクア */
        #f5faf9,  /* とても薄いエメラルド */
        #f0f8f7   /* 薄いエメラルド */
    );
    background-size: 400% 400%;
    animation: gradientBg 15s ease infinite;
    z-index: -1;
}
.tplist .tplist-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(90deg, rgba(0, 0, 0, 0.05) 1px, transparent 1px),
        linear-gradient(rgba(0, 0, 0, 0.05) 1px, transparent 1px);
    background-size: 25px 25px;
    z-index: 0;
}
.evlist .evlist-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(-45deg, 
        #f0f9fa,  /* 薄いアクア */
        #edf7f8,  /* やや薄いアクア */
        #f0f8f7,  /* 薄いエメラルド */
        #edf6f5   /* やや薄いエメラルド */
    );
    background-size: 400% 400%;
    animation: gradientBg 15s ease infinite;
    z-index: -1;
}
.evlist .evlist-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(0, 0, 0, 0.05) 1px, transparent 1px);
    background-size: 100% 28px;
    z-index: 0;
}
@keyframes gradientBg {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Common top image styles
----------------------------------------------------------- */
.tplist .sec01 .tplist-top-img,
.evlist .sec01 .evlist-top-img {
    float: right;
    padding: 0 0 30px 30px;
    background-image: url(../img/imgpyon.gif);
    background-size: 200px;
    background-position: center;
    background-repeat: no-repeat;
    width: 550px;
}
/* Common heading styles
----------------------------------------------------------- */
.tplist .sec01 h3,
.evlist .sec01 h3 {
    position: relative;
    font-size: 1.5em;
    font-weight: bold;
    padding: 10px 15px;
    margin-bottom: 45px;
    color: var(--color-blue);
    background: linear-gradient(
        135deg,
        rgba(237, 243, 255, 0.9) 0%,
        rgba(217, 229, 233, 0.4) 100%
    );
    border-radius: 12px;
    backdrop-filter: blur(8px);
    box-shadow: 
        0 4px 15px rgba(36, 98, 112, 0.08),
        0 1px 3px rgba(36, 98, 112, 0.1),
        inset 0 0 0 1px rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
    overflow: hidden;
    }
    /* キラキラ効果のための擬似要素 */
    .tplist .sec01 h3::before,
    .evlist .sec01 h3::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent 0%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 100%
    );
    transform: translateX(-100%);
    animation: shine 3s infinite;
}
/* 装飾的なアクセントライン */
.tplist .sec01 h3::after,
.evlist .sec01 h3::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(
        to bottom,
        var(--color-blue),
        rgba(36, 98, 112, 0.3)
    );
}
@keyframes shine {
    0% {
        transform: translateX(-100%);
    }
    20%, 100% {
        transform: translateX(100%);
    }
}
/* ホバーエフェクト */
@media (hover: hover) {
    .tplist .sec01 h3:hover,
    .evlist .sec01 h3:hover {
        transform: translateY(-2px);
        background: linear-gradient(
        135deg,
        rgba(237, 243, 255, 1) 0%,
        rgba(217, 229, 233, 0.5) 100%
        );
        box-shadow: 
        0 8px 20px rgba(36, 98, 112, 0.12),
        0 2px 5px rgba(36, 98, 112, 0.1),
        inset 0 0 0 1px rgba(255, 255, 255, 0.6);
    }
}
.tplist .sec01 h4,
.evlist .sec01 h4 {
    font-size: 1.3em;
    font-weight: bold;
    border-left: 5px solid var(--color-blue);
    padding-left: 15px;
    margin-bottom: 30px;
}
.tplist .sec01 h5,
.evlist .sec01 h5 {
    font-size: 1.1em;
    font-weight: bold;
    border-left: 5px solid var(--color-blue);
    padding-left: 15px;
    margin-bottom: 30px;
}

/* Result box styles
----------------------------------------------------------- */
.dec-head {
    position: relative;
    font-size: 1.2em;
    font-weight: bold;
    color: var(--color-blue);
    padding: 5px 15px;
    margin: 20px 0;
    overflow: hidden;
    opacity: 0;  /* 初期状態は非表示 */
    background: linear-gradient(
        120deg,
        rgba(237, 243, 255, 0.4) 0%,
        rgba(217, 229, 233, 0.2) 100%
    );
    border-radius: 4px;
}
/* アニメーション適用時のスタイル */
.dec-head.is-animated {
    animation: textFadeIn 0.8s ease forwards;
}
/* 下のライン */
.dec-head::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20px;
    width: calc(100% - 20px);
    height: 1px;
    background: linear-gradient(
        90deg,
        var(--color-blue) 0%,
        rgba(36, 98, 112, 0.3) 100%
    );
    transform: scaleX(0);
    transform-origin: left;
}
.dec-head.is-animated::after {
    animation: lineSlideInFromPoint 0.6s ease forwards 0.3s;
}
/* 左のライン */
.dec-head::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 100%;
    background: var(--color-blue);
    transform: scaleY(0);
    transform-origin: top;
}
.dec-head.is-animated::before {
    animation: lineDown 0.4s ease forwards;
}
@keyframes lineSlideInFromPoint {
    0% {
        transform: scaleX(0);
    }
    100% {
        transform: scaleX(1);
    }
}
@keyframes lineDown {
    0% {
        transform: scaleY(0);
    }
    100% {
        transform: scaleY(1);
    }
}
@keyframes textFadeIn {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
/* dec-head_label styles */
.dec-head_label {
    display: inline-block;
    min-width: 4em;
    padding: 3px 12px;
    margin-right: 10px;
    color: var(--color-blue);
    font-weight: bold;
    text-align: center;
    background: rgba(237, 243, 255, 0.8);
    border: 1px solid var(--color-blue);
    border-radius: 4px;
}
/* Responsive adjustment */
@media screen and (max-width: 767px) {
    .dec-head {
        font-size: 1.1em;
        padding: 10px 15px;
    }
    .dec-head-label {
        padding: 2px 10px;
    }
}

/* Common button container
----------------------------------------------------------- */
.tplist .sec01 .sec01-btn,
.evlist .sec01 .sec01-btn {
    display: flex;
    justify-content: center;
}
/* Common button styles */
.tplist .sec01 .tplist-btn,
.evlist .sec01 .erlist-btn {
    background: var(--color-blue);
    color: #FFF;
    border-radius: 30px;
    font-size: 1.2em;
    text-align: center;
    padding: 5px 0;
    position: relative;
    text-decoration: none;
    width: 290px;
}
/* Common button arrow */
.tplist .sec01 .tplist-btn::after,
.tplist .sec01 .tplist-btn02::after,
.evlist .sec01 .erlist-btn::after {
    content: "\f138";
    font-family: "Font Awesome 7 Free";
    font-weight: bolder;
    color: #fff;
    position: absolute;
    right: 10px;
    top: 5px;
}
/* Common box styles */
.tplist .sec01 .tplist-box,
.evlist .sec01 .evlist-box {
    padding: 15px;
    background: #fff;
    border-radius: 8px;
}
/* Common name styles */
.tplist-name,
.evlist-name {
    font-weight: bold;
    font-size: 1.333em;
    position: relative;
    border-bottom: solid 1px #ccc;
    margin-bottom: 15px;
}
.tplist-name::after,
.evlist-name::after {
    content: " ";
    display: block;
    border-bottom: solid 1px var(--color-blue);
    position: absolute;
    width: 50%;
}
/* Secondary button style */
.tplist .sec01 .tplist-btn02 {
    background: var(--color-blue);
    color: #FFF;
    border-radius: 30px;
    font-size: 1.1em;
    text-align: center;
    padding: 5px 0;
    position: relative;
    text-decoration: none;
    width: 100%;
}

/*
tsunokidsはここから
----------------------------------------------------------- */
/*
sec01
----------------------------------------------------------- */
.tsunokids .sec01 h3 {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 45px;
    padding: 8px 15px;
    border-left: 5px solid var(--color-primary);
    background: var(--color-primary-lightest);
    color: var(--color-primary-dark);
}
.tsunokids .kids-card {
    background: var(--color-primary-light);
    padding: 20px;
    height: 100%;
}
.tsunokids .kids-profile {
    border-left: 4px solid var(--color-primary);
    padding-left: 12px;
    margin-bottom: 10px;
}
.tsunokids .kids-name {
    font-size: 1.8rem;
    font-weight: bold;
    line-height: 1.4;
}
.tsunokids .kids-kana {
    font-size: 1.4rem;
    font-weight: normal;
    color: var(--color-tertiary);
    display: block;
}
.tsunokids .kids-position {
    font-size: 1.4rem;
    background: var(--color-primary);
    color: #fff;
    padding: 2px 8px;
    border-radius: 4px;
    margin-left: 8px;
    vertical-align: middle;
}
.tsunokids .kids-birthday {
    font-size: 1.4rem;
    color: var(--color-primary-dark);
    margin-top: 4px;
}
.tsunokids .kids-message {
    font-size: 1.6rem;
    line-height: 1.8;
    border-top: 1px dotted var(--color-primary-lighter);
    padding-top: 10px;
    margin-bottom: 20px;
}
.tsunokids .kids-message:last-child {
    margin-bottom: 0;
}
.tsunokids .sec01 .sec01-btm-area {
    background: var(--color-pink06);
    padding: 45px;
}
.tsunokids .sec01 h4 {
    font-size: 1.3em;
    font-weight: bold;
    border-left: 5px solid var(--color-pink02);
    padding-left: 15px;
    margin-bottom: 15px;
}
.tsunokids .sec01 .sec01-btm-area-ttl {
    width: 200px;
}
.tsunokids .sec01 .sec01-btm-area-ttl p {
    padding-left: 15px;
    background: var(--color-pink05);
    color: #fff;
    border-radius: 4px;
}
.tsunokids .sec01 .sec01-btm-area-txt {
    width: calc(100% - (200px + var(--grid-gap)));
}
.tsunokids .sec01 .sec01-btm-area-txt p {
    border-bottom: 1px dotted var(--color-pink04);
}
.tsunokids .sec01 .sec01-district {
    background: var(--color-primary);
    padding: 5px 15px;
    color: #fff;
    margin-bottom: 5px;
    display: block;
}
.tsunokids .kids-honorific {
    font-size: 1.4rem;
    font-weight: normal;
    margin: 0 6px 0 2px;
}
/*
commendationはここから
----------------------------------------------------------- */
/*
sec01
----------------------------------------------------------- */
.school-nav {
    margin: 2rem 0 3rem;
}
.school-nav-list {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.school-nav-list li {
    flex: 0 1 auto;
}
.school-btn {
    display: block;
    min-width: 120px;
    text-align: center;
    text-decoration: none;
    padding: 8px 20px;
    font-weight: bold;
    color: #92871e;
    background-image: linear-gradient(
        to top,
        #f0ebd7 0%,
        #fff 80%,
        #fffef5 100%
    );
    border-radius: 100vh;
    border: 1px solid #d4c571;
    text-shadow: 0 1px #fff;
    box-shadow: 
        0 3px 2px 1px #fcfcfc,
        0 4px 6px rgba(212, 197, 113, 0.2),
        0 -2px 2px rgba(212, 197, 113, 0.1),
        0 -4px 2px #fff,
        inset 0 0 2px 2px rgba(212, 197, 113, 0.15);
    transition: all 0.3s ease;
}
.school-btn:hover {
    background-image: linear-gradient(
        to top,
        #f0ebd7 0%,
        #fffef5 100%
    );
    box-shadow: 
        0 2px 2px 1px #fcfcfc,
        0 2px 4px rgba(212, 197, 113, 0.3),
        0 -1px 2px rgba(212, 197, 113, 0.2),
        0 -2px 2px #fff,
        inset 0 0 2px 2px rgba(212, 197, 113, 0.2);
    transform: translateY(1px);
}
/* アクティブ状態 */
.school-btn.active {
    background-image: linear-gradient(
        to bottom,
        #f0ebd7 0%,
        #fff 80%, 
        #fffef5 100%
    );
    box-shadow:
        inset 0 2px 4px rgba(212, 197, 113, 0.2),
        0 1px 2px #fff;
    transform: translateY(2px);
}
@media (max-width: 768px) {
    .school-nav-list {
        padding: 0 1rem;
        gap: 0.8rem;
    }
    .school-btn {
        min-width: auto;
        padding: 6px 15px;
        font-size: 0.9em;
    }
}
.commendation .sec01 .sec01-btm-txt {
    font-size: 1.2em;
    background: #d1d1aa7c;
    padding: 45px;
    color: var(--color-text);
}
.award-section {
    margin-bottom: 45px;
}
.school-title {
    font-size: 2.4rem;
    color: var(--color-primary);
    padding: 1.5rem 0;
    margin-bottom: 2rem;
    position: relative;
    text-align: center;
    background: linear-gradient(
        to right,
        transparent 0%,
        rgba(146, 135, 30, 0.1) 20%,
        rgba(146, 135, 30, 0.1) 80%,
        transparent 100%
    );
}
/* テキスト用のスパン */
.school-title .title-text {
    position: relative;
    z-index: 2;
}
/* キラキラエフェクト */
.school-title .sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 8px #d4c571;
    opacity: 0;
    animation: sparkle 2s ease-in-out infinite;
    top: 50%;
    z-index: 1;
}
.school-title span:nth-child(2) { left: 20%; animation-delay: 0s; }
.school-title span:nth-child(3) { left: 40%; animation-delay: 0.4s; }
.school-title span:nth-child(4) { left: 60%; animation-delay: 0.8s; }
.school-title span:nth-child(5) { left: 80%; animation-delay: 1.2s; }
@keyframes sparkle {
    0%, 100% { opacity: 0; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}
.school-title::before,
.school-title::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(
        to right,
        transparent 0%,
        #92871e 20%,
        #d4c571 50%,
        #92871e 80%,
        transparent 100%
    );
}
.school-title::before {
    top: 0;
}
.school-title::after {
    bottom: 0;
}
.tournament-block {
    background: #d1d1aa7c;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.tournament-title {
    font-size: 2.4rem;
    color: #333;
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px dashed #ccc;
    line-height: 1.4;
}
.award-item {
    padding: 1.2rem;
    background: #f8f9fa;
    border-radius: 6px;
    transition: all 0.2s ease-in-out;
}
.award-item:hover {
    transform: scale(1.01) translateY(-2px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    filter: brightness(1.05);
}
.category {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--color-gold);
    padding-bottom: 10px;
}
.rank {
    padding: 0.3rem 1rem;
    border-radius: 5px;
    font-size: 1.4rem;
}
.rank.gold {
    background: linear-gradient(45deg, #8a7f1a, #bbb04f);
    color: #fff;
}
.winner {
    padding-left: 1rem;
}
.winner-name {
    font-size: 1.6rem;
    font-weight: bold;
    margin-bottom: 0.3rem;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.8rem;
}
.name-reading {
    font-weight: normal;
    font-size: 1.4rem;
    margin-left: 0.5rem;
}
.grade {
    background: var(--color-primary);
    color: #fff;
    padding: 0.2rem 0.8rem;
    border-radius: 4px;
    font-size: 1.3rem;
    font-weight: normal;
}
.address {
    color: var(--color-primary);
    font-size: 1.4rem;
}
.tournament-block + .tournament-block {
    margin-top: 30px;
}

/*
coverはここから
----------------------------------------------------------- */
body.cover {
    background: #06060a;
}
body.cover .cmn-ttl-en,
body.cover .cmn-ttl-ja {
    color: #ffffffd1;
}
body.cover .cmn-btn {
    color: #ffffffd1;
}
body.cover .sec02 {
    position: relative;
    width: 100%;
    height: 2000vh;
    background: #06060a;
    padding: 0;
}
body.cover .sec02 .sec02-bg,
body.cover .sec02 .container { display: none; }

.mh-sticky {
    position: sticky;
    top: 0;
    width: 100%;
    height: 100svh;
    overflow: hidden;
    background: #06060a;
}
#mh-canvas {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    display: block;
}
/* vignette：周囲を暗くして写真を際立たせる */
.mh-vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 75% 75% at 50% 50%,
        transparent 40%,
        rgba(6,6,10,.20) 68%,
        rgba(0,0,0,.55) 100%);
    z-index: 2;
    pointer-events: none;
}

/* カウンター 左下 */
.mh-counter {
    position: absolute;
    bottom: 42px; left: 48px;
    z-index: 20;
    pointer-events: none;
    display: flex;
    align-items: baseline;
    gap: 0;
    line-height: 1;
}
.mh-counter .c-cur {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 100;
    font-size: clamp(2.6rem, 4.5vw, 4rem);
    color: #ffffffd1;
    letter-spacing: .02em;
}
.mh-counter .c-sep {
    font-size: 1.2rem;
    color: rgba(255,255,255,.3);
    margin: 0 8px;
    padding-top: 4px;
}
.mh-counter .c-tot {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 300;
    font-size: clamp(.9rem, 1.2vw, 1.1rem);
    color: rgba(255,255,255,.28);
    padding-top: 6px;
}
/* スクロールヒント（マウスアイコン）右下 */
.mh-hint {
    position: absolute;
    bottom: 42px; right: 48px;
    z-index: 20;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    pointer-events: none;
}
.mh-hint p {
    font-size: .78rem;
    letter-spacing: .38em;
    color: rgba(255,255,255,.32);
}
.mh-hint .mouse {
    width: 20px; height: 32px;
    border: 1px solid rgba(255,255,255,.35);
    border-radius: 12px;
    position: relative;
}
.mh-hint .mouse::before {
    content: '';
    position: absolute;
    top: 5px; left: 50%;
    transform: translateX(-50%);
    width: 2px; height: 6px;
    background: rgba(255,255,255,.7);
    border-radius: 2px;
    animation: mh-wheel 1.8s ease-in-out infinite;
}
@keyframes mh-wheel {
    0%   { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(14px); }
}

/* フィナーレ */
.mh-finale {
    position: absolute;
    inset: 0;
    z-index: 15;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 24px;
    background: rgba(6,6,10,.82);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    opacity: 0;
    pointer-events: none;
}
.mh-finale .fin-label {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 300;
    font-size: clamp(.88rem, 1.3vw, 1.2rem);
    color: rgba(201,168,76,.72);
    letter-spacing: .5em;
    margin-bottom: .9em;
}
.mh-finale .fin-ttl {
    font-size: clamp(2.2rem, 4vw, 4.5rem);
    font-weight: bold;
    color: #f5f0e8;
    letter-spacing: .1em;
    line-height: 1.2;
    margin-bottom: .15em;
}
.mh-finale .fin-div {
    width: 50px; height: 1px;
    background: linear-gradient(to right, transparent, rgba(201,168,76,.58), transparent);
    margin: .9em auto;
}
.mh-finale .fin-count-row {
    display: flex; align-items: baseline;
    justify-content: center; gap: .04em; line-height: 1;
}
.mh-finale .fin-count {
    font-family: 'Georgia', serif;
    font-size: clamp(4.5rem, 11vw, 9rem);
    color: #c9a84c; font-weight: bold;
    text-shadow: 0 0 50px rgba(201,168,76,.4), 0 0 18px rgba(201,168,76,.18);
}
.mh-finale .fin-unit {
    font-size: clamp(1.6rem, 2.8vw, 2.5rem);
    color: #c9a84c; font-weight: bold;
}
.mh-finale .fin-desc {
    font-size: clamp(1rem, 1.4vw, 1.4rem);
    color: rgba(245,240,232,.55);
    margin-top: .4em; letter-spacing: .06em;
}
.mh-finale .fin-sub {
    font-size: clamp(.72rem, .9vw, .9rem);
    letter-spacing: .44em;
    color: rgba(201,168,76,.3);
    margin-top: 2em;
}

@media screen and (max-width: 767px) {
    body.cover .sec02 { height: 2400vh; }
    .mh-counter { left: 20px; bottom: 26px; }
    .mh-hint    { display: none; }
}

/*
backcoverはここから
----------------------------------------------------------- */
.backcover {
    background: #fcf8f3;
}
.bc-ttl {
    text-align: center;
    font-size: 2.4rem;
    color: #fff;
    padding: 10px 0;
    border-radius: 8px;
    background: linear-gradient(
        to right,
        transparent 0%,
        #ec6c43 30%,
        #ec6c43 80%,
        transparent 100%
    );
    text-shadow: 0 0 3px #ec6c43, 0 0 3px #ec6c43, 0 0 3px #ec6c43, 0 0 3px #ec6c43,
    0 0 6px #ec6c43, 0 0 6px #ec6c43, 0 0 9px #ec6c43;;
    position: relative;
    font-weight: 500;
}
.bc-ttl-sub {
    font-size: 0.7em;
}
.bc-ttl::before,
.bc-ttl::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
}
.bc-ttl::before {
    top: 0;
    background: linear-gradient(
        to right,
        transparent 0%,
        #ec6c43 20%,
        #ffa98d 50%,
        #ec6c43 80%,
        transparent 100%
    );
}
.bc-ttl::after {
    bottom: 0;
    background: linear-gradient(
        to right,
        transparent 0%,
        #ec6c43 20%,
        #ffa98d 50%,
        #ec6c43 80%,
        transparent 100%
    );
}
.recipe-steps ol {
    list-style: decimal !important;
    padding-left: 20px;
}
.recipe-steps ol li {
    margin-bottom: 16px;
}
.recipe-point .bc-ttl {
    font-size: 1.8rem;
    padding: 5px 0;
    margin-bottom: 15px;
}
.recipe-point-star {
    width: 30px;
    height: 20px;
    flex-shrink: 0;
    margin-bottom: 4px;
}
.recipe-point-line {
    background: linear-gradient(transparent 50%, #fff799 50%);
}
.recipe-ingredients {
    background: #fff;
    border-radius: 8px;
    padding: 16px 20px;
}
.recipe-ingredients .bc-ttl {
    font-size: 1.8rem;
    padding: 5px 0;
    margin-bottom: 15px;
}
.recipe-ingredients ul {
    list-style: none;
    padding: 0;
    margin: 0;
    line-height: 1.8;
}
.recipe-ingredients ul li {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    border-bottom: 1px dotted #ddd;
    padding: 4px 0;
}
.ing-name {
    flex: 0 0 auto;
}
.ing-amount {
    text-align: right;
    color: #555;
}
.book-section {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    padding: 20px;
}
.book-left {
    position: relative;
}
.book-left figure img {
    max-width: 60%;
    padding-top: 30px;
}
.book-cover {
    width: 300px;
    height: auto;
    display: block;
}
.book-icon {
    position: absolute;
    top: -45px;
    right: 0;
    width: 200px;
}
.book-title {
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    line-height: 1.6;
}
.book-right {
    position: relative;
}
.book-right .book-icon {
    top: 0;
    left: 0;
    width: 170px;
}
.book-wine img {
    width: 20%;
}
.book-wine-name {
    text-align: center;
    font-weight: bold;
    font-size: 2rem;
    color: #287752;
    margin-bottom: 15px;
}
.content-catch-title {
    margin: 0 auto 30px;
    text-align: center;
    position: relative;
    max-width: 800px;
}
.catch-title-inner {
    display: block;
    font-size: 2.4rem;
    line-height: 1.6;
    padding: 2rem 3rem;
    position: relative;
    background: linear-gradient(
        to right,
        transparent 0%,
        var(--color-primary-transparent) 30%,
        var(--color-primary-transparent) 80%,
        transparent 100%
    );
}
/* 上の装飾線 */
.content-catch-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(
        to right,
        transparent 0%,
        var(--color-primary) 30%,
        var(--color-primary) 70%,
        transparent 100%
    );
}
/* 下の装飾線 */
.content-catch-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(
        to right,
        transparent 0%,
        var(--color-primary) 30%,
        var(--color-primary) 70%,
        transparent 100%
    );
}
.question-heading {
    font-weight: bold;
    text-align: center;
    padding: 0.8rem 0;
    margin-bottom: 1.5rem;
    color: var(--color-primary-darkest);
    font-size: 1.6rem;
    letter-spacing: 0.05em;
}
.survey-btn {
    text-align: center;
}
.survey-btn a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 250px;
    padding: 1.2rem 2.5rem;
    background: var(--color-primary);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}
.survey-btn a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        transparent 0%,
        rgba(255, 255, 255, 0.2) 50%,
        transparent 100%
    );
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}
.survey-btn a:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(173, 116, 97, 0.3);
}
.survey-btn a:hover::before {
    transform: translateX(100%);
}
.sp-br {
    display: none;
}

/*
tsunohugはここから
----------------------------------------------------------- */
.tsunohug {
    position: relative;
}
.tsunohug-bg {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -5;
}
.tsunohug-bg img {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
}
.tsunohug .th-or-img {
    filter: drop-shadow(5px 5px 0 #ffc880);
}
.tsunohug .th-pk-img {
    filter: drop-shadow(5px 5px 0 #ffd6d2);
}
.tsunohug .th-yl-img {
    filter: drop-shadow(5px 5px 0 #fff580);
}
.tsunohug .th-gr-img {
    filter: drop-shadow(5px 5px 0 #93d856);
}
.tsunohug .th-pu-img {
    filter: drop-shadow(5px 5px 0 #a67ac5);
}
.tsunohug .th-bl-img {
    filter: drop-shadow(5px 5px 0 #7db6bd);
}
.tsunohug main {
    position: relative;
    background-image: url(../img/pc-th-line-bg.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.tsunohug .sec-head {
    font-size: 2rem;
    padding: 15px;
    text-align: center;
    margin-bottom: 45px;
    border-radius: 8px;
}
.tsunohug .font-cl-th {
    color: #4977bc;
    font-weight: bold;
}

.tsunohug .cl-gr {
    background: #e3eeb2;
    border: dashed 2px #93d856;
}
.tsunohug .cl-yl {
    background: #fff580;
    border: dashed 2px #cac158;
}
.tsunohug .cl-or {
    background: #ffc880;
    border: dashed 2px #c49354;
}
.tsunohug .cl-pk {
    background: #ffd6d2;
    border: dashed 2px #e484b5;
}
.tsunohug .cl-pu {
    background: #e2d8e9;
    border: dashed 2px #a67ac5;
}
.tsunohug .cl-bl {
    background: #b5eaf0;
    border: dashed 2px #7db6bd;
}
.tsunohug .nb-ttl {
    display: flex;
    align-items: center;
    font-size: 2rem;
    margin-bottom: 15px;
}
.tsunohug .nb-icon {
    position: relative;
    margin-right: 15px;
    animation: wiggle 2s ease-in-out infinite;
}
.tsunohug .nb-icon::before {
    position: absolute;
    top: 0;
    left: 20%;
    content: '';
    font-family: "Darumadrop One", sans-serif;
    font-size: 2.8rem;
    width: 60px;
    height: 60px;
}
.tsunohug .nb-ttl-txt {
    width: calc(100% - 75px);
}
.tsunohug .nb-cl-gr::before {
    background-image: url(../img/gr-tmt.svg);
    background-size: contain;
}
.tsunohug .nb-cl-yl::before {
    background-image: url(../img/yl-tmt.svg);
    background-size: contain;
}
.tsunohug .nb-cl-or::before {
    background-image: url(../img/or-tmt.svg);
    background-size: contain;
}
.tsunohug .nb-cl-pk::before {
    background-image: url(../img/pk-tmt.svg);
    background-size: contain;
}
.tsunohug .nb-cl-pu::before {
    background-image: url(../img/pu-tmt.svg);
    background-size: contain;
}
.tsunohug .nb-cl-bl::before {
    background-image: url(../img/bl-tmt.svg);
    background-size: contain;
}
.tsunohug .nb-vl-01::before {
    content: '01';
}
.tsunohug .nb-vl-02::before {
    content: '02';
}
.tsunohug .nb-vl-03::before {
    content: '03';
}
.tsunohug .nb-vl-04::before {
    content: '04';
}
.tsunohug .nb-vl-05::before {
    content: '05';
}
.tsunohug .nb-vl-06::before {
    content: '06';
}
.tsunohug .nb-vl-07::before {
    content: '07';
}
.tsunohug .target-content .fbox {
    --grid-gap: 5px;
}
.tsunohug .check-list li:before {
    content: "";
    width: 20px;
    height: 20px;
    background-size: contain;
    top: 50%;
    transform: translateY(-50%);
}
.tsunohug .sec01 .check-list li:before {
    background-image: url(../img/pk-tmt.svg);
}
.tsunohug .sec02 .check-list li:before {
    background-image: url(../img/gr-tmt.svg);
}
.tsunohug .sec03 .check-list li:before {
    background-image: url(../img/pk-tmt.svg);
}
.tsunohug .sec04 .check-list li:before {
    background-image: url(../img/pk-tmt.svg);
}
.tsunohug .sub-head {
    padding: 5px 15px;
    display: inline-block;
    margin-bottom: 15px;
    border-radius: 8px;
}
.tsunohug .flex-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}
.tsunohug .flex-list h4 {
    margin-bottom: 0;
    min-width: 70px;
}
.tsunohug .sec04 .white-box {
    background: #ffffff9c;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border: dashed 2px #b7bfc0;
}
.tsunohug .sec04 .white-box .fbox {
    align-items: center;
}
.tsunohug .pick-area {
    padding: 15px;
    background: #ffffff7e;
    border-radius: 8px;
    border: dashed 2px #93d856;
}
.tsunohug .deco-head-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}
.tsunohug .deco-head {
    font-family: ab-kirigirisu, sans-serif;
    display: inline-block;
    position: relative;
    text-align: center;
    padding: 0 30px;
    font-size: 3rem;
    color: #FFF;
    box-sizing: border-box;
    background:
        radial-gradient(circle, rgba(255,255,255,0.3) 1px, transparent 1px),
        radial-gradient(circle, rgba(255,255,255,0.3) 1px, transparent 1px),
        var(--bg-color);
    background-size: 10px 10px, 10px 10px;
    background-position: 0 0, 5px 5px;
    clip-path: polygon(
        0 0,
        15px 50%,
        0 100%,
        100% 100%,
        calc(100% - 15px) 50%,
        100% 0
    );
    z-index: 2;
}
.tsunohug .deco-bg-or {
    --bg-color: #ffc880;
    --shadow-color: #b3864b;
}
.tsunohug .deco-bg-gr {
    --bg-color: #77c4a2;
    --shadow-color: #4f8f73;
}
.tsunohug .deco-bg-pk {
    --bg-color: #ef8273;
    --shadow-color: #be675c;
}
.tsunohug .event-box {
    position: relative;
    padding: 15px;
    border-radius: 8px;
}
.tsunohug .event-box.bg-01 {
    background: #fff580;
    border: dashed 2px #ffc880;
}
.tsunohug .event-box.bg-02 {
    background: #ffc880;
    border: dashed 2px #93d856;
}
.tsunohug .event-ttl {
    font-family: ab-kirigirisu, sans-serif;
    font-size: 2.4rem;
    margin-bottom: 15px;
}
.tsunohug .event-box.bg-01 .event-ttl {
    border-bottom: dashed 2px #ffc880;
}
.tsunohug .event-box.bg-02 .event-ttl {
    border-bottom: dashed 2px #93d856;
}
.tsunohug .lead-txt {
    font-size: 2rem;
    font-weight: bold;
}
.tsunohug .sec02 .check-list li:before {
    top: 20%;
}
.tsunohug .sec05 .event-box .fbox {
    gap: 5px;
}
.tsunohug .sec06 .btm-box-head {
    font-weight: bold;
    font-size: 1.2em;
    position: relative;
    border-bottom: solid 1px #fff;
    margin-bottom: 15px;
}
.tsunohug .sec06 .btm-box-head::after {
    content: " ";
    display: block;
    border-bottom: solid 1px #488ea3;
    position: absolute;
    width: 50%;
}
.tsunohug .sec06 .btm-box {
    background: #bde3ef;
    border: dashed 2px #87c0d1;
    border-radius: 8px;
    padding: 15px;
}
.tsunohug .sec06 .btm-box-ttl {
    width: 150px;
}
.tsunohug .sec06 .btm-box-txt {
    width: calc(100% - 150px - var(--grid-gap));
}
.tsunohug .sec06 .btm-box-ttl p {
    background: #488ea3;
    padding-left: 15px;
    color: #fff;
}
.tsunohug .sec06 .btm-box-txt p {
    border-bottom: 1px dashed #488ea3;
}
.tsunohug .tsunohug-btn {
    text-align: center;
}
.th-simple {
    display: inline-block;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.2rem;
    border: 2px solid #ef8273;
    color: #ef8273;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 1rem;
}
.th-simple:hover {
    background: #ef8273;
    color: white;
}

/*
coacはここから
----------------------------------------------------------- */
:root {
    --intro-bg:      #1a1a1a;
    --intro-sakura:  #f0a0b8;
    --intro-sakura2: #e080a0;
    --intro-gold:    #c8a86a;
    --intro-text:    #fdf0f3;
    --intro-dim:     #c8b0b8;
}
.coac img {
    border-radius: 0;
}
.coac-intro {
    position: relative;
    height: 600vh;
    background: var(--intro-bg);
}
.coac-intro-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
}
body.coac { cursor: none; }
#cursor, #cursor-ring { display: none; }
body.coac #cursor,
body.coac #cursor-ring { display: block; }
#cursor {
    position: fixed;
    width: 8px; height: 8px;
    background: var(--intro-sakura);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10002;
    transform: translate(-50%, -50%);
}
#cursor-ring {
    position: fixed;
    width: 36px; height: 36px;
    border: 1px solid rgba(201,96,122,0.35);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10003;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}
#sakura-container {
    position: absolute;
    inset: 0;
    z-index: 10;
    pointer-events: none;
    overflow: hidden;
}
.petal {
    position: absolute;
    top: -30px;
    opacity: 0;
    animation: petalFall linear infinite;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
@keyframes petalFall {
    0%   { opacity: 0;   transform: translateY(0) translateX(0) rotate(0deg); }
    6%   { opacity: 0.8; }
    88%  { opacity: 0.6; }
    100% { opacity: 0;   transform: translateY(108vh) translateX(var(--drift)) rotate(var(--spin)); }
}
#threejs-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}
#ui-layer {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
}
.section-text {
    position: absolute;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 1s ease, transform 1s ease;
    pointer-events: auto;
}
.section-text.active {
    opacity: 1;
    transform: translateY(0);
}
#text-hero { bottom: 16vh; left: 52px; }
.hero-kana {
    font-size: 10px;
    letter-spacing: 6px;
    color: var(--intro-sakura);
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    gap: 16px;
    font-weight: 300;
}
.hero-kana::before {
    content: '';
    display: block;
    width: 28px; height: 1px;
    background: var(--intro-sakura);
}
.hero-title {
    font-family: 'Noto Serif JP', serif;
    font-size: clamp(58px, 8vw, 118px);
    font-weight: 200;
    line-height: 1.05;
    letter-spacing: 6px;
    color: var(--intro-text);
}
.hero-title .accent { color: var(--intro-sakura); }
.hero-title .gold {
    color: var(--intro-gold);
    font-size: 0.55em;
    letter-spacing: 8px;
    display: block;
    margin-top: 12px;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 200;
}
.hero-year {
    margin-top: 28px;
    font-size: 11px;
    letter-spacing: 5px;
    color: var(--intro-dim);
    font-weight: 200;
}
.scroll-hint {
    position: absolute;
    bottom: 16vh; right: 52px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    font-size: 9px;
    letter-spacing: 4px;
    color: var(--intro-dim);
    font-weight: 200;
    transition: opacity 0.6s;
}
.scroll-line {
    width: 1px; height: 56px;
    background: linear-gradient(to bottom, transparent, var(--intro-sakura));
    animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: 0; transform: scaleY(0.3); }
    50%       { opacity: 1; transform: scaleY(1); }
}
#text-s2 {
    top: 50%; right: 52px;
    transform: translateY(-50%) translateY(24px);
    text-align: right;
    max-width: 340px;
}
#text-s2.active { transform: translateY(-50%) translateY(0); }
#text-s3 {
    top: 50%; left: 52px;
    transform: translateY(-50%) translateY(24px);
    max-width: 360px;
}
#text-s3.active { transform: translateY(-50%) translateY(0); }
#text-s4 {
    bottom: 18vh; left: 50%;
    transform: translateX(-50%) translateY(24px);
    text-align: center;
    width: 90%; max-width: 720px;
}
#text-s4.active { transform: translateX(-50%) translateY(0); }
.section-label {
    font-size: 9px;
    letter-spacing: 5px;
    color: var(--intro-sakura);
    margin-bottom: 18px;
    font-weight: 300;
}
.section-heading {
    font-family: 'Noto Serif JP', serif;
    font-size: clamp(28px, 3.5vw, 46px);
    font-weight: 200;
    line-height: 1.6;
    letter-spacing: 4px;
    margin-bottom: 22px;
    color: var(--intro-text);
}
.section-body {
    font-size: 12px;
    line-height: 2.2;
    color: var(--intro-gold);
    font-weight: 200;
    letter-spacing: 1px;
}
.big-message {
    font-family: 'Noto Serif JP', serif;
    font-size: clamp(22px, 3vw, 42px);
    font-weight: 200;
    line-height: 2.0;
    letter-spacing: 5px;
    color: #fdf0f3;
    text-shadow:
        0 0 12px rgba(0,0,0,0.9),
        0 0 24px rgba(0,0,0,0.7),
        0 2px 6px rgba(0,0,0,0.8);
}
.message-attr {
    margin-top: 28px;
    font-size: 10px;
    letter-spacing: 5px;
    color: var(--intro-gold);
    font-weight: 200;
}
.deco-ttl {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 900;
    font-size: clamp(3.2rem, 5vw, 6.4rem);
    text-align: center;
    line-height: 1.5;
    filter: drop-shadow(2px 3px 0 #e9c7ff);
    letter-spacing: -0.3rem;
    margin-bottom: 30px;
}
.deco-char {
    position: relative;
    display: inline-block;
    -webkit-text-stroke: 0.5px #9359b9;
    paint-order: stroke fill;
}
.deco-char::after {
    content: attr(data-char);
    position: absolute;
    inset: 0;
    background-image: radial-gradient(
        circle closest-side,
        rgba(255, 255, 255, 0.6) 40%,
        transparent 80%
    );
    background-size: 3px 3px;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 0;
    pointer-events: none;
}
.deco-ttl-1 { -webkit-text-fill-color: #fff262; }
.deco-ttl-2 { -webkit-text-fill-color: #f3aecc; }
.deco-ttl-3 { -webkit-text-fill-color: #86cab6; }
.deco-ttl-4 { -webkit-text-fill-color: #86afca; }
.coac .right-area {
    position: relative;
}
.coac .right-area-bg-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    clip-path: inset(0);
    z-index: -1;
}
.coac .right-area-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
}
.coac .right-area-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(255, 197, 197, 0.164) 2px, transparent 1px);
    background-size: 100% 28px;
    z-index: 0;
    -webkit-mask-image: linear-gradient(to right, black 4px, transparent 4px);
    mask-image: linear-gradient(to right, black 4px, transparent 4px);
    -webkit-mask-size: 8px 100%;
    mask-size: 8px 100%;
}
.coac #deco-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}
.hdfont-ttl {
    font-family: "Zen Kurenaido", sans-serif;
    font-weight: 400;
    font-style: normal;
    text-align: center;
}
.hdfont-ttl-white {
    font-size: 1.5em;
    color: var(--color-white);
    text-shadow:
        0 0 2px #8f82bc,
        0 0 5px #8f82bc,
        0 0 10px #8f82bc,
        0 0 12px #8f82bce6,
        0 0 20px #8f82bc,
        0 0 24px #8f82bcb3,
        0 2px 6px #8f82bccc;
    margin-bottom: 30px;
}
.hdfont-ttl-white::before,
.hdfont-ttl-white::after {
    content: '';
    display: inline-block;
    width: 2px;
    height: 1.2em;
    border-radius: 10px;
    background-color: var(--color-white);
    vertical-align: middle;
    margin-bottom: 0.2em;
    box-shadow:
        0 0 2px #8f82bc,
        0 0 5px #8f82bc,
        0 0 10px #8f82bc,
        0 0 12px #8f82bce6,
        0 0 20px #8f82bc;
}
.hdfont-ttl-white::before {
    margin-right: 20px;
    transform: rotate(-25deg);
}
.hdfont-ttl-white::after {
    margin-left: 20px;
    transform: rotate(25deg);
}
.coac .sec02-top-img {
    overflow: hidden; 
    box-shadow: 5px 5px 0px #5eb7e8;
    display: inline-block;
    vertical-align: bottom;
    border: 1px solid #8f82bc;
    position: relative; 
}
.coac .sec02-top-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 10px solid #fff;
    box-sizing: border-box;
    z-index: 2;
    pointer-events: none;
}
.coac .sec02-top-img img {
    transition: transform 0.5s ease;
    backface-visibility: hidden;
    width: 100%;
    height: auto;
}
.coac .sec02-top-img:hover img {
    transform: scale(1.03);
}
.coac .deco-head-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    filter: drop-shadow(5px 5px 0 #5eb7e8);
    z-index: -1;
}
.coac .deco-head {
    display: inline-block;
    position: relative;
    text-align: center;
    padding: 0 30px;
    font-size: 3rem;
    color: #8f82bc;
    box-sizing: border-box;
    background:
        radial-gradient(circle, rgba(255,255,255,0.7) 1px, transparent 1px),
        radial-gradient(circle, rgba(255,255,255,0.7) 1px, transparent 1px),
        #fff262;
    background-size: 10px 10px, 10px 10px;
    background-position: 0 0, 5px 5px;
    z-index: 2;
    border-radius: 15px 15px 0 0;
    text-shadow:
        0 0 2px #ffffff,
        0 0 3px #ffffff,
        0 0 4px #ffffff,
        0 0 5px #ffffff;
}
.coac .sec02-top-box {
    background: #fff;
    padding: 15px;
    border: 2px solid #8f82bc;
    box-shadow: 5px 5px 0px #5eb7e8;
    position: relative;
    z-index: 1;
}
.coac .sec02-top-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(#5eb7e8 1px, transparent 1px),
        linear-gradient(90deg, #5eb7e8 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.2;
    z-index: -1;
}
.coac .coac-img {
    overflow: hidden; 
    box-shadow: 5px 5px 0px #5eb7e8;
    display: inline-block;
    vertical-align: bottom;
    border: 1px solid #8f82bc;
    position: relative;
}
.coac .coac-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 5px solid #fff;
    box-sizing: border-box;
    z-index: 2;
    pointer-events: none;
}
.coac .coac-img img {
    transition: transform 0.5s ease;
    backface-visibility: hidden;
    width: 100%;
    height: auto;
}
.coac .coac-img:hover img {
    transform: scale(1.03);
}
.coac .sec02-name {
    text-align: center;
    font-size: 1.3rem;
    letter-spacing: 0.1em;
    margin-top: 10px;
    color: #8f82bc;
}
.typing-cursor {
    animation: blink 0.75s step-end infinite;
}
@keyframes blink {
    from, to { opacity: 1; }
    50% { opacity: 0; }
}
.coac .sec02-caption {
    font-size: 1.2rem;
    color: var(--color-text);
    text-align: center;
    line-height: 1.7;
    padding: 12px 15px;
    border: 1px solid rgba(143, 130, 188, 0.4); /* 紫系に */
    border-radius: 6px;
    background: rgba(143, 130, 188, 0.08); /* 紫系に */
    margin-top: 10px;
    letter-spacing: 0.05em;
    margin-bottom: 15px;
}
.coac .sec02-caption a {
    text-decoration: none;
    color: #8f82bc;
    font-weight: bold;
    position: relative;
    transition: color 0.3s ease;
}
.coac .sec02-caption a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(to right, #8f82bc, #5eb7e8);
    transition: width 0.3s ease;
}
.coac .sec02-caption a:hover {
    color: #5eb7e8;
}
.coac .sec02-caption a:hover::after {
    width: 100%;
}
.coac .fbox {
    align-items: center;
}
.coac .sec02-btm-box {
    background: #0a0a0a;
    border: 3px solid #5eb7e8;
    padding: 10px;
    font-family: 'DotGothic16', sans-serif;
    box-shadow:
        4px 4px 0 #8f82bc,
        inset 0 0 30px rgba(94, 183, 232, 0.05);
    position: relative;
}
.coac .sec02-btm-box::before {
    content: '▶ 2005-2006 MEMORIES';
    display: block;
    color: #5eb7e8;
    font-family: 'DotGothic16', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.2em;
    margin-bottom: 15px;
    border-bottom: 1px dashed #5eb7e8;
    padding-bottom: 8px;
}
.coac .retro-table {
    width: 100%;
    border-collapse: collapse;
}
.coac .retro-row {
    opacity: 0;
}
.coac .retro-label {
    color: #fff262;
    font-family: 'DotGothic16', sans-serif;
    font-size: 1.1rem;
    padding: 6px 15px 6px 0;
    white-space: nowrap;
    width: 60px;
}
.coac .retro-label::before {
    content: '▷ ';
    color: #8f82bc;
}
.coac .retro-value {
    color: #fff;
    font-family: 'DotGothic16', sans-serif;
    font-size: 1.1rem;
    padding: 6px 0;
    border-bottom: 1px dotted rgba(94, 183, 232, 0.3);
}
.coac .coac-lead {
    background: rgba(143, 130, 188, 0.1);
    padding: 30px 40px;
    position: relative;
    max-width: 700px;
    margin: 0 auto 30px;
}
.coac .coac-lead::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border: 1px solid #c8a86a;
    pointer-events: none;
}
.coac .coac-lead p {
    line-height: 2;
    color: var(--color-text);
}
.coac .sec03 .cmn-img figure {
    position: relative;
    display: flex;
    justify-content: center;
    border: 1px solid #8f82bc;
    overflow: hidden;
    box-shadow: 5px 5px 0px #5eb7e8;
    width: 80%;
    margin: 0 auto;
}
.coac .sec03 .cmn-img figure::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 10px solid #fff;
    box-sizing: border-box;
    z-index: 2;
    pointer-events: none;
}
.coac .sec03-box {
    position: relative;
    aspect-ratio: 2219 / 1102;
}
.coac .sec03-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../img/pixel-window.svg);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    pointer-events: none;
}
.coac .sec03-box ul {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 60px 45px 30px 30px;
    box-sizing: border-box;
}
.coac .sec03-mayor-ttl {
    font-family: 'DotGothic16', sans-serif;
    font-size: 1.6rem;
    color: #d4789a;
    letter-spacing: 0.2em;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px dashed #e8a0b8;
}
.coac .sec03-mayor-ttl::before {
    content: '▶ ';
    color: #8f82bc;
}
.coac .sec03-mayor-txt {
    font-family: 'DotGothic16', sans-serif;
    font-size: 1.4rem;
    line-height: 2;
    color: var(--color-text);
}
.coac .sec04 .flex-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}
.coac .sec04 .sb-img {
    width: 20%;
}
.coac .sec04 .sb-txt {
    width: calc(80% - 15px);
}
.coac .sec04 .sb-txt p {
    position: relative;
    background: #fff;
    border: 2px solid #8f82bc;
    border-radius: 20px;
    padding: 20px 25px;
    box-shadow: 3px 3px 0 #5eb7e8;
}
.coac .sec04 .sb-txt p::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -20px;
    transform: translateY(-50%);
    border: 10px solid transparent;
    border-right-color: #8f82bc;
}
.coac .sec04 .sb-txt p::after {
    content: '';
    position: absolute;
    top: 50%;
    left: -16px;
    transform: translateY(-50%);
    border: 9px solid transparent;
    border-right-color: #fff;
}
.coac .grid-4 li {
    text-align: center;
}
.coac .member-name {
    font-size: 1.6rem;
    font-weight: bold;
    color: var(--color-text);
    margin-top: 10px;
}
.coac .from-school {
    font-size: 1.4rem;
    color: #8f82bc;
    margin-bottom: 12px;
}
.coac .member-sb {
    position: relative;
    background: #fff;
    border: 2px solid #8f82bc;
    border-radius: 15px;
    padding: 12px 15px;
    font-size: 1.4rem;
    text-align: center;
    box-shadow: 3px 3px 0 #5eb7e8;
}
.coac .member-sb::before {
    content: '';
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    border: 9px solid transparent;
    border-bottom-color: #8f82bc;
}
.coac .member-sb::after {
    content: '';
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    border: 8px solid transparent;
    border-bottom-color: #fff;
}
.coac .grid-4 figure {
    display: flex;
    align-items: center;
}
.coac .grid-4 figure img {
    filter:
        drop-shadow(0 0 1px #8f82bc)
        drop-shadow(0 0 3px #fff)
        drop-shadow(0 0 4px #8f82bc);
}
.coac .coac-theater {
    width: 100%;
    padding: 40px 0;
}
.coac .coac-theater .swiper-slide {
    width: 400px;
    height: 280px;
    overflow: hidden;
    box-shadow: 5px 5px 0px #5eb7e8;
    border: 1px solid #8f82bc;
    position: relative;
    border-radius: 0;
}
.coac .coac-theater .swiper-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 5px solid #fff;
    box-sizing: border-box;
    z-index: 2;
    pointer-events: none;
}
.coac .coac-theater .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*
shcはここから
----------------------------------------------------------- */
.shc .lead {
    max-width: 700px;
    margin: 0 auto;
}
.shc .sb {
    background: #fffde7;
    border: 2px solid #f5c842;
    border-radius: 12px;
    padding: 15px;
    position: relative;
    margin: 0 auto 45px;
    display: block;
    max-width: 700px;
}
.shc .sb::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    border: 10px solid transparent;
    border-top-color: #f5c842;
}
.shc .sec02 .cmn-txt {
    position: relative;
}
.shc .sec02-map-label {
    position: absolute;
    top: 0;
    right: 0;
    width: 160px;
    z-index: 1;
}
.shc .sec02-map-north {
    position: absolute;
    top: 10px;
    left: 30%;
    width: 50px;
    z-index: 1;
}
.shc .arrow-down {
    width: 0;
    height: 0;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-top: 25px solid #f5c842; /* お好みの色に */
    margin: 10px auto;
}
.shc .sec-title {
    max-width: 400px;
    margin: 0 auto 30px;
}
.shc .comment-box {
    background: #fffde7;
    border: 2px solid #f5c842;
    border-radius: 8px;
    padding: 15px;
}
.shc .comment-box .fbox {
    align-items: center;
}
.shc .comment-box .cmn-img figure {
    width: 70%;
    margin: 0 auto;
}
.shc .cl-red {
    color: #dc3b36;
}
.shc .bp-section {
    background-color: #f9e8e8;
    background-image:
        linear-gradient(rgba(255,255,255,0.8) 4px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.8) 4px, transparent 1px);
    background-size: 40px 40px;
    padding: 15px;
    border-radius: 8px;
}
.shc .plan-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    text-align: center;
    margin-bottom: 24px;
    font-weight: 600;
}
.shc .plan-title-line {
    display: block;
    width: 2px;
    height: 40px;
    background-color: #333;
    flex-shrink: 0;
}
.shc .plan-title-line--left {
    transform: rotate(-20deg);
}
.shc .plan-title-line--right {
    transform: rotate(20deg);
}
.shc .plan-card {
    background: #fffde7;
    border: 2px solid #f5c842;
    border-radius: 8px;
    padding: 20px;
    line-height: 1.8;
    position: relative;
}
.shc .plan-card-title {
    color: #e07070;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid #f5a0a0;
}
.plan-card-txt {
    text-align: justify;
}
.shc .plan-target {
    text-align: right;
    margin-top: 16px;
}
.shc .plan-card-spoon {
    position: absolute;
    top: -20px;
    right: -10px;
    width: 150px;
}
.shc .plan-footer {
    text-align: center;
    font-weight: 600;
}
.shc .closing-section .fbox {
    align-items: center;
}
.shc .closing-sb {
    flex: 1;
    background: #fffde7;
    border: 2px solid #f5c842;
    border-radius: 20px;
    padding: 24px 28px;
    line-height: 2;
    position: relative;
    text-align: justify;
}
.shc .closing-sb::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    border: 10px solid transparent;
    border-left-color: #f5c842;
}
.closing-sb a {
    color: #886f22;
    font-weight: bold;
    text-decoration: none;
}
.closing-sb a:hover {
    text-decoration: underline;
    opacity: 0.8;
}
.shc .closing-illust img {
    width: 60%;
}
.sp-br {
    display: none;
}
.shc .shc-acc {
    display: inline-block;
    background: #886f22;
    color: #fff;
    padding: 5px 10px;
    margin-right: 5px;
}