@charset "utf-8";

/* 
主たるブレイクポイント
sp　～599px
tab　600 ～1024px　[min-width : 600px]
pc　1025px～　[min-width : 1025px]
 */


/* ===============================================
    汎用クラス
=============================================== */

/* オレンジ背景 */
.bg-orange {
    background-color: var(--base-color);
}


/* ---------------------------- */
/* 見出し */
.center__heading {
    text-align: center;
    color: var(--main-color);
    margin-bottom: 32px;
}

.left__heading {
    text-align: center;
    color: var(--main-color);
    margin-bottom: 16px;
}

.heading-primary {
    font-family: var(--font_work);
    font-weight: 500;
    font-size: 3.2rem;
    letter-spacing: 0.02em;
}

.heading-primary__sub {
    font-family: var(--font_noto);
    font-weight: 500;
    display: block;
    font-size: 1.2rem;
    letter-spacing: 0.05em;
    margin-top: 3px;
}

@media screen and (min-width:800px) {
    .left__heading {
        text-align: left;
    }

    .heading-primary {
        font-size: 4rem;
    }

    /*=======min-width:800px=======*/
}


/* ---------------------------- */
/* フェードインアニメ */

.js-fade__top {
    opacity: 0;
    visibility: hidden;
    transform: translateY(50px);
    transition: opacity 1s, visibility 1s, transform 1s;
}

.inview {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
}

.service-list__item:nth-of-type(2).js-fade__top {
    transition-delay: 0.2s;
}

.service-list__item:nth-of-type(3).js-fade__top {
    transition-delay: 0.4s;
}


/* ---------------------------- */
/* もっと見るボタン */

.more-btn {
    text-decoration: none;
    border: 1px solid var(--main-color);
    border-radius: 100px;
    display: block;
    max-width: 230px;
    line-height: 50px;
    margin-right: auto;
    margin-left: auto;
    margin-top: var(--gutter_24);
    text-align: center;
    position: relative;
    color: var(--main-color);
    letter-spacing: 0.05em;
    font-size: var(--fz_15);
    transition: 0.3s ease-in-out;
}

.more-btn::after {
    font-family: 'Material Symbols Outlined';
    content: '\e5df';
    vertical-align: middle;
    position: absolute;
    right: 15px;
    font-size: 20px;
    transition: 0.3s ease-in-out;
}

.more-btn:hover {
    background-color: var(--main-color);
    color: var(--white);
}

.more-btn:hover::after {
    right: 10px;
}

@media screen and (min-width:1025px) {
    .more-btn {
        margin-top: var(--gutter_32);
    }

    /*=======min-width:1025px=======*/
}


/* ===============================================
メインビジュアル
=============================================== */


.mv {
    position: relative;
}

/* .mv__slider {
    overflow: hidden;
} */

.mv__photo {
    width: 100%;
    height: auto;
    object-fit: cover;
}

@keyframes zoomUp {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.15);
        /* 拡大率 */
    }
}

.add-animation {
    animation: zoomUp 10s linear 0s normal both;
}

.mv__text {
    position: absolute;
    z-index: 1;
    background-color: rgba(255, 255, 255, 0.8);
    color: var(--text-gray);
    font-size: 6vw;
    letter-spacing: 0.03em;
    font-family: var(--font_zen);
    font-weight: 500;
    padding: 0.2em 1em;
}

.mv__text:first-of-type {
    left: 0;
    bottom: 24.4%;
}

.mv__text:last-of-type {
    left: 0;
    bottom: 11.11%;
}


@media screen and (min-width:700px) {
    .mv__text {
        font-size: 2.4vw;
    }

    .mv__text:first-of-type {
        bottom: 26.8135%;
    }

    .mv__text:last-of-type {
        bottom: 11.8%;
    }

    /*=======min-width:700px=======*/
}


/* ===============================================
ニュース
=============================================== */

.news-list__link {
    color: var(--text-gray);
    text-decoration: none;
}

.news-list__link:hover {
    opacity: 0.6;
    transition: 0.3s;
}

.news-list__item {
    font-size: var(--fz_15);
    line-height: 1.7;
    text-align: justify;
    text-align-last: left;
    margin-bottom: var(--gutter_16);
    padding-bottom: var(--gutter_16);
    border-bottom: 1px solid #E8E8E8;
}

.news-list__date {
    font-family: var(--font_roboto);
    letter-spacing: 0.05em;
}

/* 一覧を見る */
.news-all {
    text-align: right;
}

.news-all__link {
    font-size: 1.4rem;
    color: #999;
    text-decoration: none;
}

.news-all__link:hover {
    opacity: 0.6;
    transition: 0.3s;
}

.news-all_icon {
    margin-left: var(--gutter_base);
    font-size: 0.9rem;
    vertical-align: 1px;
}

/* 800px～ */
@media screen and (min-width:800px) {
    .news__inner {
        display: flex;
        column-gap: 90px;
    }

    .news__body {
        flex: 1;
    }

    .news-list__link {
        display: flex;
        align-items: center;
    }

    .news-list__date {
        margin-right: 20px;
    }

    /*=======min-width:800px=======*/
}


/* ===============================================
コンセプト
=============================================== */
.concept>.container {
    padding-top: 0;
}

.concept__imgbox {
    /* margin-inline: calc(50% - 50vw); */
    margin-right: -15px;
    margin-left: -15px;
}

.concept__subtitle {
    color: var(--main-color);
    font-family: var(--font_work);
    letter-spacing: 0.07em;
    margin-top: var(--gutter_24);
    margin-bottom: var(--gutter_16);
}

.concept__title {
    display: inline-block;
    line-height: 55px;
    color: var(--main-color);
    text-align: center;
    padding: 0 8%;
    background-color: var(--white);
    margin-bottom: var(--gutter_24);
    font-family: var(--font_zen);
    font-weight: 700;
    font-size: var(--fz_24);
    letter-spacing: 0.05em;
    box-shadow: 1px 1px 0px 0px rgba(215, 114, 57, 1);
}

.concept__text {
    font-size: var(--fz_15);
    line-height: 1.8;
    letter-spacing: 0.02em;
    text-align: justify;
}


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

    .concept>.container {
        padding-top: var(--gutter_80);
        display: flex;
        align-items: center;
    }

    .concept__imgbox {
        width: 50%;
        margin-inline: 0;
    }

    .concept__ph {
        border-radius: 8px;
    }

    .concept__desc {
        width: 50%;
        padding-left: 3.6363%;
    }

    .concept__subtitle {
        margin-top: 0;
    }

    .concept__title {
        margin-bottom: var(--gutter_32);
        line-height: 64px;
        font-size: var(--fz_32);
    }

    .concept__text {
        font-size: var(--fz_16);
        line-height: 2;
        letter-spacing: 0.03em;
    }

    /*=======min-width:600px=======*/
}

@media screen and (max-width:840px) {
    .concept__title {
        font-size: var(--fz_24);
    }

    /*=======max-width:840px=======*/
}


/* ===============================================
サービス
=============================================== */

.service-list {
    display: grid;
    grid-template-columns: 1fr;
    row-gap: var(--gutter_24);
}

.service-list__item {
    padding: var(--gutter_32);
    border-radius: 8px;
    background-color: var(--white);
    box-shadow: 0 3px 20px 0 rgba(51, 51, 51, 0.15);
}

.service-list__img-wrapper {
    text-align: center;
    margin-bottom: 5px;
}

.service-list__img {
    font-size: 4.8rem;
    color: var(--main-color);
    vertical-align: bottom;
}

.service-list__title {
    font-size: 1.7rem;
    letter-spacing: 0.05em;
    font-weight: 500;
    text-align: center;
    word-break: keep-all;
    overflow-wrap: break-word;
}

.service-list__text {
    font-size: var(--fz_15);
    line-height: 1.7;
    letter-spacing: 0.03em;
    text-align: justify;
    text-align-last: left;
    margin-top: var(--gutter_16);
}

@media screen and (min-width:815px) {
    .service-list {
        grid-template-columns: repeat(3, 1fr);
        column-gap: var(--gutter_24);
    }

    /*=======min-width:800px=======*/
}

@media screen and (min-width:1025px) {
    .service-list__item {
        padding: 40px;
    }

    .service-list__img {
        font-size: 4rem;
    }

    .service-list__title {
        font-size: 1.8rem;
    }

    .service-list__text {
        font-size: var(--fz_16);
        letter-spacing: 0.02em;
    }

    /*=======min-width:1025px=======*/
}


/* ===============================================
プライス
=============================================== */

.price__body {
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 40px;
}

.price-item {
    color: var(--text-gray);
}

.price-item__title {
    text-align: center;
    font-size: 1.7rem;
    margin-bottom: var(--gutter_16);
    font-weight: 500;
}

/* 一時利用（ドロップイン） */
.price-item__table {
    border-collapse: collapse;
    margin: 0 auto;
    width: 100%;
    max-width: 520px;
    table-layout: fixed;
}

.table-row {
    border-bottom: 1px solid rgba(215, 114, 57, 0.4);
    font-size: var(--fz_16);
}

.table-row:first-of-type {
    border-top: 1px solid rgba(215, 114, 57, 0.4);
}

.table-row__time {
    padding-top: 15px;
    padding-bottom: 15px;
    text-align: center;
    background: rgba(215, 114, 57, 0.1);
    letter-spacing: 0.07em;
    font-weight: 400;
}

.table-row__en {
    padding-top: 15px;
    padding-bottom: 15px;
    text-align: center;
    background-color: var(--white);
    letter-spacing: 0.02em;
}

/* 月額会員（メンバーズ） */
.price-right {
    margin: 0 auto;
    width: 100%;
    max-width: 520px;
}

.price-item__encenter {
    padding-top: 15px;
    padding-bottom: 15px;
    text-align: center;
    background-color: var(--white);
    letter-spacing: 0.02em;
    border-top: 1px solid rgba(215, 114, 57, 0.4);
    border-bottom: 1px solid rgba(215, 114, 57, 0.4);
}

.price-item__cap {
    font-size: 1.2rem;
    letter-spacing: 0.03em;
    margin-top: var(--gutter_base);
}

/* 営業時間 */
.price-subitem {
    background-color: var(--white);
    border-radius: 5px;
    margin-top: 40px;
    padding-top: var(--gutter_16);
    padding-bottom: var(--gutter_16);
}

.price-subitem__title {
    font-size: 1.7rem;
    color: var(--main-color);
    text-align: center;
    font-weight: 500;
    letter-spacing: 0.07em;
    margin-bottom: var(--gutter_base);
}

.price-subitem__content {
    text-align: center;
    letter-spacing: 0.05em;
    line-height: 1.6;
}

.price-subitem__text {
    display: inline-block;
    text-align: left;
    font-size: var(--fz_16);
}


@media screen and (min-width:900px) {
    .price-item__title {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

    .price__body {
        grid-template-columns: repeat(2, 1fr);
        column-gap: 70px;
    }

    /* 月額会員（メンバーズ） */
    .price-item__cap {
        margin-top: 10px;
    }

    /* 営業時間 */
    .price-subitem {
        padding-top: 20px;
        padding-bottom: 20px;
        display: flex;
        justify-content: center;
        align-items: center;
        column-gap: 9.230%;
    }

    .price-subitem__title {
        font-size: 1.8rem;
        text-align: center;
        margin-bottom: 0;
        padding-right: 9.230%;
        position: relative;
    }

    .price-subitem__title:before {
        content: '';
        position: absolute;
        right: 0%;
        bottom: -15px;
        display: inline-block;
        width: 1px;
        height: 55px;
        background-color: rgba(215, 114, 57, 0.4);
    }

    /*=======min-width:900px=======*/
}

/* ===============================================
ブログ
=============================================== */

.blog .swiper-slide:hover .blog-item__ph {
    opacity: 0.7;
    transition: 0.3s ease-in-out;
}

.blog-item__ph {
    border-radius: 5px;
}

.blog-item__content {
    color: var(--text-gray);
    text-decoration: none;
}

.blog-item__title {
    font-size: var(--fz_15);
    margin-top: 14px;
    margin-bottom: 6px;
    line-height: 1.7;
    font-weight: 500;
    text-align: justify;
    text-align-last: left;
}

.blog-item__date {
    font-family: var(--font_roboto);
    letter-spacing: 0.05em;
    font-size: 1.2rem;
}

.blog .swiper-pagination {
    display: flex;
    column-gap: 0.8rem;
    justify-content: center;
    margin-top: var(--gutter_16);
}

.blog .swiper-pagination-bullet {
    width: 3rem;
    height: 3px;
    cursor: pointer;
    transition: 0.3s ease-in-out;
    background-color: #ddd;
}


.blog .swiper-pagination-bullet-active {
    background-color: var(--main-color);
}


@media screen and (min-width:600px) {
    .blog-item__title {
        margin-top: 12px;
    }

    .blog .swiper-pagination {
        margin-top: var(--gutter_32);
    }

    /*=======min-width:600px=======*/
}


/* ===============================================
コンタクト
=============================================== */
.contact {
    text-align: center;
    background-image: url(../img/contact.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.contact__back {
    background-color: rgba(255, 255, 255, 0.9);
    padding: var(--gutter_32) var(--gutter_24);
    border-radius: 10px;
    margin-bottom: 50px;
}

.contact__text {
    line-height: 1.7;
    font-size: var(--fz_15);
}

.contact__link>.more-btn {
    letter-spacing: 0.02em;
}

@media screen and (min-width:600px) {
    .contact__back {
        margin-bottom: 20px;
    }

    .contact__text {
        font-size: var(--fz_16);
    }

    /*=======min-width:600px=======*/
}