@charset "UTF-8";

* {
    margin: 0;
}

body {
    margin-right: auto;
    margin-left: auto;
    background-color: rgb(50, 50, 50);
    max-width: 749px;
    font-family: "Helvetica Neue",
        Arial,
        "Hiragino Kaku Gothic ProN",
        "Hiragino Sans",
        Meiryo,
        sans-serif;
}


/* ヘッダー start */
header {
    z-index: 3;
    position: fixed;
    background-color: #292929;
    height: 46px;
    width: 100%;
    max-width: 749px;
}

header .wrapper {
    display: flex;
}

header .logo1 {
    height: 38px;
    position: relative;
    top: 4px;
    left: 3px;
}

header .logo2 {
    height: 26px;
    display: block;
    position: relative;
    left: 4.5px;
}

header .logo3 {
    height: 15.2px;
    display: block;
    position: relative;
    left: 7px;
}


@media screen and (min-width:749px) {

    .titlediv {
        font-size: 1.5em;
        position: relative;
        height: 550px;
        background-image: url(room1.jpg);
        background-repeat: no-repeat;
        background-size: 100%;
    }

    .titlediv .outer1 {
        width: 100%;
        z-index: 2;
        text-align: center;
        position: absolute;
        top: 220px;
    }

    .box1 {
        margin-right: auto;
        margin-left: auto;
        z-index: 1;
        width: 100%;
        height: 33%;
        background-color: #111111;
        opacity: 0.65;
        position: absolute;
        top: 170px;
    }

    .titlediv .outer2 {
        width: 100%;
        text-align: center;
        position: absolute;
        z-index: 2;
        top: 270px;
    }

    .menu-btn {
        position: relative;
        top: -70px;
        left: 700px;
        display: flex;
        height: 46px;
        width: 46px;
        justify-content: center;
        align-items: center;
        z-index: 90;
        background-color: #292929;
        /* バーガーの背景色 */
    }

}

@media screen and (max-width:749px) {
    .titlediv {
        position: relative;
        height: 65vw;
        background-image: url(room1.jpg);
        background-repeat: no-repeat;
        background-size: 100%;
    }

    .titlediv .outer1 {
        width: 100%;
        z-index: 2;
        text-align: center;
        position: absolute;
        top: 24vw;
    }

    .box1 {
        margin-right: auto;
        margin-left: auto;
        z-index: 1;
        width: 100%;
        height: 33%;
        background-color: #111111;
        opacity: 0.65;
        position: absolute;
        top: 20vw;
    }

    .titlediv .outer2 {
        width: 100%;
        font-size: 14px;
        text-align: center;
        position: absolute;
        z-index: 2;
        top: 32vw;
    }

    .menu-btn {
        position: fixed;
        top: 0;
        right: 0;
        display: flex;
        height: 46px;
        width: 46px;
        justify-content: center;
        align-items: center;
        z-index: 90;
        background-color: #292929;
        /* バーガーの背景色 */
    }
}

.btn {
    position: relative;
    bottom: 33px;
    left: 253px;
    padding: .5em .25em;
    font-size: .95em;
    font-weight: bold;
    color: #1d1d1d;
    /* 文字色を白にする */
    background-color: #dddddd;
    /* 背景色をグレー（#3a3a3a）にする */
    border: 3px solid #888888;
    /* 要素の枠を2pxの太さで、線の種類をsolidに、色を黒にする */
    text-decoration: none;
    /* リンクに出てくる下線を無効にする*/
    border-radius: 2px;
}

.btn:hover {
    color: #dddddd;
    /* 文字色を白にする */
    background-color: #1d1d1d;
    /* 背景色をグレー（#c9c9c9）にする */
    text-decoration: none;
    /* リンクに出てくる下線を無効にする*/
}

/* ハンバーガーメニューstart */
.hamburger-menu {
    display: inline;
}




.menu-btn:hover {
    background-color: rgb(50, 50, 50);
    /* バーガーにカーソルで色変 */
}

.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
    content: '';
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background-color: #dddddd;
    position: absolute;
}

.menu-btn span:before {
    bottom: 8px;
}

.menu-btn span:after {
    top: 8px;
}

#menu-btn-check:checked~.menu-btn span {
    background-color: rgba(255, 255, 255, 0);
    /*メニューオープン時は真ん中の線を透明にする*/
}

#menu-btn-check:checked~.menu-btn span::before {
    bottom: 0;
    transform: rotate(45deg);
}

#menu-btn-check:checked~.menu-btn span::after {
    top: 0;
    transform: rotate(-45deg);
}

#menu-btn-check {
    display: none;
}

.menu-content ul {
    padding: 70px 10px 0;
}


.menu-content ul li {
    border-bottom: solid 1px #dddddd;
    list-style: none;
}

.menu-content ul li a {
    display: block;
    width: 100%;
    font-size: 15px;
    box-sizing: border-box;
    color: #dddddd;
    text-decoration: none;
    padding: 9px 15px 10px 0;
    position: relative;
}



.menu-content ul li a::before {
    content: "";
    width: 7px;
    height: 7px;
    border-top: solid 2px #dddddd;
    border-right: solid 2px #dddddd;
    transform: rotate(45deg);
    position: absolute;
    right: 11px;
    top: 16px;
}

.menu-content ul li a:hover {
    background-color: #555555;
    /* メニューカーソル合わせて色変化 */
}

.menu-content {
    text-align: left;
    width: 50%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 100%;
    /*leftの値を変更してメニューを画面外へ*/
    z-index: 80;
    background-color: rgb(50, 50, 50);
    transition: all 0.5s;
    /*アニメーション設定*/
}

#menu-btn-check:checked~.menu-content {
    left: 70%;
    /*メニューを画面内へ*/
}

/* ハンバーガーメニューend */




/* ヘッダー end */







.feature,
.review {
    padding-right: 14px;
    padding-left: 14px;
}

.price,
.review,
.problem,
.instagram,
.trainer,
.qa,
.access {
    padding-bottom: 60px;
}

h2 {
    font-size: 1.5em;
}

/* デザインまとめて指定start */
.trainer h2,
.price h2,
.qa h2 {
    text-align: center;
    color: #dddddd;
    padding: 40px 3em;
    margin: 0 auto;
    width: fit-content;
    position: relative;
}

.price h2::before,
.price h2::after,
.trainer h2::before,
.trainer h2::after,
.qa h2::before,
.qa h2::after {
    content: '';
    width: 2em;
    height: 3px;
    background-color: #4c9ac0;
    position: absolute;
    top: 50%;
}

.price h2::before,
.trainer h2::before,
.qa h2::before {
    left: 0;
}

.price h2::after,
.trainer h2::after,
.qa h2::after {
    right: 0;
}

/* デザインまとめて指定end */



/* メイン start */
main {
    padding-top: 46px;
}

/* トップ画像start */

.titlediv {
    color: #dddddd;
}



.titlediv h1 {
    font-size: 1.3em;
}





/* トップ画像end */

/*--------------------Line start--------------------*/
.linediv {
    margin: 30px 14px 0;
    padding: 20px 5px;
    text-align: center;
    background-color: rgb(70, 70, 70);
    color: #dddddd;
    font-size: 15px;
    font-weight: bold;
}

.linediv .pline {
    padding: 4px;
}

/*--------------------Line end--------------------*/


/* 特徴start */
.feature {
    padding-top: 20px;
    padding-bottom: 10px;
    background-color: rgb(50, 50, 50);
}

.feature h2 {
    padding-top: 10px;
    padding-bottom: 10px;
    text-align: center;
    color: #c5e7ff;
}

.feature h2::before {
    content: "";
    display: inline-block;
    width: 40px;
    height: 40px;
    background: url(dumbbell_icon.png) no-repeat;
    background-size: contain;
    position: relative;
    top: 10px;
    right: 10px;
}

.feature h2::after {
    content: "";
    display: inline-block;
    width: 40px;
    height: 40px;
    background: url(dumbbell_icon.png) no-repeat;
    background-size: contain;
    position: relative;
    top: 10px;
    left: 10px;
}

.tag_p1{
    color: #dddddd;
}
.feature a{
    color: #df7437;
}
.tag_p2{
    color: #df7437;
}

.feature .inner {
    margin-top: 20px;
    display: flex;
    padding: 4px;
    border: 2px solid rgb(0, 116, 199);
    background: linear-gradient(90deg, #b8e1ff, rgb(214, 214, 214));
}


.feature .inner .image {
    height: 75px;
    min-width: 80px;
    width: 100px;
}

/*  background-color: #c5e7ff;
  background-color: #edf2f8; 
 background: linear-gradient(90deg, rgb(20, 55, 90), rgb(22, 135, 237)); */

.feature .image .img1 {
    height: 75px;
}

.feature .inner .content {
    padding: 3px 5px 0 10px;
    height: 57px;
}

.feature .inner .content h3 {
    font-size: 15px;
    color: rgb(0, 116, 199);
}

.feature span {
    display: block;
    font-size: 10px;
    color: rgb(0, 116, 199);
}

.feature .content p {
    font-size: 13px;
    font-weight: bold;
}


/* 特徴end */

/* 他社比較start */

.comparison {
    padding: 0 14px;
    font-size: 0.75em;
    width: 100%;
}

.comparison th,
.comparison td {
    width: 20%;
    padding: 1em 0;
}

.comparison td {
    padding-right: 5px;
    text-align: right;
}

/* 他社比較end */


/* インスタグラムstart */
.instagram {
    text-align: center;
    color: #dddddd;
    padding-left: 11px;
    padding-right: 11px;
    background-color: rgb(70, 70, 70);
}

.instagram h2 {
    padding: 40px 0 36px;
}


.instagram h2::before {
    content: "";
    display: inline-block;
    width: 1em;
    height: 1em;
    background: url(insta_icon.png) no-repeat;
    background-size: contain;
    position: relative;
    top: 2px;
}


.instagram h2::after {
    content: "";
    display: inline-block;
    width: 1em;
    height: 1em;
    background: url(insta_icon.png) no-repeat;
    background-size: contain;
    position: relative;
    top: 2px;
}

.inspan1 {
    color: #9141B2;
}

.inspan2 {
    color: #B241AD;
}

.inspan3 {
    color: #B241A0;
}

.inspan4 {
    color: #B241A0;
}

.inspan5 {
    color: #D3337F;
}

.inspan6 {
    color: #F04478;
}

.inspan7 {
    color: #F06744;
}

.inspan8 {
    color: #F08C44;
}

.inspan9 {
    color: #FEB859;
}

.instagram .wrapper {
    margin-top: 8px;
    text-align: center;
    border-radius: 5px;
}

.instagram .outer {
    margin-left: auto;
    margin-right: auto;
    max-width: 500px;
    margin-top: -3px;
    display: flex;
    justify-content: space-between;
}

.instagram .inner {
    padding: 0 2px;
    display: inline-block;
}

.instagram .inner .img1 {
    width: 100%;
    cursor: pointer;
}

/* インスタグラムend */


/* レビューstart */
.review {
    padding-top: 30px;
    background-color: rgb(70, 70, 70);
}

.review h2 {
    padding: 12px;
    text-align: center;
}

.review h2::before {
    content: "";
    display: inline-block;
    width: 3em;
    height: 2em;
    background: url(google-logo.png) no-repeat;
    background-size: contain;
    vertical-align: middle;
    position: relative;
    top: 5px;
    right: 10px;
}

.review .inner {
    background-color: orange;
}



.cp_box *,
.cp_box *:before,
.cp_box *:after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.cp_box {
    background-color: #eeeeee;
    position: relative;

}

.cp_box label {
    position: absolute;
    z-index: 1;
    bottom: 0;
    width: 100%;
    height: 140px;
    /* グラデーションの高さ */
    cursor: pointer;
    text-align: center;
    /* 以下グラデーションは背景を自身のサイトに合わせて設定してください */
    background: linear-gradient(to bottom, rgba(250, 252, 252, 0) 0%, rgba(250, 252, 252, 0.95) 90%);
}

.cp_box input:checked+label {
    background: inherit;
    /* 開いた時にグラデーションを消す */
}

.cp_box label:after {
    line-height: 2.5rem;
    position: absolute;
    z-index: 2;
    bottom: 20px;
    left: 50%;
    width: 16rem;
    font-family: FontAwesome;
    content: " 続きをよむ";
    transform: translate(-50%, 0);
    letter-spacing: 0.05em;
    color: #ffffff;
    border-radius: 20px;
    background-color: rgba(27, 37, 56, 1);
}

.cp_box input {
    display: none;
}

.cp_box .cp_container {
    overflow: hidden;
    height: 300px;
    /* 開く前に見えている部分の高さ */
    transition: all 0.5s;
}

.cp_box input:checked+label {
    /* display: none ; 閉じるボタンを消す場合解放 */
}

.cp_box input:checked+label:after {
    font-family: FontAwesome;
    content: ' 閉じる';
}


.cp_box input:checked~.cp_container {
    background-color: #ffffff;
    height: auto;
    padding-bottom: 150px;
    /* 閉じるボタンのbottomからの位置 */
    transition: all 0.5s;
}

.review .flexpare {
    display: flex;
    padding: 20px 15px 10px;
}

.star {
    padding-right: 15px;
    color: #ffc800;
}

.review .text {
    padding: 0 15px 15px 15px;
    font-size: 13px;
    border-bottom: 1px dashed;
}

/* レビューend */


/* problem start */
.problem {
    display: none;
    padding-top: 30px;
}

.problem h2 {
    text-align: center;
    background-color: #1d1d1d;
    color: #dddddd;
}

.problem h3 {
    padding-bottom: 20px;
    text-align: center;
}

.problem .wrapper0 {
    padding-left: 14px;
    padding-right: 14px;
}

.problem .wrapper {
    display: flex;
    justify-content: space-between;
    background-color: burlywood;
    margin: auto auto 10px;
}

.problem .outer {
    display: inline-block;
    width: 49%;
    height: 150px;
    background-color: #dddddd;
}

.problem .inner1 {
    background-color: #292929;
    width: 100%;
    height: 100px;
}

.problem .inner2 {
    padding: 4px;
    font-size: 14px;
    font-weight: 600;
}

.problem h4 {
    text-align: left;
}

.box-011 {
    position: relative;
    margin: 3.8em auto 50px;
    padding: 1em 1.5em;
    border: 2px solid #2589d0;
    border-radius: 3px;
}

.box-011 span {
    position: absolute;
    top: -1.9em;
    left: -2px;
    padding: .2em .8em;
    border-radius: 5px 5px 0 0;
    background-color: #2589d0;
    color: #fff;
}

.box-011 p {
    margin: 0;
    color: #333;
}

/* problem end */



/* Price start */
.price {
    background-color: rgb(50, 50, 50);
}

.price .wrapper0,
.price .wrapper1,
.price .wrapper2 {
    margin: auto 14px 30px 14px;
    padding: 30px 0 20px;
    border-radius: 10px;
}

.price .wrapper0 {
    background: linear-gradient(90deg, rgb(83, 119, 92), rgb(107, 158, 133));
}

.price .wrapper1 {
    background: linear-gradient(90deg, rgb(49, 105, 160), rgb(104, 122, 138));
}

.price .wrapper2 {
    background: linear-gradient(90deg, rgb(116, 65, 116), rgb(112, 80, 114));
}

/* .price .wrapper0 {
    background: linear-gradient(90deg, rgb(4, 77, 16), rgb(69, 141, 9));
}

.price .wrapper1 {
    background: linear-gradient(90deg, rgb(20, 55, 90), rgb(22, 135, 237));
}

.price .wrapper2 {
    background: linear-gradient(90deg, rgb(90, 29, 90), rgb(183, 25, 197));
} */




.price .outer {
    font-size: 16px;
    color: #dddddd;
    padding: 5px 14px;
}

.ubox1 {
    font-weight: bold;
    background-color: #2589d0;
}

.ubox2 {
    background-color: #75bbff;
}

.ubox3 {
    background-color: #c5e7ff;
}

.ticket {
    padding: 0 11px;
    font-size: 0.75em;
    width: 100%;
}

.ticket caption {
    border-radius: 5px;
    margin-left: 15.5px;
    margin-bottom: 1em;
    width: fit-content;
    text-align: left;
    font-weight: bold;
    font-size: 2em;
    color: #dddddd;
}

.ticket th,
.ticket td {
    width: 20%;
    padding: 1em 0;
    text-align: center;
    font-weight: bold;
}

.price .inner {
    padding: 13px;
    font-size: 1em;
    color: #dddddd;
}

.price .inner p {
    font-size: 0.9em;
}


.price .outer2 {
    color: #dddddd;
    padding: 0 18px 18px;
    position: relative;
}

.price .outer2 h3,
.price .outer2 p {
    padding: 0 1.3em 0.5em;
    font-size: 1.1em;
}

.price .outer2 p::before {
    display: inline-block;
    color: #ff8d8d;
    content: "A";
}

.price .outer2 h3::before,
.price .outer2 p::before {
    font-weight: bold;
    position: absolute;
    left: 1em;
}

.price .outer2 h3::before {
    color: #75bbff;
    content: "Q";
}

.price .outer2 span {
    font-weight: bold;
    color: #1d1d1d;
    background-color: #ff8d8d;
}


/* Price end */



/* トレーナー紹介start */
.trainer {
    background-color: rgb(70, 70, 70);
}

.trainer .wrapper0 {
    padding-bottom: 14px;
}

.trainer .wrapper {
    margin: auto 14px;
    background-color: #c5e7ff;
    border-radius: 5px;
    padding-bottom: 30px;
}

.trainer .outer {
    padding: 8px 8px 0;
    display: flex;
    justify-content: space-between;
}

.trainer .inner {
    padding: 5px;
    width: 50%;
}

.trainer .inner .img1 {
    width: 100%;
}

.trainer .outer2 {
    padding-left: 14px;
    padding-right: 14px;
}

.trainer .outer2 span {
    display: inline-block;
    width: 0.9em;
    height: 0.9em;
    border-radius: 50%;
    background: #1d1d1d;
    position: relative;
    top: 2px;
}

.trainer .outer2 h4 {
    font-size: 0.9em;
    display: inline-block;
}

.trainer .outer2 p {
    font-size: 0.9em;
}

.trainer .outer2 .content {
    padding-bottom: 6px;
}

.trainer .outer2 .inner2 {
    display: flex;
}

.trainer .inner2 h4 {
    padding-left: 5px;
    width: 3.5em;
}


/* トレーナー紹介end */




/* QA start */
.qa {
    background-color: rgb(50, 50, 50);
}

.qa .wrapper {
    padding-left: 14px;
    padding-right: 14px;
}

.qa-7 {
    margin-bottom: 10px;
    border: none;
    border-radius: 5px;
    background-color: #fff;
}

.qa-7 summary {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 1em 2em 1em 3em;
    color: #333333;
    font-weight: 600;
    cursor: pointer;
}
.qa-7 summary::-webkit-details-marker{
    display: none;
}

.qa-7 summary::before,
.qa-7 p::before {
    position: absolute;
    left: 1em;
    font-weight: 600;
    font-size: 1.3em;
}

.qa-7 summary::before {
    color: #75bbff;
    content: "Q";
}

.qa-7 summary::after {
    transform: translateY(-25%) rotate(45deg);
    width: 7px;
    height: 7px;
    margin-left: 10px;
    border-bottom: 3px solid #333333b3;
    border-right: 3px solid #333333b3;
    content: '';
    transition: transform .5s;
}

.qa-7[open] summary::after {
    transform: rotate(225deg);
}

.qa-7 p {
    position: relative;
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: .3em 3em 1.5em;
    color: #333;
    transition: transform .5s, opacity .5s;
}

.qa-7[open] p {
    transform: none;
    opacity: 1;
}

.qa-7 p::before {
    color: #ff8d8d;
    line-height: 1.2;
    content: "A";
}

/* QA end */


/* アクセスstart */
.access {
    padding-top: 30px;
    padding-right: 25px;
    padding-left: 25px;
    background-color: rgb(40, 40, 40);
    color: #dddddd;
}

.access h2 {
    padding-bottom: 15px;
    text-align: center;
}

.access h2::before {
    content: "";
    display: inline-block;
    width: 1em;
    height: 1em;
    background: url(car_icon.png) no-repeat;
    background-size: contain;
    position: relative;
    top: 2px;
    right: 6px;
}

.access h2::after {
    content: "";
    display: inline-block;
    width: 1em;
    height: 1em;
    background: url(car_icon.png) no-repeat;
    background-size: contain;
    position: relative;
    top: 2px;
    left: 6px;
}

.access .uplusimg {
    display: inline-block;
}

.access .logo1 {
    width: 50px;
}

.access .logo2 {
    position: relative;
    right: 5px;
    width: 250px;
}

.access .map {
    padding: 10px 0 10px 0;
}

.access .open h3,
.access .open p {
    display: inline-block;
}

.access h3 {
    width: 85px;
}

.access .open div {
    display: inline-block;
}

.lineunder {
    margin: 30px 0 0;
    padding: 20px 5px;
    text-align: center;
    background-color: rgb(70, 70, 70);
    color: #dddddd;
    font-size: 16px;
    font-weight: bold;
}

.lineunder .pline {
    padding: 4px;
}


/* アクセスend */


/* メニュー下段atart */
.undermenu {
    background-color: #dddddd;
}

.undermenu ul {
    padding-left: 0;
}

.undermenu ul li {
    position: relative;

    border-bottom: 1px solid #292929;
    list-style: none;
    cursor: pointer;
}

.undermenu li:hover {
    background-color: #888888;
}

.undermenu ul li a {
    padding-top: 1em;
    padding-bottom: 1em;
    display: block;
    padding-left: 25px;
    color: #1d1d1d;
    font-weight: bold;
    font-size: 15px;
    text-decoration: none;
}

.undermenu ul li a::before {
    content: "";
    width: 10px;
    height: 10px;
    border-top: 3px solid #1d1d1d;
    border-right: 3px solid #1d1d1d;
    transform: rotate(45deg);
    position: absolute;
    right: 25px;
    bottom: 21.5px;
}


/* メニュー下段end */



/* メイン end */






/* フッター start */
footer .inner {
    color: #dddddd;
    background-color: #292929;
    text-align: center;
    padding: 30px;
}

/* フッター end */



/* 各セクションのスペースは
上が30px 下が60px 横が14pxか25px

白の背景はedf

トレーナーの青はc5e

黒の背景は
トレーナー
QA
アクセス
rgb(50 50 50)
インスタは
rgb(50 50 50)

Ubox３の色c5e
*/