@charset "utf-8";

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

html {
    font-size: 62.5%;
}

body {
    font-size: 14px;
    line-height: 0;
    color: #000;
    font-family: 'Lato', 'Noto Sans JP', '游ゴシック体', 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
    -webkit-text-size-adjust: 100%;
}

body a {
    text-decoration: none;
}

/*----------ヘッダー----------*/
header {
    background-color: #fffc19;
    position: sticky;
    top: 0;
    z-index: 100;
}

_:lang(x) + _:-webkit-full-screen-document,
header {
    background-color: #fffc19;
    position: sticky;
    top: 0;
    z-index: 10;
}

.header_group {
    display: flex;
    justify-content: space-between;
    padding: 10px 20px;
}

/*ロゴ*/
.logo_top {
    padding: 5px;
    width: 300px;
    height: auto;
}

@media screen and (max-width: 959px) {

    /* 959px以下に適用されるCSS（タブレット用） */
    /*ロゴ*/
    .logo_top {
        width: 35%;
        margin: auto 0;
    }
}

@media screen and (max-width: 559px) {

    /* 559px以下に適用されるCSS（スマホ用） */
    .header_group {
        display: flex;
        justify-content: space-between;
        padding: 0 2%;
        height: 60px;
    }

    /*ロゴ*/
    .logo_top {
        min-width: 32%;
        margin: auto 0;
    }
}

/*メニュー*/
.tab_menu {
    margin: auto 0;
    line-height: 1.6;
}

.global_menu {
    display: flex;
    justify-content: space-between;
}

.global_menu ul {
    display: flex;
    justify-content: space-between;
    margin: 20px 45px 20px 0;
}

.global_menu li {
    padding: .5em .8em;
}

.global_menu a {
    color: #000;
    font-size: 1em;
    font-weight: 600;
}

/*申込みボタン*/
.contact_btn a {
    color: #fff;
    background-color: #0dabff;
    padding: .5em 2em;
    font-size: 1em;
    display: block;
    letter-spacing: .1em;
    line-height: 30px;
    margin: 15px 0;
    font-weight: 500;
}

.contact_btn a:hover {
    background: #0995df;
}

.pc_none {
    display: none;
}

/*ハンバーガーメニュー*/
input {
    display: none;
}

@media screen and (max-width: 959px) {
    /* 959px以下に適用されるCSS（タブレット用） */

    .tab_menu {
        display: flex;
        justify-content: space-between;
    }

    * {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }

    a,
    a:visited,
    a:hover,
    a:active {
        text-decoration: none;
        color: inherit;
    }

    /*menuコンテンツ*/
    .global_menu {
        position: fixed;
        top: 0;
        left: 0;
        visibility: hidden;
        width: 100%;
        height: 100%;
        transition: all .3s ease-in-out;
        opacity: 0;
        background-image: linear-gradient(0deg, rgba(255, 252, 25, 0.24833683473389356) 0%, rgba(255, 252, 25, 1) 35%);
        ;
    }

    .global_menu ul {
        position: absolute;
        top: 170px;
        left: 50%;
        margin: 0;
        padding: 0;
        width: 100%;
        list-style-type: none;
        transition: all .3s ease-in-out;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        display: -webkit-flex;
        display: flex;
        -webkit-flex-direction: column;
        flex-direction: column;
    }

    .global_menu li {
        -webkit-transform: translateY(50px);
        transform: translateY(50px);
        opacity: 0;
    }

    .global_menu a {
        font-size: 2em;
        display: block;
        padding: 5px 0;
        transition: all .2s ease-in-out;
        text-align: center;
        text-decoration: none;
        color: #000;
        text-shadow: 1px 1px 2px #fff;
    }

    .mobile_none {
        display: none;
    }

    .pc_none {
        display: block;
    }

    .contact_btn a {
        color: #fff;
        background-color: #0dabff;
        padding: .5em 2em;
        font-size: 1em;
        display: block;
        margin-right: 40px;
        letter-spacing: .1em;
    }

    .global_menu a:hover {
        color: #fff;
    }

    /*クリックしたらメニューが開閉の動作*/
    #toggle:checked ~ .global_menu {
        visibility: visible;
        opacity: 1;
    }

    #toggle:checked ~ .global_menu ul {
        top: 70px;
    }

    #toggle:checked ~ .global_menu li {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
        opacity: 1;
    }

    #toggle:checked ~ .global_menu li:nth-child(1) {
        transition: all .3s cubic-bezier(.6, 0, .8, 1.5) .1s;
    }

    #toggle:checked ~ .global_menu li:nth-child(2) {
        transition: all .3s cubic-bezier(.6, 0, .8, 1.5) .2s;
    }

    #toggle:checked ~ .global_menu li:nth-child(3) {
        transition: all .3s cubic-bezier(.6, 0, .8, 1.5) .3s;
    }

    #toggle:checked ~ .global_menu li:nth-child(4) {
        transition: all .3s cubic-bezier(.6, 0, .8, 1.5) .4s;
    }

    #toggle:checked + label.bar {
        background-color: #000;
    }

    .fullscreenmenu #toggle:checked + label.hamburger .bar:nth-child(2) {
        -webkit-transform: translateX(50px);
        transform: translateX(50px);
        opacity: 0;
    }

    .fullscreenmenu #toggle:checked + label.hamburger .bar:nth-child(1) {
        -webkit-transform: translateY(10px) rotate(45deg);
        transform: translateY(10px) rotate(45deg);
    }

    .fullscreenmenu #toggle:checked + label.hamburger .bar:nth-child(3) {
        -webkit-transform: translateY(-8px) rotate(-45deg);
        transform: translateY(-8px) rotate(-45deg);
    }

    /*ハンバーガー*/
    .hamburger {
        position: fixed;
        z-index: 10;
        top: 30px;
        right: 20px;
        display: block;
        cursor: pointer;
    }

    .fullscreenmenu .hamburger .bar {
        width: 30px;
        height: 2px;
        margin: 7px auto;
        transition: all 0.3s ease-in-out;
        background-color: #000;
    }

    .fullscreenmenu .hamburger .bar:nth-child(2) {
        width: 20px;
    }
}

@media screen and (max-width: 559px) {

    /* 559px以下に適用されるCSS（スマホ用） */
    .fullscreenmenu a {
        font-size: 1.5em;
        display: block;
        padding: 5px 0;
        transition: all .2s ease-in-out;
        text-align: center;
        text-decoration: none;
        color: #000;
        text-shadow: 1px 1px 2px #fff;
    }

    /*ハンバーガー*/
    .hamburger {
        top: 12px;
        right: 10px;
    }
}

@media screen and (max-width: 559px) {

    /* 559px以下に適用されるCSS（スマホ用） */
    /*申込みボタン*/

    .contact_btn a {
        line-height: 2em;
        margin: auto 3.5em auto 0;
        padding: .5em 0;
        display: block;
        width: 160px;
        text-align: center;
    }
}

/*----------フッター----------*/
footer {
    background-color: #fffc19;
    line-height: 1.6;
    padding-top: 30px;
}

.footer_wrap {
    display: flex;
    justify-content: space-between;
}

.footer_wrap a {
    color: #000;
    font-size: 1em;
}

.footer_wrap::before {
    content: '';
    display: block;
    height: 100px;
    width: 22.1em;
}

.footer_logo {
    margin: auto;
}

.footer_logo img {
    width: 100px;
    height: auto;
    padding-top: 6px;
}

/*お問い合わせなど*/
.footer_contact {
    margin: 40px 2em 40px 0;
}

/*twitter*/
.twitter_icon {
    text-align: right;
    padding: 0 1.5em;
}

.twitter_icon img {
    display: inline-block;
    width: 25px;
}

.footer_right {
    display: flex;
    justify-content: space-between;
}

.footer_right li {
    padding: 0 1.5em;
}

#line {
    border-right: 1px solid #000;
}

@media screen and (max-width: 959px) {
    /* 959px以下に適用されるCSS（タブレット用） */

    .footer_wrap::before {
        width: 21.1em;
    }

    .footer_contact {
        margin: 40px 1em 40px 0;
    }
}

@media screen and (max-width: 559px) {
    /*559px以下に適用されるCSS（スマホ用） */

    .footer_wrap {
        display: flex;
        flex-direction: column;
    }

    .footer_wrap::before {
        display: none;
    }

    .footer_logo {
        margin: 0 auto;
    }

    /*お問い合わせなど*/
    .footer_contact {
        margin: 10px auto 30px;
    }

    /*twitter*/
    .twitter_icon {
        padding: 0 1em;
    }

    .footer_right li {
        padding: 0 1em;
    }
}

/*コピー*/
small p {
    text-align: center;
    font-size: .8em;
    padding: 0 0 2em;
}

/*共通エリア*/
/*----------メイン----------*/

main {
    line-height: 1.6;
    margin: 0 auto;
}

.content_ttl {
    font-size: 1.5em;
    font-weight: 600;
    color: #000;
    text-align: center;
    position: relative;
    z-index: 5;
}

.under_bold {
    border-bottom: 8px solid #000;
    display: inline-block;
    text-align: center;
}

.under_bold::before,
.under_bold::after {
    content: '';
    display: inline-block;
    width: .5em;
}

/*----------スットンについて----------*/
.about_content {
    background-color: #fffc19;
    background-size: auto;
    padding: 80px 0;
    z-index: 1;
}

.about_tablet {
    display: none;
}

.about_body {
    display: flex;
    justify-content: space-between;
    margin: 200px auto 0;
    max-width: 1200px;
}

.about_circle {
    z-index: 3;
    width: 20%;
    height: auto;
    position: relative;
    top: 0;
    right: 0;
    margin: auto 15%;
}

.circle_imgA {
    position: relative;
    z-index: 3;
    margin-top: 100px;
}

/*背景 円*/
.circle_A {
    position: absolute;
    border-radius: 50%;
    background: #f3f3f3;
    z-index: 2;
    width: 560px;
    height: 560px;
    top: -90px;
    right: -240px;
}

.about_summary {
    position: relative;
    z-index: 5;
    width: 60%;
    margin: 0;
}

/*背景 タイトル*/
#back_ttl {
    position: absolute;
    font-size: 15em;
    color: #fff;
    top: -90px;
    left: 20px;
    line-height: 1;
    font-family: 'Barlow Condensed', 'DIN Condensed', 'Tahoma';
}

.about_message {
    position: relative;
    font-size: 2.5em;
    font-weight: 500;
    margin-bottom: 60px;
    line-height: 1.8;
    letter-spacing: .1em;
}

.about_lead {
    position: relative;
    width: 80%;
    font-size: 1em;
    color: #000;
    letter-spacing: .1em;
    line-height: 2.5em;
    padding-left: 23px;
}

@media screen and (max-width: 959px) {
    /* 959px以下に適用されるCSS（タブレット用） */

    .about_content {
        padding: 50px 0 80px;
    }

    .about_tablet {
        display: block;
        position: relative;
        z-index: 5;
        margin: 0;
    }

    .about_body {
        margin: 50px auto 0;
    }

    .about_none {
        display: none;
    }

    .about_circle {
        margin: 0 7%;
    }

    .circle_imgA {
        margin-top: 60px;
    }

    /*背景 円*/
    .circle_A {
        width: 44vw;
        height: 44vw;
        top: -3vw;
        left: -6vw;
    }

    .about_summary {
        width: 70%;
        margin: 0 auto;
    }

    /*背景 タイトル*/
    #back_ttl {
        top: -50px;
        left: 250px;
        font-size: 13em;
    }

    .about_message {
        font-size: 2em;
        margin: 13% 0 8% 32%;
    }

    .about_lead {
        width: 100%;
        padding: 0 2% 0 0;
        line-height: 2em;
    }
}

@media screen and (max-width: 559px) {
    /* 559px以下に適用されるCSS（スマホ用） */

    .about_content {
        padding: 25% 0 10%;
    }

    .about_body {
        display: flex;
        flex-direction: column;
    }

    .about_circle {
        width: 25%;
        margin: 40px auto 20px;
    }

    .circle_imgA {
        margin-top: 0;
    }

    /*背景 円*/
    .circle_A {
        width: 62vw;
        height: 62vw;
        top: -18vw;
        left: -12vw;
    }

    .about_summary {
        width: 95%;
        margin: 0 auto;
    }

    /*背景 タイトル*/
    #back_ttl {
        font-size: 8em;
        top: -30px;
        left: 10px;
    }

    .about_message {
        font-size: 1.6em;
        padding-bottom: 0;
        margin: 60px 0 30px;
        letter-spacing: 0;
    }

    .about_lead {
        padding: 0;
    }
}

/*----------コーチの紹介----------*/
.coach {
    background-color: #f3f3f3;
    padding: 80px 0 0;
    overflow: hidden;
    z-index: 5;
    position: relative;
}

.coach_inner {
    display: flex;
    justify-content: space-between;
    margin: 50px auto;
    max-width: 1200px;
}

.coach_box {
    margin: 20px auto 0;
}

.coach_name {
    font-size: 2em;
    color: #000;
    letter-spacing: .1em;
    font-weight: 600;
}

.coach_txt {
    width: 100%;
    font-size: 1em;
    letter-spacing: .1em;
    line-height: 2em;
    padding: 0;
}

.coach_img {
    width: 25%;
    height: auto;
    margin: 0 auto;
}

@media screen and (max-width: 959px) {
    /* 959px以下に適用されるCSS（タブレット用） */

    .coach {
        padding: 50px 0 0;
    }

    .coach_inner {
        display: flex;
        flex-direction: column-reverse;
        width: 100%;
        margin: 50px auto 0;
    }

    .coach_box {
        margin: 0 auto;
        line-height: 1em;
    }

    .coach_name {
        text-align: center;
        padding-bottom: 1.5em;
    }

    .coach_img {
        width: 30%;
        margin: 0 auto;
    }
}

@media screen and (max-width: 559px) {
    /* 559px以下に適用されるCSS（スマホ用） */

    .coach_name {
        font-size: 1.5em;
        padding: 0;
    }

    .coach_box {
        width: 95%;
    }

    .coach_img {
        width: 60%;
        padding-left: 15%;
    }
}

/*別ページ・NEW TOP*/
/*----------スタジオ案内----------*/
.studio {
    background-color: #f3f3f3;
    padding: 80px 0 0;
    overflow: hidden;
}

.studio_box {
    display: flex;
    justify-content: space-between;
    margin: 30px auto;
    max-width: 1200px;
}

.studio_txt {
    font-size: 1em;
    letter-spacing: .1em;
    line-height: 2em;
    margin: 0 auto;
}

.studio_img {
    width: 280px;
    height: auto;
    padding: 2% 0;
    margin: 0 auto;
}

@media screen and (max-width: 959px) {
    /* 959px以下に適用されるCSS（タブレット用） */

    .studio {
        padding: 50px 0 0;
    }

    .studio_box {
        display: flex;
        flex-direction: column-reverse;
        width: 100%;
    }

    .studio_img {
        width: 30%;
        margin: 0 auto;
    }
}

@media screen and (max-width: 559px) {
    /* 559px以下に適用されるCSS（スマホ用） */

    .studio {
        padding-top: 50px;
    }

    .studio_box {
        margin: 30px auto 0;
    }

    .studio_txt {
        width: 95%
    }

    .studio_img {
        width: 70%;
    }
}

/*----------ニュース---------*/
.news {
    background-color: #f3f3f3;
    padding-top: 80px;
    overflow: hidden;
}

.news_flame {
    margin: 0 auto 80px;
    max-width: 1200px;
}

.news_inner {
    background: #fff;
    margin: 50px 100px 0;
    border-radius: 50px;
}

.news_box {
    padding: 60px 50px 0;
}

.news_item {
    display: flex;
    justify-content: flex-start;
    border-bottom: 1px solid #000;
    padding-bottom: 5px;
    margin-bottom: 50px;
}

.news_item dt {
    padding: 0 50px;
}

.news_item a {
    text-decoration: none;
    color: #000;
}

.news_btn {
    display: block;
    text-align: right;
    color: #000;
    padding: 0 50px 30px;
}


@media screen and (max-width: 559px) {
    /* 559px以下に適用されるCSS（スマホ用） */

    .news {
        padding-top: 50px;
    }

    .news_inner {
        margin: 30px 10px;
    }

    .news_box {
        padding: 40px 20px 0;
    }

    .news_item {
        display: flex;
        flex-direction: column;
        padding-bottom: 10px;
        margin-bottom: 20px;
    }

    .news_item dt {
        padding: 0 0 5px;
    }

    .news_item dd {
        line-height: 2em;
    }

    .news_btn {
        padding: 0 30px 30px;
    }
}

/*----------アクセス----------*/
.access {
    background-color: #f3f3f3;
    padding-top: 80px;
    overflow: hidden;
}

.access_txt {
    text-align: center;
    padding: 50px 0;
}

.gmap {
    text-align: center;
    height: 0;
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
}

.gmap iframe {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
}

@media screen and (max-width: 959px) {
    /* 959px以下に適用されるCSS（タブレット用） */

    .access {
        padding-top: 50px;
    }
}

@media screen and (max-width: 559px) {
    /* 559px以下に適用されるCSS（スマホ用） */

    .access_txt {
        padding: 30px 0;
        line-height: 2em;
    }
}

/*-----背景 タイトル-----*/
.back_ttl {
    position: absolute;
    font-size: 15em;
    color: #fff;
    top: -90px;
    left: 0;
    line-height: 1;
    font-family: 'Barlow Condensed', 'DIN Condensed', 'Tahoma';
}

@media screen and (max-width: 959px) {
    /* 959px以下に適用されるCSS（タブレット用） */

    .back_ttl {
        font-size: 13em;
        top: -80px;
    }
}

@media screen and (max-width: 559px) {
    /* 559px以下に適用されるCSS（スマホ用） */

    .back_ttl {
        font-size: 8em;
        top: -40px;
        left: 10px;
    }
}

/*-----br 表示切り替え-----*/
/*PC・タブレットで表示、スマホで非表示*/
.br_none {
    display: block;
}

/*PC・タブレットで非表示、スマホで表示*/
.br_show {
    display: none;
}

/*タブレットで表示、PC・スマホで非表示*/
.br_tab {
    display: none;
}

/*PCで表示、タブレット・スマホで非表示*/
.br_pc {
    display: block;
}

@media screen and (max-width: 959px) {
    /* 959px以下に適用されるCSS（タブレット用） */

    /*PC・タブレットで表示、スマホで非表示*/
    .br_none {
        display: block;
    }

    /*PC・タブレットで非表示、スマホで表示*/
    .br_show {
        display: none;
    }

    /*タブレットで表示、PC・スマホで非表示*/
    .br_tab {
        display: block;
    }

    /*PCで表示、タブレット・スマホで非表示*/
    .br_pc {
        display: none;
    }
}

@media screen and (max-width: 559px) {
    /* 559px以下に適用されるCSS（スマホ用） */

    /*PC・タブレットで表示、スマホで非表示*/
    .br_none {
        display: none;
    }

    /*PC・タブレットで非表示、スマホで表示*/
    .br_show {
        display: block;
    }

    /*タブレットで表示、PC・スマホで非表示*/
    .br_tab {
        display: none;
    }

    /*PCで表示、タブレット・スマホで非表示*/
    .br_pc {
        display: none;
    }
}
