/* 共通 */
:root {
    --txt_ja: "Noto Serif JP", serif;
    --txt_en: "Cormorant Infant", serif;
    --fw_bold: bold;
    --fw_md: 500;
    --main_color: #FFE9B0;
    --accent_color: #FB9804;
    --font_color: #352722;
    --bg_color: #1D1C1C;
}

.section_ttl_box>p {
    font-family: var(--txt_en);
    font-size: 18px;
    line-height: 140%;
    letter-spacing: calc(18px * (4 / 100));
    margin-bottom: 26px;
}
.section_ttl_box>h2 {
    font-size: 48px;
    line-height: 56px;
    letter-spacing: calc(48px * (4 / 100));
    font-weight: 500;
}

/* 下層ページ */
.main_layer {
    padding: 0 40px;
    margin-top: 190px;
}

.layer_fv_box {
    position: relative;
}

.layer_fv_txt_box {
    position: absolute;
    bottom: 4px;
    left: 50%;
    display: flex;
    max-width: 1200px;
    min-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    transform: translateX(-50%);
}
.layer_fv_ttl_box {
    width: 132px;
    height: auto;
    text-align: center;
    padding: 32px 40px 113px;
    background-color: #1D1C1C;
    margin-right: 4px;
}
.layer_fv_ttl_box>p {
    font-family: var(--txt_en);
    font-size: 18px;
    line-height: 140%;
    letter-spacing: calc(18px * (4 / 100));
    color: var(--main_color);
    margin-bottom: 26px;
}
.layer_fv_ttl_box>h2 {
    font-size: 48px;
    line-height: 56px;
    color: var(--main_color);
    writing-mode: vertical-rl;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: vertical-rl;
}
.layer_fv_txt {
    width: 400px;
    height: auto;
    padding: 30px 50px;
    background-color: #1D1C1C;
}
.layer_fv_txt>p:first-child {
    font-size: 20px;
    line-height: 180%;
    letter-spacing: calc(20px * (4 / 100));
    color: var(--main_color);
    font-weight: bold;
    margin-bottom: 28px;
}
.layer_fv_txt>p:last-child {
    font-size: 14px;
    line-height: 200%;
    letter-spacing: calc(14px * (4 / 100));
    color: var(--main_color);
}



@media only screen and (max-width: 1200px) {
    .layer_fv_txt_box {
        max-width: 1000px;
        min-width: 1000px;
    }
}
@media only screen and (max-width: 1000px) {
    .layer_fv_txt_box {
        max-width: 750px;
        min-width: 750px;
    }
}

@media only screen and (max-width: 768px) {
    .main_layer {
        padding: 0;
        margin-top: 0;
    }
    .layer_fv_txt_box {
        position: unset;
        padding-left: 15px;
        padding-right: 15px;
        min-width: unset;
        margin-top: -30px;
        transform: unset;
        -webkit-transform: unset;
        -moz-transform: unset;
        -ms-transform: unset;
        -o-transform: unset;
    }
    .layer_fv_ttl_box {
        width: 24%;
        padding: 16px 24px;
    }
    .layer_fv_ttl_box>p {
        font-size: 12px;
        letter-spacing: calc(12px * (4 / 100));
    }
    .layer_fv_ttl_box>h2 {
        font-size: 32px;
        line-height: 32px;
        margin: auto;
    }
    .layer_fv_txt {
        width: 75%;
        padding: 16px;
    }
}


/* section_left */
.section_left {
    margin-top: 61px;
}
.section_left_box {
    display: flex;
    justify-content: space-between;
    align-items: start;
    width: 90%;
    height: auto;
}
.section_left_img {
    width: 70%;
    aspect-ratio: 125 / 68;
}
.section_left_txt_wrap {
    display: flex;
    justify-content: space-between;
    width: 25%;
}
.section_left_txt_box {
    width: 85%;
}
.section_left_txt_box>p:nth-child(1) {
    width: 100%;
    display: flex;
    align-items: center;
    font-size: 16px;
    line-height: 46px;
    writing-mode: vertical-rl;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: vertical-rl;
    margin-bottom: 50px;
}
.section_left_txt_box>p:nth-child(2) {
    font-size: 14px;
    line-height: 200%;
    letter-spacing: calc(14px * (4 / 100));
    margin-bottom: 38px;
}
.section_left_txt_cont>dl {
    display: flex;
    border-top: 1px solid #3B3830;
    padding-top: 10px;
    padding-bottom: 10px;
}
.section_left_txt_cont>dl>dt {
    width: 30%;
    font-size: 14px;
    line-height: 200%;
    letter-spacing: calc(14px * (4 / 100));
    font-weight: 400;
}
.section_left_txt_cont>dl>dd {
    width: 65%;
    font-size: 14px;
    line-height: 200%;
    letter-spacing: calc(14px * (4 / 100));
}


.section_left_ttl_box {
    position: relative;
    width: 10%;
    display: flex;
    justify-content: center;
}
.section_left_ttl_box>h2 {
    font-size: 24px;
    line-height: 30px;
    writing-mode: vertical-rl;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: vertical-rl;
}
.section_left_ttl_box::after {
    position: absolute;
    bottom: 0;
    left: 50%;
    content: '';
    width: 1px;
    height: calc(100% - 72px);
    background-color: #3B3830;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}

@media only screen and (max-width: 768px) {
    .section_left {
        margin-top: 128px;
    }
    .section_left_box {
        display: block;
        width: 100%;
    }
    .section_left_img {
        width: 90%;
        margin-bottom: 31px;
    }
    .section_left_txt_wrap {
        width: 100%;
        padding: 0 40px;
    }
    .section_left_txt_box {
        width: 79%;
    }
    .section_left_ttl_box>h2 {
        font-size: 20px;
        letter-spacing: 10px;
    }
}

/* section_right */
.section_right {
    margin-top: 114px;
}
.section_right_box {
    display: flex;
    justify-content: space-between;
    align-items: start;
    width: 90%;
    height: auto;
    margin-left: auto;
}
.section_right_img {
    width: 70%;
    aspect-ratio: 125 / 68;
}
.section_right_txt_wrap {
    display: flex;
    justify-content: space-between;
    width: 25%;
}
.section_right_txt_box {
    width: 85%;
}
.section_right_txt_box>p:nth-child(1) {
    width: 100%;
    display: flex;
    align-items: center;
    font-size: 16px;
    line-height: 46px;
    writing-mode: vertical-rl;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: vertical-rl;
    margin-bottom: 50px;
}
.section_right_txt_box>p:nth-child(2) {
    font-size: 14px;
    line-height: 200%;
    letter-spacing: calc(14px * (4 / 100));
    margin-bottom: 38px;
}
.section_right_txt_cont>dl {
    display: flex;
    border-top: 1px solid #3B3830;
    padding-top: 10px;
    padding-bottom: 10px;
}
.section_right_txt_cont>dl>dt {
    width: 30%;
    font-size: 14px;
    line-height: 200%;
    letter-spacing: calc(14px * (4 / 100));
    font-weight: 400;
}
.section_right_txt_cont>dl>dd {
    width: 65%;
    font-size: 14px;
    line-height: 200%;
    letter-spacing: calc(14px * (4 / 100));
}


.section_right_ttl_box {
    position: relative;
    width: 10%;
    display: flex;
    justify-content: center;
}
.section_right_ttl_box>h2 {
    font-size: 24px;
    line-height: 30px;
    writing-mode: vertical-rl;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: vertical-rl;
}
.section_right_ttl_box::after {
    position: absolute;
    bottom: 0;
    left: 50%;
    content: '';
    width: 1px;
    height: calc(100% - 72px);
    background-color: #3B3830;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}

@media only screen and (max-width: 768px) {
    .section_right {
        margin-top: 50px;
    }
    .section_right_box {
        flex-wrap: wrap;
        flex-direction: column-reverse;
        width: 100%;
    }
    .section_right_img {
        width: 90%;
        margin-bottom: 36px;
        margin-left: auto;
    }
    .section_right_txt_wrap {
        width: 100%;
        padding: 0 40px;
    }
    .section_right_txt_box {
        width: 79%;
    }
    .section_right_ttl_box::after {
        height: calc(100% - 250px);
    }
    .section_right_ttl_box>h2 {
        font-size: 20px;
        letter-spacing: 10px;
    }
}

/* onsen */
.onsen_ttl_box2.section_right_ttl_box::after {
    height: calc(100% - 182px);
}
.onsen_section_right {
    margin-bottom: 100px;
}


/* facility */
.facility {
    margin-top: 146px;
}
.facility_mb {
    margin-bottom: 100px;
}
.facility_box {
    display: flex;
    justify-content: space-between;
    padding-top: 30px;
    border-top: 1px solid #3B3830;
}
.facility_ttl_box {
    width: 40%;
    height: auto;
}
.facility_ttl_box>h2 {
    font-family: var(--txt_en);
    font-size: 36px;
    line-height: 140%;
    letter-spacing: calc(36px * (4 / 100));
    margin-bottom: 19px;
}
.facility_ttl_box>h2>span {
    display: none;
}
.facility_ttl_box>p {
    font-size: 16px;
    line-height: 180%;
    letter-spacing: calc(16px * (4 / 100));
}
.facility_txt_box {
    width: 50%;
    height: auto;
}
.facility_txt_box>p {
    font-size: 14px;
    line-height: 200%;
    letter-spacing: calc(14px * (4 / 100));
}

@media only screen and (max-width: 768px) {
    .facility {
        margin-top: 78px;
    }
    .facility_mb {
        margin-bottom: 70px;
}
    .facility_box {
        flex-wrap: wrap;
    }
    .facility_ttl_box {
        width: 100%;
        height: auto;
        margin-bottom: 30px;
    }
    .facility_ttl_box>h2 {
        display: flex;
        align-items: center;
    }
    .facility_ttl_box>h2>span {
        display: inline-block;
        font-family: var(--txt_ja);
        font-size: 16px;
        line-height: 180%;
        letter-spacing: calc(16px * (4 / 100));
        margin-left: 19px;
    }
    .facility_txt_box {
        width: 100%;
    }
}

/* section_flex */
.section_flex {
    margin-top: 111px;
    margin-bottom: 111px;
}
.section_flex_box {
    display: flex;
    justify-content: space-between;
}
.section_flex_contents {
    width: 45%;
}
.section_flex_contents_ttl {
    padding-top: 20px;
    border-top: 1px solid #3B3830;
}
.section_flex_contents_ttl>p {
    font-family: var(--txt_en);
    font-size: 20px;
    line-height: 140%;
    letter-spacing: calc(20px * (4 / 100));
    margin-bottom: 16px;
}
.section_flex_contents_ttl>h2 {
    font-size: 16px;
    line-height: 180%;
    letter-spacing: calc(16px * (4 / 100));
}
.section_flex_contents_img {
    margin-top: 47px;
    margin-bottom: 40px;
}
.section_flex_contents_txt>p:first-child {
    font-size: 16px;
    line-height: 200%;
    letter-spacing: calc(16px * (4 / 100));
    font-weight: bold;
    margin-bottom: 40px;
}
.section_flex_contents_txt>p:last-child {
    font-size: 14px;
    line-height: 200%;
    letter-spacing: calc(14px * (4 / 100));
}

@media only screen and (max-width: 768px) {
    .section_flex {
        margin-top: 69px;
        margin-bottom: 100px;
    }
    .section_flex_box {
        flex-wrap: wrap;
    }
    .section_flex_contents {
        width: 100%;
    }
    .section_flex_contents:last-child {
        margin-top: 80px;
    }
}


/* food_contents */
.food_contents {
    margin-top: 62px;
}
.food_txt_box1 {
    text-align: center;
}
.food_txt_box1>h2 {
    position: relative;
    display: inline-block;
    font-size: 20px;
    line-height: 200%;
    letter-spacing: calc(20px * (4 / 100));
    text-align: center;
    font-weight: bold;
    padding: 23px 45px;
    border: 1px solid #3B3830;
}
.food_txt_box1>h2::before {
    position: absolute;
    top: -1px;
    left: 50%;
    content: '';
    width: 90%;
    height: 1px;
    background-color: var(--bg_color);
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}
.food_txt_box1>h2::after {
    position: absolute;
    bottom: -1px;
    left: 50%;
    content: '';
    width: 90%;
    height: 1px;
    background-color: var(--bg_color);
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}

.food_img_box {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}
.food_img {
    width: 30%;
    height: auto;
}

@-webkit-keyframes infinity-scroll-left {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}
@keyframes infinity-scroll-left {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}

.food_slide_box {
    margin-top: 40px;
}
.scroll-infinity__wrap {
    display: flex;
    overflow: hidden;
}
.scroll-infinity__list {
    display: flex;
    list-style: none;
    padding: 0
}
.scroll-infinity__list--left {
    -webkit-animation: infinity-scroll-left 80s infinite linear 0.5s both;
    animation: infinity-scroll-left 80s infinite linear 0.5s both;
}
.scroll-infinity__item {
    width: calc(100vw / 5);
    aspect-ratio: 3 / 2;
    margin-right: 80px;
}
.scroll-infinity__item>img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
}

.food_txt_box2 {
    position: relative;
    width: 529px;
    height: auto;
    margin-top: 75px;
    margin-left: auto;
    margin-right: auto;
    padding: 23px 45px;
    border: 1px solid #3B3830;
}
.food_txt_box2::before {
    position: absolute;
    top: -1px;
    left: 50%;
    content: '';
    width: 90%;
    height: 1px;
    background-color: var(--bg_color);
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}
.food_txt_box2::after {
    position: absolute;
    bottom: -1px;
    left: 50%;
    content: '';
    width: 90%;
    height: 1px;
    background-color: var(--bg_color);
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}
.food_txt_box2>h2 {
    font-size: 16px;
    line-height: 200%;
    letter-spacing: calc(16px * (4 / 100));
    text-align: center;
    font-weight: 500;
    margin-bottom: 24px;
}
.food_txt_box2>p {
    font-size: 14px;
    line-height: 200%;
    letter-spacing: calc(14px * (4 / 100));
    text-align: center;
}


.food_content2 {
    margin-top: 100px;
    margin-bottom: 160px;
}
.food_content2_box {
    display: flex;
    justify-content: space-between;
    padding-top: 60px;
    border-top: 1px solid #3B3830;
}
.food_content2_box:last-child {
    margin-top: 65px;
}
.food_content2_box>h2 {
    width: 30%;
    font-size: 32px;
    line-height: 140%;
    letter-spacing: calc(32px * (4 / 100));
}
.food_content2_img {
    width: 20%;
}
.food_content2_box>p {
    width: 45%;
    font-size: 14px;
    line-height: 200%;
    letter-spacing: calc(14px * (4 / 100));
}

.food_section_right {
    margin-bottom: 100px;
}


@media only screen and (max-width: 768px) {
    .food_txt_box1 {
        padding-left: 40px;
        padding-right: 40px;
    }
    .food_txt_box1>h2 {
        font-size: 14px;
        line-height: 200%;
        letter-spacing: calc(14px * (4 / 100));
        padding: 12px 20px;
    }
    .food_img_box {
        display: block;
        margin-top: 30px;
        padding-left: 15px;
        padding-right: 15px;
    }
    .food_img {
        width: 100%;
        height: auto;
    }
    .food_img:nth-child(n+2){
        margin-top: 30px;
    }
    .food_slide_box {
        margin-top: 30px;
    }
    .scroll-infinity__item {
        width: calc(100vw / 3);
        margin-right: 50px;
    }
    .food_txt_box2 {
        width: 80%;
        padding: 15px 20px;
        margin-top: 30px;
    }
    .section_right_ttl_box.food_section_right_ttl_box::after {
        height: calc(100% - 72px);
    }

    .food_content2 {
        margin-top: 60px;
        margin-bottom: 100px;
    }
    .food_content2_box {
        display: block;
        padding-top: 30px;
    }
    .food_content2_box:last-child {
        margin-top: 30px;
    }
    .food_content2_box>h2 {
        width: 100%;
        font-size: 20px;
        line-height: 140%;
        letter-spacing: calc(20px * (4 / 100));
        margin-bottom: 20px;
    }
    .food_content2_img {
        width: 100%;
        aspect-ratio: 3 / 2;
        margin-bottom: 20px;
    }
    .food_content2_box>p {
        width: 100%;
    }
    
}



/* garden */
.garden_left2 {
    margin-top: 92px;
}
.garden_right2 {
    margin-bottom: 180px;
}
.garden_left_ttl1.section_left_ttl_box::after {
    content: none;
}
.garden_right_ttl1.section_right_ttl_box::after {
    height: calc(100% - 112px);
}
.garden_left_ttl2.section_right_ttl_box::after {
    height: calc(100% - 182px);
}
.garden_right2 .section_right_ttl_box::after {
    height: calc(100% - 282px);
}

@media only screen and (max-width: 768px) {
    .garden_left2 {
        margin-top: 114px;
    }
    .garden_right2 {
        margin-bottom: 70px;
    }
}


/* room */
.room_left1 .section_left_box
,.room_right1 .section_right_box
,.room_left2 .section_left_box
,.room_right2 .section_right_box {
    align-items: unset;
}
.section_left_img_txt_box {
    display: flex;
    justify-content: space-between;
    align-items: start;
    width: 70%;
    height: auto;
    margin-left: auto;
    margin-top: 63px;
}
.section_left_img_txt_box>p {
    width: 60%;
    font-size: 14px;
    line-height: 200%;
    letter-spacing: calc(14px * (4 / 100));
}
.section_left_img_txt_box>img {
    width: 35%;
}
.section_left_img_txt_box_sp {
    display: none;
}
.section_right_img_txt_box {
    display: flex;
    justify-content: space-between;
    align-items: start;
    width: 70%;
    height: auto;
    margin-right: auto;
    margin-top: 63px;
}
.section_right_img_txt_box>p {
    width: 60%;
    font-size: 14px;
    line-height: 200%;
    letter-spacing: calc(14px * (4 / 100));
}
.section_right_img_txt_box>img {
    width: 35%;
}
.section_right_img_txt_box_sp {
    display: none;
}

.room_left_ttl1.section_left_ttl_box::after {
    height: calc(100% - 352px);
}
.room_right_ttl1.section_right_ttl_box::after {
    height: calc(100% - 112px);
}
.room_left_ttl2.section_right_ttl_box::after {
    height: calc(100% - 182px);
}
.room_right_ttl1.section_right_ttl_box::after {
    height: calc(100% - 430px);
}


.room_left2 .section_left_ttl_box::after {
    height: calc(100% - 350px);
}

.room_right2 {
    margin-bottom: 162px;
}

.room_right2 .section_right_ttl_box::after {
    height: calc(100% - 430px);
}

@media only screen and (max-width: 768px) {
    .section_left_img_txt_box_sp {
        display: flex;
        justify-content: space-between;
        align-items: start;
        width: 100%;
        height: auto;
        padding-left: 40px;
        padding-right: 40px;
        margin-left: auto;
        margin-top: 63px;
    }
    .section_left_img_txt_box_sp>p {
        width: 60%;
        font-size: 14px;
        line-height: 200%;
        letter-spacing: calc(14px * (4 / 100));
    }
    .section_left_img_txt_box_sp>img {
        width: 33%;
    }
    .section_left_img_txt_box {
        display: none;
    }

    .section_right_img_txt_box_sp {
        display: flex;
        justify-content: space-between;
        align-items: start;
        width: 100%;
        height: auto;
        padding-left: 40px;
        padding-right: 40px;
        margin-left: auto;
        margin-top: 63px;
    }
    .section_right_img_txt_box_sp>p {
        width: 60%;
        font-size: 14px;
        line-height: 200%;
        letter-spacing: calc(14px * (4 / 100));
    }
    .section_right_img_txt_box_sp>img {
        width: 33%;
    }
    .section_right_img_txt_box {
        display: none;
    }

    .room_right1 {
        margin-top: 80px;
    }
    .room_left2 {
        margin-top: 80px;
    }
    .room_right2 {
        margin-top: 80px;
        margin-bottom: 100px;
    }

    .room_left_ttl1.section_left_ttl_box::after {
        display: none;
    }
    .room_right_ttl1.section_right_ttl_box::after {
        display: none;
    }
    .room_left_ttl2.section_right_ttl_box::after {
        display: none;
    }
    .room_right_ttl1.section_right_ttl_box::after {
        display: none;
    }
}


/* access */
.access {
    margin-top: 386px;
}
.access_map {
    width: 100%;
    height: 530px;
    margin-top: 83px;
}

.access2 {
    margin-top: 63px;
}

.access2_box {
    display: flex;
    justify-content: space-between;
}
.access_ttl_box {
    position: relative;
}
.access_ttl_box::after {
    position: absolute;
    bottom: 0;
    left: 50%;
    content: '';
    width: 1px;
    height: calc(100% - 142px);
    background-color: #3B3830;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}
.access_ttl {
    font-size: 24px;
    letter-spacing: 10px;
    writing-mode: vertical-rl;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: vertical-rl;
}
.access_info_box {
    width: 90%;
}
.access_info_box>dl {
    display: flex;
}
.access_info_box>dl:nth-child(n+2){
    margin-top: 40px;
}
.access_info_box>dl>dt {
    width: 15%;
    font-size: 14px;
    letter-spacing: calc(14px * (4 / 100));
    font-weight: 400;
}
.access_info_box>dl>dd {
    width: 85%;
    font-size: 14px;
    letter-spacing: calc(14px * (4 / 100));
}


/* access3 */
.access3 {
    margin-top: 100px;
}
.access3_box {
    display: flex;
    justify-content: space-between;
}
.access3_img_box {
    width: 90%;
}
.access3.access_plain .access3_img_box {
    padding-bottom: 200px;
}
.access3_img_box>img {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    -o-object-fit: contain;
       object-fit: contain;
}

.access3.access_car .access_ttl_box::after {
    height: calc(100% - 272px);
}
.access3.access_train .access_ttl_box::after {
    height: calc(100% - 282px);
}
.access3.access_plain .access_ttl_box::after {
    height: calc(100% - 312px);
}


/* access4 */
.access4 {
    margin-top: 100px;
    margin-bottom: 130px;
}
.access4_box {
    display: flex;
    justify-content: space-between;
}

.access4 .access_ttl_box::after {
    height: calc(100% - 282px);
}
.access4_txt_box {
    width: 90%;
}

.access4_txt_box>p {
    font-size: 14px;
    line-height: 180%;
    letter-spacing: calc(14px * (4 / 100));
    margin-bottom: 53px;
}
.access4_txt_box>a {
    position: relative;
    display: inline-block;
    font-size: 20px;
    line-height: 140%;
    letter-spacing: calc(20px * (4 / 100));
    color: var(--main_color);
    padding: 12px 12px 12px 42px;
    background-color: #090909;
    border: 1px solid #3B3830;
    margin-bottom: 45px;
}
.access4_txt_box>a::after {
    position: absolute;
    top: 50%;
    left: 16px;
    content: '';
    width: 12px;
    height: 1px;
    background-color: var(--main_color);
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}
.access4_txt_box>img {
    display: block;
    max-width: 396px;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    -o-object-fit: contain;
       object-fit: contain;
}

@media only screen and (max-width: 768px) {
    .access {
        margin-top: 125px;
    }
    .section_ttl_box>p {
        font-size: 12px;
        line-height: 140%;
        letter-spacing: calc(12px * (4 / 100));
        margin-bottom: 20px;
    }
    .section_ttl_box>h2 {
        font-size: 32px;
        line-height: 42px;
        letter-spacing: calc(32px * (4 / 100));
    }
    .access_map {
        height: auto;
        aspect-ratio: 1 / 1;
        margin-top: 43px;
    }
    .access_info_box {
        width: 80%;
    }
    .access_info_box>dl>dt {
        width: 40%;
    }
    .access_info_box>dl>dd {
        width: 60%;
    }
    .access_info_box>dl:nth-child(n+2) {
        margin-top: 20px;
    }
    .access3 .inner {
        padding-right: 0;
    }
    .access3_box {
        display: block;
    }
    .access3_box .access_ttl_box {
        width: 100%;
        margin-bottom: 50px;
    }
    .access3_box .access_ttl {
        writing-mode: unset;
        -webkit-writing-mode: unset;
        -ms-writing-mode: unset;
    }
    .access3_box .access_ttl_box::after {
        display: none;
    }
    .access3_img_box {
        width: 100%;
        overflow-x: scroll;
        padding-right: 15px;
    }
    .access3_img_box>img {
        width: 700px;
    }
    .access4 {
        margin-bottom: 100px;
    }
    .access4_txt_box {
        width: 80%;
    }
    .access4_txt_box>p {
        margin-bottom: 20px;
    }
    .access4_txt_box>a {
        margin-bottom: 20px;
    }
}


/* about_reservations */
.about_reservations {
    margin-top: 110px;
    margin-bottom: 200px;
}
.about_reservations_box {
    display: flex;
    justify-content: space-between;
}
.about_reservations_card {
    width: 25%;
    height: auto;
    margin-right: 20px;
    margin-left: 20px;
    border-top: 4px solid;
}
.about_reservations_card:first-child {
    border-color: #AC1914;
}
.about_reservations_card:nth-child(2) {
    border-color: #3D90B0;
}
.about_reservations_card:nth-child(3) {
    border-color: #B19629;
}
.about_reservations_card:last-child {
    border-color: #50AD4C;
}
.about_reservations_card_ttl_box {
    text-align: center;
    padding-top: 32px;
    margin-bottom: 28px;
}
.about_reservations_card_ttl_box>h2 {
    font-size: 20px;
    line-height: 140%;
    letter-spacing: calc(20px * (4 / 100));
    margin-bottom: 4px;
}
.about_reservations_card_ttl_box>p {
    font-size: 12px;
    line-height: 140%;
    letter-spacing: calc(12px * (4 / 100));
}
.about_reservations_card_icon {
    width: 50%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 28px;
}
.about_reservations_card_txt {
    font-size: 14px;
    line-height: 180%;
    letter-spacing: calc(14px * (4 / 100));
    margin-bottom: 28px;
}
.about_reservations_card_link {
    display: block;
    font-size: 20px;
    line-height: 140%;
    letter-spacing: calc(20px * (4 / 100));
    text-align: center;
    color: var(--main_color);
    padding-top: 20px;
    padding-bottom: 20px;
    border: 1px solid #3B3830;
}

@media only screen and (max-width: 768px) {
    .about_reservations {
        margin-bottom: 65px;
    }
    .about_reservations_box {
        flex-wrap: wrap;
    }
    .about_reservations_card {
        width: 48%;
        height: auto;
        margin-right: 0px;
        margin-left: 0px;
    }
    .about_reservations_card:nth-child(n+3){
        margin-top: 52px;
    }
}


/* terms */
.terms {
    margin-top: 88px;
    margin-bottom: 200px;
}
.terms_wrap {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}
.terms_box:nth-child(n+2){
    margin-top: 50px;
}
.terms_box>h2 {
    font-size: 28px;
    line-height: 48px;
    letter-spacing: calc(28px * (2 / 100));
    font-weight: 400;
    margin-bottom: 30px;
}
.terms_box>h3 {
    font-size: 24px;
    line-height: 150%;
    letter-spacing: calc(24px * (2 / 100));
    font-weight: 400;
    margin-bottom: 30px;
}
.terms_box>h3.terms_h2_mt {
    margin-top: 30px;
}
.terms_box>p {
    font-size: 16px;
    line-height: 180%;
    letter-spacing: calc(16px * (2 / 100));
    margin-bottom: 30px;
}
.terms_box>ul {
    padding-left: 2rem;
}
.terms_box>ul>li {
    list-style: auto;
    font-size: 16px;
    line-height: 180%;
    letter-spacing: calc(16px * (2 / 100));
}
.terms_box>ul>li:nth-child(n+2){
    margin-top: 30px;
}
.terms_box>ul>li>.terms_ul_dot>li {
    list-style: disc;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 180%;
    letter-spacing: calc(14px * (2 / 100));
}
.terms_box>ul>li>.terms_ul_dot>li:first-child {
    margin-top: 30px;
}
.terms_box>ul>li>.terms_ul_dot>li:last-child {
    margin-bottom: 30px;
}

.terms_box>ul>li>.terms_ul_jp {
    padding-left: 1rem;
}
.terms_box>ul>li>.terms_ul_jp>li {
    list-style: none;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 180%;
    letter-spacing: calc(14px * (2 / 100));
}
.terms_box>ul>li>.terms_ul_jp>li:first-child {
    margin-top: 20px;
}

.terms_box>ul.terms_ul_dot>li {
    list-style: disc;
    font-size: 14px;
    line-height: 180%;
    letter-spacing: calc(14px * (2 / 100));
}

.terms_box>ul>li>.terms_ul_dot>li>.terms_ul_jp {
    padding-left: 1rem;
}
.terms_box>ul>li>.terms_ul_dot>li>.terms_ul_jp>li {
    list-style: none;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 180%;
    letter-spacing: calc(14px * (2 / 100));
}
.terms_box>ul>li>.terms_ul_dot>li>.terms_ul_jp>li:first-child {
    margin-top: 20px;
}

.terms_table1 {
    margin-bottom: 30px;
}
.terms_table1 th
,.terms_table1 td {
    width: calc(100% / 3);
    font-size: 16px;
    line-height: 150%;
    letter-spacing: calc(16px * (2 / 100));
    padding: 13.5px;
    background: rgba(255, 233, 176, 0.1);
    border: 1px solid #FFE9B0;
}
.terms_box>p.terms_caution {
    font-size: 12px;
    line-height: 180%;
    letter-spacing: calc(12px * (2 / 100));
    margin-bottom: 30px;
}
.terms_txt {
    font-size: 16px;
    line-height: 180%;
    letter-spacing: calc(16px * (2 / 100));
    margin-bottom: 30px;
}
.terms_table2 {
    margin-bottom: 30px;
}

.terms_table2 td {
    min-width: calc(100% / 10);
    width: calc(100% / 10);
    font-size: 16px;
    line-height: 150%;
    letter-spacing: calc(16px * (2 / 100));
    padding: 13.5px;
    background: rgba(255, 233, 176, 0.1);
    border: 1px solid #FFE9B0;
}

@media only screen and (max-width: 768px) {
    .terms {
        margin-top: 65px;
        margin-bottom: 100px;
    }
    .terms_wrap {
        width: 100%;
    }

    .terms_table1_box {
        overflow-x: scroll;
    }
    .terms_table1 {
        width: 827px;
    }
    .terms_table2_box {
        overflow-x: scroll;
    }
    .terms_table2 {
        width: 1139px;
    }
}

/* faq */
.faq {
    margin-top: 84px;
    margin-bottom: 146px;
}
.faq_box {
    padding: 40px;
    border: 1px solid #3B3830;
}
.faq_box:nth-child(n+2){
    margin-top: 40px;
}
.faq_box>h2 {
    font-size: 28px;
    line-height: 40px;
    letter-spacing: calc(28px * (2 / 100));
    margin-bottom: 40px;
}
.faq_box .faq_item {
    display: flex;
}
.faq_box .faq_item:nth-child(n+2){
    margin-top: 40px;
}
.faq_box .faq_item>h3 {
    font-size: 32px;
    line-height: 100%;
    letter-spacing: calc(32px * (2 / 100));
    font-weight: 500;
    margin-right: 30px;
}
.faq_box .faq_item>.faq_contents>p:first-child {
    font-size: 20px;
    line-height: 180%;
    letter-spacing: calc(20px * (2 / 100));
    margin-bottom: 20px;
}
.faq_box .faq_item>.faq_contents>p:last-child {
    font-size: 16px;
    line-height: 180%;
    letter-spacing: calc(16px * (2 / 100));
}

@media only screen and (max-width: 768px) {
    .faq {
        margin-top: 65px;
        margin-bottom: 128px;
    }
    .faq_box {
        padding: 40px 20px;
    }
    .faq_box>h2 {
        font-size: 24px;
        line-height: 40px;
        letter-spacing: calc(24px * (2 / 100));
    }
}


/* news_list_top */
.news_list_top {
    margin-top: 386px;
}
.news_list_top_box {
    display: flex;
    justify-content: space-between;
    align-items: end;
}
.archive_list_top {
    display: flex;
    justify-content: end;
    margin-bottom: 40px;
}
.archive_list_top>a {
    position: relative;
    font-size: 16px;
    line-height: 140%;
    letter-spacing: calc(16px * (4 / 100));
    color: var(--main_color);
    padding-bottom: 4px;
}
.archive_list_top>a::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    content: '';
    background-color: var(--main_color);
}
.archive_list_top>a:nth-child(n+2) {
    margin-left: 60px;
}

.archive_list_bottom {
    display: flex;
    justify-content: end;
}
.archive_list_bottom>a {
    position: relative;
    font-size: 16px;
    line-height: 140%;
    letter-spacing: calc(16px * (4 / 100));
    color: var(--main_color);
    padding-bottom: 4px;
}
.archive_list_bottom>a::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    content: '';
    background-color: var(--main_color);
}
.archive_list_bottom>a:nth-child(n+2) {
    margin-left: 60px;
}

.news_list {
    margin-top: 84px;
    margin-bottom: 152px;
}
.news_list_ttl_box {
    display: flex;
    align-items: end;
}
.news_list_ttl_box>h2 {
    font-size: 24px;
    line-height: 30px;
    font-weight: bold;
    margin-right: 40px;
}
.news_list_ttl_box>p {
    font-size: 18px;
    line-height: 140%;
    letter-spacing: calc(18px * (4 / 100));
}
.news_list_box {
    padding: 20px;
    border: 1px solid #3B3830;
    margin-top: 72px;
}
.news_list_item {
    display: flex;
    align-items: start;
    color: var(--main_color);
}
.news_list_item:nth-child(n+2){
    margin-top: 20px;
}
.news_list_item_date {
    font-family: var(--txt_en);
    font-size: 18px;
    line-height: 200%;
    letter-spacing: calc(18px * (4 / 100));
    font-weight: normal;
    margin-right: 48px;
}
.news_list_item_ttl {
    font-size: 14px;
    line-height: 200%;
    letter-spacing: calc(14px * (4 / 100));
    margin-top: 4px;
}

.pagination {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}
.prev>a
,.next>a {
    color: var(--main_color);
}
.prev>.disabled
,.next>.disabled {
    opacity: 0.5;
}
.newstop_link_box>a {
    color: var(--main_color);
}

@media only screen and (max-width: 768px) {
    .news_list_top {
        margin-top: 125px;
    }
    .news_list_top_box {
        display: block;
    }
    .archive_list {
        margin-top: 38px;
        margin-bottom: 132px;
    }
    .archive_list_top {
        justify-content: start;
        flex-wrap: wrap;
        margin-bottom: 67px;
    }
    .archive_list_top>a {
        margin-bottom: 20px;
        margin-right: 40px;
    }
    .archive_list_top>a:nth-child(n+2) {
        margin-left: 0px;
    }
    .archive_list_bottom {
        flex-wrap: wrap;
        justify-content: start;
    }
    .archive_list_bottom>a {
        margin-bottom: 20px;
        margin-right: 40px;
    }
    .archive_list_bottom>a:nth-child(n+2) {
        margin-left: 0px;
    }
    .news_list {
        margin-top: 38px;
    }
    .news_list_box {
        margin-top: 29px;
    }
    .news_list_item {
        flex-wrap: wrap;
    }
    .news_list_item_date {
        width: 100%;
        margin-right: 0;
    }
    .news_list_item_ttl {
        width: 100%;
        margin-top: 10px;
    }
    .pagination {
        margin-top: 88px;
    }
}

/* single_news */
.single_news {
    margin-top: 160px;
    margin-bottom: 120px;
}
.single_news_txt_box {
    margin-bottom: 75px;
}
.single_news_date {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.single_news_date>span {
    display: inline-block;
}
.single_news_date>span:first-child {
    font-family: var(--txt_en);
    font-size: 20px;
    line-height: 20px;
    letter-spacing: calc(20px * (1 / 100));
    font-weight: bold;
    margin-right: 20px;
}
.single_news_date>span:last-child {
    font-size: 14px;
    line-height: 100%;
    color: #3B3830;
    padding: 6px 24px;
    background-color: #FFE9B0;
    border-radius: 100px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
}
.single_news_ttl {
    width: 62%;
    font-size: 34px;
    font-weight: bold;
    line-height: 150%;
    letter-spacing: calc(34px * (4 / 100));
}
.single_news_img_box {
    margin-bottom: 50px;
}
.single_news_contents img {
    width: auto;
    height: auto;
}

.single_pagination {
    display: flex;
    justify-content: space-between;
    margin-top: 100px;
}
.pagination_box {
    display: flex;
}
.pagination_box .prev
,.pagination_box .next {
    position: relative;
    padding-bottom: 4px;
}
.pagination_box .prev::after
,.pagination_box .next::after {
    position: absolute;
    bottom: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 1px;
    background-color: var(--main_color);
}
.pagination_box .prev {
    margin-right: 60px;
}
.page_top_link {
    position: relative;
    display: flex;
    color: var(--main_color);
}
.page_top_link::after {
    position: absolute;
    bottom: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 1px;
    background-color: var(--main_color);
}
.page_top_link>span {
    display: inline-block;
    font-size: 16px;
    line-height: 140%;
    letter-spacing: calc(16px * (4 / 100));
    padding-bottom: 4px;
    margin-right: 12px;
}



/* contact */
.contact {
    margin-top: 83px;
    margin-bottom: 153px;
}
.input_box:nth-child(n+2) {
    margin-top: 40px;
}
.input_box>label {
    font-size: 16px;
    line-height: 18px;
}
.radio_wrap {
    display: flex;
    flex-wrap: wrap;
    margin-top: 32px;
}
.radio_box {
    margin-bottom: 32px;
    margin-right: 40px;
}
.radio_box:last-child {
    margin-right: 0;
}

.radio_wrap label {
    display: flex;
    align-items: center;
    -moz-column-gap: 4px;
        column-gap: 4px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    line-height: 2;
    cursor: pointer;
}

.radioItem:not(:last-of-type) {
    margin-bottom: 16px;
}

.radio input {
    -webkit-appearance: none;
        -moz-appearance: none;
            appearance: none;
    position: relative;
    width: 20px;
    height: 20px;
    border: 1px solid var(--main_color);
    border-radius: 9999px;
    cursor: pointer;
    margin-right: 16px;
}

.radio input:checked::after {
    content: "";
    position: absolute;
    inset: 0;
    width: 12px;
    height: 12px;
    margin: auto;
    border-radius: 9999px;
    background-color: var(--main_color);
}

.input_box input {
    width: 100%;
    padding: 16px;
    border: none;
    background-color: #fff;
    margin-top: 16px;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}
.input_box textarea {
    width: 100%;
    height: 240px;
    padding: 16px;
    border: none;
    background-color: #fff;
    margin-top: 16px;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}
.input_date {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 50%;
    margin-top: 16px;
}
.input_date>svg {
    width: 24px;
    margin-right: 16px;
}
.input_date .wpcf7-form-control-wrap {
    width: calc(100% - 40px);
}
.input_date input {
    /* width: calc(100% - 40px); */
    width: 100%;
    padding: 16px;
    border: none;
    background-color: #fff;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}
.input_vol {
    width: 50%;
    margin-top: 16px;
}
.input_vol input {
    width: 100%;
    padding: 16px;
    border: none;
    background-color: #fff;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}
.form_btn_box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 40px;
}
.form_btn_box>a {
    display: block;
    width: 172px;
    height: auto;
    font-size: 20px;
    line-height: 24px;
    text-align: center;
    color: var(--main_color);
    padding: 16px;
    border: 1px solid var(--main_color);
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}
.form_btn_box>a:hover {
    color: #1D1C1C;
    background-color: var(--main_color);
}
.form_btn_box input {
    display: block;
    width: 172px;
    height: auto;
    font-size: 20px;
    line-height: 24px;
    text-align: center;
    color: #1D1C1C;
    padding: 16px;
    border: 1px solid var(--main_color);
    background-color: var(--main_color);
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

.wpcf7-spinner {
    display: none !important;
}

@media only screen and (max-width: 768px) {
    .contact {
        margin-top: 43px;
        margin-bottom: 165px;
    }
    .radio_box:last-child {
        margin-bottom: 0;
    }
    .input_date {
        width: 100%;
    }
    .input_vol {
        width: 100%;
    }
    .form_btn_box>a {
        width: 40%;
    }
    .form_btn_box input {
        width: 40%;
    }
}


/* thanks */
.thanks {
    margin-top: 103px;
    margin-bottom: 157px;
}
.thanks_box>p:first-child {
    font-size: 12px;
    line-height: 180%;
    letter-spacing: calc(12px * (4 / 100));
    margin-bottom: 12px;
}
.thanks_box>p:nth-child(2) {
    font-size: 20px;
    line-height: 180%;
    letter-spacing: calc(20px * (4 / 100));
    margin-bottom: 72px;
}
.thanks_box>p:last-child {
    font-size: 16px;
    line-height: 180%;
    letter-spacing: calc(16px * (4 / 100));
}
@media only screen and (max-width: 768px) {
    .thanks {
        margin-top: 83px;
        margin-bottom: 141px;
    }
}





/* 英語ページ調整 */
.english_page .header_link_bottom>.header_link>span:first-child {
    margin-bottom: 0;
}
.english_page .layer_fv_ttl_box {
    width: auto;
    text-align: left;
}
.english_page .layer_fv_ttl_box>p {
    text-align: center;
}
.english_page .layer_fv_txt>p:last-child>span {
    font-size: 20px;
    line-height: 180%;
    letter-spacing: calc(20px * (4 / 100));
    color: var(--main_color);
    font-weight: bold;
}
.english_page .section_left_txt_box>p:nth-child(1) {
    line-height: 160%;
    writing-mode: unset;
    -webkit-writing-mode: unset;
    -ms-writing-mode: unset;
}
.english_page .section_right_txt_box>p:nth-child(1) {
    line-height: 160%;
    writing-mode: unset;
    -webkit-writing-mode: unset;
    -ms-writing-mode: unset;
}

.english_page .garden_layer {
    margin-top: 700px;
}
.english_page .food_txt_box1>h2 {
    max-width: 633px;
    margin-left: auto;
    margin-right: auto;
}




.english_page .section_left_ttl_box::after {
    display: none;
}
.english_page .section_right_ttl_box::after {
    display: none;
}