@charset "UTF-8";

/* common */
html {
    scroll-behavior: smooth;
}

body {
    padding-top: 120px;
    font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
}

:root {
    --headerPc: 120px;
    --headerSp: 82px;
    scroll-padding: var(--headerPc);
}

.inner {
    max-width: 1280px;
    width: 100%;
    padding: 0 15px;
    margin: 0 auto;
    box-sizing: border-box;
}

.is-sp {
    display: none;
    pointer-events: none;
}

.heading {
    position: relative;
    width: 100%;
    background-image: url(../img/bg_yoga01.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.heading::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(249, 194, 112, 0.8);
}

.heading span {
    position: relative;
    display: block;
    max-width: 960px;
    width: 100%;
    margin: 0 auto;
    padding: 15px 20px;
    font-size: 28px;
    color: #fff;
    text-align: center;
    z-index: 1;
}

.heading span::first-letter {
    font-size: 35px;
}


/* header */
header {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 120px;
    padding: 10px 0;
    background-color: #fff;
    z-index: 100;
}
header .header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .header-top figure {
    width: 300px;
}

header .header-top figure img {
    width: 100%;
}

header .header-top .header-top-contact {
    display: flex;
    align-items: center;
}

header .header-top .header-top-contact a {
    transition: .3s;
}

header .header-top .header-top-contact a:hover {
    opacity: .8;
}

header .header-top .header-top-contact .header-top-contact__tel p {
    padding-right: 20px;
    font-size: 20px;
    text-align: right;
}

header .header-top .header-top-contact .header-top-contact__tel p span {
    display: block;
    font-size: 14px;
}

header .header-top .header-top-contact .header-top-contact__link a {
    display: block;
    padding: 11px 25px;
    text-align: center;
    font-size: 14px;
    color: #fff;
    background-color: rgb(182, 208, 28);
}

header .header-top .header-top-contact .header-top-contact__telbtn a {
    display: block;
    padding: 11px 25px;
    text-align: center;
    font-size: 14px;
    color: #fff;
    background-color: rgb(229, 129, 0);
}

header nav ul {
    display: flex;
    justify-content: center;
    padding: 10px 0;
}

header nav ul li {
    position: relative;
    padding: 0 20px;
    font-size: 22px;
    word-wrap: break-word;
    line-height: 1.6;
}

header nav ul li::before {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    content: "";
    display: block;
    width: 1px;
    height: 60%;
    background-color: #000;
}

header nav ul li:last-of-type::before {
    display: none;
}

header nav ul li a {
    display: block;
    transition: .3s;
}

header nav ul li a:hover {
    opacity: .5;
}


/* SPナビゲーション */
.header-btn {
    display: none;
}

/*ボタン外側※レイアウトによってpositionや形状は適宜変更してください*/
.openbtn1{
    position: relative;/*ボタン内側の基点となるためrelativeを指定*/
    background:#fff;
    cursor: pointer;
    width: 50px;
    height:50px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

/*ボタン内側*/
.openbtn1 span{
    display: inline-block;
    transition: all .4s;/*アニメーションの設定*/
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
    background: #05161a;
    width: 45%;
}

.openbtn1 span:nth-of-type(1) {
    top:15px;
}

.openbtn1 span:nth-of-type(2) {
    top:23px;
}

.openbtn1 span:nth-of-type(3) {
    top:31px;
}

/*activeクラスが付与されると線が回転して×に*/

.openbtn1.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

.openbtn1.active span:nth-of-type(2) {
  opacity: 0;/*真ん中の線は透過*/
}

.openbtn1.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}


/* main-visual */
.main-visual {
    position: relative;
    background-image: url(../img/main_pc.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    margin-bottom: 13%;
    padding-top: 32%;
}

.main-visual figure {
    position: absolute;
    bottom: 0;
    width: 100%;
    transform: translateY(100%);
}

.main-visual figure img {
    width: 100%;
}

/* hours */
.hours {
    padding: 40px 0 0;
}

.hours h2 {
    max-width: 940px;
    width: 100%;
    margin: 0 auto;
    padding-bottom: 5px;
    font-size: 28px;
    text-align: left;
    border-bottom: 2px solid #F9C270;
}

.hours h2::first-letter {
    font-size: 35px;
}

.hours figure {
    max-width: 940px;
    width: 100%;
    margin: 0 auto;
    padding: 20px 0;
}

.hours figure img {
    width: 100%;
}

.hours ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0;
    width: 100%;
}

.hours ul li img {
    width: 100%;
}


/* price */
.price figure {
    max-width: 940px;
    width: 100%;
    margin: 0 auto;
}

.price figure img {
    width: 100%;
}

.price-coupon {
    max-width: 680px;
    width: 100%;
    margin: 40px auto;
    border: 1px solid #ccc;
}

.price-coupon h3 {
    padding: 10px;
    background-color: #F9C270;
    text-align: center;
    font-size: 18px;
    color: #fff;
    box-sizing: border-box;
}

.price-coupon-contents {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 20px 20px 0;
    text-align: center;
}

.price-coupon-contents .price-coupon-contents__text h4 {
    font-size: 22px;
}

.price-coupon-contents .price-coupon-contents__text h4 span {
    font-size: 32px;
}

.price-coupon-contents .price-coupon-contents__text button {
    width: 100%;
    margin: 20px 0;
}

.price-coupon-contents .price-coupon-contents__text button a {
    display: block;
    max-width: 365px;
    width: 100%;
    padding: 16px 8px;
    font-size: 20px;
    text-align: center;
    color: #fff;
    background-color: #F9C270;
    transition: .3s;
}

.price-coupon-contents .price-coupon-contents__text button a:hover {
    opacity: .5;
}

.price-coupon-contents .price-coupon-contents__text p {
    font-size: 12px;
    color: #05161a;
}

.price-coupon-contents figure {
    width: 255px;
    margin-top: -90px;
    padding: 0 10px;
    box-sizing: border-box;
}

.price-coupon-contents figure img {
    width: 100%;
}

.price-coupon-contact ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #f7f7f7;
    text-align: center;
    font-size: 20px;
}

.price-coupon-contact ul li:first-of-type,
.price-coupon-contact ul li:last-of-type {
    font-size: 12px;
}


/* point */
.point {
    background-color: rgb(255, 251, 207);
    padding-bottom: 50px;
}

.point .point-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 50px;
}

.point .point-content:first-of-type {
    margin-top: 0;
}

.point .point-content figure {
    width: 49%;
    order: 2;
}

.point .point-content figure img {
    width: 100%;
}

.point .point-content .point-content__text {
    max-width: 700px;
    width: 49%;
    order: 1;
}

.point .point-content .point-content__text h3,
.point .point-content .point-content__text p {
}

.point .point-content .point-content__text h3 {
    margin-bottom: 20px;
    font-size: 20px;
}

.point .point-content .point-content__text h3 span {
    background-color: rgb(255, 255, 255);
}

.point .point-content .point-content__text p {
    margin-top: 1.5em;
    font-size: 18px;
    line-height: 1.5;
}

.point .point-content .point-content__text p:first-of-type {
    margin-top: 0;
}


/* staff */
.staff ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-start;
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    padding: 40px 0 20px;
}

.staff ul li {
    width: 33%;
    max-width: 393px;
}

.staff ul li .staff_img {
    width: 100%;
    border-radius: 50%;
    height: 281px;
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
}

.staff ul li h3 {
    margin-top: 20px;
    font-size: 28px;
    text-align: center;
}


.staff ul li p {
    margin-top: 20px;
    font-size: 14px;
    line-height: 1.5;
}

.staff ul li .button {
    max-width: 196px;
    width: 100%;
    height: 45px;
    margin: 20px auto 0;
}

.staff ul li .button a {
    display: block;
    padding: 12px 6px;
    font-size: 16px;
    color: #fff;
    text-align: center;
    background-color: rgb(229, 129, 0);
    box-sizing: border-box;
    transition: .3s;
}

.staff ul li .button a:hover {
    opacity: .5;
}

/* gallery */
.gallery {
    margin-top: 60px;
}

.gallery h2 {
    position: relative;
    max-width: 940px;
    margin: 0 auto;
    padding: 14px 28px;
    text-align: center;
    font-size: 28px;
    color: #fff;
    background-color: #F9C270;
}

.gallery h2::first-letter {
    font-size: 32px;
}

.gallery h2::before {
    position: absolute;
    bottom: -20px;
    left: 60px;
    content: "";
    display: block;
    width: 20px;
    height: calc(25px / 2 * tan(60deg));
    clip-path: polygon(50% 0, 100% 100%, 0 100%);
    z-index: 1;
    background-color: #F9C270;
    transform: rotate(180deg);
}

.gallery ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0;
    margin-top: 30px;
}

.gallery ul li {
    width: 33.333333%;
}

.gallery ul li a {
    display: block;
    aspect-ratio: 1 / 1;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* movie */
.movie {
    max-width: 700px;
    width: 100%;
    margin: 60px auto 0;
}

.movie h2 {
    margin: 0 auto;
    text-align: center;
    font-size: 28px;
}

.movie h2::first-letter {
    font-size: 32px;
}

.movie iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    margin-top: 20px;
}


/* info */
.info {
    margin-top: 60px;
}

.info h2 {
    margin: 0 auto;
    text-align: center;
    font-size: 28px;
}

.info h2::first-letter {
    font-size: 32px;
}

.info .info-contents {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    max-width: 940px;
    margin: 20px auto 0;
}

.info .info-contents:not(:first-of-type) {
    margin-top: 80px;
}


.info .info-contents figure {
    max-width: 450px;
    width: 100%;
}

.info .info-contents figure img {
    width: 100%;
}

.info-contents__data {
    max-width: 490px;
    width: 100%;
}

.info-contents__data table {
    width: 100%;
    line-height: 1.5;
}

.info-contents__data table th {
    width: 160px;
    padding: 10px;
    font-size: 16px;
    font-weight: normal;
    border-bottom: 1px solid #ccc;
}

.info-contents__data table td {
    padding: 10px;
    font-size: 16px;
    font-weight: normal;
    border-bottom: 1px solid #ccc;
    text-align: center;
}

.info-contents__data table td iframe {
    margin-top: 10px;
}

.info-contents__data p {
    margin-top: 20px;
    text-align: center;
    line-height: 1.7;
}

.info-contents__data p a {
    display: block;
    padding: 12px 6px;
    font-size: 16px;
    color: #fff;
    text-align: center;
    background-color: rgb(229, 129, 0);
    box-sizing: border-box;
    transition: .3s;
}

.info-contents__data p a:hover {
    opacity: .5;
}

footer {
    margin-top: 100px;
    padding: 100px 15px;
    background-color: #F9C270;
}

footer small {
    display: block;
    text-align: center;
    color: #fff;
}

/* sp-contact */
.sp-contact {
    position: fixed;
    bottom: 0;
    left: 0;
    display: none;
    width: 100%;
    z-index: 3;
}

.sp-contact ul {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.sp-contact ul li {
    width: 50%;
}

.sp-contact ul li a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 57px;
    color: #fff;
    font-size: 16px;
}

.sp-contact ul li.sp-contact__line a {
    background-color: rgb(182, 208, 28);
}

.sp-contact ul li.sp-contact__tel a {
    background-color: rgb(229, 129, 0);
}


@media screen and (max-width: 767px) {
    /* common */
    body {
        padding-top: 82px;
    }

    :root {
        scroll-padding: var(--headerSp);
    }

    .heading span {
        font-size: 20px;
    }

    .heading span::first-letter {
        font-size: 32px;
    }

    .is-pc {
        display: none;
        pointer-events: none;
    }

    .is-sp {
        display: block;
        pointer-events: all;
    }

    /* header */
    header {
        display: flex;
        align-items: center;
        height: 82px;
    }

    header .header-top figure {
        width: 250px;
    }

    header .header-top .header-top-contact {
        display: none;
    }

    .header-btn {
        position: absolute;
        top: 50%;
        right: 15px;
        transform: translateY(-50%);
        display: block;
    }

    header nav {
        position: absolute;
        top: 82px;
        left: 0;
        display: none;
        width: 100%;
        background-color: #fff;
    }

    header nav ul {
        flex-direction: column;
        width: 100%;
        padding: 0;
    }

    header nav ul li {
        text-align: center;
        border-bottom: 1px solid #ccc;
    }

    header nav ul li::before {
        display: none;
    }

    header nav ul li a {
        padding: 10px 0;
    }

    header nav ul li a:hover {
        opacity: .5;
    }

    /* main-visual */
    .main-visual {
        height: 500px;
        margin-top: 11%;
        margin-bottom: 0;
        padding-top: 0;
        background-image: url(../img/main_sp.jpg);
    }

    .main-visual figure {
        top: 0%;
        bottom: auto;
        transform: translateY(-100%);
    }


    /* hours */
    .hours h2 {
        font-size: 20px;
    }

    .hours h2::first-letter {
        font-size: 27px;
    }

    /* price */
    .price-coupon-contents figure {
        margin-top: 20px;
    }

    .price-coupon-contact ul {
        flex-direction: column;
    }

    .price-coupon-contact ul li {
        width: 100%;
        padding: 10px;
    }


    /* point */
    .point .point-content {
        flex-direction: column;
    }

    .point .point-content figure {
        order: 1;
        width: 100%;
    }

    .point .point-content .point-content__text {
        order: 2;
        width: 100%;
        padding: 0 15px;
        box-sizing: border-box;
    }


    /* staff */
    .staff ul {
        flex-direction: column;
    }

    .staff ul li {
        width: 100%;
        margin: 30px auto 0;
        padding: 0 15px;
        box-sizing: border-box;
    }

    .staff ul li:first-of-type {
        margin-top: 0;
    }

    /* info */
    .info .info-contents {
        flex-direction: column;
    }

    .info .info-contents:not(:first-of-type) {
        margin-top: 80px;
    }

    .info-contents__data table th {
        display: block;
        width: 100%;
        border: none;
        box-sizing: border-box;
        font-weight: 600;
    }

    .info-contents__data table td {
        display: block;
        width: 100%;
        box-sizing: border-box;
        text-align: left;
    }

    .info-contents__data table td iframe {
        width: 100%;
    }

    footer {
        padding: 50px 15px 107px;
    }

    /* sp-contact */
    .sp-contact {
        display: block;
    }
}