@charset "UTF-8";

/* 追加CSS */
/* ↓修正 20250410 */
#front_sec01::before {
    height: calc(100% + 40px);
}

#front_sec04 {
    margin-top: 140px;

    @media (max-width : 767px) {
        margin-top: 70px;
    }
}

/* ↓修正 20250822 */
#front_sec_news .grid_box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    -moz-column-gap: clamp(30px, 3.2942898975vw, 45px);
    column-gap: clamp(30px, 3.2942898975vw, 45px);
}

@media (max-width: 767px) {
    #front_sec_news .grid_box {
        grid-template-columns: 1fr;
        row-gap: clamp(30px, 5.8670143416vw, 45px);
    }
}

#front_sec_news .news-box {
    width: 100%;
    height: 100%;
}

#front_sec_news .ttl_box {
    width: 100%;
}

#front_sec_news .more {
    margin: 30px 0;
}

@media (max-width: 767px) {
    #front_sec_news .more {
        margin: 0;
    }
}

/* ↓追加CSS 20260106 */
.accordion_one .ac_inner {
    display: none;
}

/* ↓追加CSS 20260108 */
/*--------- mv修正 ---------*/
.main_visual .main_visual_slick {
    height: calc(100vh - 245px) !important;
}

@media (max-width: 768px) {
    .main_visual .main_visual_slick {
        height: calc(100vh - 380px) !important;
        min-height: 215px;
    }
}

@media (max-width: 425px) {
    .main_visual .main_visual_slick {
        height: calc(100vh - 600px) !important;
    }
}

.main_visual .main_visual_slick li img {
    object-position: center bottom;
}

/*--------- section1追加 ---------*/

@media (max-width: 1023px) {
    #front_sec_news {
        padding: 100px 0;
    }
}

@media (max-width: 767px) {
    #front_sec_news {
        padding: 40px 0;
        margin-bottom: 60px !important;
    }
}

#front_sec_bnr {
    padding-top: 120px;
    margin-bottom: 0;
}

@media (max-width: 1023px) {
    #front_sec_bnr {
        padding-top: 80px;
    }
}

@media (max-width: 767px) {
    #front_sec_bnr {
        padding-top: 50px;
    }
}


/* バナー上段 */

#front_sec_bnr .container .inner {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

@media (max-width: 767px) {
    #front_sec_bnr .container .inner {
        display: block;
    }
}


/* バナー共通 */
#front_sec_bnr .container a {
    display: block;
    width: 485px;
    max-width: 485px;
    transition: opacity 0.3s ease;
}


#front_sec_bnr .container a:hover {
    opacity: 0.8;
}

#front_sec_bnr .container a figure img {
    width: 100%;
}

/* バナー個別 */

@media (max-width: 767px) {
    #front_sec_bnr .container .bnr {
        margin: auto;
        width: 100%;
    }
}


@media (max-width: 767px) {
    #front_sec_bnr .container .bnr_01 {
        margin-bottom: 20px;
    }
}


#front_sec_bnr .container .bnr_03 {
    margin: auto;
}

@media (max-width: 1023px) {
    #front_sec_bnr .container .bnr_03 {
        width: 50%;
    }
}

@media (max-width: 767px) {
    #front_sec_bnr .container .bnr_03 {
        width: 100%;
    }
}

/* ---------section3　修正--------- */
:root {
    --color_text: #333;
    --color_primary: #BFAA7D;
    --color_secondary: #33333366;
}

/* ===============================================
accordion
=============================================== */

/* header */
.accordion_area .accordion_one .ac_header {
    border-top: 1px solid #ccc;
    padding: 35px;
    position: relative;
    cursor: pointer;
}

/* last */
.accordion_area .accordion_one:last-child {
    border-bottom: 1px solid #ccc;
}

/* + - icon */
.accordion_area .accordion_one .ac_header .i_box {
    position: absolute;
    top: 50%;
    right: 2rem;
    width: 20px;
    height: 20px;
    margin-top: -10px;
    cursor: pointer;
}

/* icon lines */
.accordion_area .accordion_one .ac_header .i_box::before,
.accordion_area .accordion_one .ac_header .i_box::after {
    content: "";
    position: absolute;
    box-sizing: border-box;
}

/* horizontal */
.accordion_area .accordion_one .ac_header .i_box::before {
    border-top: 2px solid var(--color_text);
    width: 20px;
    top: 10%;
    left: 0;
}

/* vertical */
.accordion_area .accordion_one .ac_header .i_box::after {
    border-left: 2px solid var(--color_text);
    height: 20px;
    top: 0;
    left: 9px;
    transition: 0.3s;
}

/* open = minus */
.accordion_area .accordion_one .ac_header.open .i_box::after {
    height: 0;
}

/* content */
.accordion_area .accordion_one .ac_inner {
    display: none;
    padding: 0 35px 35px;
    box-sizing: border-box;
}

/* ===============================================
FAQ text
=============================================== */

/* Q */
.p-faq__headinner {
    padding-left: 32px;
    position: relative;
    line-height: 1.5;
}

.p-faq__headinner::before {
    content: "◎";
    position: absolute;
    left: 0;
    top: 40%;
    transform: translateY(-50%);
    color: var(--color_primary);
    font-size: 25px;
    font-weight: bold;
    line-height: 1;
}

.p-faq__headinner .p-faq__q-txt {
    font-size: 20px;
    letter-spacing: 0.06em;
}

/* A */
.p-faq__bodyinner {
    padding-left: 32px;
    position: relative;
    line-height: 1.6;
}

.p-faq__bodyinner::before {
    content: "";
    position: absolute;
    left: 0;
    color: var(--color_secondary);
    font-size: 20px;
    font-weight: bold;
    line-height: 1.2;
}

.p-faq__bodyinner .p-faq__a-txt {
    font-size: 18px !important;
    /* line-height: 1.8889;
    letter-spacing: 0.02em; */
    margin-bottom: 1.8em;
}

/* ===============================================
SP
=============================================== */

@media (max-width: 767px) {

    .accordion_area .accordion_one .ac_header {
        padding: 1.5rem 3rem 1.5rem 1rem;
    }

    .accordion_area .accordion_one .ac_header .i_box {
        right: 0.8rem;
        width: 15px;
        height: 15px;
        margin-top: -7px;
    }

    .accordion_area .accordion_one .ac_header .i_box::before {
        width: 15px;
    }

    .accordion_area .accordion_one .ac_header .i_box::after {
        height: 15px;
        left: 7px;
    }

    .accordion_area .accordion_one .ac_inner {
        padding: 0 1.5rem 1.5rem 1rem;
    }

    .p-faq__headinner {
        padding-left: 25px;
    }

    .p-faq__headinner::before {
        font-size: 18px;
    }

    .p-faq__headinner .p-faq__q-txt {
        font-size: 16px !important;
    }

    .p-faq__bodyinner {
        padding-left: 25px;
    }

    .p-faq__bodyinner::before {
        font-size: 18px;
    }

    .p-faq__bodyinner .p-faq__a-txt {
        font-size: 16px !important;
        margin-bottom: 1.5em;
    }
}

/* ===============================================
# faq end
=============================================== */


/*--------- サイドメニュー ---------*/

.side_fix ul li:nth-of-type(1) a {
    background: #BFAA7D;
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
    text-orientation: upright;
    display: block;
    font-weight: 500;
    text-align: center;
    font-size: 14px;
    line-height: 1.875em;
    padding: 40px 20px 15px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    letter-spacing: 0.1em;
    position: relative;
}

.side_fix ul li:nth-of-type(1) a::before {
    content: "";
    display: block;
    width: 22px;
    height: 22px;
    position: absolute;
    background: url(/wp-content/uploads/reservation_icon.png) no-repeat center / contain;
    top: 13px;
    bottom: auto;
    left: 50%;
    right: auto;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}


.side_fix ul li:nth-of-type(2) a::before {
    content: "";
    display: block;
    width: 22px;
    height: 22px;
    position: absolute;
    background: url(/wp-content/uploads/sp_footer_icon003.png) no-repeat center / contain;
    top: 13px;
    bottom: auto;
    left: 50%;
    right: auto;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

@media (max-width: 1023px) {
    .side_fix ul li:nth-of-type(1) {
        display: none;
    }

    .side_fix ul li:nth-of-type(2) {
        display: none;
    }
}


/*--------- フッターメニュー ---------*/

#id_name .sp>* {
    width: 50%;
}

/*--------- ヘッダーメニュー ---------*/

main {
    margin-top: 100px;
}

header .container {
    width: 90%;
}

header .title {
    padding: 20px 0 20px;
}

header .title a {
    width: 330px;
    height: 58px;
}

#header_fix {
    background: #ffffff;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10001;
    transition: .4s
}

#header_fix.fixed {
    animation: scrolltop 1s;
    box-shadow: 0 0 5px rgba(0, 0, 0, .15);
}

#header_fix.fixed .gnav {
    display: none;
}

#header_fix .gnavi_top_manu {
    width: 56%;
    position: absolute;
    top: 35%;
    left: 53%;
    transform: translate(-50%, -50%);
    list-style: none;
    padding: 0;
}

#header_fix .gnavi_top_manu li {
    margin-bottom: 0;
    display: inline-block;
}

#header_fix .gnavi_top_manu a {
    text-decoration: none;
    display: block;
    letter-spacing: 0.02em;
    color: #746850;
    padding: 0 1.2em;
    border-right: 1px dashed #80735978;
    line-height: 1.2;
}

#header_fix .gnavi_top_manu li:nth-of-type(6) a {
    border-right: none;
    padding-right: 0;
}

#header_fix .gnavi_top_manu li:nth-of-type(1) a {
    padding-left: 0;
}

@keyframes scrolltop {
    0% {
        transform: translateY(-140px);
        opacity: 0
    }

    100% {
        transform: translateY(0);
        opacity: 1
    }
}

@media (max-width: 1780px) {
    main {
        margin-top: 80px;
    }

    header .header_info_wrap .tel {
        font-size: 3rem;
    }

    header .title a {
        width: 300px;
        height: 52px;
    }

    #header_fix .gnavi_top_manu {
        width: 60%;
    }

    #header_fix .gnavi_top_manu a {
        font-size: 15px;
    }

}

@media (max-width: 1645px) {

    header .title a {
        width: 250px;
        height: 45px;
    }

    header .header_info_wrap .tel {
        font-size: 2.8rem;
    }

    header .header_info_wrap .add {
        font-size: 1.1rem;
    }

    #header_fix .gnavi_top_manu {
        top: 30%;
        left: 55%;
    }

    #header_fix .gnavi_top_manu a {
        font-size: 13px;
        padding: 0 1em;
    }
}

@media (max-width: 1500px) {

    #header_fix .gnavi_top_manu {
        left: 54%;
    }
}

@media (max-width: 1440px) {

    #header_fix .gnavi_top_manu {
        left: 52%;
    }

    #header_fix .gnavi_top_manu a {
        font-family: 12px;
    }

    header .header_info_wrap .tel {
        font-size: 2.5rem;
        background: url(/wp-content/uploads/tel_icon.png) no-repeat left 6px / 0.48em;
    }

    header .header_info_wrap .add {
        font-size: 1rem;
    }
}

@media (max-width: 1344px) {
    #header_fix .gnavi_top_manu {
        display: none;
    }
}

@media (max-width: 1279px) {

    main {
        margin-top: 60px;
    }

    header .title a {
        width: 197px;
        height: auto;
        min-width: auto;
    }

}