@charset "utf-8";
        /* CSS */
        @charset "utf-8";
        /* CSS */
        @charset "utf-8";
        /* CSS */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600;700&family=Noto+Serif+JP:wght@400;600;700&display=swap');

        /* アニメーション定義 */
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(-30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    0% {
        opacity: 0.8;
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes neonFlicker {
    0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
        text-shadow:
            0 0 10px rgba(70, 130, 230, 1),
            0 0 20px rgba(70, 130, 230, 0.9),
            0 0 30px rgba(70, 130, 230, 0.8),
            0 0 40px rgba(70, 130, 230, 0.7),
            0 0 50px rgba(25, 25, 112, 0.6),
            0 0 60px rgba(25, 25, 112, 0.5),
            0 0 80px rgba(25, 25, 112, 0.4);
        opacity: 1;
    }
    20%, 24%, 55% {
        text-shadow:
            0 0 5px rgba(70, 130, 230, 0.5),
            0 0 10px rgba(70, 130, 230, 0.4);
        opacity: 0.7;
    }
}

@keyframes neonGlow {
    0%, 100% {
        text-shadow:
            0 0 10px rgba(70, 130, 230, 1),
            0 0 20px rgba(70, 130, 230, 0.9),
            0 0 30px rgba(70, 130, 230, 0.8),
            0 0 40px rgba(70, 130, 230, 0.7),
            0 0 50px rgba(25, 25, 112, 0.6),
            0 0 60px rgba(25, 25, 112, 0.5);
    }
    50% {
        text-shadow:
            0 0 15px rgba(70, 130, 230, 1),
            0 0 30px rgba(70, 130, 230, 1),
            0 0 45px rgba(70, 130, 230, 0.9),
            0 0 60px rgba(70, 130, 230, 0.8),
            0 0 75px rgba(25, 25, 112, 0.7),
            0 0 90px rgba(25, 25, 112, 0.6),
            0 0 120px rgba(25, 25, 112, 0.5);
    }
}


body.index main .logo {
    position: relative;
    animation: flash 5s infinite, fadeIn 1s ease-out;
    overflow: hidden;
    z-index: 0;
}

/* header .info にも同じスタイルを適用 */
body.contents header .info {
    position: relative;
    overflow: hidden;
    z-index: 0;
    animation: flash 5s infinite, fadeIn 1s ease-out;
}

body.contents header .info .logo {
    padding: 20px 0px 20px 0px;
    animation: scaleIn 1s ease-out 0.2s both, flash 5s infinite;
}


body.contents header .info .contact {
    animation: fadeInUp 0.8s ease-out 0.4s both;
    z-index: 2;
    position: relative;
    font-family: 'Noto Serif JP', 'Cormorant Garamond', serif;
    font-weight: bold;
}




/* 光の欠片コンテナ */
.falling-lights-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200%;
    pointer-events: none;
    z-index: 1;
    overflow: visible;
}

/* 光のボケパーティクル */
.bokeh-particle {
    position: absolute;
    bottom: -30px;
    border-radius: 50%;
    opacity: 0;
    will-change: transform, opacity;
    background: radial-gradient(
        circle at 30% 30%,
        rgba(255, 255, 240, 0.9) 0%,
        rgba(255, 235, 150, 0.7) 20%,
        var(--bokeh-color) 45%,
        transparent 70%
    );
    filter: blur(var(--bokeh-blur));
    box-shadow:
        0 0 8px var(--bokeh-color),
        0 0 20px rgba(255, 215, 0, 0.5),
        inset 0 0 4px rgba(255, 255, 200, 0.4);
    animation:
        bokeh-rise linear infinite,
        bokeh-glow ease-in-out infinite;
    z-index: 1;
}

/* 下から上に舞い上がるアニメーション */
@keyframes bokeh-rise {
    0% {
        transform: translateY(0) translateX(0) scale(0.3);
        opacity: 0;
    }
    5% {
        opacity: 0.4;
        transform: translateY(-5vh) translateX(calc(var(--drift) * 0.05)) scale(0.6);
    }
    15% {
        opacity: 0.8;
        transform: translateY(-15vh) translateX(calc(var(--drift) * 0.15)) scale(0.9);
    }
    30% {
        opacity: 1;
        transform: translateY(-30vh) translateX(calc(var(--drift) * 0.3)) scale(1);
    }
    50% {
        opacity: 1;
        transform: translateY(-50vh) translateX(calc(var(--drift) * 0.5)) scale(1.05);
    }
    70% {
        opacity: 0.9;
        transform: translateY(-70vh) translateX(calc(var(--drift) * 0.7)) scale(1);
    }
    85% {
        opacity: 0.5;
        transform: translateY(-85vh) translateX(calc(var(--drift) * 0.85)) scale(0.9);
    }
    100% {
        opacity: 0;
        transform: translateY(-110vh) translateX(var(--drift)) scale(0.7);
    }
}

/* ボケの明滅アニメーション */
@keyframes bokeh-glow {
    0%, 100% {
        box-shadow:
            0 0 6px var(--bokeh-color),
            0 0 15px rgba(255, 215, 0, 0.4),
            inset 0 0 3px rgba(255, 255, 200, 0.3);
    }
    50% {
        box-shadow:
            0 0 12px var(--bokeh-color),
            0 0 30px rgba(255, 215, 0, 0.6),
            0 0 50px rgba(218, 165, 32, 0.3),
            inset 0 0 6px rgba(255, 255, 200, 0.5);
    }
}

/* ロゴ画像を前面に配置 */
body.index main .logo img,
body.index main .logo p {
    position: relative;
    z-index: 0;
}

.logo img {
    animation: aura 5s infinite;
}

@keyframes flash {
  0%, 100% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.1);
  }
}

@keyframes aura {
  0%, 100% {
    /* 明るく光るよう影を重ねる */
    filter: drop-shadow(0px 0px 1px #ffffff) drop-shadow(0px 0px 2px #ffffff);
  }
  50% {
    /* 淡く光るよう影を重ねる */
    filter: drop-shadow(0px 0px 4px #ffffff) drop-shadow(0px 0px 8px #ffffff);
  }
}

body.index main nav.admission {
    background: #0A1628;
    background: linear-gradient(0deg,rgba(0, 0, 0, 1) 0%, rgb(10, 27, 58) 100%);
    border-top: solid 2px rgba(28, 52, 80, 0.3);
    border-bottom: solid 2px rgba(28, 52, 80, 0.3);
    box-shadow: 0 0 20px rgba(70, 130, 200, 0.2);
    animation: fadeInDown 1s ease-out 0.3s both;

    li > p {
        color: #888888;
        font-size: 0.9em;
    }
}

body.index main nav.admission li.button {
    width: 260px;
    position: relative;
    padding: 0px;
    margin: 15px 10px;
    display: inline-block;
    vertical-align: top;
    animation: scaleIn 0.6s ease-out both;
}

body.index main nav.admission li.button:nth-child(1) {
    animation-delay: 0.5s;
}

body.index main nav.admission li.button:nth-child(2) {
    animation-delay: 0.7s;
}

body.index main nav.admission li.button:hover {
    animation: bright-flash 0.5s linear forwards;
}



body.index main nav.admission li.button a {
    display: block;
    position: relative;
    background: linear-gradient(135deg, rgba(180, 185, 195, 0.95) 0%, rgba(120, 130, 145, 0.95) 50%, rgba(160, 168, 180, 0.95) 100%);
    border: solid 1px transparent;
    border-radius: 8px;
    color: #1a1a2e;
    font-family: 'Cormorant Garamond', 'Noto Serif JP', serif;
    font-size: 1em;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-shadow:
        0 1px 0 rgba(255, 255, 255, 0.6),
        0 -1px 0 rgba(0, 0, 0, 0.2);
    box-shadow:
        0 2px 8px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(180, 190, 210, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.5),
        inset 0 -1px 0 rgba(0, 0, 0, 0.15);
    width: auto;
    padding: 10px 20px;
    margin: 0 auto;
    z-index: 1;
    background-clip: padding-box;
    position: relative;
    overflow: hidden;
    line-height: 1;

    p {
        font-size: 2.8em;
    }
}

body.index main nav.admission li.button a:before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #ffffff 0%, #c0c0c0 35%, #e8e8e8 65%, #808080 100%);
    border-radius: 8px;
    z-index: -1;
    animation: neon-border 6s linear infinite;
}

@keyframes neon-border {
    0%, 25%, 75%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

body.index main nav.admission li.button a:hover {
    animation: none;
}

/* index.php の .info セクションにアニメーション */
body.index main .info {
    animation: fadeInUp 0.8s ease-out 0.9s both;
}

body.index main nav.admission li.leave a {
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.95) 0%, rgba(15, 15, 15, 0.95) 50%, rgba(25, 25, 25, 0.95) 100%);
    color: #666666;
    text-shadow: none;
    box-shadow:
        0 2px 8px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
body.index main nav.admission li.leave a:before {
    background: linear-gradient(135deg, #333 0%, #222 50%, #333 100%);
}
body.index main nav.admission li.leave:hover {
    animation: none;
    filter: opacity(0.8);
}

body.contents header .sub_menu ul li a {
    color: #B0D4FF !important;
    transition: all 0.3s ease;
}


body.contents header nav.menu ul {
    padding: 0px;
    background: linear-gradient(180deg, rgba(5,5,15,1) 0%, rgba(5,10,25,1) 100%);
    border-top: solid 2px rgba(70, 130, 200, 0.3);
    border-bottom: solid 2px rgba(70, 130, 200, 0.3);
     padding: 5px 0;
}

body.contents header nav.menu ul li {
    margin: 0px;
    animation: fadeInDown 0.4s ease-out both;
}

body.contents header nav.menu ul li:nth-child(1) { animation-delay: 0.1s; }
body.contents header nav.menu ul li:nth-child(2) { animation-delay: 0.15s; }
body.contents header nav.menu ul li:nth-child(3) { animation-delay: 0.2s; }
body.contents header nav.menu ul li:nth-child(4) { animation-delay: 0.25s; }
body.contents header nav.menu ul li:nth-child(5) { animation-delay: 0.3s; }
body.contents header nav.menu ul li:nth-child(6) { animation-delay: 0.35s; }

body.contents header nav.menu ul li a {
    position: relative;
    font-family: 'Noto Serif JP', 'Cormorant Garamond', serif;
    letter-spacing: 0.08em;
    color: #ffffff;
    background: rgb(15,8,30);
    background: linear-gradient(180deg, rgba(5,10,25,1) 0%, rgba(5,5,15,1) 100%);
    padding: 10px 40px;
}
body.contents header nav.menu ul li a:before {
    content: '';
    position: absolute;
    width: 1px;
    height: 80%;
    background: rgba(70, 130, 200, 0.3);
    box-shadow: 0 0 5px #4A90D9;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
}
body.contents header nav.menu ul li:last-child a:after {
    content: '';
    position: absolute;
    width: 1px;
    height: 80%;
    background: rgba(70, 130, 200, 0.3);
    box-shadow: 0 0 5px #1B3A5C;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
}
body.contents header nav.menu ul li a:hover {
    color: #1a1a2e;
    background: linear-gradient(135deg, #ffffff 0%, #c0c0c0 35%, #e8e8e8 65%, #a0a0a0 100%);
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.6);
    border-radius: 4px;
}

body.contents main article {
    padding: 20px 0px;
}

body.contents main article section {
    animation: fadeInUp 0.8s ease-out both;
}

body.contents main article section:nth-child(1) {
    animation-delay: 0.1s;
}

body.contents main article section:nth-child(2) {
    animation-delay: 0.2s;
}

body.contents main article section:nth-child(3) {
    animation-delay: 0.3s;
}

body.contents main article section:nth-child(4) {
    animation-delay: 0.4s;
}

body.contents main article section:nth-child(5) {
    animation-delay: 0.5s;
}

body.contents main article section:nth-child(6) {
    animation-delay: 0.6s;
}

body.contents main article section h2, body.contents main article section h3 {
    position: relative;
    font-family: 'Noto Serif JP', 'Cormorant Garamond', serif;
    font-size: 0.94em;
    padding: 10px 10px 6px 10px;
    border-radius: 6px 6px 0px 0px;
    background: linear-gradient(180deg, rgb(6, 14, 29) 0%, rgb(13, 29, 54) 10%, rgb(9, 23, 44) 20%, rgb(8, 19, 37) 55%, rgb(8, 18, 37) 100%);

    em {
        color: #FFFFFF;
        text-shadow: 0 0 10px #54a0f1;
    }
}
body.contents main article section h2:before {
    content: '';
    position: absolute;
    width: 10%;
    height: 100%;
    background: url(../images/lframe.png) left center / auto 66% no-repeat;
    left: 5px;
    top: 4px;
    bottom: 0;
    margin: auto;
    filter: drop-shadow(0px 0px 4px #54a0f1);
    opacity: 0.8;
}
body.contents main article section h2:after {
    content: '';
    position: absolute;
    width: 10%;
    height: 100%;
    background: url(../images/rframe.png) right center / auto 66% no-repeat;
    right: 5px;
    top: 4px;
    bottom: 0;
    margin: auto;
    filter: drop-shadow(0px 0px 4px #54a0f1);
    opacity: 0.8;
}

i.status {
    border-radius: 4px;
}


body.contents main article.slide {
    background: rgba(0, 0, 0, 0.6);

}




body.contents main article section.ranking .title {
    color: #B0D4ffFF;
    border: solid 2px #4A90D9;
    text-shadow: 0 0 10px #4A90D9;
    box-shadow: 0 0 15px rgba(70, 130, 200, 0.5);
}
.catchcopy {
    font-weight: bold;
}
section.ranking .wrapper li {
    vertical-align: top;
    color:#ffffff;
    animation: fadeInUp 0.5s ease-out both;
}

section.ranking .wrapper li:nth-child(1) { animation-delay: 0.1s; }
section.ranking .wrapper li:nth-child(2) { animation-delay: 0.2s; }
section.ranking .wrapper li:nth-child(3) { animation-delay: 0.3s; }
section.ranking .wrapper li:nth-child(4) { animation-delay: 0.4s; }
section.ranking .wrapper li:nth-child(5) { animation-delay: 0.5s; }

body.contents main article section.girls .wrapper li {
    vertical-align: top;
    border-radius: 6px;
    animation: scaleIn 0.5s ease-out both;
}

body.contents main article section.girls .wrapper li:nth-child(1) { animation-delay: 0.05s; }
body.contents main article section.girls .wrapper li:nth-child(2) { animation-delay: 0.1s; }
body.contents main article section.girls .wrapper li:nth-child(3) { animation-delay: 0.15s; }
body.contents main article section.girls .wrapper li:nth-child(4) { animation-delay: 0.2s; }
body.contents main article section.girls .wrapper li:nth-child(5) { animation-delay: 0.25s; }
body.contents main article section.girls .wrapper li:nth-child(6) { animation-delay: 0.3s; }
body.contents main article section.girls .wrapper li:nth-child(7) { animation-delay: 0.35s; }
body.contents main article section.girls .wrapper li:nth-child(8) { animation-delay: 0.4s; }
body.contents main article section.girls .wrapper li:nth-child(9) { animation-delay: 0.45s; }
body.contents main article section.girls .wrapper li:nth-child(10) { animation-delay: 0.5s; }

body.contents main article section.girl .profile {
    background: #111111B0 !important;
    border-radius: 8px;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}
body.contents main article section.system .wrapper li {
    animation: fadeInRight 0.6s ease-out both;
}

body.contents main article section.system .wrapper li:nth-child(1) { animation-delay: 0.1s; }
body.contents main article section.system .wrapper li:nth-child(2) { animation-delay: 0.2s; }
body.contents main article section.system .wrapper li:nth-child(3) { animation-delay: 0.3s; }

body.contents main article section.system .wrapper li table caption {
    border-radius: 6px;
}
body.contents main article section.system .wrapper li table td {
    color: #B0D4FF;
    text-shadow: 0 0 8px #4A90D9;
}
body.contents main article section.event .wrapper li {
    border-radius: 6px 6px 0px 0px;
    background: #111111B0 !important;
    animation: fadeInLeft 0.6s ease-out both;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}

body.contents main article section.event .wrapper li:nth-child(1) { animation-delay: 0.1s; }
body.contents main article section.event .wrapper li:nth-child(2) { animation-delay: 0.2s; }
body.contents main article section.event .wrapper li:nth-child(3) { animation-delay: 0.3s; }
body.contents main article section.event .wrapper li:nth-child(4) { animation-delay: 0.4s; }
body.contents main article section.event .wrapper li:nth-child(5) { animation-delay: 0.5s; }

body.contents main article section.event .wrapper li .title {
    border-radius: 6px 6px 0px 0px;
}
body.contents main article section.mailmagazine .wrapper form {
    background: #111111B0 !important;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}

/* Footer ul.menu スタイル上書き */
footer ul.menu {
    background: #000000 !important;
    padding: 15px 10px !important;
    box-shadow: 0 -2px 20px rgba(70, 130, 200, 0.3);
    animation: fadeInUp 0.8s ease-out;
}

footer ul.menu li {
    animation: fadeIn 0.5s ease-out both;
}

footer ul.menu li:nth-child(1) { animation-delay: 0.1s; }
footer ul.menu li:nth-child(2) { animation-delay: 0.2s; }
footer ul.menu li:nth-child(3) { animation-delay: 0.3s; }
footer ul.menu li:nth-child(4) { animation-delay: 0.4s; }
footer ul.menu li:nth-child(5) { animation-delay: 0.5s; }

footer ul.menu li a {
    color: #B0D4FF !important;
    transition: all 0.3s ease;
}

footer ul.menu li a:hover {
    color: #B0D4FF !important;
    text-shadow:
        0 0 15px rgba(70, 130, 200, 1),
        0 0 30px rgba(70, 130, 200, 0.8),
        0 0 40px rgba(25, 25, 112, 0.6) !important;
}

footer ul.menu li::before {
    color: rgba(70, 130, 200, 0.6) !important;
    text-shadow: 0 0 5px rgba(70, 130, 200, 0.5);
}
footer .copyright {
    background: linear-gradient(180deg, rgb(10, 10, 30) 0%, rgba(5, 10, 25, 1) 100%);
}

.navToggle {
    background: linear-gradient(135deg, #e0e0e0 0%, #b0b0b0 50%, #d0d0d0 100%);
    box-shadow:
        0 2px 6px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
}
.navToggle span {
    border-bottom-color: #1a1a2e;
}
.navToggle span:nth-child(4) {
    color: #1a1a2e;
}
nav.globalMenuSp {
    background: color-mix(in srgb, var(--contents-sub-BG1), transparent 10%);
}
nav.globalMenuSp ul li.logo img {
    animation: unset;
}
nav.globalMenuSp ul li a.tel {
    color: #FFFFFF;
}
nav.globalMenuSp ul li a {
    color: #FFFFFF;
}

footer ul.sub_menu li {
    background: linear-gradient(135deg, #e0e0e0 0%, #b0b0b0 50%, #d0d0d0 100%);
    box-shadow:
        0 2px 6px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    color: #1a1a2e;
}
footer ul.sub_menu li a {
    color: #1a1a2e;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
}

.icon em {
    color: var(--contents-main-F);
}

body.contents main article section.girls .wrapper li .profile {
    color: #ffffff;

    .size {
        font-size: 0.9em;
    }
}




@media screen and (min-width: 0px) and (max-device-width: 720px) {
body.index main .logo {
    padding: 4% 0px 4% 0px;
    background-position: 50% 0px;
    background-size: 150% auto;
}
body.index main nav.admission li.button {
    width: 48%;
    padding: 0px;
    margin:  1% 1%  2% 1%;
    font-size:0.8em;
}
body.contents header .info {
    background-size: 160% auto;
    background-position: 50% 0px;
}
body.contents header .info .logo {
    padding: 2% 0px 2% 0px;
}
body.contents header .info .logo img {
    width: 50%;
}





body.contents header nav.menu ul li {
    font-size: 0.6em;
    width: 32.6%;
}
body.contents header nav.menu ul li:nth-child(3) a:after {
    content: '';
    position: absolute;
    width: 1px;
    height: 80%;
    background: rgba(70, 130, 200, 0.3);
    box-shadow: 0 0 5px #4A90D9;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
}
body.contents header nav.menu ul li a {
    padding: 10px 0px;
}
body.contents main article section h2, body.contents main article section h3 {
    border-radius: 0px;
}
body.contents main article section {
    border-radius: 0px;
}
body.contents main article section.event .wrapper li {
    border-radius: 0px;
}
body.contents main article section.event .wrapper li .title {
    border-radius: 0px;
}
}