@charset "UTF-8";

/* =========================================================
   ヘッダーメニュー・SPメニュー用CSS
========================================================= */

.header {
    display: flex;
    justify-content: center;
    width: 100%;
    height: auto;
}

.header__spBtn {
    display: none;
}

.header__spBtn__line {
    display: flex;
    flex-direction: column;
    gap: 5px;
    height: 16px;
}

.header__spBtn__line>span {
    background: #fff;
    height: 2px;
    border-radius: 100vmax;
    width: 30px;
}

.header__spBtn>p {
    font-size: 10px;
    color: #fff;
    font-weight: 400;
    line-height: 1;
    margin-top: 1px;
}

.spMenu {
    visibility: hidden;
    opacity: 0;
    padding: 40px 20px;
    transition: visibility .2s, opacity .2s;
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    z-index: 99999;
    background: #fff;
    overflow: scroll;
}

.spMenu .link_btn_area {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 60px;
}

.spMenu .link_btn_area .link_btn {
    background: #A3947E;
    border-radius: 100vmax;
    font-size: 16px;
    color: #fff;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    max-width: 420px;
    padding: 15px;
    width: 100%;
}

.spMenu .link_btn_area .link_btn {
    display: flex;
    align-items: center;
    justify-content: center;
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    width: 100%;
    max-width: 1440px;
    padding: 10px 0;
}

.header__logo {
    width: 200px;
    height: auto;
    margin-bottom: 10px;
}

.header__box {
    display: flex;
    align-items: center;
}

.header__box .header__links {
    display: flex;
    gap: 20px;
}

.header__box .header__links .link_btn_area {
    margin-top: 0;
}

.header__box .header__links .link_btn_area:nth-of-type(1)>.link_btn {
    background: #D16750;
}

.header__box .header__links .link_btn_area>a {
    background: #A3947E;
    border-radius: 100vmax;
    font-size: 18px;
    color: #fff;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    max-width: 420px;
    padding: 15px;
    width: 100%;

    min-width: initial;
    padding: 7px 30px;
    font-size: 16px;
}


.header__pulldown-head {
    display: flex;
    align-items: center;
}


.click-down {
    text-decoration: none;
    font-size: 16px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    position: relative;
    margin-bottom: 5px;
    transition: all 0.3s;
}

.click-down:hover::after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    width: 100%;
    background: #D16750;
}

.header__pulldown-sub {
    display: flex;
    list-style: none;
    position: absolute;
    margin-top: 10px;
    left: 0;
    width: 100%;
    background-color: #fff;
    justify-content: center;

    /* 初めはメニューを隠す */
    opacity: 0;
    visibility: hidden;
    transition: 300ms;
    padding: 30px;
}

.header__pulldown-sub__inner {
    display: flex;
    gap: 40px;
    align-items: start;
}

.header__pulldown-sub__inner>h2 {
    font-size: 28px;
    margin-right: 20px;
    font-weight: 500;
}

.header__pulldown-sub__inner>ul {
    display: flex;
    flex-direction: column;
    width: 220px;
}

.header__pulldown-sub__inner>ul>li>a {
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    font-size: 16px;
}

.header__pulldown-sub__inner>ul>li:not(:last-of-type)>a {
    border-bottom: 1px solid #28282861;
}

.header__pulldown-sub__inner>ul>li>a>span:nth-of-type(2) {
    display: flex;
    align-items: center;
}

.header__pulldown-sub__blocks {
    display: flex;
    gap: 40px;
    width: 480px;
}

.header__pulldown-sub__block {
    flex: 1;
}


.header__pulldown-sub__block>a>p {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 400;
    margin-top: 3px;
}


.header__pulldown-sub__block>a>p>span:nth-of-type(2) {
    display: flex;
    align-items: center;
}


.header__pulldown-sub__img {
    height: 220px;
    border-radius: 6px;
    overflow: hidden;
    background: #F7F5EB;
}

.header__pulldown-sub__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.header__pulldown-sub path {
    fill: #D16750;
}

/* jsでクラスを付けて表示 */
.pulldown-active {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 1439px) {
    .header {
        height: 60px;
    }

    .header__inner {
        height: 100%;
        width: 100%;
        flex-direction: row;
        padding: 0;
    }

    .header__logo {
        max-width: 170px;
        width: 40%;
        height: auto;
        margin-left: 20px;
        margin-bottom: 0;
    }

    .header__box {
        display: none;
    }

    .header__spBtn {
        cursor: pointer;
        background: #D16750;
        border: none;
        width: 60px;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 4px;
    }

    .header__spBtn.openMenu .header__spBtn__line {
        position: relative;
    }

    .header__spBtn.openMenu .header__spBtn__line>span {
        position: absolute;
        top: 50%;
        left: 50%;
    }

    .header__spBtn.openMenu .header__spBtn__line>span:nth-of-type(2) {
        display: none;
    }

    .header__spBtn.openMenu .header__spBtn__line>span:nth-of-type(1) {
        transform: translate(-50%, -50%) rotate(-30deg);
    }

    .header__spBtn.openMenu .header__spBtn__line>span:nth-of-type(3) {
        transform: translate(-50%, -50%) rotate(30deg);
    }

    .spMenu.menuActive {
        visibility: visible;
        opacity: 1;
    }

    .spMenu__items {
        display: flex;
        flex-direction: column;
        gap: 20px;
        max-width: 500px;
        margin: 0 auto 30px auto;
    }

    .spMenu__item>h2 {
        padding: 15px 10px;
        text-align: center;
        background: #D16750;
        color: #fff;
        font-weight: 500;
        font-size: 18px;
        border-radius: 6px 6px 0 0;

    }

    .spMenu__item__body {
        background: #F7F5EB;
        border-radius: 0 0 6px 6px;
        padding: 20px;
    }

    .spMenu__item__body>small {
        font-weight: 300;
        font-size: 12px;
        text-align: center;
        margin-top: 10px;
        display: block;
    }

    .spMenu__item__body__main {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 5px;
    }

    .spMenu__item__body__main>p:nth-of-type(1) {
        border-radius: 3px;
        background: #A3947E;
        color: #fff;
        font-size: 11px;
        text-align: center;
        padding: 5px 10px;
        line-height: 1.3;
    }

    .spMenu__item__body__main-tel {
        color: #D16750;
        font-size: 34px;
        font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
        font-weight: 700;
        letter-spacing: -0.02em;
    }

    .spMenu__item__body__main>a {
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .spMenu__item__body__main>a>img {
        width: 42px;
        height: auto;
    }

    .spMenu__item__body__main>a>p {
        display: flex;
        flex-wrap: wrap;
        font-size: 18px;
        justify-content: start;
        line-height: 1.3;
        font-weight: 700;
        font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
    }

    .spMenu__link>ul {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    .spMenu__links {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .spMenu__link {
        text-align: right;
    }

    .spMenu__link ul li a {
        font-size: 16px;
        font-weight: 300;
        display: block;
    }

    .spMenu__link-bold {
        font-weight: 500 !important;
        font-size: 18px !important;
    }

}

@media (max-width: 500px) {
    .spMenu__item__body {
        padding: 20px 10px;
    }
}


/* =========================================================
   固定ボタン類用CSS
========================================================= */

.header-btn a {
    position: relative
}

.header-btn a:before {
    content: "";
    background: #e2545e;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    position: absolute;
    top: -5px;
    right: -5px;
}

.header-nav .div-bnr a p {
    font-size: 1.7rem !important;
}

.header-btm-list {
    display: flex;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
    justify-content: space-between;
    padding: 10px 20px;
}


.header-btm-list li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-btm-list_img {
    width: 30px;
}

.header-btm-list li:nth-of-type(2) .header-btm-list_img {
    width: 60px;
}

.header-btm-list_txt {
    text-align: center;
}

.header-btm-list_txt p:nth-of-type(1) {
    font-weight: 350;
    font-size: 14px;
}

.header-btm-list_txt p:nth-of-type(2) {
    font-size: 20px;
    font-weight: 500;
    color: #D16750;
}

@media (max-width: 767px) {

    .header-btm-list {
        max-width: 530px;
    }

    .header-btm-list_img {
        width: 25px;
    }

    .header-btm-list li:nth-of-type(2) .header-btm-list_img {
        width: 50px;
    }

    .header-btm-list_txt p:nth-of-type(1) {
        font-size: 11px;
    }

    .header-btm-list_txt p:nth-of-type(2) {
        font-size: 15px;
    }
}

@media (max-width: 500px) {

    .header-btm-list li {
        gap: 5px;
    }
}

.div-fixed-btn a {
    background: none;
    border: 3px solid #D16750;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    border-right: none;
    background: #fff;
}

.div-fixed-btn b {
    font-weight: normal;
}

.div-fixed-btn a i {
    background: #D16750 !important;
}

.bar {
    font-size: 2rem;
}

@media (max-width: 768px) {
    .bar {
        font-size: 1.25rem;
    }
}

.fixed_btn {
    position: fixed;
    bottom: 10px;
    right: -2px;
    padding: 0;
    z-index: 99999;
    width: 70px;
    border: 2px solid #06c755;
    padding: 1em .9em;
    border-radius: .6em 0 0 .6em;
    background: #fff;
}