@charset "utf-8";
        /* CSS */
        @charset "utf-8";
        /* CSS */
        /* アニメーション定義 */
@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.96);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes neonFlicker {
    0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
        text-shadow:
            0 0 10px rgba(255, 102, 255, 1),
            0 0 20px rgba(255, 102, 255, 0.9),
            0 0 30px rgba(255, 102, 255, 0.8),
            0 0 40px rgba(255, 102, 255, 0.7),
            0 0 50px rgba(102, 204, 255, 0.6),
            0 0 60px rgba(102, 204, 255, 0.5),
            0 0 80px rgba(102, 204, 255, 0.4);
        opacity: 1;
    }
    20%, 24%, 55% {
        text-shadow:
            0 0 5px rgba(255, 102, 255, 0.5),
            0 0 10px rgba(255, 102, 255, 0.4);
        opacity: 0.7;
    }
}

@keyframes neonGlow {
    0%, 100% {
        text-shadow:
            0 0 10px rgba(255, 102, 255, 1),
            0 0 20px rgba(255, 102, 255, 0.9),
            0 0 30px rgba(255, 102, 255, 0.8),
            0 0 40px rgba(255, 102, 255, 0.7),
            0 0 50px rgba(102, 204, 255, 0.6),
            0 0 60px rgba(102, 204, 255, 0.5);
    }
    50% {
        text-shadow:
            0 0 15px rgba(255, 102, 255, 1),
            0 0 30px rgba(255, 102, 255, 1),
            0 0 45px rgba(255, 102, 255, 0.9),
            0 0 60px rgba(255, 102, 255, 0.8),
            0 0 75px rgba(102, 204, 255, 0.7),
            0 0 90px rgba(102, 204, 255, 0.6),
            0 0 120px rgba(102, 204, 255, 0.5);
    }
}

body.index main .logo {
    position: relative;
    padding: 120px 0px 120px 0px;
    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: fadeIn 0.8s ease-out;
}

body.contents header .info .logo {
    animation: scaleIn 1s ease-out 0.2s both;
}

body.contents header .info .contact {
    animation: fadeInUp 0.8s ease-out 0.4s both;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    z-index: 2;
    position: relative;
}

body.contents header .info .contact li.opentime {
    position: relative;
    color: #ffffff !important;
    font-weight: bold;
    animation: neonFlicker 8s infinite 0.3s, neonGlow 2s ease-in-out infinite 0.3s;
    display: inline-block;
    text-shadow:
        0 0 10px rgba(255, 204, 102, 1),
        0 0 20px rgba(255, 204, 102, 0.9),
        0 0 30px rgba(255, 204, 102, 0.8),
        0 0 40px rgba(255, 153, 255, 0.7),
        0 0 50px rgba(255, 153, 255, 0.6),
        0 0 60px rgba(102, 204, 255, 0.5);
}

body.contents header .info .contact li.opentime i {
    animation: neonFlicker 8s infinite 0.8s, neonGlow 2s ease-in-out infinite 0.8s;
}

body.contents header .info .contact li.phone {
    position: relative;
}

body.contents header .info .contact li.phone a {
    color: #ffffff !important;
    font-weight: bold;
    animation: neonFlicker 8s infinite, neonGlow 2s ease-in-out infinite;
    display: inline-block;
    text-shadow:
        0 0 10px rgba(255, 102, 255, 1),
        0 0 20px rgba(255, 102, 255, 0.9),
        0 0 30px rgba(255, 102, 255, 0.8),
        0 0 40px rgba(255, 102, 255, 0.7),
        0 0 50px rgba(102, 204, 255, 0.6),
        0 0 60px rgba(102, 204, 255, 0.5);
}

body.contents header .info .contact li.phone a i {
    animation: neonFlicker 8s infinite 0.5s, neonGlow 2s ease-in-out infinite 0.5s;
}

/* 光の欠片コンテナ */
.falling-lights-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200%;
    pointer-events: none;
    z-index: 1;
    overflow: visible;
}

/* 桜の花びら */
.sakura-particle {
    position: absolute;
    top: -5px;
    opacity: 0;
    will-change: transform, opacity;
    animation: sakura-flutter linear infinite;
    z-index: 1;
}

/* 花びらの光る軌跡 */
.sakura-particle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    transform: translate(-50%, -50%);
    background: radial-gradient(
        circle,
        var(--sakura-color) 0%,
        transparent 70%
    );
    opacity: 0.4;
    filter: blur(8px);
    animation: trail-pulse 2s ease-in-out infinite;
}

/* 光の軌跡の脈動 */
@keyframes trail-pulse {
    0%, 100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.3);
    }
}

/* 桜の花びらの形をSVGで表現 */
.sakura-particle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--sakura-color);
    clip-path: polygon(
        50% 0%,
        61% 35%, 98% 35%, 68% 57%, 79% 91%,
        50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%
    );
    filter:
        brightness(1.3)
        drop-shadow(0 0 3px var(--sakura-color))
        drop-shadow(0 0 6px var(--sakura-color))
        drop-shadow(0 0 10px var(--sakura-color))
        drop-shadow(0 0 15px var(--sakura-color))
        drop-shadow(0 0 20px var(--sakura-color));
    animation: sakura-glow 3s ease-in-out infinite;
}

/* 花びらが光り輝くアニメーション */
@keyframes sakura-glow {
    0%, 100% {
        filter:
            brightness(1.2)
            drop-shadow(0 0 3px var(--sakura-color))
            drop-shadow(0 0 6px var(--sakura-color))
            drop-shadow(0 0 10px var(--sakura-color))
            drop-shadow(0 0 15px var(--sakura-color));
    }
    50% {
        filter:
            brightness(1.6)
            drop-shadow(0 0 5px var(--sakura-color))
            drop-shadow(0 0 10px var(--sakura-color))
            drop-shadow(0 0 20px var(--sakura-color))
            drop-shadow(0 0 30px var(--sakura-color))
            drop-shadow(0 0 40px var(--sakura-color));
    }
}

/* 桜がひらひらと舞い落ちる統合アニメーション */
@keyframes sakura-flutter {
    0% {
        transform: translateY(-30px) translateX(0) rotateX(0deg) rotateZ(0deg) scale(0);
        opacity: 0;
    }
    3% {
        transform: translateY(0) translateX(0) rotateX(0deg) rotateZ(0deg) scale(1);
        opacity: 1;
    }
    10% {
        transform: translateY(7vh) translateX(calc(var(--drift) * 0.1)) rotateX(-10deg) rotateZ(calc(var(--rotation) * 0.1)) scale(1);
        opacity: 1;
    }
    20% {
        transform: translateY(17vh) translateX(calc(var(--drift) * 0.2)) rotateX(10deg) rotateZ(calc(var(--rotation) * 0.2)) scale(0.95);
        opacity: 1;
    }
    30% {
        transform: translateY(30vh) translateX(calc(var(--drift) * 0.3)) rotateX(-15deg) rotateZ(calc(var(--rotation) * 0.3)) scale(1.05);
        opacity: 1;
    }
    40% {
        transform: translateY(43vh) translateX(calc(var(--drift) * 0.4)) rotateX(15deg) rotateZ(calc(var(--rotation) * 0.4)) scale(0.98);
        opacity: 1;
    }
    50% {
        transform: translateY(55vh) translateX(calc(var(--drift) * 0.5)) rotateX(-20deg) rotateZ(calc(var(--rotation) * 0.5)) scale(1.02);
        opacity: 1;
    }
    60% {
        transform: translateY(67vh) translateX(calc(var(--drift) * 0.6)) rotateX(20deg) rotateZ(calc(var(--rotation) * 0.6)) scale(0.96);
        opacity: 1;
    }
    70% {
        transform: translateY(77vh) translateX(calc(var(--drift) * 0.7)) rotateX(-15deg) rotateZ(calc(var(--rotation) * 0.7)) scale(1.03);
        opacity: 1;
    }
    80% {
        transform: translateY(87vh) translateX(calc(var(--drift) * 0.8)) rotateX(15deg) rotateZ(calc(var(--rotation) * 0.8)) scale(0.94);
        opacity: 1;
    }
    90% {
        transform: translateY(97vh) translateX(calc(var(--drift) * 0.9)) rotateX(-10deg) rotateZ(calc(var(--rotation) * 0.9)) scale(1);
        opacity: 0.8;
    }
    100% {
        transform: translateY(110vh) translateX(var(--drift)) rotateX(10deg) rotateZ(var(--rotation)) scale(0.9);
        opacity: 0;
    }
}

/* ロゴ画像を前面に配置 */
body.index main .logo img,
body.index main .logo p {
    position: relative;
    z-index: 0;
}

.logo img {
    max-width: 540px;
    animation: aura 5s infinite;
}

@keyframes flash {
  0%, 100% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.2);
  }
}

@keyframes aura {
  0%, 100% {
    /* 明るく光るよう影を重ねる */
    filter: drop-shadow(0px 0px 2px #ad66ff) drop-shadow(0px 0px 4px #66ccff);
  }
  50% {
    /* 淡く光るよう影を重ねる */
    filter: drop-shadow(0px 0px 8px #ad66ff) drop-shadow(0px 0px 12px #66ccff);
  }
}

body.index main nav.admission {
    background: #1A0A3A;
    background: linear-gradient(0deg,rgba(0, 0, 0, 1) 0%, rgba( 26, 10, 58, 1) 100%);
    border-top: solid 2px rgba(181, 102, 255, 0.3);
    border-bottom: solid 2px rgba(181, 102, 255, 0.3);
    box-shadow: 0 0 20px rgba(181, 102, 255, 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(0, 0, 0, 0.95) 0%, rgba(20, 10, 40, 0.95) 100%);
    border: solid 2px transparent;
    border-radius: 8px;
    color: #ffffff;
    font-size: 1.1em;
    font-weight: bold;
    letter-spacing: 0.05em;
    text-shadow:
        0 0 10px rgba(181, 102, 255, 0.8),
        0 0 20px rgba(181, 102, 255, 0.6),
        0 0 30px rgba(102, 204, 255, 0.4),
        0 1px 2px rgba(0, 0, 0, 0.8);
    box-shadow:
        0 0 20px rgba(181, 102, 255, 0.6),
        0 0 40px rgba(102, 204, 255, 0.4),
        inset 0 0 20px rgba(181, 102, 255, 0.1),
        inset 0 2px 4px rgba(255, 255, 255, 0.1);
    width: auto;
    padding: 10px 20px;
    margin: 0 auto;
    z-index: 1;
    background-clip: padding-box;
    position: relative;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    overflow: hidden;
}

body.index main nav.admission li.button a:before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #ffff82 0%, #ff84b4 35%, #71edff 65%, #8869fa 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 {
    filter: saturate(0);
    a:hover {
        filter: none;
    }
}
body.index main nav.admission li.leave:hover {
    animation: none;
    filter: opacity(0.8) saturate(0);
}

body.contents header .info {
    background-color: #000000 !important;
}

body.contents header .info .logo {
    padding: 20px 0px 20px 0px;
    animation: flash 5s infinite; 
}

body.contents header .info .logo img {
    max-width: 400px;
}

body.contents header .sub_menu {
    backdrop-filter: blur(3px);
}

body.contents header nav.menu ul {
    padding: 0px;
    background: linear-gradient(180deg, rgba(5,5,15,1) 0%, rgba(15,8,30,1) 100%);
    border-top: solid 2px rgba(181, 102, 255, 0.3);
    border-bottom: solid 2px rgba(181, 102, 255, 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;
    color: #ffffff;
    background: rgb(15,8,30);
    background: linear-gradient(180deg, rgba(15,8,30,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(181, 102, 255, 0.3);
    box-shadow: 0 0 5px #ff66ff;
    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(181, 102, 255, 0.3);
    box-shadow: 0 0 5px #66ccff;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
}
body.contents header nav.menu ul li a:hover {
    color: #000000;
    background: linear-gradient(135deg, #ffff82 0%, #ff84b4 35%, #71edff 65%, #8869fa 100%);
    text-shadow: 0 0 5px rgba(255,255,255,0.8);
    border-radius: 6px;
 
}

body.contents main article {
    padding: 20px 0px;
}

body.contents main article section {
    border-radius: 6px;
    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.slide section {
    border-radius: 0px;
}
body.contents main article section h2, body.contents main article section h3 {
    position: relative;
    font-size: 0.9em;
    padding: 10px 10px 6px 10px;
    border-radius: 6px 6px 0px 0px;
    background: linear-gradient(180deg, rgba(42,21,80,1) 0%, rgba(60,30,100,1) 10%, rgba(50,25,90,1) 20%, rgba(42,21,80,1) 55%, rgba(26,10,58,1) 100%);
    box-shadow: 0 0 20px rgba(181, 102, 255, 0.3);
    em {
        color: #ffccff;
        text-shadow: 0 0 10px #ff66ff;
    }
}
body.contents main article section h2:before {
    content: '';
    position: absolute;
    width: 10%;
    height: 100%;
    background: url(../images/lframe.png) left top / auto 50% no-repeat;
    left: 5px;
    top: 5px;
}
body.contents main article section h2:after {
    content: '';
    position: absolute;
    width: 10%;
    height: 100%;
    background: url(../images/rframe.png) right bottom / auto 50% no-repeat;
    right: 5px;
    bottom: 5px;
}

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: #ffccff;
    border: solid 2px #ff66ff;
    text-shadow: 0 0 10px #ff66ff;
    box-shadow: 0 0 15px rgba(181, 102, 255, 0.5);
}
.catchcopy {
    color: #ffd4f5 !important;
    text-shadow: 0 0 8px #ff99ff;
}
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 th {
    color: #ffccff;
    text-shadow: 0 0 8px #ff66ff;
}
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(181, 102, 255, 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 {
    font-size: 0.9em !important;
    text-shadow:
        0 0 10px rgba(181, 102, 255, 0.8),
        0 0 20px rgba(102, 204, 255, 0.6),
        0 1px 2px rgba(0, 0, 0, 0.8) !important;
    transition: all 0.3s ease;
}

footer ul.menu li a:hover {
    color: #ffccff !important;
    text-shadow:
        0 0 15px rgba(181, 102, 255, 1),
        0 0 30px rgba(181, 102, 255, 0.8),
        0 0 40px rgba(102, 204, 255, 0.6) !important;
}

footer ul.menu li::before {
    color: rgba(181, 102, 255, 0.6) !important;
    text-shadow: 0 0 5px rgba(181, 102, 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;
    }
}

body.contents main article section.girl .profile p.name, body.contents main article section.girl .profile p.size {
    color: var(--contents-main-F);
}
body.contents main article section.movie .profile p.catchcopy {
    font-weight: normal;
    color: var(--contents-sub-F1);
}


@media screen and (min-width: 0px) and (max-device-width: 720px) {
body.index main .logo {
    padding: 10% 0px 10% 0px;
    background-position: 50% 0px;
    background-size: 160% auto;
}
body.index main .logo img {
    width: 70%;
}
body.index main nav.admission li.button {
    width: 48%;
    padding: 0px;
    margin: 3% 1%;
    font-size:0.8em;
}
body.contents header .info {
    background-size: 160% auto;
    background-position: 50% 0px;
}
body.contents header .info .logo {
    padding: 5% 0px 5% 0px;
}
body.contents header .info .logo img {
    width: 50%;
}
nav.globalMenuSp ul li.logo img {
    width: 80%;
}




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(181, 102, 255, 0.3);
    box-shadow: 0 0 5px #ff66ff;
    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;
}
}