@charset "utf-8";
        /* CSS */
        @charset "utf-8";
        /* CSS */
        @keyframes bgmove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes flash {
  0%, 100% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.2);
  }
}
@keyframes aura {
  0%, 100% {
    /* 明るく光るよう影を重ねる */
    filter: drop-shadow(0px 0px 4px #ffffff);
  }
  50% {
    /* 淡く光るよう影を重ねる */
    filter: drop-shadow(0px 0px 16px #ffffff);
  }
}
@keyframes rotation3{
  0%{ opacity: 0;}
  20%{ opacity: 1;}
  40%{ transform:rotateY(0);}
  42%{ transform:rotateY(360deg); }
  44%{ transform:rotateY(0);}
  46%{ transform:rotateY(360deg); }
  48%{ transform:rotateY(0);}
  50%{ transform:rotateY(360deg); }
  52%{ transform:rotateY(0);}
  60% {filter: brightness(1);}
  61% {filter: brightness(3);}
  62% {filter: brightness(1);}
  63% {filter: brightness(3);}
  64% {filter: brightness(1);}
  65% {filter: brightness(3);}
  66% {filter: brightness(1);}
}

h1 {
    background: rgb(255,36,36);
    background: linear-gradient(135deg, rgba(156,0,0,1) 0%, rgba(255,36,36,1) 50%, rgba(156,0,0,1) 100%);
    animation: bgmove 10s ease infinite;
    background-size: 200% 200%;
    color: #ffffff;
}

footer {
    background: rgb(255,36,36);
    background: linear-gradient(135deg, rgba(156,0,0,1) 0%, rgba(255,36,36,1) 50%, rgba(156,0,0,1) 100%);
    animation: bgmove 10s ease infinite;
    background-size: 200% 200%;
    padding-top: 15px;
    
    ul.menu {
        background: rgba(33,33,33,1);
        a {
            color: #ffcb73;
        }
        li:before {
            color: #ffcb73;
        }
    }
    
    .copyright {
        padding: 30px 10px;
        color: #212121;
        background: none;
    }
    
    .copyright:before {
        content: '';
        display: block;
        width: 320px;
        height: 244px;
        background: url(../images/footerLogo.png) center top / auto 100% no-repeat;
        margin: 0 auto;
        margin-bottom: 5px;
    }
}

body.index main .logo {
    padding: 160px 0px 160px 0px;
    
    img {
        max-width: 620px;
        max-height: 800px;
        animation: 8s linear infinite rotation3;
    }
}

body.index main nav.admission {
    border-top: solid 4px;
    border-bottom: solid 4px;
    border-image: linear-gradient(to right, rgba(156,0,0,1) 0%, rgba(255,36,36,1) 50%, rgba(156,0,0,1) 100%) 1;
    background: url(../images/menuBG.jpg) center #ff2424;
    color: #ffffff;
}

body.index main nav.admission li.button {
    padding: 15px 10px;
}
body.index main nav.admission li.button a {
    width: 240px;
    background: linear-gradient(135deg, rgba(156,0,0,1) 0%, rgba(255,36,36,1) 50%, rgba(156,0,0,1) 100%);
    box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.5);
    transition: .5s;
    background-size: 300%;
    border: none;
    border-radius: 0px;
    padding: 15px 5px;
}
body.index main nav.admission li.button a:hover {
    background-position: right center;
    box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.8);
    animation: none;
}
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 .logo {
    padding: 40px 0px 40px 0px;
}

body.contents header .info .logo img {
    max-height: 360px;
}

body.contents header .info .contact {
    background: #ffffffcc;
}

body.contents header .sub_menu {
    backdrop-filter: blur(3px);
}

body.contents header nav.menu ul {
    padding: 0px;
    background: rgb(255,36,36);
    background: linear-gradient(90deg, rgba(255,36,36,1) 0%, rgba(156,0,0,1) 100%);
    animation: bgmove 6s ease infinite;
    background-size: 200% 200%;
    padding: 10px 0px;
    border: none;
    
    li {
        margin: 0px 5px;
    
        a {
            color: #FFCB73;
            padding:8px 26px;
            background: rgba(0, 0, 0, 0.1);
        }
        
        a::before,
        a::after {
            position: absolute;
            z-index: -1;
            width: 0;
            height: 1px;
            content: '';
        }

        a::before {
            top: -1px;
            left: 0;
            border-top: 1px solid transparent;
            border-right: 1px solid transparent;
        }

        a::after {
            bottom: 0;
            right: 0;
            border-bottom: 1px solid transparent;
            border-left: 1px solid transparent;
        }

        a:hover::before,
        a:hover::after {
            width: 100%;
            height: 100%;
            border-color: #FFCB73;
            transition: width .3s ease, height .3s .3s ease;
        }
    }
}


body.contents main article {
    padding: 20px 0px;
}

body.contents main article section {
    border-radius: 6px;
    background: none;
}
section.ad .wrapper, section.news .wrapper, section.pickup .wrapper, section.movie .wrapper, section.ranking .wrapper  {
    background: var(--contents-main-BG);
    border-radius: 0px 0px 6px 6px;
}

body.contents main article.slide {
    border-top: solid 4px;
    border-bottom: solid 4px;
    border-image: linear-gradient(to right, rgba(156,0,0,1) 0%, rgba(255,36,36,1) 50%, rgba(156,0,0,1) 100%) 1;
    background: rgb(255,36,36);
    background: linear-gradient(135deg, rgba(156,0,0,1) 0%, rgba(255,36,36,1) 50%, rgba(156,0,0,1) 100%);
    animation: bgmove 10s ease infinite;
    background-size: 200% 200%;
    padding: 16px 0px;
}
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;
    background: linear-gradient(135deg, rgba(15,15,15,1) 0%, rgba(45,45,45,1) 50%, rgba(15,15,15,1) 100%);
    border-radius: 6px 6px 0px 0px;
    border-bottom: solid 3px;
    border-image: linear-gradient(to right,  rgba(255,36,36,1) 0%, rgba(15,15,15,1) 30%, rgba(45,45,45,1) 50%, rgba(15,15,15,1) 70%, rgba(255,36,36,1) 100%) 1;
    margin-bottom: 0px;
    vertical-align: top;
    em {
        color: #ff7b7b;
        display: inline-block;
        margin-right: 8px;
    }
}
body.contents main article section h2:before {
    content: '';
    position: absolute;
    width: 15%;
    height: 100%;
    background: url(../images/lframe.png) left 6px bottom 4px / auto 70% no-repeat;
    left: 0px;
    bottom: 0px;
}
body.contents main article section h2:after {
    content: '';
    position: absolute;
    width: 15%;
    height: 100%;
    background: url(../images/rframe.png) right 6px bottom 4px / auto 70% no-repeat;
    right: 0px;
    bottom: 0px;
}

i.status {
    border-radius: 4px;
}


body.contents main article section.ranking .title {
    color: #FFAC5C;
    border: solid 1px #FFAC5C;
}
.catchcopy {
    font-weight: bold;
    color: #9c0000 !important;
}



section.ranking .wrapper li {
    vertical-align: top;
    color:#ffffff;
}
body.contents main article section.girls .wrapper li {
    vertical-align: top;
    border-radius: 6px;
}
body.contents main article section.girls .wrapper li .photo {
    background: #ffffff;
}
body.contents main article section.girls .wrapper li .schedule {
    border: solid 2px #ffdf9f;
    p.time {
        color: #ffdf9f;
    }
}
body.contents main article section.girl .profile {
    border-radius: 6px;
    background: #ffffff;
    
    div.comment {
        border: dashed 1px var(--contents-title-BG1);
        border-radius: 6px;
    }
}

.schedule table, .schedule caption {
    background: rgba(255,255,255,0.5);
}

body.contents main article section.system .wrapper li {
    table {
        caption { 
            color: #ffffff;
            border-color: #ff2424;
            border-radius: 6px;
            border-width: 2px;
            background: linear-gradient(135deg, rgba(156,0,0,1) 0%, rgba(255,36,36,1) 50%, rgba(156,0,0,1) 100%);
        }
        th {
            background: #ff3939CC;
        }
    }
}
body.contents main article section.system .wrapper li .comment {
    background: none;
}




body.contents main article section.event .wrapper li {
    border-radius: 6px 6px 6px 6px;
    
    .comment {
        background: #ffffff;
        border: dashed 1px var(--contents-title-BG1);
        border-radius: 6px;
    }
}
body.contents main article section.event .wrapper li .title {
    border-radius: 6px 6px 0px 0px;
    color: #fe4040;
}

body.contents main article section.mailmagazine .wrapper .banner {
    width: 940px;
    padding: 20px;
    border-radius: 6px;
}

.profile .icon em {
    color: var(--contents-main-F);
}

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.ad {
    max-width: 1340px;
    width: 100%;
}

body.contents main article section.ad .wrapper {
    height: auto;
}


@media screen and (min-width: 0px) and (max-device-width: 720px) {
body.index main .logo {
    padding: 14% 0px 14% 0px;
    background-position: 50% 0px;
    background-size: 170% auto;
}
body.index main .logo img {
    width: 58%;
}
body.index main nav.admission li.button {
    width: 49%;
    padding: 0px;
    margin: 0 0.5% 4% 0.5%;
    font-size: 0.8em;
    
    a {
        width: auto;
        padding: 6px 0px;
    }
}
body.index main nav.admission li p {
    font-size: 0.7em;
}

footer {
    .copyright {
        padding: 20px 10px;
        background: none;
    }
    .copyright:before {
        width: 310px;
        height: 160px;
        background: url(../images/footerLogo.png) center top / auto 100% no-repeat;
    }
    ul.sub_menu {
        background: #222222;

        li {
            background: linear-gradient(135deg, rgba(156, 0, 0, 1) 0%, rgba(255, 36, 36, 1) 50%, rgba(156, 0, 0, 1) 100%);
        }
        li.tel a {
            color: #ffcb73;
        }
    }
}

body.contents header .info {
    background-size: 160% auto;
    background-position: 50% 0px;
}
body.contents header .info .logo {
    padding: 4% 0px 4% 0px;
}
body.contents header .info .logo img {
    width: 48%;
}
nav.globalMenuSp ul li.logo img {
    width: 80%;
}
nav.globalMenuSp ul li.title {
    color: #ffffff;
}
.navToggle.active {
    background: #ffffff70;
    opacity: unset;

}

body.contents header .info .contact {
    padding: 5px 2%;
}
body.contents header nav.menu ul {
    padding: 0.6% 0px;
}
body.contents header nav.menu ul li {
    font-size: 0.6em;
    width: 32%;
    margin: 0.6%;
}
body.contents header nav.menu ul li a {
    padding: 5px 0px;
}
body.contents main article section h2, body.contents main article section h3 {
    border-radius: 0px;
}
body.contents main article section {
    border-radius: 0px;
}
section.ad .wrapper, section.news .wrapper, section.pickup .wrapper, section.movie .wrapper, section.ranking .wrapper  {
    border-left: none;
    border-right: none;
    border-radius: 0px;
}
body.contents main article section.girl .profile div.comment {
    margin: 0px 10px 10px 10px;
}
body.contents main article section.event .wrapper li {
    border-radius: 0px;
}
body.contents main article section.event .wrapper li .title {
    border-radius: 0px;
}
body.contents main article section.mailmagazine .wrapper .banner {
    width: 100%;
    padding: 0px;
    border-radius: 0px;
}


