@charset "utf-8";
/* 
8K（7680×4320）
4K（3840×2160）
UWQHD（3440×1440）
WQHD（2560×1440）
フルHD（1920×1080）
WXGA++(1600×900）
FWXGA（1366×768）//1360
HD（1280×720）
スマホ・タブレット端末 720pxまで
@media screen and (min-width: 0px) and (max-device-width: 720px)
{
}

ALPHA
FF //100%
E6 //90%
CC //80%
B3 //70%
99 //60%
80 //50%
66 //40%
4D //30%
33 //20%
1A //10%
00 //0%
*/
/*全体ページ*/
:root {
    /* バックグラウンド ヘッダー */
    --index-backgound: #ffffff;
    --index-backgound-C: #ffffff;
    --index-backgound-F: #000000;
    /* バックグラウンド メイン */
    --header-backgound: #ffffff;
    --header-backgound-C: #ffffff;
    --header-backgound-F: #000000;
    /* バックグラウンド インデックス */
    --main-backgound: #ffffff;
    --main-backgound-C: #ffffff;
    --main-backgound-F: #000000;
    /* バックグラウンド サブ */
    --sub-backgound: #333333;
    --sub-backgound-C: #333333;
    --sub-backgound-F: #ffffff;

    /* コンテンツカラー メイン*/
    --contents-main-BG: #000000;
    --contents-main-F: #ffffff;
    /* コンテンツカラー サブ*/
    --contents-sub-BG1: #222222;
    --contents-sub-BG2: #222222;
    --contents-sub-F1: #e363ce;
    --contents-sub-F2: #ffffff;
    /* コンテンツカラー アクセント*/
    --contents-accent-BG: #ff0000;
    --contents-accent-F: #fff000;
    /* コンテンツカラー タイトル */
    --contents-title-BG1: #444444;
    --contents-title-BG2: #444444;
    --contents-title-F1: #FF86C9;
    --contents-title-F2: #FF86C9;
    /* コンテンツカラー リンク*/
    --contents-link-BG1: #151515;
    --contents-link-BG2: #151515;
    --contents-link-F1: #d28232;
    --contents-link-F2: #d28232;
}

@keyframes bright-flash {
    0% {
      filter: brightness(1.6);
    }
  
    100% {
      filter: brightness(1.2);
    }
}

@keyframes loop-slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

body {
    background: var(--main-backgound);
    color: var(--main-backgound-F);
    min-width: 1360px;
}

h1 {
    background: var(--header-backgound-C);
    color: var(--header-backgound-F);
    display: block;
    padding: 10px 0px;
    font-size: 0.8em;
}

a {
    color: var(--contents-link-F1);
    text-decoration: none;
}
a:hover {
    animation: bright-flash 0.5s linear forwards;
}

.photo {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin: 0 auto;
}
.photo:before {
    content: "";
    display: block;
    padding-top: 150%;
}
.photo a {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
.photo a img {
    position: absolute;
    width: 100%;
    height: auto;
    margin: auto;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transform: scale(1);
    transition: .3s ease-in-out;
}
.photo a img:hover {
    transform: scale(1.2);
}
i.status {
    user-select: none;
    background: var(--contents-accent-BG);
    color: var(--contents-accent-F);
    display: inline-block;
    margin: 2px;
    padding: 5px 10px;
    font-size:0.8em;
}
section.girls .wrapper li i.flag {
    display: block;
    position: absolute;
    top: 5px;
    left: 5px;
}
i.flag::before {
  content: "";
  display: inline-block;
  vertical-align: bottom;
  width: 3em;
  height: 2em;
  border-radius: 4px;
}
i.japan::before {
  background: url(../images/flag/japan.jpg) center / cover no-repeat;
}
i.korea::before {
  background: url(../images/flag/korea.jpg) center / cover no-repeat;
}
i.china::before {
  background: url(../images/flag/china.jpg) center / cover no-repeat;
}
.icon em {
    margin-left: 4px;
}

/* いいね */
@keyframes likeAura {
    0%, 100% {
        /* 明るく光るよう影を重ねる */
        filter: drop-shadow(0px 0px 2px rgba(255, 255, 255, 0.5));
    }
    50% {
        /* 淡く光るよう影を重ねる */
        filter: drop-shadow(0px 0px 6px rgba(255, 255, 255, 0.5));
    }
}

@keyframes likeIngradiant {
    0%, 100% {
        background-size: 100%;
    }
    50% {
        background-size: 120%;
    }
}

i.status.like {
    background: #f13f79 !important;
    background: linear-gradient(135deg, #427eff 5%,#a957ae 35%, #f13f79 70%) no-repeat !important;
    color: #ffffff !important;
    i {
        background: none !important;
    }
}

ul.topIcon {
    display: flex;
    position: fixed;
    color:#000000;
    user-select: none;
    transition: top 0.3s ease;
    top: 10px;
    left: 10px;
    z-index: 900;
    animation: likeAura 5s ease infinite;
    font-family: sans-serif;
    
    li {
        position: relative;
        padding: 10px;
        width: 3em;
        height: 3em;
        overflow: hidden;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    li:nth-child(n+2) {
        margin-left: 10px;
    }

    p {
        position: absolute;
        z-index: 1;
        font-size: 0.9em;
        line-height: 1.1em;
        font-weight: bold;
        color: #ffffff;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 4em;
        filter: drop-shadow(0px 0px 6px rgba(0, 0, 0, 0.5))
    }

    .like {
        background: linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;
        border-radius: 999px;
        animation: likeIngradiant 10s ease infinite;
    }

    .like::before {/*グラデーションを重ねるため*/
        content: '';
        position: absolute;/*絶対配置*/
        top: 26px;/*ずらす*/
        left: -18px;/*ずらす*/
        width: 70px;/*グラデーションカバーの幅*/
        height: 70px;/*グラデーションカバーの高さ*/
        background: radial-gradient(#ffe251 10%, rgba(255, 105, 34, 0.5) 50%, rgba(255, 88, 96, 0) 80%);
        animation: likeIngradiant 10s ease infinite;
    }

    .level {
        background: url(../images/banner/level.png) no-repeat 0px 50% / 100%;

        p {
            padding-top: 0.2em;
            font-size: 1.4em;
            text-shadow: #ff7f0f 0 0 5px;
        }
    }
    
    .pShop {
        background: url(../images/banner/pShop.png) no-repeat 0px 50% / 100%;
        border-radius: 999px;
    }

    .fade {
        width: 3em;
        height: 3em;
        
        div {
            padding: 10px;
            width: 3em;
            height: 3em;
        }

        /* 基本的なフェード用設定 */
        .level, .pShop {
            opacity: 0;
            filter: brightness(1.6);
            transition: opacity 1s ease, filter 2s ease;
            position: absolute; /* 重ねて表示する場合 */
        }

        /* 表示状態 */
        .show {
            opacity: 1;
            filter: brightness(1);
            width: 3em;
            height: 3em;
        }
    }
}

.like.post {
    display: inline-block;
    margin-bottom: 20px;
    cursor: pointer;
    user-select: none;
    text-align: center;
    font-size: 1.2em;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;
    border-radius: 999px;
    font-weight: bold;
    
    .like_btn {
        color: #ffffff;
        padding: 8px 20px;
        border-radius: 999px;
        transition: .3s all linear;

        i {
            margin-right: 6px;
        }
    }
    .like_btn:hover {
        background: #00000054;
    }

    .like_btn::before {/*グラデーションを重ねるため*/
        content: '';
        position: absolute;/*絶対配置*/
        top: 30px;/*ずらす*/
        left: 20px;/*ずらす*/
        width: 100px;/*グラデーションカバーの幅*/
        height: 50px;/*グラデーションカバーの高さ*/
        background: radial-gradient(#ffe251 10%, rgba(255, 105, 34, 0.5) 50%, rgba(255, 88, 96, 0) 80%);
        animation: likeIngradiant 10s ease infinite;
    }
}
/* いいね 終了*/


@media screen and (min-width: 0px) and (max-device-width: 720px) {
    i.status {
        margin: 0px 2px;
        padding: 2px 8px;
    }
    .icon em {
        margin-left: 2px;
    }
}
/*スクロールバー*/
.scbar {
    overflow-y: scroll;
}
.scbar::-webkit-scrollbar {
    width: 15px;
}
.scbar::-webkit-scrollbar-thumb {
    background: var(--contents-title-BG1);
}

/*フォーム*/
input, select, textarea:focus {
    outline: none;
}
input, select, textarea {
    background: var(--contents-sub-BG2);
    color: var(--contents-sub-F2);
    border: none;
    padding: 15px;
    border-radius: 8px;
}
input[type="radio"] {
    margin: 0px 10px;
}
input[type="submit"] {
    background: var(--contents-link-BG1);
    color: var(--contents-link-F1);
    font-size: 1.2em;
    font-weight: bold;
    border-style: none;
    cursor: pointer;
    margin: 0px 10px;
    padding: 10px 20px;
    transition: .3s;
}
input[type="submit"]:hover {
    filter: brightness(1.2);
}

/*bx-slider設定*/
.bx-controls-direction {
    width: 500px;
    height: 0px;
    margin: 0 auto;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.bx-wrapper .bx-viewport {
    box-shadow: none;
    border: none;
    left: 0;
}
#slider-wrapper .bx-wrapper {
    margin: 0px auto;
}

#slider-wrapper .bx-wrapper .bx-prev {
    top: 375px;
    left: 10px;
}

#slider-wrapper .bx-wrapper .bx-next {
    top: 375px;
    right: 10px;
}
#slider-wrapper {
    position: relative;
    left: 50%;
    width: 3500px;
    margin-left: -1750px;
}

/*年齢認証ページ*/
body.index main .logo {
    background: var(--index-backgound);
    color: var(--index-backgound-F);
    width: 100%;
    margin: 0 auto;
    padding: 120px 0px 120px 0px;
}
.logo img {
    max-width: 900px;
    max-height: 600px;
}
.logo p {
    font-weight: bold;
}
.logo p.title {
    font-size: 3em;
}
.logo p.tel {
    font-size: 2em;
}
.logo p.open {
    font-size: 1.5em;
}
body.index main nav.admission {
    background: var(--index-backgound-C);
    color: var(--index-backgound-F);
    border-top: solid 1px var(--contents-link-BG1);
    border-bottom: solid 1px var(--contents-link-BG1);
    width: 100%;
}
body.index main nav.admission ul {
    padding: 10px 0;
}
body.index main nav.admission li {
    padding: 5px;
}
body.index main nav.admission li.button {
    display: inline-block;
    cursor: pointer;
}
body.index main nav.admission li.button a {
    background: var(--contents-link-BG1);
    color: var(--contents-link-F1);
    border: solid 1px var(--contents-link-F1);
    display: block;
    padding: 10px 50px 10px 50px;
}
body.index main nav.admission li.leave a {
    filter:saturate(0);
}
body.index main nav.admission li.leave a:hover {
    filter:opacity(0.5) saturate(0);
    animation: none;
}
body.index main nav.admission li.button a p {
    font-size: 2em;
    font-weight: bold;
}
body.index main .ad {
    margin: 10px 0px;
}
body.index main .ad img {
    width: 100%;
    max-width: 420px;
}
body.index main .info {
    padding: 50px 10px;
}


/*メインヘッダー*/
body.contents header .info {
    background: var(--header-backgound);
    color: var(--header-backgound-F);
}
body.contents header .info .logo {
    text-align: center;
    padding: 30px 0px 30px 0px;
}
body.contents header .info .logo img {
    max-width: 750px;
    max-height: 450px;
}
body.contents header .info .contact {
    background: var(--contents-link-BG2);
    display: block;
    padding: 10px 0px;
}
body.contents header .info .contact li {
    color: var(--contents-link-F2);
    display: inline-block;
    margin: 0px 10px;
    vertical-align: middle;
}
body.contents header .info .contact li.opentime {
    font-size: 1.5em;
}
body.contents header .info .contact li.phone a {
    color: var(--contents-link-F2);
    font-weight: bold;
    font-size: 2em;
}
/*ヘッダーメニュー*/
body.contents header nav.menu ul {
    border-top: solid 1px var(--contents-link-BG1);
    border-bottom: solid 1px var(--contents-link-BG1);
    padding: 5px 0px;
}
body.contents header nav.menu ul {
    background: var(--header-backgound-C);
    padding: 5px 0px;
}
body.contents header nav.menu ul li {
    display: inline-block;
    margin: 5px;
}
body.contents header nav.menu ul li a {
    display: block;
    font-size: 0.8em;
    padding: 10px 30px;
    background: var(--contents-link-BG1);
}
body.contents header nav.menu ul li a p {
    font-size: 1.6em;
    font-weight: bold;
}
/*ヘッダーサブメニュー*/
body.contents header .sub_menu {
    background: var(--contents-link-BG2);
    color: var(--contents-link-F2);
    display: none;
    background-image: url(../images/subLogo.png);
    background-repeat: no-repeat;
    background-position: 15px 15px;
    background-size: auto 50px;
    width: 100%;
    height: 80px;
    text-align: right;
    position: fixed;
    padding: 0 10px;
    z-index: 1000;
    top: 0;
    left: 0;
    box-sizing: border-box;
}
body.contents header .sub_menu ul {
    padding: 15px 0 10px 0;
}
body.contents header .sub_menu ul li {
    display: inline-block;
}
body.contents header .sub_menu ul li:first-child::before {
    content: none;
}
body.contents header .sub_menu ul li::before {
    color: var(--contents-link-F2);
    content: '│';
}
body.contents header .sub_menu ul li a {
    color: var(--contents-link-F2);
}
body.contents header .sub_menu p.contact a {
    background: var(--contents-link-BG1);
    color: var(--contents-link-F1);
    padding: 2px 15px;
    border-radius: 999px;
}

/*メイン*/
body.contents main article {
    padding: 15px 0px;
    border-bottom: solid 1px var(--contents-title-BG1);
}
body.contents main article:last-child {
    border-bottom: none;
}
body.contents main article section {
    background: var(--contents-main-BG);
    color: var(--contents-main-F);
    display: inline-block;
    margin: 5px;
}
body.contents main article section h2, body.contents main article section h3 {
    background: var(--contents-title-BG1);
    color: var(--contents-title-F1);
	display: block;
    padding: 10px;
}
body.contents main article section h2 em {
    display: block;
	font-size: 1.4em;
    font-weight: bold;
}
body.contents main article section h3 {
	font-size: 1.2em;
    font-weight: bold;
}

body.contents main article section .wrapper {
    border-left: solid 1px var(--contents-title-BG1);
    border-right: solid 1px var(--contents-title-BG1);
    border-bottom: solid 1px var(--contents-title-BG1);
    padding: 5px;
}

body.contents main article.sub {
    background: var(--sub-backgound);
    color: var(--sub-backgound-F);
}
body.contents main article.sub section {
    background: none;
    display: block;
    margin: 5px auto;
}
body.contents main article.sub section h2 {
    border-radius: unset;
}
body.contents main article.sub section .wrapper {
    border: 0px;
}


/*広告*/
body.contents main article section.ad {
    width: 670px;
}
body.contents main article section.ad .wrapper {
    height: 300px;
}
body.contents main article section.ad .banner {
    margin: 5px 0px;
}
body.contents main article section.ad .banner img {
    width: 90%;
    max-width: 450px;
}


/*おすすめ情報*/
body.contents main article.slide {
    background: var(--contents-main-BG);
    color: var(--contents-main-F);
}
body.contents main article.slide section {
    text-align: center;
    width: 1280px;
    height: 720px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}
body.contents main article.slide section li .banner img {
    width: 100%;
}


/*動画*/
body.contents main article section.movie {
    width: 650px;
}
body.contents main article section.movie .wrapper video {
    display: block;
    margin: 0 auto;
    width: 640px;
    height: 360px;
    background: #000000;
}
body.contents main article section.movie .profile {
    padding: 5px;

    p.name {
        font-weight: bold;
    }

    p.catchcopy {
        display: block;
        font-weight: bold;
        padding: 5px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}



/*ピックアップ*/
body.contents main article section.pickup {
    width: 340px;
}

body.contents main article section.pickup .wrapper li .photo:before {
    padding-top: 435px;
}
body.contents main article section.pickup .wrapper li .photo .profile {
    background: var(--contents-main-BG);
    position: absolute;
    width: 100%;
    padding: 5px 0px;
    bottom: 0;
}
body.contents main article section.pickup .wrapper li .photo .profile p {
    font-weight: bold;
    padding: 5px;
}


/*新着情報*/
body.contents main article section.news {
    width: 340px;
}
body.contents main article section.news .wrapper {
    height: 435px;
    text-align: left;
}
body.contents main article section.news .wrapper ul {
    display: block;
    width: auto;
    height: 435px;
}
body.contents main article section.news .wrapper li {
    padding: 5px;
    margin-bottom: 10px;
    border-bottom: solid 1px var(--contents-title-BG1);
}
body.contents main article section.news .wrapper li:last-child {
    border-bottom: none;
    margin-bottom: 0px;
}
body.contents main article section.news .wrapper p.title em {
    color: var(--contents-main-F);
    font-weight: bold;
    display: block;
    padding: 5px 0px;
}
body.contents main article section.news .wrapper p.date {
    font-size:0.8em;
    color: var(--contents-main-F);
}
body.contents main article section.news .wrapper div.photo {
    float: left;
    margin-right: 10px;
    width: 100px;
}
body.contents main article section.news .wrapper div.photo:before {
    padding-top: 100px;
}
body.contents main article section.news .wrapper div.photo img {
    position: absolute;
    width: 100%;
    height: auto;
    margin: auto;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}


/*新着情報 詳細*/
body.contents main article section.newsInfo {
    display: block;
    width: 100%;
}
body.contents main article section.newsInfo .wrapper {
    background: var(--contents-main-BG);
    color: var(--contents-main-F);
    height: auto;
    padding: 0px;
    margin: 20px auto 0px auto;
    width: 980px;
}
body.contents main article section.newsInfo .wrapper .inbox{
    border: solid 1px var(--contents-title-BG1);
    padding: 20px;
}
body.contents main article section.newsInfo .wrapper p.title {
    font-size: 1.4em;
}
body.contents main article section.newsInfo .wrapper p.title em{
    display: inline-block;
}
body.contents main article section.newsInfo .wrapper p.date {
    text-align: right;
    font-size: 1em;
    margin-bottom: 5px;
}
body.contents main article section.newsInfo .wrapper div.photo {
    width:100%;
    max-width: 400px;
    margin-right: 20px;
}
body.contents main article section.newsInfo .wrapper div.photo:before {
    padding-top: 150%;
}
body.contents main article section.newsEtc {
    display: block;
    width: 980px;
    margin: 0 auto;
}
body.contents main article section.newsEtc .wrapper {
    height: auto;
    padding: 20px;
}


/*WEB予約*/
body.contents main article section.reserveInfo, body.contents main article section.reserveForm {
    display: block;
    width: 100%;

    .wrapper {
        background: var(--contents-main-BG);
        color: var(--contents-main-F);
        height: auto;
        padding: 0px;
        margin: 20px auto 0px auto;
        width: 980px;

        .inbox{
            border: solid 1px var(--contents-title-BG1);
            padding: 20px;

            p {
                font-size: 1.2em;
                padding: 5px;
            }
            p.title {
                color: var(--contents-accent-BG);
                font-size: 1.6em;
            }

            .contact {
                display: inline-block;
                position: relative;
                border: solid 1px var(--contents-link-F1);
                padding: 35px 25px 15px 25px;
                margin: 40px 10px 10px 10px;
                
                a {
                    font-size: 2.2em;
                    font-weight: bold;
                }

                p.title {
                    position: absolute;
                    display: inline-block;
                    width: 220px;
                    font-size: 1.2em;
                    color: var(--contents-link-BG2);
                    background: var(--contents-link-F1);
                    top: -16px;
                    left: 50%;
                    transform: translateX(-50%);
                    padding: 8px 10px;
                    font-weight: bold;
                }

                p {
                    font-size: 1em;
                }
            }

            .process {
                text-align: left;
                padding: 10px;

                p.title {
                    font-size: 1.4em;
                }
                
                ul {
                    margin-left: 30px;

                    li {
                        padding: 5px;
                        counter-increment: cnt;
                    }
                    li::before {
                        content: ""counter(cnt)". ";
                    }
                }
            }

            .rserveForm {
                .process {
                    ul {
                        margin:0px;
                        text-align: center;
                        display: flex;
                        justify-content: space-around;

                        li.next {
                            position: relative;
                            padding: 15px 1%;
                            width: 2%;
                            margin: 10px 0 20px 0;
                            font-size: 1.2em;
                            color: var(--contents-link-F1);
                        }
                        li.next::before{
                            position: absolute;
                            content: "\f054";
                            font-family: "Font Awesome 5 Free";
                            font-weight: bold;
                            top: 50%;
                            left: 50%;
                            transform: translate(-50%, -50%);
                        }
                        li.text {
                            padding: 15px 2%;
                            background: var(--contents-link-F1);
                            border-radius: 8px;
                            width: 24%;
                            margin: 10px 0 20px 0;
                            font-size: 1.2em;
                        }
                        li.text.active {
                            filter: saturate(150%);
                        }
                        li::before {
                            content: none;
                        }
                    }
                }

                table {
                    width: 100%;
                    border-collapse: collapse;
                    border: solid 1px rgba(100, 100, 100, 0.5);
                    margin-bottom: 20px;

                    th, td {
                        padding: 20px;
                        border: solid 1px rgba(100, 100, 100, 0.5);
                    }
                    th {
                        position: relative;
                        background: var(--contents-sub-BG2);
                        color : var(--contents-sub-F2);
                        text-align: center;
                        vertical-align: middle;
                        width: 280px;
                    }
                    th.required::before{
                        position: absolute;
                        content: "※必須";
                        top: 5px;
                        right: 5px;
                        font-size: 0.8em;
                        color: #dc4c4c;
                    }
                    td {
                        text-align: left;

                        input {
                            width: 96%;
                            padding: 2%;
                        }

                        .case {
                            font-size: 0.9em;
                            padding: 10px 0px 0px 10px;
                        }
                    }
                }
                .submit {
                    input[type="submit"], input[type="reset"] {
                        padding: 15px 20px;
                        font-weight: normal;
                        font-size: 1.2em;
                        margin: 0px 10px;
                    }

                    input[type="submit"] {
                        width: 100%;
                        max-width: 360px;
                        background: var(--contents-link-F1);
                        color: var(--contents-link-BG1);
                    }
                    input[type="reset"] {
                        cursor: pointer;
                        color: #666666;
                    }
                }

            }
        }

    }
}


/*ランキング*/
body.contents main article section.ranking {
    display: block;
    width: 1350px;
    margin: 5px auto;

}
body.contents main article section.ranking .title {
    color: var(--contents-sub-F1);
    border: solid 1px var(--contents-sub-F1);
    padding: 10px;
    margin: 5px 5px 10px 5px;
    font-size: 1.2em;
    font-weight: bold;
}
body.contents main article section.ranking .wrapper li {
    background: rgb(68, 68, 68);
    padding: 10px 0px;
}
body.contents main article section.ranking .wrapper li.no1 {
    background: rgb(233, 204, 77);
}
body.contents main article section.ranking .wrapper li.no2 {
    background: rgb(180, 180, 180);
}
body.contents main article section.ranking .wrapper li.no3 {
    background: rgb(168, 118, 83);
}
body.contents main article section.ranking .wrapper li p.no {
    margin-bottom: 10px;
    padding: 5px;
    font-size: 1.2em;
    font-weight: bold;
    background-image: linear-gradient(90deg, rgba(34, 34, 34, 1), rgba(68, 68, 68, 1) 50%, rgba(34, 34, 34, 1));
}
body.contents main article section.ranking .wrapper li p.i1 {
    background-image: linear-gradient(90deg, rgba(230, 160, 70, 1), rgba(233, 204, 77, 1) 50%, rgba(230, 160, 70, 1));
}
body.contents main article section.ranking .wrapper li p.i2 {
    background-image: linear-gradient(90deg, rgba(90, 90, 90, 1), rgba(180, 180, 180, 1) 50%, rgba(90, 90, 90, 1));
}
body.contents main article section.ranking .wrapper li p.i3 {
    background-image: linear-gradient(90deg, rgba(85, 60, 42, 1), rgba(168, 118, 83, 1) 50%, rgba(85, 60, 42, 1));
}
body.contents main article section.ranking .wrapper li figure.photo:before {
    padding-top: 140%;
}
body.contents main article section.ranking .wrapper li .catchcopy {
    background: var(--contents-main-BG);
    color: var(--contents-main-F);
    position: absolute;
    width: 100%;
    padding: 10px 0px;
    bottom: 0;
}
body.contents main article section.ranking .wrapper li .profile {
    padding-top: 10px;
}
body.contents main article section.ranking .wrapper li .profile p.name {
    font-weight: bold;
}


/*女の子一覧*/
body.contents main article section.girls .wrapper {
    padding: 10px 10px 0px 10px;
}
body.contents main article section.girls .wrapper li {
    display: inline-block;
    background: var(--contents-sub-BG1);
    color: var(--contents-sub-F1);
}
@media screen and (min-width: 3441px) {
    body.contents main article section.girls .wrapper li {
		width: 8%;
		margin: 0.166%;
	}
}
@media screen and (min-width: 2561px) and (max-width: 3440px) {
    body.contents main article section.girls .wrapper li {
		width: 9.5%;
		margin: 0.250%;
	}
}
@media screen and (min-width: 1601px) and (max-width: 2560px) {
    body.contents main article section.girls .wrapper li {
		width: 16%;
		margin: 0.333%;
	}
}
@media screen and (min-width: 1281px) and (max-width: 1600px) {
    body.contents main article section.girls .wrapper li {
		width: 24%;
		margin: 0.5%;
	}
}
@media screen and (min-width: 721px) and (max-width: 1280px) {
    body.contents main article section.girls .wrapper li {
		width: 32.333%;
		margin: 0.5%;
	}
}
body.contents main article section.girls .wrapper li div.icon {
    padding: 10px 0px;
    letter-spacing:-.4em;
    > i, > em {
        letter-spacing:normal;
    }
}
body.contents main article section.girls .wrapper li .photo {
    width: 96%;
}
body.contents main article section.girls .wrapper li .photo:before {
    padding-top: 150%;
}
body.contents main article section.girls .wrapper li .photo p.catchcopy {
    background: var(--contents-main-BG);
    color: var(--contents-main-F);
    position: absolute;
    width: 100%;
    padding: 10px 0px;
    bottom: 0;
    z-index: 1;
}
body.contents main article section.girls .wrapper li .profile {
    padding: 10px 5px;
}
body.contents main article section.girls .wrapper li .profile p.name {
    font-weight: bold;
}
body.contents main article section.girls .wrapper li .schedule {
    user-select: none;
    margin: 0px 10px 10px 10px;
    border: solid 2px var(--contents-accent-BG);
    p.time {
        color: var(--contents-accent-BG);
        font-size: 1.5em;
        padding: 5px;
    }
    p.text {
        background: var(--contents-accent-BG);
        padding: 5px;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }
}

/*出勤表ボタン*/
.weekday-buttons {
    padding: 30px 0px 20px 0px;

    li {
        display: inline-block;
        text-align: center;
        margin: 5px;

        a {
            padding: 8px 14px 8px 6px;
            border-radius: 999px;
            background: var(--contents-accent-BG);
            color: var(--contents-accent-F);
        }
        a.selected {
            border: solid 2px var(--contents-accent-F);
        }
        a i.day {
            display: inline-block;
            margin-right: 14px;
            position: relative;
            width: 1em;
            height: 1em;
        }
        a i.day::after {
            content: '';
            display: inline-block;
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            width: 1em;
            height: 1em;
            border: solid 2px var(--contents-accent-F);
            background: #aaaaaa;
            border-radius: 999px;
            vertical-align: middle;
            text-align: 1em;
        }
        a.Sun i.day:after {
            background: #ff5050;
        }
        a.Sat i.day:after {
            background: #5050ff;
        }
    }
}
.noSchedule {
    background: var(--contents-sub-BG1);
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
    margin-top: 10px;
    margin-bottom: 20px;
    padding-bottom: 20px;

    P {
        padding: 50px;
    }
}

@media screen and (min-width: 0px) and (max-device-width: 720px) {
    .weekday-buttons {
        padding: 20px 0px 10px 0px;

        overflow-x: scroll;
        ul {
            display: inline-block;
            padding: 0px 2%;
            border-collapse: collapse;
            white-space: nowrap;
        }
    }
}


/*女の子詳細*/
body.contents main article section.girl .main_photo {
    background: #000000;
    width: 100%;
    padding: 0px;
    overflow: hidden;
}
body.contents main article section.girl #photolist li {
    width: 500px;
    height: 750px;
    position: relative;
    overflow: hidden;
}
body.contents main article section.girl #photolist li img {
    position: absolute;
    width: 100%;
    height: auto;
    margin: auto;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
body.contents main article section.girl .thumb {
    background: var(--contents-sub-BG1);
    padding: 10px 0px;
    margin-bottom: 20px;
}
body.contents main article section.girl .thumb .photo {
    display: inline-block;
    width: 80px;
    border-radius: 999px;
    margin: 5px;
}
body.contents main article section.girl .thumb .photo:before {
    padding-top: 100%;
}

body.contents main article section.girl .profile {
    background: var(--contents-sub-BG1);
    color: var(--contents-sub-F1);
    width: 980px;
    margin: 0 auto;
}
body.contents main article section.girl .profile .wrapper {
    padding: 20px;
}
body.contents main article section.girl .profile .icon {
    margin-bottom: 10px;
}
body.contents main article section.girl .profile p.catchcopy {
    font-weight: bold;
    padding: 10px;
}
body.contents main article section.girl .profile p.name {
    font-size: 1.4em;
    font-weight: bold;
}
body.contents main article section.girl .profile p.size {
    margin-bottom: 10px;
}
body.contents main article section.girl .profile div.comment {
    background: var(--contents-sub-BG2);
    color: var(--contents-sub-F2);
    padding: 15px;
    margin: auto;
}
section.schedule {
    width: 980px;

    .wrapper {
        padding: 10px !important;
    }

    table {
        width: 100%;

    }

    th, td {
        padding: 20px 10px;
        border-right: solid 1px rgba(120, 120, 120, 0.1);
    }
    th {
        background: rgba(120, 120, 120, 0.2);
    }
    th:first-child, td:first-child {
        border-left: solid 1px var(--contents-accent-BG);
    }
    th:last-child, td:last-child {
        border-right: solid 1px var(--contents-accent-BG);
    }
    td {
        border-bottom: solid 1px var(--contents-accent-BG);
        p.text {
            padding: 2px;
            color: var(--contents-accent-BG);
            font-size: 0.8em;
        }
    }
    caption {
        border: solid 1px var(--contents-accent-BG);


        p {
            padding: 10px;
            font-size: 1.2em;
        }
        p.text {
            font-weight: bold;
            background: var(--contents-accent-BG);
        }
        p.time {
            padding: 20px 10px;
        }
    }
    th.Sun, caption.Sun p.time {
        color: #ff5050;
    }
    th.Sat, caption.Sat p.time {
        color: #5050ff;
    }
}


body.girlinfo main article section.movie {
    width: 980px;
}
body.girlinfo main article section.movie .wrapper {
    padding: 10px;
}
body.girlinfo main article section.movie .wrapper video {
    width: 960px;
    height: 540px;
}


/*システム料金*/
body.contents main article section.system .wrapper {
    padding: 20px 0px 0px 0px;
}
body.contents main article section.system .wrapper li {
    width: 980px;
    margin: 0 auto;
    margin-bottom: 20px;
}
body.contents main article section.system .wrapper li:last-child {
    margin-bottom: 0px;
}
body.contents main article section.system .wrapper li table {
    width: 100%;
    font-size: 1.2em;
    border-collapse: separate;
    border-spacing: 2px;
}
body.contents main article section.system .wrapper li table caption {
    background: var(--contents-title-BG2);
    color: var(--contents-title-F2);
    border: solid 1px var(--contents-title-F2);
    width: auto;
    padding: 10px;
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 5px;
}
body.contents main article section.system .wrapper li table th {
    background:  var(--contents-sub-BG1);
    color: var(--contents-sub-F1);
    padding: 15px;
    vertical-align: middle;
    font-weight: normal;
}
body.contents main article section.system .wrapper li table td {
    background:  var(--contents-sub-BG2);
    color: var(--contents-sub-F2);
    min-width: 150px;
    padding: 15px;
    vertical-align: middle;
}
body.contents main article section.system .wrapper li .comment {
    background:  var(--contents-sub-BG1);
    color: var(--contents-sub-F2);
    padding: 15px;
    margin: 2px 2px 0px 2px;
    white-space: pre-wrap;
}

body.contents main article section.system .wrapper li .caution {
    background:  var(--contents-sub-BG2);
    color:  var(--contents-sub-F2);
    padding: 20px;
    text-align: left;
}
body.contents main article section.system .wrapper li .caution p {
    color: #FF0000;
    font-size: 1.2em;
    font-weight: bold;
}
body.contents main article section.system .wrapper li .caution img.hiddencamera {
    width: 100%;
    max-width: 680px;
}


/*イベント情報*/
body.contents main article section.event .wrapper {
    padding: 20px 0px 0px 0px;
}
body.contents main article section.event .wrapper li {
    background:  var(--contents-sub-BG1);
    width: 980px;
    margin: 0 auto;
    margin-bottom: 20px;
    padding-bottom: 20px;
}
body.contents main article section.event .wrapper li:last-child {
    margin-bottom: 0px;
}

body.contents main article section.event .wrapper li .title {
    background:  var(--contents-title-BG2);
    color: var(--contents-title-F2);
    font-size: 1.2em;
    font-weight: bold;
    padding: 10px;
    margin-bottom: 20px;
}
body.contents main article section.event .wrapper li .banner {
    padding: 0px 20px;
}
body.contents main article section.event .wrapper li .banner img {
    width: 100%;
}
body.contents main article section.event .wrapper li .comment {
    background:  var(--contents-sub-BG2);
    color:  var(--contents-sub-F2);
    width: 900px;
    padding: 20px;
    margin: 0 auto;
    margin-top: 10px;
}
body.contents main article section.event .wrapper li .ready {
    padding: 50px;
}


/*メールマガジン情報*/
body.contents main article section.mailmagazine .wrapper {
    padding: 20px 0px 0px 0px;
}
body.contents main article section.mailmagazine .wrapper .banner {
    background:  var(--contents-sub-BG1);
    color:  var(--contents-sub-F1);
    width: 960px;
    padding: 10px;
    margin: 0px auto 20px auto;
}
body.contents main article section.mailmagazine .wrapper .banner img {
    width: 100%;
}
body.contents main article section.mailmagazine .wrapper form {
    background: var(--contents-sub-BG1);
    color: var(--contents-sub-F1);
    padding: 15px 0px;
}
body.contents main article section.mailmagazine .wrapper form div {
    padding: 5px;
}
body.contents main article section.mailmagazine .wrapper .caution {
    padding: 20px;
}


/*フッダー*/
footer ul.menu {
    padding: 10px;
    background: var(--contents-link-BG1);
}
footer ul.menu li {
    display: inline-block;
}
footer ul.menu li:first-child::before {
    content: none;
}
footer ul.menu li::before {
    color: var(--contents-link-F1);
    content: '│';
}
footer .copyright {
    background: var(--contents-main-BG);
    color: var(--contents-main-F);
    font-size: 0.8em;
    padding: 20px 10px;
}
footer .copyright p {
    font-size: 1.4em;
    padding: 5px;
}



/*スマートフォンページ*/
@media screen and (min-width: 0px) and (max-device-width: 720px) {
    body {
        min-width: 360px;
        height: 100vh;
        line-height: 1.5;
    }
    h1, h2, h3, p, article, section, div, ul, li, table, th, td {
        border-radius: unset;
        vertical-align: top;
    }
    /*bx-slider設定*/
    .bx-controls-direction {
        width: auto;
    }
    #slider-wrapper .bx-wrapper .bx-prev {
        top: 250px;
        left: 10px;
    }
    #slider-wrapper .bx-wrapper .bx-next {
        top: 250px;
        right: 10px;
    }
    #slider-wrapper {
        left: 50%;
        width: 100%;
        margin-left: -50%;
    }

    /*年齢認証ページ*/
    body.index main .logo {
        background-size: cover;
        background-position: top;
        background-repeat: no-repeat;
        padding: 20% 0px;
    }
    body.index main .logo img {
        width: 90%;
        max-height: none;
    }
    body.index main .ad img {
        width: 80%;
    }
    body.index main nav.admission li {
        padding: 0px 2%;
    }
    body.index main nav.admission li.button {
        width: 50%;
        padding: 0px;
        margin-bottom:10px;
        line-height: 1.2;
    }
    body.index main nav.admission li.button a {
        margin: 0px 2%;
        padding: 4%;
    }
    body.index main .info {
        padding: 10px 2% 30px 2%;
    }

    /*メインヘッダー*/
    body.contents header .info {
        background-size: cover;
        background-position: top;
        background-repeat: no-repeat;
    }
    body.contents header .info .logo{
        padding: 5% 0px;
    }
    body.contents header .info .logo img {
        width: 70%;
        max-width: 100%;
        max-height: 100%;
    }
    body.contents header .info .contact{
        padding: 10px 2%;
    }
    body.contents header .info .contact li {
        margin: 0px 2%;
        vertical-align: middle;
    }
    body.contents header .info .contact li.phone a {
        font-size: 1.4em;
    }
    body.contents header .info .contact li.opentime {
        font-size: 1.2em;
    }
    body.contents header nav.menu ul li {
        vertical-align: top;
        font-size: 0.65em;
        margin: 0.5%;
        width: 32%;
    	white-space: nowrap;
	    overflow: hidden;
        line-height: 1.2;
    }
    body.contents header nav.menu ul li a {
        padding: 5px 5px;
    }
    
    /*メイン*/
    body.contents main article {
       padding: 10px 0px;
    }
    body.contents main article section {
        width: 100% !important;
        margin: 0px !important;
        margin-bottom: 10px !important;
    }
    body.contents main article section:last-child {
        margin-bottom: 0px !important;
    }
    body.contents main article section .wrapper {
        border-left: 0px;
        border-right: 0px;
    }
    body.contents main article section h2 {
        border-left: none;
        border-right: none;
        padding: 10px 2%; 
    }

    /*メイン サブ*/

    body.contents main article.sub section {
        margin-bottom: 0px !important;
    }
    body.contents main article.sub section .wrapper {
        margin: 0px;
        padding: 10px 2%;
        height: auto;
        width: 96%;
    }


    /*広告*/
    body.contents main article section.ad .wrapper {
        height: auto;
    }


    /*おすすめ情報*/
    body.contents main article.slide {
        padding: 10px 0px !important;
    }
    body.contents main article.slide section {
        width: 100%;
        height: auto;
    }


    /*新着情報*/
    body.contents main article section.news .wrapper {
        height: auto;
    }
    body.contents main article section.news .wrapper ul {
        height: auto;
        overflow: unset;
    }
    body.contents main article section.news .wrapper li {
        padding: 5px 0px;
        margin-bottom: 0px;
    }
    /*新着情報 詳細*/
    body.contents main article.sub section.newsInfo h2 {
        margin-bottom: 10px;
    }
    body.contents main article.sub section.newsInfo .wrapper {
        font-size: 0.8em;
        padding: 0px;
        width: 100%;
    }
    body.contents main article.sub section.newsInfo .wrapper .inbox{
        border-left: 0px;
        border-right: 0px;
        padding: 10px 2%;
    }
    body.contents main article.sub section.newsInfo .wrapper div.photo {
        float: none;
        margin-right: 0px;
    }
    body.contents main article.sub section.newsInfo .wrapper .comment {
        padding: 10px 0px;
    }
    body.contents main article section.newsEtc .wrapper {
        padding: 5px;
    }


    /*ピックアップ*/
    body.contents main article section.pickup .wrapper li .photo:before {
        padding-top: 140%;
    }


    /*動画*/
    body.contents main article section.movie .wrapper video {
        width: 100%;
        height: auto;
    }


    /*ランキング*/
    body.contents main article section.ranking .title {
        margin: 0px 0px 5px 0px;
    }
    body.contents main article section.ranking .wrapper li {
        padding: 5px 0px;
        font-size: 0.8em;
    }
    body.contents main article section.ranking .wrapper li p.no {
        margin-bottom: 5px;
    }
    body.contents main article section.ranking .wrapper li .profile {
        padding-top: 5px;
        font-size: 0.6em;
    }


    /*女の子一覧*/
    body.contents main article.sub section.girls h2 {
        margin-bottom: 0px;
    }
    body.contents main article.sub section.girls .wrapper li {
        width: 48%;
        margin: 1%;
        font-size: 0.75em;
    }
    body.contents main article.sub section.girls .wrapper li div.icon {
        padding: 5px 0px;
    }
    body.contents main article.sub section.girls .wrapper li .profile {
        padding: 5px;
    }
    

    /*女の子詳細*/
    body.contents main article section.girl #photolist li {
        width: 100%;
        height: auto;
    }
    body.contents main article section.girl #photolist li:before {
        content: "";
        display: block;
        padding-top: 150%;
    }
    body.contents main article section.girl .thumb {
        padding: 5px 0px;
        margin-bottom: 10px;
    }
    body.contents main article section.girl .thumb .photo {
        width: 18%;
        margin: 1%;
    }
    body.contents main article section.girl .profile {
        width: auto;
    }
    body.contents main article section.girl .profile .wrapper {
        border: none;
        border-top: solid 1px var(--contents-sub-BG1);
        border-bottom: solid 1px var(--contents-sub-BG1);
        width: auto;
        padding: 10px 0px 0px 0px;
    }
    body.contents main article section.girl .profile div.comment {
        width: auto;
        padding: 10px 2%;
    }

    /* 出勤情報  */
    section.schedule {
        table,
        caption,
        thead,
        tbody,
        tr,
        th,
        td {
          display: block;
          width: 100%;
          border: none;
          padding: 0;
          margin: 0;
        }
        table {
            border: solid 1px var(--contents-accent-BG);
        }
        caption {

            border-bottom: solid 1px var(--contents-accent-BG);
            p.text {
                padding: 5px 5px;
            }
            p.time {
                padding: 10px 5px;
            }
        }
        thead {
            display: none; /* ヘッダーは非表示にする */
        }
        td {
            display: flex;
            border-bottom: solid 1px rgba(120, 120, 120, 0.1);
        }
        td:last-child {
            border-bottom: none;
        }
        th:first-child, td:first-child {
            border-left: none;
        }
        th:last-child, td:last-child {
            border-right: none;
        }
        td::before {
            content: attr(data-label);
            display: flex;
            flex-direction: column;
            width: 50%;
            background: rgba(120, 120, 120, 0.2);
            padding: 10px 5px;
            justify-content: center;
        }
        td div {
            display: flex;
            flex-direction: column;
            width: 50%;
            padding: 10px 5px;
            justify-content: center;
        }
    }



    /*システム料金*/
    body.contents main article section.system .wrapper li {
        width: 100%;
        margin-bottom: 10px;
    }
    body.contents main article section.system .wrapper li .caution {
        padding: 10px;
    }


    /*イベント情報*/
    body.contents main article section.event .wrapper {
        width: 100%;
        padding: 10px 0px;
    }
    body.contents main article section.event .wrapper li {
        width: 100%;
        padding-bottom: 5px;
        margin-bottom: 10px;
    }
    body.contents main article section.event .wrapper li .title {
        padding: 10px 2%;
        margin-bottom: 0px;
    }
    body.contents main article section.event .wrapper li .banner {
        padding: 0px;
        margin-bottom: 0px;
    }
    body.contents main article section.event .wrapper li div.comment {
        width: 94%;
        padding: 10px 2%;
        margin-top: 5px;
    }


    /*メールマガジン情報*/
    body.contents main article section.mailmagazine .wrapper {
        width: 100%;
        padding: 10px 0px;
    }
    body.contents main article section.mailmagazine .wrapper .banner {
        width: 100%;
        padding: 0px;
        margin-bottom: 10px;
    }
    body.contents main article section.mailmagazine .wrapper form {
        padding: 10px 2%;
    }
    body.contents main article section.mailmagazine .wrapper form div {
        padding: 0px;
    }
    body.contents main article section.mailmagazine .wrapper form input[type="text"] {
        width: 80%;
        margin-bottom: 10px;
    }
    body.contents main article section.mailmagazine .wrapper form input[type="radio"] {
        margin: 5px;
    }
    body.contents main article section.mailmagazine .wrapper .caution {
        padding: 10px 2%;
        font-size: 0.8em;
    }

    /*フッダー*/
    footer {
        padding-bottom: 60px;
    }
    footer ul.menu {
        font-size: 0.8em;
    }
    footer .copyright {
        padding: 10px 2%;
    }
}

/* スマートフォンハンバーガーメニュー start */
.scroll-prevent {
    /*動き固定*/
    /*position: fixed;*/
    overflow: hidden;
    user-select: none;
    /*奥行きを管理*/
    z-index: -1;
    /*下2つで背景を元のサイズのまま表示することができる*/
    width: 100%;
    height: 100%;
}
.navToggle {
    background: var(--contents-link-BG1);
    position: fixed;
    display: block;
    right: 10px;
    top: 10px;
    width: 50px;
    height: 50px;
    cursor: pointer;
    z-index: 500;
    text-align: center;
    border-radius: 8px;
    backdrop-filter: blur(3px);
}
.navToggle.active {
    background: var(--contents-main-BG);
    color: var(--contents-main-F);
    top: 0;
    right: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
    border-radius: 0px;
    opacity: 0.6;
    backdrop-filter: blur(3px);
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.navToggle.active .position {
    position: relative;
    top: 45%;
    left: 20%;
}
.navToggle span {
    border-bottom: solid 3px var(--contents-link-F1);
    display: block;
    position: absolute;
    width: 36px;
    margin: 0 auto;
    left: 7px;
}
.navToggle.active span {
    border-bottom: solid 7px var(--contents-main-F);
    width: 40px;
}
.navToggle.active span:nth-child(4) {
    color: var(--contents-main-F); 
}
.navToggle span:nth-child(1) {
    top: 9px;
}
.navToggle span:nth-child(2) {
    top: 18px;
}
.navToggle span:nth-child(3) {
    top: 27px;
}
.navToggle span:nth-child(4) {
    border: none;
    color: var(--contents-link-F1); 
    font-size: 0.8em;
    font-weight: bold;
    top: 32px;
}
.navToggle.active span:nth-child(4) {
    top: 40px;
    font-size: 0.8em;
}
/* 最初のspanをマイナス45度に */
.navToggle.active span:nth-child(1) {
    top: 18px;
    left: 6px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
/* 2番目と3番目のspanを45度に */
.navToggle.active span:nth-child(2), .navToggle.active span:nth-child(3) {
    top: 18px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
}
nav.globalMenuSp {
    background: var(--contents-link-BG2);
    color: var(--contents-link-F2);
    position: fixed;
    z-index: 1000;
    top: 0;
    right: 0;
    transform: translateX(100%);
    transition: all 0.3s;
    width: 64%;
    height: 100%;
}
nav.active {
    transition: all 0.3s;
    filter: drop-shadow(0px 0px 3px var(--contents-link-BG2));
}
nav.globalMenuSp ul {
    width: 100%;
    height: 100%;
    overflow: scroll;
    -webkit-overflow-scrolling: touch;
}
nav.globalMenuSp ul li {
    list-style-type: none;
    border-bottom: 1px solid var(--contents-title-BG1);
}
nav.globalMenuSp ul li.logo {
    padding: 10px 10px
}
nav.globalMenuSp ul li.logo img {
    width: 100%;
}
nav.globalMenuSp ul li.logo p.title {
    padding: 10px 0px;
    font-size: 1em;

}
nav.globalMenuSp ul li.title {
    background: var(--contents-title-BG1);
    color: var(--contents-title-F1);
    font-weight: bold;
    border-bottom: none;
    padding: 10px 5px;
}
/* 最後はラインを描かない */
nav.globalMenuSp ul li:last-child {
    padding-bottom: 0;
    border-bottom: none;
}
nav.globalMenuSp ul li a {
    display: block;
    padding: 10px 5px;
    color: var(--contents-link-F2);
}
nav.globalMenuSp ul li a.tel {
    color: var(--contents-link-F2);
}
/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
    transform: translateX(0%);
}
/* スマホ用のハンバーガーメニュー end */


/* スマホ用のフッダーサブメニュー */
footer ul.sub_menu {
    background: var(--contents-main-BG);
    position: fixed;
    display: block;
    z-index: 200;
    left: 0;
    right: 0;
    width: 100%;
    height: 50px;
    padding: 5px 0px;
}
footer ul.sub_menu li {
    position: relative;
    vertical-align: top;
    border-radius: 4px;
    height: 50px;
    margin: 0 0.5%;
    font-weight: bold;
    background: var(--contents-link-BG1);
}
footer ul.sub_menu li a {
    position: absolute;
    display: block;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    line-height: 1.2;
}
footer ul.sub_menu li.tel {
    width: 68%;
    font-size: 1.4em;
}
footer ul.sub_menu li.tel a p {
    font-size: 0.6em;
    font-weight: normal;
}
footer ul.sub_menu li.top {
    width: 28%;
    font-size: 0.9em;
}


/* スマホ用のフッダーサブメニュー end */