/* オーバースクロール対策 */
html {
    background-color: #FEEFF6;
    overscroll-behavior: none;
}


/* =============================================
ヘッダー
============================================= */
.header {
    width: 100%;
    background-color: #ffffff;
    box-shadow: 1px 1px 8px #e7a0bc;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
}

.header__inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* ロゴ */
.header__logo img {
    height: 50px;
    width: auto;
}

/* PC用ナビゲーション */
.header__nav-list {
    display: flex;
    gap: 3vw;
}

.header__nav-list a {
    position: relative;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 16px;
    color: #4e4e4e;
    transition: color 0.3s;
}

.header__nav-list a:hover {
    color: #BE7BA9;
}

.header__nav-list a::after {
    content: '';
    position: absolute;
    bottom: -7px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #BE7BA9;
    transition: width 0.3s ease;
}

.header__nav-list a:hover::after {
    width: 100%;
}

/* PC用右側ボタン */
.header__contact {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header__tel {
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 2px solid #CD7FB5;
    border-radius: 40px;
    padding: 5px 30px;
}

.header__tel-label {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 11px;
    font-weight: bold;
    color: #4e4e4e;
}

.header__tel-number {
    font-family: 'M PLUS 1p', sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 21px;
    color: #884964;
}

.header__tel-time {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 10px;
    line-height: 9px;
    color: #BE7BA9;
}

.header__btn-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #CD7FB5;
    color: #ffffff;
    border-radius: 40px;
    padding: 9px 25px;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 17px;

    font-weight: 700;
    transition: background-color 0.3s;
}

.header__btn-contact:hover {
    background-color: #B65D9A;
}

.header__btn-contact-label {
    font-size: 12px;
    font-weight: 400;
}

/* =============================================
ハンバーガーメニューボタン（SP用）
============================================= */
.header__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 30px;
}

.header__hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    border-radius: 10px;
    background-color: #BE7BA9;
    transition: all 0.4s ease;
}


/* =============================================
SPメニュー
============================================= */
.header__sp-menu {
    /* display: none; */
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #FEEFF6;
    z-index: 200;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.header__sp-menu.is-open {
    opacity: 1;
    visibility: visible;
}

.header__sp-menu-inner {
    padding: 18px 5.2% 40px;
}

.header__sp-menu-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
}

.header__sp-close {
    position: relative;
    width: 30px;
    height: 30px;
}
.header__sp-close span {
    display: block;
    position: absolute;
    width: 100%;
    height: 3px;
    border-radius: 10px;
    background-color: #BE7BA9;
    top: 50%;
    left: 0;
    transition: all 0.4s ease;
}

.header__sp-close span:nth-child(1) {
    transform: translateY(-50%) rotate(45deg);
}

.header__sp-close span:nth-child(2) {
    transform: translateY(-50%) rotate(-45deg);
}

.header__sp-nav-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 12px;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 18px;
    color: #4e4e4e;
}

.header__sp-btns {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 40px;
}

.header__sp-btn-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    background: linear-gradient(90deg,#E8A1BC, #CD7FB5);
    color: #ffffff;
    border-radius: 40px;
    padding: 16px 10px;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 17px;
    font-weight: 700;
}

.header__sp-btn-contact span {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: -0.6px;
}

.header__sp-btn-tel {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    background-color: #ffffff;
    color: #4e4e4e;
    border: 2px solid #CD7FB5;
    border-radius: 50px;
    padding: 12px 24px;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 17px;
    font-weight: 700;
}

.header__sp-btn-tel span {
    font-family: 'M PLUS 1p', sans-serif;
    font-size: 20px;
    line-height: 20px;
    color: #884964;
}



/* =============================================
レスポンシブ
============================================= */
@media (max-width: 1023px) {
    .header__nav,
    .header__contact {
        display: none;
    }

    .header__hamburger {
        display: flex;
    }

    .header__inner {
        padding: 20px 5.2%;
        height: 85px;
    }
}





/* =============================================
お問い合わせページ
============================================= */
/* =============================================
   Contact Form 7 スタイル上書き
============================================= */

.wpcf7-list-item-label {
    font-size: 14px;
}
.wpcf7-list-item-label::before, .wpcf7-list-item-label::after {
    display: none;
}

.wpcf7-list-item label {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* フォーム全体のmarginリセット */
/* .wpcf7 {
    margin: 0;
    padding: 0;
} */

/* テキスト・メール・電話・住所入力欄 */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"] {
    width: 100%;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 14px;
    color: #4e4e4e;
    background-color: #ffffff;
    border-radius: 6px;
    padding: 12px 16px;
    outline: none;
    transition: border-color 0.3s;
    box-sizing: border-box;
}

/* .wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 input[type="tel"]:focus {
    border-color: #CD7FB5;
} */

/* セレクトボックス */
.wpcf7 select {
    width: 100%;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 14px;
    color: #4e4e4e;
    background-color: #ffffff;
    border-radius: 6px;
    padding: 12px 16px;
    outline: none;
    appearance: none;
    cursor: pointer;
    box-sizing: border-box;
    transition: border-color 0.3s;
}

.wpcf7 .contact-form__select-wrap {
    position: relative;
}

.wpcf7 .contact-form__select-wrap::after {
    content: '﹀';
    position: absolute;
    right: 16px;
    top: 57%;
    transform: translateY(-50%);
    color: #BE7BA9;
    pointer-events: none;
    font-size: 14px;
}

/* .wpcf7 select:focus {
    border-color: #CD7FB5;
} */

/* テキストエリア */
.wpcf7 textarea {
    width: 100%;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 14px;
    color: #4e4e4e;
    background-color: #ffffff;
    border-radius: 6px;
    padding: 12px 16px;
    outline: none;
    resize: vertical;
    min-height: 160px;
    transition: border-color 0.3s;
    box-sizing: border-box;
}

/* .wpcf7 textarea:focus {
    border-color: #CD7FB5;
} */

/* チェックボックス */
.wpcf7 input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #CD7FB5;
    cursor: pointer;
    flex-shrink: 0;
}

/* 送信ボタン */
.wpcf7 input[type="submit"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, #E8A1BC, #CD7FB5);
    color: #ffffff;
    border: none;
    border-radius: 30px;
    padding: 0 60px;
    height: 54px;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: opacity 0.3s;
    -webkit-appearance: none;
    appearance: none;
}

.wpcf7 input[type="submit"]:hover {
    opacity: 0.85;
}

/* バリデーションエラーメッセージ */
.wpcf7 .wpcf7-not-valid-tip {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 12px;
    color: #E39ABB;
    margin-top: 4px;
    display: block;
}

/* 送信結果メッセージ */
.wpcf7 .wpcf7-response-output {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 14px;
    border-radius: 6px;
    padding: 12px 16px;
    margin-top: 16px;
    border: 1px solid #E7A0BC;
    color: #884964;
}

.wpcf7-spinner {
    display: none;
}

.wpcf7-list-item {
    margin: 0;
}

.contact-form__group input,
.contact-form__group select,
.contact-form__group textarea {
    width: 100%;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 14px;
    color: #4e4e4e;
    background-color: #ffffff;
    /* border: 1px solid #E7A0BC; */
    border: 2px solid rgba(217, 217, 217, 217.6);
    border-radius: 6px;
    padding: 12px 16px;
    outline: none;
    transition: border-color 0.3s;
}

.contact-form__group br {
    display: none;
}

.contact-form__group input:focus,
.contact-form__group select:focus,
.contact-form__group textarea:focus {
    border-color: #CD7FB5;
}


.contact-page {
    padding: 80px 0 100px;
    /* background-color: #FEEFF6; */
    background: linear-gradient(0deg, #FFF, #FEEFF6);
    min-height: 60vh;
}

.contact-page__inner {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 40px;
}

.contact-page__title {
    font-family: 'M PLUS 1p', sans-serif;
    font-size: 28px;
    color: #884964;
    text-align: center;
    margin-bottom: 12px;
}

.contact-page__desc {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 17px;
    color: #4e4e4e;
    text-align: center;
    line-height: 1.8;
    margin-bottom: 40px;
}

/* =============================================
フォームラップ
============================================= */
.contact-page__form-wrap {
    background-color: #ffffff;
    box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.25);
    border-radius: 16px;
    padding: 40px;
}

/* =============================================
フォームグループ
============================================= */
.contact-form__group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 24px;
}

.contact-form__label {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #4e4e4e;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.contact-form__required {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: #ffffff;
    background-color: #E39ABB;
    border-radius: 4px;
    padding: 2px 6px;
}

/* =============================================
入力フィールド
============================================= */
.contact-form__input,
.contact-form__select,
.contact-form__textarea {
    width: 100%;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 14px;
    color: #4e4e4e;
    background-color: #ffffff;
    /* border: 1px solid #E7A0BC; */
    border: 2px solid rgba(217, 217, 217, 217.6);
    border-radius: 6px;
    padding: 12px 16px;
    outline: none;
    transition: border-color 0.3s;
}

.contact-form__input:focus,
.contact-form__select:focus,
.contact-form__textarea:focus {
    border-color: #CD7FB5;
}

/* セレクトボックス */
.contact-form__select-wrap {
    position: relative;
}

.contact-form__select-wrap::after {
    content: '﹀';
    position: absolute;
    right: 16px;
    top: 57%;
    transform: translateY(-50%);
    color: #BE7BA9;
    pointer-events: none;
    font-size: 14px;
}

.contact-form__select {
    appearance: none;
    cursor: pointer;
}

/* テキストエリア */
.contact-form__textarea {
    resize: vertical;
    min-height: 160px;
}

/* =============================================
個人情報の取り扱い
============================================= */
.contact-form__privacy {
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-form__checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.contact-form__checkbox {
    width: 16px;
    height: 16px;
    accent-color: #CD7FB5;
    cursor: pointer;
    flex-shrink: 0;
}

.contact-form__checkbox-text {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 14px;
    color: #4e4e4e;
}

.contact-form__privacy-note {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 11px;
    color: #BE7BA9;
    line-height: 1.6;
    padding-left: 24px;
    margin-top: 8px;
    margin-bottom: 32px;
}

.contact-form__privacy-link {
    color: #BE7BA9;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: opacity 0.3s;
}

.contact-form__privacy-link:hover {
    opacity: 0.7;
}

/* =============================================
送信ボタン
============================================= */
.contact-form__submit-wrap {
    text-align: center;
}

.contact-form__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    /* background: linear-gradient(90deg, #E8A1BC, #CD7FB5); */
    box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.25);
    background-color: #E39ABB;
    color: #ffffff;
    border-radius: 30px;
    padding: 0 60px;
    height: 54px;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: opacity 0.3s;
}

.contact-form__submit:hover {
    opacity: 0.85;
}

/* =============================================
レスポンシブ（SP）
============================================= */
@media (max-width: 768px) {
    .contact-page {
        padding: 60px 0 70px;
    }

    .contact-page__inner {
        padding: 0 20px;
    }

    .contact-page__title {
        font-size: 22px;
    }

    .contact-page__desc {
        font-size: 15px;
    }

    .contact-page__form-wrap {
        padding: 24px 20px;
    }

    .contact-form__submit {
        width: 100%;
        padding: 0;
    }
}





/* =============================================
CTAセクション
============================================= */
.cta {
    background-color: #B66487;
    padding: 90px 0;
}

.cta__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
}

.cta__title {
    font-family: 'M PLUS 1p', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 16px;
}

.cta__desc {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 17px;
    color: #ffffff;
    text-align: center;
    margin-bottom: 40px;
}

/* カード */
.cta__card {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 48px 80px;
    display: flex;
    align-items: center;
    gap: 0;
}

.cta__block {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 17px;
}

/* 縦の区切り線 */
.cta__divider {
    width: 1px;
    height: 200px;
    background-color: #E7A0BC;
    margin: 0 7%;
    flex-shrink: 0;
}

.cta__block-label {
    font-family: 'M PLUS 1p', sans-serif;
    font-size: 21px;
    font-weight: 700;
    color: #884964;
}

/* フォームボタン */
.cta__btn-form {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, #E8A1BC, #CD7FB5);
    color: #ffffff;
    border-radius: 50px;
    /* padding: 0 40px; */
    height: 75px;
    max-width: 360px;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 20px;
    font-weight: 700;
    transition: transform 0.3s ease;
}

.cta__btn-form:hover {
    transform: scale(1.03);
}

.cta__block-text {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 14px;
    color: #4e4e4e;
    line-height: 1.8;
}

/* 電話番号 */
.cta__tel {
    font-family: 'M PLUS 1p', sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: #884964;
    line-height: 1.2;
}

.cta__tel-time {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 15px;
    color: #BE7BA9;
    margin-top: -10px;
}

/* =============================================
レスポンシブ（SP）CTA
============================================= */
@media (max-width:900px) {
    .cta__card {
        padding: 48px 60px;
    }
}

@media (max-width: 768px) {
    .cta {
        padding: 60px 0;
    }

    .cta__inner {
        padding: 0 22px;
    }

    .cta__title {
        font-size: 23px;
    }

    .cta__desc {
        font-size: 13.5px;
       letter-spacing: -.35px;
    }

    .cta__card {
        width: 500px;
        margin: 0 auto;
        flex-direction: column;
        padding: 32px 40px;
        gap: 32px;
    }

    .cta__block {
        width: 100%;
        align-items: center;
        text-align: center;
        gap: 12px;
    }

    /* SP：横の区切り線に変更 */
    .cta__divider {
        width: 100%;
        height: 1px;
        margin: 0;
    }

    .cta__btn-form {
        width: 265px;
        height: 60px;
        max-width: 100%;
        font-size: 16px;
    }

    .cta__tel {
        font-size: 28px;
    }

    .cta__block-text {
        text-align: center;
        font-size: 13.5px;
    }
}

@media (max-width:539px) {
    .cta__card {
        width: 100%;
    }
}


/* =============================================
フッター
============================================= */
.footer {
    background-color: #501731;
    padding: 24px 100px;
}

.footer__inner {
    max-width: 1300px;
    margin: 0 auto;
    /* padding: 0 40px; */
}

/* 上段 */
.footer__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    /* margin-bottom: 40px; */
}

/* ロゴ */
.footer__logo img {
    height: 50px;
    width: auto;
    margin-bottom: 16px;
}

/* 住所 */
.footer__address {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 13px;
    color: #fff;
    line-height: 1.8;
}

/* ナビ */
.footer__nav {
    display: flex;
    align-items: center;
}

.footer__nav-list {
    display: flex;
    gap: 28px;
}

.footer__nav-list a {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 14px;
    color: #fff;
    transition: color 0.3s;
}

.footer__nav-list a:hover {
    color: #E7A0BC;
}

/* コピーライト */
.footer__bottom {
    text-align: center;
}

.footer__copyright {
    font-family: 'M PLUS 1p', sans-serif;
    font-size: 12px;
    color: #fff;
}

/* =============================================
レスポンシブ（SP）フッター
============================================= */
@media (max-width: 852px) {
    .footer {
        padding: 30px 0 20px;
    }

    .footer__inner {
        padding: 0 8%;
    }

    .footer__top {
        flex-direction: column;
        gap: 16px;
        margin-bottom: 32px;
    }

    .footer__nav-list {
        flex-wrap: wrap;
        gap: 22px;
    }

    .footer__nav-list a {
        font-size: 12px;
    }

    .footer__address {
        font-size: 12px;
    }
}

@media (max-width: 375px) {
    .footer__nav-list {
        gap: 16px;
    }
}



/* =============================================
追従ボタン
============================================= */
.floating-btn {
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.floating-btn.is-show {
    opacity: 1;
    visibility: visible;
}

.floating-btn img {
    width: 80px;
    height: auto;
    cursor: pointer;
    transition: .4s;
}
.floating-btn img:hover {
    transform: scale(.9,.9);
}

/* =============================================
レスポンシブ（SP）
============================================= */
@media (max-width: 768px) {
    .news {
        padding: 60px 0;
    }

    .news__inner {
        padding: 0 20px;
    }

    .section-title {
        font-size: 22px;
    }

    .section-desc {
        font-size: 14px;
        line-height: 22px;
        letter-spacing: -0.5px;
    }
    .section-desc .news-br {
    display:block;
    }

    .news__tab {
        width: 30%;
        padding: 14px 0px;
        font-size: 13px;
    }

    .news__item {
        padding: 16px;
        gap: 12px;
    }

    .news__title {
        font-size: 12px;
        font-weight: 600;
    }

    .news__body {
        gap: 2px;
    }

    .floating-btn {
        bottom: 20px;
        right: 20px;
    }

    .floating-btn img {
        width: 65px;
    }
}

@media (max-width: 440px) {
	.floating-btn {
		bottom: 10px;
    	right: 15px;
		}
	.floating-btn img {
    width: 52px;
		}
}