/* オーバースクロール対策 */
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 15px;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 16px;
    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: 16px;
    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;
    }
}






/* =============================================
プライバシーポリシーページ
============================================= */
.privacy-page {
    padding: 80px 0;
    background: linear-gradient(0deg, #FFF, #FEEFF6);
    min-height: 60vh;
}

.privacy-page__inner {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 40px;
}

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

.privacy-page__lead {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 17px;
    color: #4e4e4e;
    line-height: 1.9;
    margin-bottom: 80px;
}

/* =============================================
セクション
============================================= */
.privacy-page__section {
    margin-bottom: 40px;
}

.privacy-page__section-title {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #884964;
    border-bottom: 2px solid #E7A0BC;
    padding-bottom: 6px;
    margin-bottom: 16px;
}

.privacy-page__text {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 14px;
    color: #4e4e4e;
    line-height: 1.9;
    margin-bottom: 12px;
}

/* =============================================
リスト
============================================= */
.privacy-page__list {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 15px;
    color: #4e4e4e;
    line-height: 1.8;
    padding-left: 1.5em;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.privacy-page__list--ol {
    list-style-type: decimal;
}

.privacy-page__list--alpha {
    list-style-type: lower-alpha;
    margin-top: 8px;
}

.privacy-page__list--roman {
    list-style-type: lower-roman;
    margin-top: 8px;
}

/* =============================================
お問い合わせ窓口
============================================= */
.privacy-page__contact {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 14px;
    color: #4e4e4e;
    line-height: 1.8;
    border-radius: 8px;
    padding: 20px 12px;
    margin-top: 12px;
}

/* =============================================
以上
============================================= */
.privacy-page__end {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 14px;
    color: #4e4e4e;
    text-align: right;
    margin-top: 40px;
    margin-right: 20px;
}

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

    .privacy-page__inner {
        padding: 0 22px;
    }

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

    .privacy-page__lead {
        font-size: 14px;
        margin-bottom: 60px;
    }

    .privacy-page__section-title {
        font-size: 16px;
    }

    .privacy-page__text,
    .privacy-page__list,
    .privacy-page__contact {
        font-size: 13px;
    }
}

























/* =============================================
フッター
============================================= */
.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;
		}
   }