body {
    font-family: 'Noto Sans JP', sans-serif;
}

h2,
h3,
h4,
h5 {
    font-weight: 700;
    margin: 0 0 15px 0;
}

h2 {
    font-size: 31px;
}

h3 {
    font-size: 25px;
}

h4 {
    font-size: 21px;
}

h5 {
    font-size: 17px;
}

p {
    line-height: 2;
    margin: 0 0 1em 0;
}

th,
td {
    font-weight: 400;
}

/*-----------------------------
追従ボタン
-----------------------------*/
.floating {
    max-width: 1060px;
    width: 100%;
    margin: 0 auto;
    left: 0;
    right: 0;
    padding: 0 50px;
    z-index: 9999;
    position: fixed;
    bottom: 0;
    transform: translateY(100%);
    transition: .5s ease;
}

.fv__floating {
    position: absolute;
    bottom: -1px;
    transform: none;
    transition: none;
}

.floating.is-fixed {
    transform: translateY(0);
}

.floating__btns {
    display: flex;
    flex-wrap: wrap;
    margin-left: -50px;
}

.floating__btn {
    width: calc(100% / 3 - 50px);
    margin-left: 50px;
}

.floating__btn a {
    display: block;
    transition: .15s ease;
}

.floating__btn img {
    width: 100%;
}

@media (hover:hover) {
    .floating__btn a:hover {
        opacity: .9;
    }
}

@media (max-width:1599px) {
    .fv__floating {
        max-width: calc(1060px * .8);
    }
}

@media (max-width:1279px) {
    .fv__floating {
        max-width: calc(1060px * .7);
    }
}

@media (max-width:1024px) {
    .fv__floating {
        max-width: calc(1060px * .6);
    }
}

@media (max-width:850px) {
    .fv__floating {
        max-width: calc(1060px * .5);
    }

    .floating__btns {
        margin-left: -30px;
    }

    .floating__btn {
        width: calc(100% / 3 - 30px);
        margin-left: 30px;
    }
}

@media (max-width:750px) {
    .fv__floating {
        max-width: 100%;
    }

    .floating {
        padding: 0 10px;
    }

    .floating__btns {
        margin-left: -12px;
    }

    .floating__btn {
        width: calc(100% / 3 - 12px);
        margin-left: 12px;
    }
}

/*-----------------------------
レイアウト
-----------------------------*/
.ly-cont {
    max-width: 1060px;
    width: 100%;
    margin: 0 auto;
    padding: 0 50px;
}

.cmp {
    background-image: url(../img/2024/05/bg.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.cmp .ly-cont {
    padding-top: 35px;
    padding-bottom: 60px;
    max-width: 945px;
}

.concept .ly-cont {
    padding-top: 48px;
    padding-bottom: 99px;
}

.plan .ly-cont {
    padding-top: 140px;
    padding-bottom: 143px;
}

.info .ly-cont {
    padding-top: 62px;
    padding-bottom: 91px;
}

@media(max-width: 743px) {
    .cmp {
        background-image: url(../img/2024/05/sp/bg.jpg);
    }
}

/*-----------------------------
Header
-----------------------------*/
.header {
    /* background : -moz-linear-gradient(39.68% 266.55% 45.84deg,rgba(234, 85, 20, 1) 0%,rgba(238, 121, 59, 1) 99.95%);
    background : -webkit-linear-gradient(45.84deg, rgba(234, 85, 20, 1) 0%, rgba(238, 121, 59, 1) 99.95%);
    background : -webkit-gradient(linear,39.68% 266.55% ,71.79% -407.23% ,color-stop(0,rgba(234, 85, 20, 1) ),color-stop(0.9995,rgba(238, 121, 59, 1) ));
    background : -o-linear-gradient(45.84deg, rgba(234, 85, 20, 1) 0%, rgba(238, 121, 59, 1) 99.95%);
    background : -ms-linear-gradient(45.84deg, rgba(234, 85, 20, 1) 0%, rgba(238, 121, 59, 1) 99.95%);
    background : linear-gradient(44.16deg, rgba(234, 85, 20, 1) 0%, rgba(238, 121, 59, 1) 99.95%); */
}

.header__inner {
    padding: 14px 24px;
}

.header__logo {
    max-width: 390px;
    width: 100%;
    margin: 0 auto;
}

.header__logo a {
    display: block;
}

.header__logo img {
    max-width: 100%;
    height: auto;
}

/*-----------------------------
FV
-----------------------------*/
.fv {
    position: relative;
}

.fv img {
    width: 100%;
}

.fv__link {
    display: none;
    position: absolute;
    bottom: 16px;
    width: 58px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 16;
}

.fv__link img {
    max-width: 100%;
    height: auto;
}

.fv__link {
    -webkit-animation: fv-arrow 2s infinite;
    animation: fv-arrow 2s infinite;
}

@-webkit-keyframes fv-arrow {
    0% {
        margin-bottom: 0;
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        margin-bottom: -15px;
        opacity: 0;
    }
}

/*-----------------------------
キャンペーン
-----------------------------*/
.cmp {
  position: relative;
  z-index: 0;
}

.cmp__img-contents img {
    width: 100%;
}

.cmp__btn-unit {
    font-size: 0;
}

.cmp__btn {
    display: inline-block;
    width: 100%;
    margin-bottom: 18px;
}

.cmp__btn img.sp {
    display: none;
}

/* ボタン２列 */
.cmp__btn-unit .cmp__btn {
    width: calc(50% - 10px);
    margin-right: 20px;
}

.cmp__btn-unit .cmp__btn:nth-child(2n){
    margin-right: 0;
}

.cmp__btn img {
    max-width: 100%;
    height: auto;
}

@media (max-width:1650px) {
    .cmp::before {
        left: 6.2%;
    }
}

/*-----------------------------
コンセプト
-----------------------------*/
.concept {
    background: #f4f4f4;
}

.concept h2 {
    margin-bottom: 72px;
}

.concept h2 span {
    display: block;
    max-width: 139px;
    width: 100%;
    margin: 0 auto;
}

.concept h2 img {
    max-width: 100%;
    height: auto;
}

.concept .intro {
    line-height: 1;
    max-width: 532px;
    margin: 0 auto 53px;
}

.concept .intro img {
    max-width: 100%;
    height: auto;
}

/* card */
.concept__card-unit {
    display: flex;
    flex-wrap: wrap;
    position: relative;
}

.concept__card {
    flex-shrink: 1;
    flex-grow: 0;
    flex-basis: calc(33% - 30px);
    max-width: calc(33% - 30px);
    margin: 0 45px 36px 0;
}

.concept__card:nth-child(3n){
    margin-right: 0;
}

.concept__card img {
    max-width: 100%;
}

.concept__card-unit::after {
    content: "";
    display: block;
    background: url(../img/concept/instructor.png) no-repeat;
    background-size: contain;
    background-position: center bottom;
    flex-shrink: 1;
    flex-grow: 0;
    flex-basis: calc(33% - 30px);
    max-width: calc(33% - 30px);
    margin-bottom: -99px;
}

/*-----------------------------
施設紹介
-----------------------------*/
.facility {
    padding-top: 100px;
}

.facility h2 {
    margin-bottom: 35px;
}

.facility h2 span {
    display: block;
    max-width: 137px;
    width: 100%;
    margin: 0 auto;
}

.facility h2 img {
    max-width: 100%;
    height: auto;
}

.facility__bnr img {
    width: 100%;
}

.facility__bnr img.sp {
    display: none;
}

/*-----------------------------
スタッフ
-----------------------------*/
.staff__inner {
    padding: 145px 50px 126px;
}

.staff h2 {
    margin-bottom: 60px;
}

.staff h2 span {
    display: block;
    max-width: 94px;
    width: 100%;
    margin: 0 auto;
}

.staff h2 img {
    max-width: 100%;
    height: auto;
}

.staff .intro {
    font-size: 17.8px;
    font-weight: 300;
    letter-spacing: .135em;
    text-align: center;
    margin-bottom: 43px;
}

.staff__gallery {
    background : -moz-linear-gradient(0% 50% 0deg,rgba(234, 85, 20, 1) 0%,rgba(238, 117, 65, 1) 99.95%);
    background : -webkit-linear-gradient(0deg, rgba(234, 85, 20, 1) 0%, rgba(238, 117, 65, 1) 99.95%);
    background : -webkit-gradient(linear,0% 50% ,100% 50% ,color-stop(0,rgba(234, 85, 20, 1) ),color-stop(0.9995,rgba(238, 117, 65, 1) ));
    background : -o-linear-gradient(0deg, rgba(234, 85, 20, 1) 0%, rgba(238, 117, 65, 1) 99.95%);
    background : -ms-linear-gradient(0deg, rgba(234, 85, 20, 1) 0%, rgba(238, 117, 65, 1) 99.95%);
    background : linear-gradient(90deg, rgba(234, 85, 20, 1) 0%, rgba(238, 117, 65, 1) 99.95%);
    padding: 36px 50px;
}

.staff__gallery ul {
    display: flex;
    max-width: 805px;
    margin: 0 auto;
    width: 100%;
}

.staff__gallery li {
    flex-shrink: 1;
    flex-grow: 0;
    flex-basis: calc(25% - 15px);
    max-width: calc(25% - 15px);
    margin: 0 30px 0 0;
}

.staff__gallery li:nth-child(4n){
    margin-right: 0;
}

.staff__gallery li img {
    width: 100%;
}

/* slider */
.swiper01-area {
    max-width: 624px;
    width: 100%;
    margin: 0 auto;
    position: relative;
}

.swiper01 {
    max-width: 426px;
    width: 100%;
    margin: 0 auto;
}

.swiper01 .swiper-slide {
    cursor: grab;
    -webkit-transform: translate3d(0, 0, 0);
}

.swiper01 .swiper-slide img {
    max-width: 100%;
}

.swiper01 .swiper-slide h3 {
    font-weight: 300;
    font-size: 25px;
    color: #ea5514;
    margin-top: 39px;
}

.swiper01 .swiper-slide p {
    font-weight: 300;
    font-size: 18px;
    line-height: 1.16;
    margin-bottom: 0;
}

.swiper01-button-prev {
    background: url(../img/staff/slider/prev-arrow.svg) no-repeat !important;
    background-size: 25px auto !important;
    background-position: center !important;
    left: 0;
}

.swiper01-button-next {
    background: url(../img/staff/slider/next-arrow.svg) no-repeat !important;
    background-size: contain;
    background-position: center !important;
    right: 0;
}

.swiper01-button-prev,
.swiper01-button-next {
    outline: none;
    cursor: pointer;
    width: 25px;
    height: 58px;
    position: absolute;
    bottom: 50%;
    transition: all .3s ease;
}

@media (min-width:769px) {
    .swiper01-button-next:hover,
    .swiper01-button-prev:hover {
        opacity: .3;
    }
}


/*-----------------------------
plan
-----------------------------*/
.plan {
    background: url(../img/plan/bg.jpg) no-repeat;
    background-size: cover;
    background-position: center;
}

.plan__inner {
    margin: 0 auto;
    padding: 127px 65px 140px;
    background: #fff;
}

.plan h2 {
    margin-bottom: 68px;
}

.plan h2 span {
    display: block;
    max-width: 132px;
    width: 100%;
    margin: 0 auto;
}

.plan h2 img {
    max-width: 100%;
    height: auto;
}

.plan__img img {
    max-width: 100%;
}

.plan__img img.sp {
    display: none;
}

/*-----------------------------
店舗案内
-----------------------------*/
.info h2 {
    margin-bottom: 64px;
}

.info h2 span {
    display: block;
    max-width: 208px;
    width: 100%;
    margin: 0 auto;
}

.info h2 img {
    max-width: 100%;
    height: auto;
}

.info__logo {
    max-width: 312px;
    width: 100%;
    margin: 0 auto 22px;
}

.info__logo img {
    max-width: 100%;
    height: auto;
}

.info__addr {
    line-height: 1.75;
    max-width: 557px;
    width: 100%;
    margin: 0 auto 29px;
    font-size: 23.29px;
    font-weight: 300;
    letter-spacing: .12em;
}

.info__tel {
    margin-bottom: 68px;
}

.info__tel a {
    display: block;
    max-width: 560px;
    width: 100%;
    margin: 0 auto;
}

.info__tel img {
    max-width: 100%;
    height: auto;
}

.info__time {
    max-width: 535px;
    width: 100%;
    margin: 0 auto;
}

.info__time img {
    max-width: 100%;
    height: auto;
}

/*-----------------------------
googleマップ
-----------------------------*/
.g-map {
    position: relative;
    width: 100%;
}

.g-map::before {
    content: "";
    display: block;
    padding-top: 56.25%;
}

.g-map > iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
}

/*-----------------------------
footer
-----------------------------*/
.footer {
    background: #b1b1b2;
}

.footer__inner {
    padding: 40px 24px;
}

.footer__logo {
    max-width: 250px;
    width: 100%;
    margin: 0 auto;
}

.footer__logo img {
    max-width: 100%;
    height: auto;
}

.footer__copyright {
    display: none;
}

/*----------------------------- max-width:750px -----------------------------*/
@media (max-width:750px) {

    /* 左 */
    .cmp::before {
        top: 30%;
        left: 0;
        width: 18.4%;
        height: 104px;
        background: url(../img/2023/01/sp/bg-left.png)no-repeat;
        background-position: center left;
        background-size: contain;
    }

    .cmp::after {
        top: 0;
        right: 0;
        width: 18.4%;
        height: 104px;
        background: url(../img/2023/01/sp/bg-right.png)no-repeat;
        background-position: right top;
        background-size: contain;
    }

    /*-----------------------------
    レイアウト
    -----------------------------*/
    .ly-cont {
        padding-left: 20px;
        padding-right: 20px;
    }

    .cmp .ly-cont {
        padding-top: 25px;
        padding-bottom: 30px;
    }

    .header__logo {
        max-width: 250px;
    }

    /*-----------------------------
    FV
    -----------------------------*/
    .header__inner {
        padding: 14px 16px;
    }

    .fv__link {
        display: block;
        bottom: 3%;
    }

    /*-----------------------------
    キャンペーン
    -----------------------------*/
    .cmp__btn-unit .cmp__btn {
        width: 100%;
        margin-right: 0;
    }

    .cmp__btn {
        margin: 0 0 10px 0;
    }

    .cmp__btn img.sp {
        display: block;
    }

    .cmp__btn img.pc {
        display: none;
    }

    /*-----------------------------
    コンセプト
    -----------------------------*/
    .concept .ly-cont {
        padding-top: 18px;
        padding-bottom: 0;
    }

    .concept h2 {
        margin-bottom: 18px;
    }

    .concept h2 span {
        width: 58px;
    }

    .concept .intro {
        max-width: 218px;
        margin-bottom: 32px;
    }

    .concept__card {
        flex-basis: calc(33% - 10px);
        max-width: calc(33% - 10px);
        margin: 0 15px 11px 0;
    }

    .concept__card-unit::after {
        margin-bottom: 0;
    }

    /*-----------------------------
    施設紹介
    -----------------------------*/
    .facility {
        padding-top: 19px;
    }

    .facility h2 {
        margin-bottom: 20px;
    }

    .facility h2 span {
        max-width: 62px;
    }

    .facility__bnr img.pc {
        display: none;
    }

    .facility__bnr img.sp {
        display: block;
    }

    /*-----------------------------
    スタッフ
    -----------------------------*/
    .staff__inner {
        padding: 24px 20px 29px;
    }

    .staff h2 {
        margin-bottom: 30px;
    }

    .staff h2 span {
        max-width: 40px;
    }

    .staff .intro {
        font-size: 12px;
    }

    .swiper01 {
        max-width: 213px;
    }

    .swiper01 .swiper-slide h3 {
        font-size: 12.5px;
        margin-top: 19.5px;
        margin-bottom: 7.5px;
    }

    .swiper01 .swiper-slide p {
        font-size: 11px;
    }

    .swiper01-button-prev,
    .swiper01-button-next {
        height: 29px;
    }

    .staff__gallery {
        padding: 18px 50px;
    }

    .staff__gallery ul {
        flex-wrap: wrap;
        margin-bottom: -12px;
    }

    .staff__gallery li {
        flex-basis: calc(50% - 8px);
        max-width: calc(50% - 8px);
        margin: 0 16px 12px 0;
    }

    .staff__gallery li:nth-child(2n){
        margin-right: 0;
    }

    /*-----------------------------
    plan
    -----------------------------*/
    .plan {
        background: url(../img/plan/sp/bg.jpg) no-repeat;
        background-size: cover;
        background-position: center;
    }

    .plan h2 {
        margin-bottom: 27px;
    }

    .plan .ly-cont {
        padding-top: 20px;
        padding-bottom: 28px;
    }

    .plan__inner {
        padding: 18px 12px 15px;
    }

    .plan h2 span {
        width: 54px;
    }

    .plan__img img.pc {
        display: none;
    }

    .plan__img img.sp {
        display: block;
    }

    /*-----------------------------
    info
    -----------------------------*/
    .info .ly-cont {
        padding: 28px 60px 35px;
    }

    .info h2 {
        margin-bottom: 19px;
    }

    .info h2 span {
        width: 88px;
    }

    .info__logo {
        max-width: 169px;
        margin-bottom: 13px;
    }

    .info__addr {
        /* font-size: 13.29px; */
        font-size: 10px;
        margin-bottom: 7px;
    }

    .info__tel {
        margin-bottom: 20px;
    }

    /*-----------------------------
    g-map
    -----------------------------*/
    .g-map::before {
        padding-top: 75%;
    }

    /*-----------------------------
    footer
    -----------------------------*/
    .footer__inner {
        padding: 16px 20px 10px;
    }

    .footer__logo {
        max-width: 108px;
    }

    .footer__copyright {
        display: block;
        margin: 12px 0 0;
    }

    .footer__copyright small {
        display: block;
        font-size: inherit;
        max-width: 250px;
        width: 100%;
        margin: 0 auto;
    }

    .footer__copyright img {
        max-width: 100%;
        height: auto;
    }

}
