/* 初期設定 */
/* ============================================ */

@import url("https://fonts.googleapis.com/css2?family=Caveat&family=Zen+Kaku+Gothic+New:wght@400;700&display=swap");

body {
    overflow-x: hidden;
    background-color: #7cc79e;
    color: #fff;
    font-family: "Zen Kaku Gothic New", sans-serif;
}

body.fixed {
    overflow: hidden;
}

body::before,
body::after {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    display: block;
    width: 100%;
    height: 100%;
    background-attachment: fixed;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    content: "";
    animation: flash 2s ease-out infinite;
}

body::before {
    background-image: url("../img/bg-star-01.png");
}

body::after {
    background-image: url("../img/bg-star-02.png");
    animation-duration: 1s;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

a:hover {
    opacity: 0.8;
    transition: 0.2s;
}

.pc {
    display: block;
}

.sp {
    display: none;
}

/* アニメーション */
/* ============================================ */

.fadein {
    opacity: 0;
    transition: opacity 1.5s;
}

.fadein.is-animated {
    opacity: 1;
}

.fadeup {
    opacity: 0;
    transition: opacity 1s, transform 1s;
    transform: translateY(30px);
}

.fadeup.is-animated {
    opacity: 1;
    transform: inherit;
}

@keyframes flash {
    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

@keyframes fade {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* ヘッダー */
/* ============================================ */

header {
    position: fixed;
    top: 0;
    z-index: 10000;
    width: 100%;
}

header.scroll {
    background: #7cc79e;
}

header .box-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
    padding: 0 40px;
    max-width: 980px;
}

.logo {
    text-align: center;
    font-weight: bold;
    font-size: 28px;
}

.logo span {
    display: block;
    margin-bottom: 5px;
    font-weight: normal;
    font-size: 14px;
}

header nav {
    display: flex;
    justify-content: flex-end;
}

header .btn-contact {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    width: 320px;
    height: 100px;
    border-radius: 0 0 20px 20px;
    background: #004da0;
    font-size: 14px;
}

header .nav-box {
    position: fixed;
    bottom: 100px;
    margin-right: -220px;
    max-width: 180px;
}

header .nav-bnr {
    margin: 0 0 20px 0;
}

header .nav-header {
    padding: 15px 30px;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
}

header .nav-header li {
    margin: 15px auto;
    color: #61b285;
    font-weight: bold;
    font-size: 17px;
}

#nav-toggle {
    display: none;
}

/* メイン */
/* ============================================ */

main {
    margin: 0 auto;
    padding: 0 40px;
    max-width: 980px;
}

.anchor {
    position: relative;
    top: -100px;
}

/* フッター */
/* ============================================ */

footer {
    margin: 0 auto;
    padding: 80px 40px 140px;
    background: url("../img/ill-bard.svg") no-repeat calc(50% + 320px) calc(100% - 60px);
    text-align: center;
}

footer .logo {
    margin: 0 auto 20px;
}

footer address p span {
    display: inline-block;
    margin: 10px auto 0;
    padding: 5px 10px;
    border-radius: 20px;
    background: #fff;
    color: #7cc79e;
    font-size: 14px;
}

footer .copyright {
    margin: 40px auto 0;
    font-size: 10px;
}

#pagetop {
    position: fixed;
    right: 40px;
    bottom: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #004da0;
    color: #fff;
    cursor: pointer;
}

#pagetop:hover {
    background: #09f;
    color: #fff !important;
}

/* 共通パーツ */
/* ============================================ */

/* 画像（トリミング） */

.mod-img-trim {
    width: 100%;
    height: 100%;
    border-radius: 20px;

    object-fit: cover;
}

/* 見出し（H2） */

.mod-ttl-h2 {
    padding: 20px 40px;
    border-radius: 10px;
    background: #61b285;
    color: #fff;
    text-align: center;
    font-weight: bold;
    font-size: 28px;
}

/* 電話番号 */

.mod-tel {
    margin: 5px auto;
    font-weight: bold;
    font-size: 34.5px;
}

/* ボタン */

.mod-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 30px 20px 50px;
    max-width: 200px;
    border-radius: 10px;
    background: #004da0;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
    white-space: nowrap;
    font-weight: bold;
    font-size: 17px;
    cursor: pointer;
}

.mod-btn::after {
    margin: 0 0 0 10px;
    content: "〉";
}

.mod-btn:hover {
    background: #5aa9ff;
    transition: 0.2s;
}

/* 画像（マスク） */

.mod-mask-img {
            mask-repeat: no-repeat;
            mask-position: 50% 50%;
            mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: 50% 50%;
    -webkit-mask-size: contain;
    object-fit: cover;
}

/* MV */

.mod-box-mv {
    position: relative;
}

.mod-box-mv > .box-img {
    position: relative;
    z-index: -1;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    margin: 60px auto 0;
}

.mod-box-mv > .box-img img {
    width: 100%;

    object-fit: cover;
}

.mod-box-mv .mod-mask-img {
    width: min(100vw,900px);
    height: min(70vw,648px);

    object-position: 50% 50%;
            mask-image: url("../img/mask-mv.svg");
    -webkit-mask-image: url("../img/mask-mv.svg");
}

.mod-box-mv > .box-txt {
    margin: -120px auto 0;
    padding: 0 40px;
    line-height: 1.618;
}

.mod-box-mv > .box-txt .mod-ttl-h2 {
    display: inline-block;
    margin-left: -40px;
    border-radius: 50px;
}

.mod-box-mv > .box-txt .ttl {
    margin: 20px auto;
    font-weight: bold;
    font-size: 28px;
}

.mod-box-mv > .box-txt .txt {
    text-shadow: #7cc79e 0 0 5px, #7cc79e 0 0 5px, #7cc79e 0 0 5px, #7cc79e 0 0 5px, #7cc79e 0 0 5px, #7cc79e 0 0 5px, #7cc79e 0 0 5px, #7cc79e 0 0 5px, #7cc79e 0 0 5px, #7cc79e 0 0 5px;
}

/* ティッカー */

.sec-ticker {
    position: fixed;
    bottom: 0;
    z-index: 2;
    width: 100%;
    height: 60px;
    background: #fff;
}

.sec-ticker .ttl {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 240px;
    height: 60px;
    background: #004da0;
    color: #fff;
    font-weight: bold;
}

.ticker {
    position: relative;
    overflow: hidden;
    margin: 0 auto 0 240px;
}

.sec-ticker .li-ticker {
    position: relative;
    padding: 20px 0;
    width: 100%;
}

.sec-ticker .li-ticker li {
    display: none;
    padding-top: 20px;
    width: 100%;
    height: 60px;
}

.sec-ticker .li-ticker .date {
    display: inline-block;
    margin: 0 20px 0 40px;
    color: #666;
}

.sec-ticker .li-ticker a {
    color: #004da0;
    font-weight: bold;
} 

/* トップページ */
/* ============================================ */

.page-home .mod-box-mv > .box-img .ttl {
    position: absolute;
    right: 80px;
    z-index: 1;
    border-radius: 50%;
    color: #61b285;
    text-shadow: #fff 0 0 20px, #fff 0 0 20px, #fff 0 0 20px, #fff 0 0 20px, #fff 0 0 20px, #fff 0 0 20px, #fff 0 0 20px, #fff 0 0 20px, #fff 0 0 20px, #fff 0 0 20px;
    font-weight: bold;
    font-size: 28px;
    line-height: 1.618;
}

.page-home .box-whats {
    display: flex;
    padding: 40px 40px 110px;
    background: url("../img/ill-penguin.svg") no-repeat 100% 100%;
}

.page-home .box-whats .ttl {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 130px;
    height: 130px;
    background: #61b285;
    font-weight: bold;
    font-size: 28px;
}

.page-home .box-whats .txt {
    flex: 1;
    margin: 0 160px 0 40px;
    line-height: 1.618;
}

/* 当店の特徴 */
/* ============================================ */

.page-point .mod-box-mv .box-txt {
    background: url("../img/ill-weasel.svg") no-repeat 500px 10px;
}

.page-point .sec-point {
    margin: 80px auto 0;
}

.page-point .sec-point > .box-ttl {
    padding: 40px 40px 80px;
    border-radius: 20px;
    background: #61b285;
    text-align: center;
}

.page-point .sec-point > .box-ttl .ttl {
    position: relative;
    display: inline-block;
    padding: 70px 180px 20px 70px;
    background: url("../img/ill-bear.svg") no-repeat 100% 100%;
    font-weight: bold;
    font-size: 28px;
    line-height: 1.618;
}

.page-point .sec-point > .box-ttl .ttl span {
    position: absolute;
    top: 25px;
    left: 0;
    color: #ffff8f;
    font-size: 138px;
    line-height: 1;
}

.page-point .sec-point > .box-ttl .txt {
    line-height: 1.618;
}

/* ポイント（共通） */

.mod-li-point li,
.mod-point-access,
.mod-point-title {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
}

.mod-li-point .box-img,
.mod-point-access .box-img,
.mod-point-title .box-img {
    position: absolute;
}

.mod-li-point .box-txt,
.mod-point-access .box-txt,
.mod-point-title .box-txt {
    position: relative;
    z-index: 1;
    width: 100%;
    line-height: 1.618;
}

.mod-li-point .box-txt .ttl,
.mod-point-access .box-txt .ttl,
.mod-point-title .box-txt .ttl {
    display: flex;
    margin: 0 0 20px 0;
    font-weight: bold;
    font-size: 28px;
}

.mod-li-point .box-txt .ttl span {
    margin: -90px 10px 0 0;
    height: 1px;
    color: #ffff8f;
    font-size: 138px;
}

.mod-li-point .box-txt .txt,
.mod-point-access .box-txt .txt,
.mod-point-title .box-txt .txt {
    margin: 20px 0;
}

/* ポイント（タイトル） */

.mod-point-title .box-txt {
    margin: 0 0 0 400px;
    padding: 160px 40px;
}

.mod-point-title .box-txt .ttl {
    padding: 40px 0 0 0;
    background: url("../img/ill-bear.svg") no-repeat 180px 60%;
}

.mod-point-title .box-img {
    left: -80px;
}

.mod-point-title .mod-mask-img {
    width: min(80vw,513px);
    height: min(80vw,480px);

    object-position: 10% 50%;
            mask-image: url("../img/mask-00.svg");
    -webkit-mask-image: url("../img/mask-00.svg");
}

/* ポイント（料金） */

.mod-point-price .box-txt {
    padding: 120px 40px;
    background: url("../img/ill-weasel.svg") no-repeat 320px 100%;
}

.mod-point-price .box-img {
    right: -200px;
}

.mod-point-price .mod-mask-img {
    width: min(80vw,668px);
    height: min(80vw,640px);

    object-position: 50% 50%;
            mask-image: url("../img/mask-01.svg");
    -webkit-mask-image: url("../img/mask-01.svg");
}

/* ポイント（設備） */

.mod-point-facillity .box-txt {
    margin: 0 0 0 400px;
    padding: 160px 40px;
    background: url("../img/point/point-02-ill.svg") no-repeat 320px 100%;
}

.mod-point-facillity .box-img {
    left: -80px;
}

.mod-point-facillity .mod-mask-img {
    width: min(80vw,472px);
    height: min(80vw,480px);

    object-position: 10% 50%;
            mask-image: url("../img/mask-02.svg");
    -webkit-mask-image: url("../img/mask-02.svg");
}

/* ポイント（アクセス） */

.mod-point-access .box-txt {
    padding: 80px 40px;
    background: url("../img/ill-rabbit.svg") no-repeat 240px calc(100% + 5px);
}

.mod-point-access .box-txt .ttl::after {
    margin: -50px 0 0 -100px;
    width: 80px;
    height: 85px;
    background: url("../img/ico-map.svg") no-repeat;
    content: "";
}

.mod-point-access .box-img {
    top: -80px;
    right: -40px;
}
.mod-point-access .mod-mask-img {
    width: min(80vw,472px);
    height: min(80vw,480px);

    object-position: 50% 50%;
            mask-image: url("../img/mask-03.svg");
    -webkit-mask-image: url("../img/mask-03.svg");
}

.mod-point-access .map {
    margin: 0 calc(50% - 50vw) ;
    width: 100vw;
}

/* ポイント（部屋） */

.mod-point-room .box-txt {
    margin: 0 0 0 400px;
    padding: 160px 40px ;
}

.mod-point-room .box-img {
    top: -40px;
    left: -80px;
}

.mod-point-room .mod-mask-img {
    width: min(80vw,472px);
    height: min(80vw,480px);

    object-position: 10% 50%;
            mask-image: url("../img/mask-02.svg");
    -webkit-mask-image: url("../img/mask-02.svg");
}

/* ポイント（衛生） */

.mod-point-clean .box-txt {
    padding: 80px 40px;
}

.mod-point-clean .box-img {
    right: 0;
}

.mod-point-clean .mod-mask-img {
    width: min(80vw,472px);
    height: min(80vw,480px);

    object-position: 50% 50%;
            mask-image: url("../img/mask-03.svg");
    -webkit-mask-image: url("../img/mask-03.svg");
}

/* ポイント（スタッフ） */

.mod-point-staff .box-txt {
    margin: 0 0 0 400px;
    padding: 160px 40px;
}

.mod-point-staff .box-img {
    left: -80px;
}

.mod-point-staff .mod-mask-img {
    width: min(80vw,472px);
    height: min(80vw,480px);

    object-position: 10% 50%;
            mask-image: url("../img/mask-02.svg");
    -webkit-mask-image: url("../img/mask-02.svg");
}

/* 料金プラン・ご利用の流れ */
/* ============================================ */

.page-price {
    margin-top: 140px;
}

.page-price .sec-price .ttl-h3 {
    margin: 40px auto 0;
    text-align: center;
    font-weight: bold;
    font-size: 28px;
}

.page-price .li-price {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 auto 80px;
    padding: 0 20px;
}

.page-price .li-price li {
    margin: 40px 20px 0;
    background: #fff;
}

.page-price .li-price .box-ttl {
    padding: 20px 40px;
    text-align: center;
    font-weight: bold;
}

.page-price .li-price .box-ttl .cat {
    display: inline-block;
    margin: 0 auto;
    padding: 10px 10px;
    min-width: 120px;
    border-radius: 50px;
    background: #fff;
    text-align: center;
    font-weight: bold;
}

.page-price .li-price .box-txt {
    color: #9e9ea0;
}

.page-price .li-price .column-2 {
    width: calc(50% - 40px);
    border: 10px solid #ccc;
}

.page-price .li-price .column-2 .box-ttl .ttl {
    margin: 0 auto 5px;
    font-size: 55px;
}

.page-price .li-price .column-2 .box-ttl .cat {
    font-size: 21px;
}

.page-price .li-price .column-2 .box-txt {
    padding: 20px 0;
    text-align: center;
    line-height: 1.618;
}

.page-price .li-price .column-1 {
    display: flex;
    width: 100%;
}

.page-price .li-price .column-1 .box-ttl .ttl {
    margin: 5px auto 0;
    white-space: nowrap;
    font-size: 34.5px;
}

.page-price .li-price .column-1 .box-ttl .cat {
    font-size: 17px;
}

.page-price .li-price .column-1 .box-txt {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 20px 40px;
}

.page-price .li-price .column-1 .box-txt .time,
.page-price .li-price .column-1 .box-txt .price {
    font-weight: bold;
    font-size: 28px;
}

.page-price .li-price .column-1 .box-txt .price span {
    font-weight: normal;
    font-size: 14px;
}

.page-price .li-price .column-1 .box-txt .txt {
    margin: 10px auto 0;
    width: 100%;
}

.page-price .li-price .color-1 {
    border-color: #32d9f2;
}

.page-price .li-price .color-2 {
    border-color: #f177ac;
}

.page-price .li-price .color-1 .box-ttl {
    background: #32d9f2;
}

.page-price .li-price .color-2 .box-ttl {
    background: #f177ac;
}

.page-price .li-price .color-1 .box-ttl .cat,
.page-price .li-price .color-1 .box-txt .price {
    color: #32d9f2;
}

.page-price .li-price .color-2 .box-ttl .cat,
.page-price .li-price .color-2 .box-txt .price {
    color: #f177ac;
}

.page-price .li-flow {
    padding: 0 40px;
}

.page-price .li-flow li {
    display: flex;
    margin: 40px auto 0;
}

.page-price .li-flow .box-img {
    width: 350px;
    height: 220px;
}

.page-price .li-flow .box-txt {
    flex: 1;
    margin: 10px auto 0 40px;
}

.page-price .li-flow .box-txt .ttl {
    font-weight: bold;
    font-size: 28px;
    line-height: 40px;
}

.page-price .li-flow .box-txt .ttl span {
    display: inline-block;
    margin: 0 10px 0 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    color: #7cc79e;
    text-align: center;
}

.page-price .li-flow .box-txt .txt {
    margin: 20px auto 0;
    line-height: 1.618;
}

.page-price .li-flow .box-txt .txt span {
    display: inline-block;
    margin: 20px auto 0;
    padding: 20px;
    border-radius: 10px;
    background: #61b285;
    font-size: 13px;
}

.page-price .li-flow .box-txt .mod-btn {
    margin: 20px 0 0 0 ;
}

.page-price .box-note {
    margin: 40px 40px 0;
    padding: 40px;
    border: 1px dotted #fff;
}

.page-price .box-note ul {
    margin: 30px 40px;
}

.page-price .box-note ul li {
    margin: 10px auto;
    list-style: disc;
    line-height: 1.618;
}

/* 設備紹介・よくある質問 */
/* ============================================ */

.page-facility .sec-point {
    margin: 80px auto 0;
}

.page-facility .sec-point > .box-ttl {
    padding: 40px 40px 80px;
    border-radius: 20px;
    background: #61b285;
    text-align: center;
}

.page-facility .sec-point > .box-ttl .ttl {
    position: relative;
    display: inline-block;
    padding: 70px 180px 20px 70px;
    background: url("../img/ill-bear.svg") no-repeat 100% 100%;
    font-weight: bold;
    font-size: 28px;
    line-height: 1.618;
}

.page-facility .sec-point > .box-ttl .ttl span {
    position: absolute;
    top: 25px;
    left: 0;
    color: #ffff8f;
    font-size: 138px;
    line-height: 1;
}

.page-facility .sec-point > .box-ttl .txt {
    line-height: 1.618;
}

.page-facility .mod-box-mv > .box-txt .box-img {
    position: absolute;
    right: 80px;
    bottom: 0;
    z-index: -1;
}

.page-facility .li-facility {
    margin: 0 auto 80px;
}

.page-facility .li-facility li {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 20px;
    min-width: none;
}

.page-facility .li-facility .box-img {
    max-width: 440px;
    height: 300px;
    border-radius: 20px;
    background: #fff;
}

.page-facility .li-facility .box-txt {
    flex: 1;
    margin: 0 40px 0 auto;
    line-height: 1.618;
}

.page-facility .li-facility .box-txt .ttl {
    margin: 20px auto;
    font-weight: bold;
    font-size: 28px;
}

.page-facility .li-faq {
    padding: 0 40px;
    line-height: 1.618;
}

.page-facility .li-faq .ttl {
    position: relative;
    margin: 80px auto 0;
    padding: 0 0 0 60px;
    font-weight: bold;
    font-size: 28px;
}

.page-facility .li-faq .txt {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin: 20px auto 0;
    padding: 0 0 0 60px;
    min-height: 45px;
}

.page-facility .li-faq .ttl::before,
.page-facility .li-faq .txt:before {
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    margin: 0 10px 0 0;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: #61b285;
    text-align: center;
    font-weight: bold;
    font-size: 28px;
    line-height: 42px;
}

.page-facility .li-faq .ttl::before {
    background: #ffff8f;
    content: "Q";
}

.page-facility .li-faq .txt::before {
    background: #fff;
    content: "A";
}

/* 予約状況・当店について */
/* ============================================ */

.page-reserve {
    margin-top: 140px;
}

.page-reserve .sec-reserve iframe {
    margin: 40px auto 0;
}

.page-reserve .sec-salon {
    margin: 80px auto 0;
}

.page-reserve .table-salon {
    margin: 40px auto;
    width: calc(100% - 80px);
    border-collapse: collapse;
    border-top: 1px solid #fff;
}

.page-reserve .table-salon th,
.page-reserve .table-salon td {
    border-bottom: 1px solid #fff;
    line-height: 1.618;
}

.page-reserve .table-salon th {
    padding: 20px 0 20px 40px;
    width: 120px;
}

.page-reserve .table-salon td {
    padding: 20px;
}

/* お知らせ */
/* ============================================ */

.page-news {
    margin-top: 140px;
}

.page-news .li-news li {
    margin: 40px auto 0;
}

.page-news .li-news .box-ttl {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px;
    border-radius: 10px;
    background: #fff;
    color: #61b285;
}

.page-news .li-news .box-ttl .ttl {
    font-weight: bold;
    font-size: 28px;
}

.page-news .li-news .box-txt {
    padding: 20px 40px 0;
}

.page-news .li-news .box-txt p {
    margin: 20px auto;
    line-height: 1.618;
}

.page-news .li-news .box-txt img {
    margin: 20px auto;
}

.page-news .li-paging {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 80px auto 0;
    letter-spacing: initial;
    font-weight: bold;
    font-size: 20px;
}

.page-news .li-paging li {
    margin: 0 5px;
}

.page-news .li-paging li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.page-news .li-paging .num a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    color: #61b285;
}

.page-news .li-paging .num.active a {
    background: #61b285;
    color: #fff;
}

.page-news .li-paging .num a:hover {
    background: #004da0;
    color: #fff;
}

/* お問い合わせ */
/* ============================================ */

.page-contact {
    margin-top: 140px;
}

.page-contact .box-tel {
    margin: 40px auto 0;
    text-align: center;
}

.page-contact .table-form {
    margin: 30px auto;
    width: 100%;
    border-collapse: collapse;
}

.page-contact .table-form th {
    position: relative;
    padding: 20px 40px;
    width: 240px;
}

.page-contact .table-form th span {
    position: absolute;
    top: 10px;
    right: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ffff8f;
    color: #61b285;
    text-align: center;
    font-weight: normal;
    font-size: 12px;
    line-height: 40px;
}

.page-contact .table-form td {
    padding: 10px 40px;
}

.page-contact .table-form input,
.page-contact .table-form textarea {
    padding: 10px;
    border: 1px solid #61b285;
    border-radius: 5px;
    background: #fff;
    color: #666;
}

.page-contact .table-form input:focus,
.page-contact .table-form textarea:focus {
    background: #fffce9;
}

.page-contact .table-form .size-s {
    width: 50%;
}

.page-contact .table-form .size-m {
    width: 100%;
}

.page-contact .table-form .size-l {
    width: 100%;
    height: 120px;
}

.page-contact .mod-btn {
    margin: 0 auto;
}

@media (max-width: 1439px) {
    header .nav-box {
        right: 40px;
        margin-right: auto;
    }
}

@media (max-width: 1279px) {
    /* ヘッダー */
    /* ============================================ */

    header {
        padding: 0;
    }

    header .box-inner {
        padding: 0;
        height: 80px;
    }

    .logo {
        margin: -5px 0 0 30px;
        font-size: 24px;
    }

    .logo span {
        font-size: 12px;
    }

    header .nav-box {
        position: absolute;
        top: 80px;
        right: auto;
        bottom: auto;
        display: none;
        overflow: auto;
        max-width: initial;
        width: 100%;
        height: calc(100vh - 80px);
    }

    header.open .nav-box {
        display: block;
        animation: fade 0.5s ease;
    }

    header .nav-bnr {
        display: none;
    }

    header .nav-header {
        display: flex;
        flex-wrap: wrap;
        padding: 0;
        width: 100%;
        border-radius: 0;
    }

    header .nav-header li {
        margin: 0 auto;
        width: 50%;
        text-align: center;
    }

    header .nav-header li:last-child {
        width: 100%;
    }

    header .nav-header li a {
        display: block;
        margin: 0 auto;
        padding: 20px ;
        border-top: 1px solid #7cc79e;
    }

    header .nav-header li:nth-child(even) a {
        border-left: 1px solid #7cc79e;
    }

    header .nav-header li a:hover {
        background: #61b285;
        color: #fff;
    }

    header .btn-contact {
        display: none;
    }

    #nav-toggle {
        position: absolute;
        top: 20px;
        right: 20px;
        z-index: 10000;
        display: block;
        width: 20px;
        height: 40px;
        cursor: pointer;
    }

    #nav-toggle div {
        position: relative;
    }

    #nav-toggle span {
        position: absolute;
        left: 0;
        display: block;
        width: 100%;
        height: 4px;
        border-radius: 2px;
        background: #fff;
        -webkit-transition: 0.5s ease-in-out;
           -moz-transition: 0.5s ease-in-out;
                transition: 0.5s ease-in-out;
    }

    #nav-toggle span:nth-child(1) {
        top: 16px;
    }

    #nav-toggle span:nth-child(2) {
        top: 25px;
    }

    #nav-toggle span:nth-child(3) {
        top: 34px;
    }

    .open #nav-toggle span:nth-child(1) {
        top: 25px;
        -webkit-transform: rotate(135deg);
           -moz-transform: rotate(135deg);
                transform: rotate(135deg);
    }

    .open #nav-toggle span:nth-child(2) {
        left: 50%;
        width: 0;
    }

    .open #nav-toggle span:nth-child(3) {
        top: 25px;
        -webkit-transform: rotate(-135deg);
           -moz-transform: rotate(-135deg);
                transform: rotate(-135deg);
    }
}

@media (max-width: 896px) {
    /* 初期設定 */
    /* ============================================ */

    body {
        font-size: 14px;
    }

    body::before,
    body::after {
        background-size: 100vw auto;
        transform: rotate(90deg);
    }

    .pc {
        display: none;
    }

    .sp {
        display: block;
    }

    /* メイン*/
    /* ============================================ */

    main {
        padding: 0;
    }

    .anchor {
        top: -80px;
    }

    /* フッター */
    /* ============================================ */

    footer {
        padding: 40px 20px 100px;
        background-position: 50% 100%;
    }

    #pagetop {
        right: 20px;
        bottom: 20px;
    }

    /* 共通パーツ */
    /* ============================================ */

    /* 見出し（H2） */

    .mod-ttl-h2 {
        border-radius: 0;
        font-size: 24px;
    }

    /* MV */

    .mod-box-mv > .box-txt {
        padding: 0 20px;
    }

    .mod-box-mv > .box-txt .ttl {
        font-size: 24px;
    }

    .mod-box-mv > .box-txt .mod-ttl-h2 {
        border-radius: 0 50px 50px 0;
    }

    /* ティッカー */

    .sec-ticker {
        display: none;
    }

    /* トップページ */
    /* ============================================ */

    .page-home .mod-box-mv > .box-img .ttl {
        position: relative;
        right: auto;
        z-index: 1;
        padding: 20px;
        color: #fff;
        text-align: center;
        text-shadow: none;
        font-size: 24px;
    }

    .page-home .box-whats {
        align-items: flex-end;
        margin: 0 auto 40px;
        padding: 20px 20px 0;
        background: url("../img/ill-penguin.svg") no-repeat 20px 20px / 100px auto;
    }

    .page-home .box-whats .ttl {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100px;
        height: 100px;
        background: #61b285;
        font-weight: bold;
        font-size: 20px;
    }

    .page-home .box-whats .txt {
        flex: 1;
        margin: 0 0 0 20px;
        font-size: 12px;
    }

    /* 当店の特徴 */
    /* ============================================ */

    .page-point .mod-box-mv .box-txt {
        background: none;
    }

    .page-point .sec-point > .box-ttl {
        margin: 0 auto 40px;
        padding: 0 20px 40px;
        border-radius: 0;
    }

    .page-point .sec-point > .box-ttl .ttl {
        padding: 60px 35px 20px 70px;
        background: none;
    }

    .page-point .sec-point > .box-ttl .ttl span {
        font-size: 130px;
    }

    /* ポイント（共通） */

    .mod-li-point .box-img,
    .mod-point-access .box-img,
    .mod-point-title .box-img {
        position: relative;
        top: auto !important;
        right: auto !important;
        left: auto !important;
        margin: 0 auto;
        padding: 0 20px;
        max-width: 480px;
    }

    .mod-li-point .box-txt,
    .mod-point-access .box-txt,
    .mod-point-title .box-txt {
        margin: 0 auto !important;
        padding: 20px 20px 80px !important;
        max-width: 400px;
        background: none !important;
    }

    .mod-li-point .box-txt .ttl,
    .mod-point-access .box-txt .ttl,
    .mod-point-title .box-txt .ttl {
        padding: 0;
        background: none;
        font-size: 24px;
    }

    .mod-li-point .box-txt .ttl span {
        font-size: 130px;
    }

    .mod-point-access .box-txt .ttl::after {
        display: none;
    }

    /* 料金プラン・ご利用の流れ */
    /* ============================================ */

    .page-price {
        margin-top: 80px;
    }

    .page-price .li-price {
        display: block;
        padding: 0 20px;
    }

    .page-price .sec-price .ttl-h3 {
        font-size: 20px;
    }

    .page-price .li-price li {
        margin: 40px 0 0;
    }

    .page-price .li-price .column-2 {
        width: auto;
    }

    .page-price .li-price .column-2 .box-ttl .ttl {
        font-size: 34.5px;
    }

    .page-price .li-price .column-2 .box-ttl .cat {
        font-size: 17px;
    }

    .page-price .li-price .column-1 {
        display: block;
    }

    .page-price .li-flow {
        padding: 0 20px;
    }

    .page-price .li-flow li {
        display: block;
        margin: 40px auto 0;
    }

    .page-price .li-flow .box-img {
        width: 100%;
    }

    .page-price .li-flow .box-txt {
        margin: 30px auto 0;
    }

    .page-price .li-flow .box-txt .ttl {
        font-size: 24px;
    }

    .page-price .box-note {
        margin: 40px 20px 0;
        padding: 20px;
    }

    .page-price .box-note ul {
        margin: 20px;
    }

    /* 設備紹介・よくある質問 */
    /* ============================================ */

    .page-facility .mod-box-mv > .box-txt .box-img {
        right: 20px;
        width: 40vw;
    }

    .page-facility .li-facility {
        margin: 0 auto 80px;
        max-width: 480px;
    }

    .page-facility .li-facility li {
        display: block;
    }

    .page-facility .li-facility .box-img {
        text-align: center;
    }

    .page-facility .li-facility .box-txt {
        margin: 20px auto;
        text-align: center;
    }

    .page-facility .li-facility .box-txt .ttl {
        font-size: 24px;
    }

    .page-facility .mod-box-mv .box-txt {
        background: none;
    }

    .page-facility .sec-point > .box-ttl {
        margin: 0 auto 40px;
        padding: 0 20px 40px;
        border-radius: 0;
    }

    .page-facility .sec-point > .box-ttl .ttl {
        padding: 60px 35px 20px 70px;
        background: none;
    }

    .page-facility .sec-point > .box-ttl .ttl span {
        font-size: 130px;
    }

    .page-facility .li-faq {
        padding: 0 20px;
    }

    .page-facility .li-faq .ttl {
        font-size: 24px;
    }

    /* 予約状況・当店について */
    /* ============================================ */

    .page-reserve {
        margin-top: 80px;
    }

    .page-reserve .sec-reserve iframe {
        margin: 0 auto;
    }
    .page-reserve .table-salon {
        width: auto;
    }

    /* お知らせ */
    /* ============================================ */

    .page-news {
        margin-top: 80px;
    }

    .page-news .li-news .box-ttl {
        display: block;
        margin: 0 20px;
        padding: 20px;
    }

    .page-news .li-news .box-ttl .ttl {
        margin: 0 0 5px 0;
        font-size: 24px;
    }

    .page-news .li-news .box-txt {
        padding: 0 20px;
    }

    /* お問い合わせ */
    /* ============================================ */

    .page-contact {
        margin-top: 80px;
    }

    .page-contact .box-tel {
        padding: 0 20px;
    }

    .page-contact .table-form th,
    .page-contact .table-form td {
        display: block;
    }

    .page-contact .table-form th {
        padding: 20px 20px 0;
        width: auto;
    }

    .page-contact .table-form th span {
        top: 0;
        right: 20px;
    }

    .page-contact .table-form td {
        padding: 10px 20px;
    }

    .page-contact .table-form .size-s,
    .page-contact .table-form .size-m,
    .page-contact .table-form .size-l {
        width: 100%;
    }
}
