/* =============================================
基本設定
============================================= */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

body {
    font-family: 'Zen Maru Gothic', sans-serif;
    color: #4e4e4e;
    background-color: #ffffff;
    padding-top: 80px; /* ヘッダーの高さ分 */
}
html {
    scroll-behavior: smooth;
}

/* =============================================
ヘッダー
============================================= */
/* WordPress管理バー対応 */
.admin-bar .header {
    top: 32px;
}

@media (max-width: 782px) {
    .admin-bar .header {
        top: 46px;
    }
}

.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 {
    /* display: block; */
    opacity: 1;
    visibility: visible;
}

.header__sp-menu-inner {
    padding: 18px 5% 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 li {
    border-bottom: 1px dashed #E7A0BC;
}

.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;
    }
}