@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Shippori+Mincho:wght@400;500;600;700;800&display=swap');
/* ------------------------------------------
  Utility Class
------------------------------------------ */

/* clearfix */

.clearfix:after {
    display: block;
    visibility: hidden;
    clear: both;
    height: 0;
    content: '.';
}

/* ------------------------------------------
  Common
------------------------------------------ */

* {
    box-sizing: border-box;
    word-break: break-all;
}

html {
    font-size: 10px;
    height: 100%;
}

body {
    font-family: "Shippori Mincho", serif;
    font-weight: 400;
    line-height: 1.7;
    position: relative;
    /* min-width: 1080px; */
    color: #080808;
    -webkit-text-size-adjust: none;
}

body.layer {
    overflow: hidden;
    height: 100%;
}

a, a img {
    transition: color .3s ease, background .3s ease, opacity .3s ease;
    text-decoration: none;
    color: inherit;
}

a:hover {
    text-decoration: none;
    opacity: .75;
}

a:hover * {
    opacity: .75;
}

a:focus {
    outline: none;
}

@media(min-width: 768px) {
    a[href^='tel:'] {
        pointer-events: none;
    }
}

@media(max-width: 767px) {
    a[href^='tel:'] {
        text-decoration: underline;
    }
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1, h2, h3, h4, h5, h6 {
    line-height: inherit;
    margin: 0;
}

ul, ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

p {
    margin: 0;
}

.clear {
    clear: both;
}

.only_pc {
    display: block !important;
}

.only_sp {
    display: none !important;
}

input, button, select, textarea {
    font-family: 'Noto Sans JP', sans-serif;
    border: none;
    border-radius: 0;
    background: none;
    -webkit-appearance: none;
}

input[type=checkbox], input[type=radio] {
    position: absolute;
    z-index: -1;
    width: 1px;
    height: 1px;
    margin: 0;
    opacity: 0;
}

.container {
    width: 1000px;
    margin: 0 auto;
}

@media screen and (max-width: 767px) {
    body {
        min-width: inherit;
    }
    .container {
        width: auto;
        margin: 0 20px;
    }
    .only_pc {
        display: none !important;
    }
    .only_sp {
        display: block !important;
    }
}

.header {
    width: 100%;
    position: relative;
    color: #111;
}

.header[data-theme="light"] {
    color: #FFF;
}

.header[data-theme="dark"] {
    color: #111;
}

.header.is-open {
    color: #fff;
}

.header.is-open .logo_light {
    display: block;
}

.header.is-open .logo_dark {
    display: none;
}

.header_fix {
    padding: 0 168px 0 60px;
    width: 100%;
    height: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    z-index: 99;
    background-color: initial;
    transition: .3s;
}

.header.is-scrolled .header_fix {
    background-color: rgba(0, 0, 0, 0.5);
}

.header_fix_left_logo {
    width: 81px;
    display: block;
    position: fixed;
    top: 24px;
    left: 60px;
    background-image: none;
}

.header.is-scrolled .header_fix_left_logo {
    width: 118px;
    height: 43px;
    background-image: url(../img/top/top_mv_logo.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% auto;
}

.header.is-scrolled .header_fix_left_logo img {
    display: none;
}

/* まず両方消す */

.logo_light, .logo_dark {
    display: none;
}

/* light時は白ロゴだけ表示 */

.header[data-theme="light"] .logo_light {
    display: block;
}

.header[data-theme="light"] .logo_dark {
    display: none;
}

/* dark時は黒ロゴだけ表示 */

.header[data-theme="dark"] .logo_dark {
    display: block;
}

.header[data-theme="dark"] .logo_light {
    display: none;
}

.header_fix_right {
    display: flex;
}

.header_fix_right_contact {
    color: currentColor;
    font-size: 18px;
    font-weight: 500;
    line-height: 3;
    letter-spacing: 2;
    padding: 0 50px;
    border: 1px solid currentColor;
}

.header[data-theme="light"] .header_fix_right_contact {
    background-color: rgba(0, 0, 0, 0.5);
}

.header[data-theme="dark"] .header_fix_right_contact {
    background-color: rgba(255, 255, 255, 0.7);
}

/* ハンバーガー */

.header_humburger {
    position: fixed;
    z-index: 999;
    top: 30px;
    right: 30px;
}

.header_humburger_symbol {
    width: 58px;
    height: 40px;
    position: relative;
    cursor: pointer;
}

.header_humburger_symbol span {
    width: 100%;
    height: 2px;
    background-color: currentColor;
    display: block;
    position: absolute;
    transition: 0.7s ease;
}

.header_humburger_symbol span:nth-child(2) {
    top: 14px;
}

.header_humburger_symbol span:nth-child(3) {
    top: 28px;
}

@media screen and (max-width: 767px) {
    /* ハンバーガー */
    .header_humburger {
        position: fixed;
        z-index: 999;
        top: 20px;
        right: 20px;
    }
    .header_humburger_symbol {
        width: 40px;
        height: 20px;
    }
    .header_humburger_symbol span {
        height: 2px;
    }
    .header_humburger_symbol span:nth-child(2) {
        top: 10px;
    }
    .header_humburger_symbol span:nth-child(3) {
        top: 20px;
    }
    .header_humburger_symbol.active_hum span:nth-child(3) {
        top: 15px;
    }
    .header.is-scrolled .header_fix_left_logo {
        width: 80px;
        height: 30px;
    }
}

/* ばつ */

.active_hum {
    transition: 0.3s ease;
}

.active_hum span {
    transform: rotate(30deg);
    top: 14px;
    background-color: currentColor;
}

.active_hum span:nth-child(2) {
    opacity: 0;
}

.active_hum span:nth-child(3) {
    transform: rotate(-30deg);
    top: 14px;
}

/* ハンバーガー中身 */

.humburger_content {
    background-color: #161922;
    height: 100vh;
    position: fixed;
    z-index: 100;
    width: 100%;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.hum_open {
    opacity: 1;
    pointer-events: auto;
}

.humburger_content {
    overflow-y: scroll;
    height: 100vh;
}

.humburger_content_container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0 100px 0;
    color: #FFF;
}

.humburger_content_left {
    width: 140px;
    margin: 0 auto;
}

.humburger_content_left_logo {
    font-size: 29px;
    font-weight: 500;
    letter-spacing: .15em;
    line-height: 1.2;
    position: relative;
    display: block;
    width: 120px;
    margin: 0 auto;
}

.humburger_content_left_logo span {
    font-size: 23px;
}

.humburger_content_left_logo::before {
    content: "";
    position: absolute;
    background-image: url(../img/logo_mark.png);
    background-size: 57px 70px;
    width: 57px;
    height: 70px;
    top: 0;
    left: -82px;
}

.humburger_content_left_call {
    margin-top: 43px;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: .15em;
}

.humburger_content_left_call span {
    font-size: 13px;
    letter-spacing: .15em;
}

.humburger_content_left_adress {
    margin-top: 40px;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: .2em;
}

.humburger_content_left_sns {
    margin-top: 36px;
    display: flex;
}

.humburger_content_left_sns_item+.humburger_content_left_sns_item {
    margin-left: 18.5px;
}

.humburger_content_left_sns_item_img {
    display: block;
    width: 19.5px;
}

.humburger_content_left_contact {
    margin-top: 41px;
    display: table;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: .2em;
    line-height: 3;
    padding: 0 26px;
    border: 1px solid #FFF;
    transition: .3s;
}

.humburger_content_left_contact:hover {
    background-color: #CC151D;
    border: 1px solid #CC151D;
    color: #fff;
    opacity: 1;
}

.humburger_content_left_contact+.humburger_content_left_contact {
    margin-top: 20px;
}

.humburger_content_right {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.humburger_content_right_1_item {
    display: table;
    margin: 0 auto;
    position: relative;
}

.humburger_content_right_1_item+.humburger_content_right_1_item {
    margin-top: 30px;
}

.humburger_content_right_1_item_content {
    font-size: 18.5px;
    font-weight: 400;
    letter-spacing: .2em;
    line-height: 1.2;
    transition: .3s;
    border-bottom: rgba(0, 0, 0, 0) 1px solid;
}

.humburger_content_right_1_item_content:hover {
    border-bottom: #fff 1px solid;
}

.humburger_content_right_2 {
    margin-left: 138px;
}

.humburger_content_right_2_top_item {
    padding-left: 48px;
    position: relative;
}

.humburger_content_right_2_top_item::before {
    content: "";
    position: absolute;
    background-color: #FFF;
    background-size: 22px 1px;
    width: 22px;
    height: 1px;
    top: 50%;
    left: 0px;
}

.humburger_content_right_2_top_item+.humburger_content_right_2_top_item {
    margin-top: 51px;
}

.humburger_content_right_2_top_item_content {
    font-size: 18.5px;
    font-weight: 400;
    letter-spacing: .2em;
    line-height: 1.2;
}

.humburger_content_right_2_top_item_content {
    transition: .3s;
    border-bottom: rgba(0, 0, 0, 0) 1px solid;
}

.humburger_content_right_2_top_item_content:hover {
    border-bottom: #fff 1px solid;
}

.humburger_content_right_2_bottom {
    margin-top: 56px;
}

.humburger_content_right_2_bottom_title {
    font-size: 18.5px;
    font-weight: 500;
    letter-spacing: .15em;
    line-height: 1.2;
}

.humburger_content_right_2_bottom_title_list {
    margin-top: 20px;
}

.humburger_content_right_2_bottom_title_list_item {
    padding-left: 37px;
    position: relative;
}

.humburger_content_right_2_bottom_title_list_item::before {
    content: "";
    position: absolute;
    background-color: #FFF;
    background-size: 22px 1px;
    width: 22px;
    height: 1px;
    top: 50%;
    left: 0px;
}

.humburger_content_right_2_bottom_title_list_item+.humburger_content_right_2_bottom_title_list_item {
    margin-top: 20px;
}

.humburger_content_right_2_bottom_title_list_item_content {
    font-size: 13px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: .15em;
    border-bottom: rgba(0, 0, 0, 0) 1px solid;
    transition: .3s;
}

.humburger_content_right_2_bottom_title_list_item_content:hover {
    border-bottom: #fff 1px solid;
}

.sp_humburger_content {
    display: none;
}

.sp_fix_menu {
    display: none;
}

@media screen and (max-width: 767px) {
    .header_fix {
        padding: 0 20px;
        width: 100%;
        height: 60px;
    }
    .header_fix_left_logo {
        width: 60px;
        top: 10px;
        left: 20px;
    }
    .humburger_content_container {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 100px 0 100px 0;
        color: #FFF;
    }
    .humburger_content_right_1_item_content {
        font-size: 16px;
    }
    .humburger_content_right {
        margin-top: 30px;
    }
    .humburger_content_left_logo {
        width: 100px;
        margin: 0 auto;
    }
    .humburger_content_right_1_item+.humburger_content_right_1_item {
        margin-top: 15px;
    }
}

/* ------------------------------------------
  footer
------------------------------------------ */

.footer {
    background-color: #171717;
    padding: 30px 0 20px;
    margin-top: 50px;
}

.footer_main {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.footer_main_left {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer_main_left_logo {
    display: block;
    width: 81px;
}

.footer_main_left_text {
    margin-left: 40px;
}

.footer_main_left_text_item {
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0.05em;
    line-height: 1.5;
    text-align: left;
    color: #fff;
}

.footer_main_left_text_item+.footer_main_left_text_item {
    margin-top: 10px;
}

.footer_copy {
    margin-top: 20px;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0.05em;
    line-height: 1.3;
    text-align: center;
    color: #fff;
}

.footer_main_right {
    display: flex;
}

.footer_main_right_menu+.footer_main_right_menu {
    margin-left: 40px;
}

.footer_main_right_menu_item+.footer_main_right_menu_item {
    margin-top: 15px;
}

.footer_main_right_menu_item a {
    display: block;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0.05em;
    line-height: 1.3;
    text-align: left;
    color: #fff;
}

.hoop_gym_sns_footer {
    display: flex;
    margin-top: 10px;
}

.hoop_gym_access_sns_link_footer {
    display: block;
    width: 30px;
}

.hoop_gym_access_sns_insta_footer {
    display: block;
    width: 30px;
    margin-left: 20px;
}

.humburger_content .hoop_gym_sns_footer {
    margin-top: 40px;
    justify-content: center;
}

.humburger_content .hoop_gym_access_sns_link_footer {
    display: block;
    width: 50px;
}

.humburger_content .hoop_gym_access_sns_insta_footer {
    display: block;
    width: 50px;
    margin-left: 20px;
}

@media screen and (max-width: 767px) {
    .footer {
        padding: 40px 20px 20px;
        margin-top: 50px;
    }
    .footer_main {
        display: block;
    }
    .footer_main_left {
        display: block;
    }
    .footer_main_left_logo {
        display: block;
        width: 81px;
        margin: 0 auto;
    }
    .footer_main_left_text {
        margin: 40px auto 0;
        display: table;
        text-align: center;
    }
    .footer_main_left_text_item {
        font-weight: 500;
        font-size: 13px;
        text-align: center;
    }
    .footer_main_left_text_item+.footer_main_left_text_item {
        margin-top: 10px;
    }
    .footer_copy {
        margin-top: 40px;
        font-weight: 500;
        font-size: 13px;
        letter-spacing: 0.05em;
        line-height: 1.3;
        text-align: center;
        color: #fff;
    }
    .footer_main_right {
        margin-top: 40px;
        justify-content: center;
    }
    .footer_main_right_menu_item+.footer_main_right_menu_item {
        margin-top: 15px;
    }
    .footer_main_right_menu_item a {
        font-size: 13px;
        text-align: center;
    }
    .hoop_gym_sns_footer {
        justify-content: center;
    }
}