/* ============================================
   CSS変数定義
============================================ */
:root {
    --content-color-base: #2C2A29;
    --content-color-red: #CC0404;
    --content-color-red-2: #B00707;
    --content-color-yellow: #fcc85b;
    --content-color-beige: #f6f1eb;
    --content-color-cream: #fffcf7;
    --content-color-lightgray: #E9ECF2;
    --content-color-gray: #D9D9D9;
    --bg-img-setting: no-repeat center center / contain;
    --bg-cover-setting: no-repeat center top / cover;
    --bg-width-pc: max(100%, 1920px);
    --font-size-pc: 14px;
    --font-size-sp: 14px;
    --font-base: "Zen Old Mincho", serif;
    --font-sans: "Noto Sans JP", sans-serif;
    --content-font-size: min(var(--font-size-sp), var(--font-size-pc));
    --content-hover-speed: 0.3s;
}

/* ============================================
   表示切り替え
============================================ */
.pc-only {
    display: block !important;
}

span.pc-only {
    display: inline !important;
}

.tb-only {
    display: none !important;
}

.sp-only {
    display: none !important;
}

@media (max-width: 1103px) {
    .tb-only {
        display: block !important;
    }

    span.tb-only {
        display: inline !important;
    }
}

@media (max-width: 768px) {
    .pc-only {
        display: none !important;
    }

    span.pc-only {

        display: none !important;
    }

    .sp-only {
        display: block !important;
    }

    span.sp-only {
        display: inline !important;
    }
}

/* ============================================
   基本設定
============================================ */
body {
    overflow-x: hidden;
    position: relative;
    container-type: normal;
}

.main {
    font-family: var(--font-sans);
    font-size: var(--content-font-size);
    font-weight: 500;
    color: var(--content-color-base);
    position: relative;
    max-width: 100vw;
    overflow-x: hidden;
}

.sawarabi-mincho {
    font-family: "Sawarabi Mincho", serif;
    font-weight: 400;
    font-style: normal;
}
.zen-old-mincho {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
}

/* *****
 inner
 - 幅 */
.inner_1104 {
    max-width: calc(1104px + 96px);
    width: 100%;
    padding-left: 48px;
    padding-right: 48px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {

    .inner_1104 {
        max-width: calc(1104px + 40px);
        padding-left: 20px;
        padding-right: 20px;
    }
}

.inner_800 {
    max-width: calc(800px + 40px);
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    margin-left: auto;
    margin-right: auto;
}

/* *****
parallax
******/

.parallax {
    position: relative;
    z-index: 0;
    clip-path: inset(0);
}

.mv_bg,
.point_bg,
.facility_bg,
.advice_bg,
.search-box_bg {
    background: none !important;
}

.mv_bg::before,
.point_bg::before,
.facility_bg::before,
.advice_bg::before,
.guest-room_bg::before,
.search-box_bg::before {
    content: "";
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    pointer-events: none;
    will-change: transform;
}

.parallax>*,
.mv_bg>*,
.point_bg>*,
.facility_bg>*,
.advice_bg>*,
.guest-room_bg>*,
.search-box_bg>* {
    position: relative;
    z-index: 1;
}


.mv_bg>section {
    position: relative;
    z-index: 1;
}

/* 親要素：背景をこの中に閉じ込める */
.mv_bg {
    position: relative;
    z-index: 0;
    clip-path: inset(0);
    background: none !important;
}

.mv_slide {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0;

    will-change: opacity;
    -webkit-transform: translateZ(0);

    animation: mv-crossfade 20s infinite;
}

.s1 {
    background-image: url(../images/mv_bg01_pc.jpg);
    animation-delay: 0s;
}

.s2 {
    background-image: url(../images/mv_bg02_pc.jpg);
    animation-delay: 5s;
}

.s3 {
    background-image: url(../images/mv_bg03_pc.jpg);
    animation-delay: 10s;
}

.s4 {
    background-image: url(../images/mv_bg04_pc.jpg);
    animation-delay: 15s;
}

@media screen and (max-width: 768px) {
    .s1 {
        background-image: url(../images/mv_bg01_sp.jpg);
    }

    .s2 {
        background-image: url(../images/mv_bg02_sp.jpg);
    }

    .s3 {
        background-image: url(../images/mv_bg03_sp.jpg);
    }

    .s4 {
        background-image: url(../images/mv_bg04_sp.jpg);
    }
}

@keyframes mv-crossfade {
    0% {
        opacity: 0;
    }

    5% {
        opacity: 1;
    }

    25% {
        opacity: 1;
    }

    30% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}



.point_bg::before {
    background-image: url(../images/point_bg01.svg), url(../images/point_bg02.svg);
    background-position: right top, left bottom;
    background-size: auto, auto;
}

@media screen and (max-width: 768px) {
    .point_bg::before {
        background-position: right top 80px, left center;
        background-size: 313px auto, 350px auto;
    }
}

.facility_bg::before {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.20) 100%),
        linear-gradient(180deg, #9B0103 27.4%, #5B1011 100%);
}

.advice_bg::before {
    background-image: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), url(../images/mv_bg04_pc@2x.jpg);
}

@media screen and (max-width: 768px) {
    .advice_bg::before {
        background-image: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), url(../images/mv_bg04_sp@2x.jpg);
    }
}

.guest-room_bg {
    background: url(../images/room_bg@2x.jpg) repeat center;
    background-size: contain;

}

.guest-room_bg::before {
    background-image: url(../images/room_kazari.svg);
    background-position: right top 80px;
    background-repeat: no-repeat;
    background-size: auto;
}

@media screen and (max-width: 768px) {
    .guest-room_bg::before {
        background-position: right top 160px, center;
        background-size: 212px auto, contain;
    }
}

.recommendation_bg {
    background: url(../images/tour_bg@2x.jpg) repeat center;
    background-size: cover;
}

.search-box_bg::before {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(../images/mv_bg01_pc.jpg);
}

@media screen and (max-width: 768px) {
    .search-box_bg::before {
        background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(../images/mv_bg01_sp.jpg);
    }
}

/* *****
title
***** */
.sec__header {
    margin-bottom: 80px;
    text-align: center;
}

@media screen and (max-width: 768px) {
    .sec__header {
        margin-bottom: 40px;
    }
}

.sec__title {
    font-family: "Sawarabi Mincho";
    font-size: 40px;
    font-weight: 400;
    line-height: 150%;
}

.sec__title span {
    display: inline-block;
    padding-bottom: 16px;
    border-bottom: 1px solid #C99A32;
}

@media screen and (max-width: 768px) {
    .sec__title {
        font-size: 28px;
    }
}

.sec__lead {
    font-family: "Sawarabi Mincho";
    font-size: 22px;
    font-weight: 400;
    line-height: 150%;
}

.sec__description {
    margin-top: 24px;
    font-size: 14px;
    font-weight: 400;
    line-height: 150%;
}

/* **********
 ローカルナビ
********** */
.main {
    position: relative;
}

.local-nav {
    border-bottom: 1px solid #B39867;
    background: rgba(0, 0, 0, 0.75);
    width: 100%;
    transition: background 0.3s;
    position: absolute;
    top: 0;
    z-index: 10;
}

/* --- 横スクロール --- */
.local-nav__scroll-container {
    position: relative;
    display: flex;
    align-items: center;
}

.local-nav__scroll-wrapper {
    overflow-x: auto;
    overflow-y: visible;
    scrollbar-width: none;
    -ms-overflow-style: none;
    width: 100%;
}

.local-nav__scroll-wrapper::-webkit-scrollbar {
    display: none;
}

.local-nav__list {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: nowrap;
    padding: 8px 16px;
    gap: 24px;
    list-style: none;
    margin: 0 auto;
    width: max-content;
}

@media screen and (max-width: 768px) {
    .local-nav__list {
        gap: 8px;
    }
}

.scroll-arrow {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 15px;
    background: #9B0103;
    color: #fff;
    display: none;

    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    font-size: 20px;
    user-select: none;
}

.scroll-arrow.is-show {
    display: flex;
}

.scroll-arrow.left {
    left: 0;
    background: #9B0103;
}

.scroll-arrow.left::before {
    content: "";
    display: block;
    width: 6px;
    height: 6px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
}

.scroll-arrow.right {
    right: 0;
    background: #9B0103;
}

.scroll-arrow.right::before {
    content: "";
    display: block;
    width: 6px;
    height: 6px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.local-nav__link {
    text-decoration: none;
    display: block;
    white-space: nowrap;
    padding: 8px 16px;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    position: relative;
}

/* 固定時 */
.is-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    animation: slideDown 0.3s ease-out;
    z-index: 999;
}

.is-fixed.local-nav {
    background: #FFF;
    border-bottom: 1px solid #B39867;
}

.is-fixed .local-nav__link {
    color: #2C2A29;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

#toggleButton {
    border: none;
    padding: 8px 34px 8px 16px;
    color: #FFF;
    font-size: 12px;
    font-weight: 400;
    line-height: 1;
    border-radius: 8px;
    background: #9B0103 url(../images/icon_arrow_b.svg) no-repeat right 8px center;
    position: relative;
    cursor: pointer;
    white-space: nowrap;
    min-width: 160px;
}

#toggleButton span {
    font-size: 14px;
    font-weight: 700;
}

.nav-area__button #menu {
    list-style: none;
    position: absolute;
    background-color: #fff;
    border: solid 2px #9B0103;
    border-radius: 8px;
    padding: 12px 16px;
    z-index: 100;
    min-width: 160px;
}

.nav-scrollable .nav-area__button #menu {
    right: 15px;
}

.nav-area__button #menu li {
    white-space: nowrap;
}

.nav-area__button #menu li a {
    padding: 4px 0;
    display: block;
    color: #2C2A29;
    text-decoration: none;
}

/* カレント */

.local-nav__link:hover::before,
.local-nav__link.is-current::before {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background-color: #9B0103;
    bottom: 0;
    left: 0;
    position: absolute;
}

@media screen and (min-width: 769px) {}



/* **********
 MV
********** */
.mv_bg {
    position: relative;
}

.mv {
    text-align: center;
    padding: 80px 0;
    min-height: 400px;
    height: calc(100vh - 100px);
    box-sizing: border-box;
    position: relative;
    z-index: 1;
}

.mv_bg_inner::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.75) 50%, rgba(0, 0, 0, 0.96) 100%);
}

.mv__wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
}

.mv__logo-picture {
    display: block;
}

.mv__logo-image {

    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

/* **********
Message
********** */
.message {
    padding-top: 80px;
    padding-bottom: 120px;
    position: relative;
    z-index: 1;
}

@media screen and (max-width: 768px) {
    .message {
        padding-top: 40px;
        padding-bottom: 88px;
    }
}

.message__container {
    display: flex;
    gap: 60px;
    margin-bottom: 120px;
    color: #fff;
}

.message__text-wrapper {
    width: 50%;
}

.message__title {
    font-size: 22px;
    font-weight: 400;
    line-height: 150%;
    margin-bottom: 24px;
}

.message__image-wrapper {
    width: calc(100% - 50% - 60px);
}

.message__image-item {
    display: block;
}

.message__image {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.message__signature {
    text-align: right;
}

.message__video {
    height: 450px;
}

@media screen and (max-width: 768px) {
    .message__container {
        flex-wrap: wrap;
        gap: 32px;
        margin-bottom: 40px;
    }

    .message__text-wrapper,
    .message__image-wrapper {
        width: 100%;
    }

    .message__image-item {
        max-width: 260px;
        margin: auto;
        text-align: center;
    }

    .message__video {
        height: 190px;
    }
}

/* **********
Point　-7つの魅力
********** */
.point {
    padding-top: 80px;
    padding-bottom: 120px;
}

.point__lead {
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 16px;
}

@media screen and (max-width: 768px) {
    .point {
        padding-top: 40px;
        padding-bottom: 60px;
    }

    .point__lead {
        font-size: 24px;
    }

    .point__title img{
        width: 80%;
    }
}

.point__content {
    display: -ms-grid;
    display: grid;
}

.point__content:not(:last-child) {
    margin-bottom: 80px;
}

.point__image-item {
    display: block;
    width: 100%;
    aspect-ratio: 12 / 7;
}

.point__image-wrapper {
    margin: 0;
}

.point__image {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.point__item-title {
    font-weight: 400;
    line-height: 150%;
    margin-bottom: 16px
}

@media screen and (min-width: 769px) {
    .point__content:nth-child(even) .point__image-wrapper {
        order: 2;
    }

    .point__content:nth-child(even) .point__body {
        order: 1;
    }

    .point__content {
        -ms-grid-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
        grid-template-columns: repeat(7, minmax(0, 1fr));
        gap: 56px;
    }

    .point__image-wrapper {
        -ms-grid-column-span: 1fr 1fr 1fr 1fr;
        grid-column: span 4/span 4;
    }

    .point__body {
        -ms-grid-column-span: 1fr 1fr 1fr;
        grid-column: span 3/span 3;
    }

    .point__item-title {
        font-size: 28px;
    }
}

@media screen and (max-width: 768px) {

    .point__content {
        -ms-grid-columns: 1fr;
        grid-template-columns: repeat(1, minmax(0, 1fr));
        gap: 16px;
    }

    .point__image-wrapper,
    .point__body {
        -ms-grid-column-span: 1fr;
        grid-column: span 1/span 1;
    }

    .point__content:not(:last-child) {
        margin-bottom: 40px;
    }

    .point__item-title {
        font-size: 24px;
    }
}

/* slick */
.slick-dots {
    position: relative;
}

.slick-dots li {
    width: 12px;
    height: 12px;
    margin: 0 4px;
    opacity: 1;
}

.slick-dots li button {
    width: 12px;
    height: 12px;
}

.slick-dots li button:before {
    color: #D9D9D9;
    font-size: 12px;
    line-height: 12px;
    width: 12px;
    height: 12px;
}

.slick-dots li.slick-active button:before {
    color: #9B0103;
}

/* **********
Facility　-レストランホテルの魅力
********** */
.facility {
    padding-top: 80px;
    padding-bottom: 120px;
    overflow: hidden;
}

@media screen and (max-width: 768px) {
    .facility {
        max-width: 100vw;
        padding-top: 40px;
        padding-bottom: 60px;
    }
}

.facility .inner_1104 {
    position: relative;
    z-index: 1;
}

.facility .inner_1104::before {
    content: "";
    background: no-repeat url(../images/restaurant_kazari_right.svg);
    background-size: contain;
    display: block;
    position: absolute;
    z-index: -1;
}

.facility .inner_1104::after {
    content: "";
    background: no-repeat url(../images/restaurant_kazari_left.svg);
    background-size: contain;
    display: block;
    position: absolute;
    z-index: -1;
}

@media screen and (min-width: 769px) {
    .facility .inner_1104::before {
        width: 466px;
        max-width: 46%;
        height: 284px;
        top: 0;
        right: -200px;
    }

    .facility .inner_1104::after {
        width: 396px;
        max-width: 39%;
        height: 366px;
        bottom: 0;
        left: -200px;
    }
}

@media screen and (max-width: 768px) {
    .facility .inner_1104::before {
        width: 177px;
        max-width: auto;
        height: 108px;
        top: -50px;
        right: -20px;
    }

    .facility .inner_1104::after {
        width: 205px;
        max-width: auto;
        height: 190px;
        top: 100px;
        left: -100px;
    }
}

.facility__title {
    color: #fff;
}

.facility__list {
    display: -ms-grid;
    display: grid;
    gap: 24px;
}

@media screen and (min-width: 769px) {
    .facility__list {
        -ms-grid-columns: 1fr 1fr 1fr;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media screen and (max-width: 768px) {
    .facility__list {
        -ms-grid-columns: 1fr;
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
}

.facility__item {
    background-color: #fff;
    -ms-grid-column-span: 1fr;
    grid-column: span 1/span 1;
}

.facility__itemfull {
    background-color: #fff;
}

@media screen and (min-width: 769px) {
    .facility__itemfull {
        -ms-grid-column-span: 1fr 1fr 1fr;
        grid-column: span 3/span 3;
    }
}

.facility__image-wrapper {
    display: block;
    width: 100%;
    aspect-ratio: 349/233;
}

.facility__image {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.facility__body {
    position: relative;
    padding: 24px 16px 16px;
}

.facility__body::before {
    content: "";
    display: block;
    position: absolute;
    margin: auto;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, var(--default-color-secondary, #C99A32) 6.25%, #FBE6B6 21.63%, var(--default-color-secondary, #C99A32) 74.52%);
}

.facility__item-title {
    font-size: 22px;
    font-weight: 400;
    line-height: 150%;
    margin-bottom: 8px;
}


.facility__item-recommend {
    color: #C99A32;
    margin-top: 8px;
}

.facility__itemfull .facility__body {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 16px 8px 16px;
}

.facility__itemfull .facility__item-title {
    margin-bottom: 0;
}

@media screen and (max-width: 768px) {

    .facility__itemfull .facility__body {
        display: block;
    }
}

/* **********
Advice　-「知っ得」情報
********** */
.advice {
    padding-top: 80px;
    padding-bottom: 120px;
}

@media screen and (max-width: 768px) {
    .advice {
        padding-top: 40px;
        padding-bottom: 60px;
    }
}

.advice .inner_1104 {
    position: relative;
    z-index: 1;
}

@media screen and (min-width: 769px) {
    .advice .inner_1104::before {
        content: url(../images/toku_kazari.svg);
        display: block;
        width: 252px;
        max-width: 25%;
        position: absolute;
        bottom: -24px;
        right: 0;
        z-index: -1;
    }
}

.advice__lead {
    color: #fff;
}

.advice__title {
    color: #fff;
}

.advice__list {
    display: -ms-grid;
    display: grid;
    gap: 24px;
}

@media screen and (min-width: 769px) {
    .advice__list {
        -ms-grid-columns: 1fr 1fr 1fr;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media screen and (max-width: 768px) {
    .advice__list {
        -ms-grid-columns: 1fr;
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
}

.advice__item {
    -ms-grid-column-span: 1fr;
    grid-column: span 1/span 1;

    display: flex;
    border: 1px solid #C99A32;
    background: rgba(255, 255, 255, 0.10);
    padding: 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    flex-shrink: 0;

    color: #FFF;
}

.advice__item-label {
    font-size: 16px;
    font-weight: 700;
    line-height: 150%;
}

.advice__item-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 150%;
}
.advice__item-attentiontext{    
    color: #C99A32;
    font-size: 12px;
    font-weight: 400;
    text-indent: -1em;
    padding-left: 1em;
}

@media screen and (max-width: 768px) {
    .advice__item-title {
        font-size: 16px;
    }
}

/* **********
Guest Room -客室紹介
********** */
.guest-room {
    padding-top: 80px;
    padding-bottom: 120px;
}

@media screen and (max-width: 768px) {
    .guest-room {
        padding-top: 40px;
        padding-bottom: 60px;
    }
}

.guest-room__item {
    display: -ms-grid;
    display: grid;
}

.guest-room__item:not(:last-child) {
    margin-bottom: 80px;
}

@media screen and (min-width: 769px) {
    .guest-room__item {
        gap: 56px;
        -ms-grid-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
        grid-template-columns: repeat(7, minmax(0, 1fr));
    }

    .guest-room__image-wrapper {
        -ms-grid-column-span: 1fr 1fr 1fr 1fr;
        grid-column: span 4/span 4;
    }

    .guest-room__body {
        -ms-grid-column-span: 1fr 1fr 1fr;
        grid-column: span 3/span 3;
    }

    .guest-room__item:nth-child(even) .guest-room__image-wrapper {
        order: 2;
    }

    .guest-room__item:nth-child(even) .guest-room__body {
        order: 1;
    }
}

@media screen and (max-width: 768px) {
    .guest-room__item:not(:last-child) {
        margin-bottom: 40px;
    }

    .guest-room__item {
        gap: 16px;
        -ms-grid-columns: 1fr;
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .guest-room__image-wrapper,
    .guest-room__body {
        -ms-grid-column-span: 1fr;
        grid-column: span 1/span 1;
    }
}

.guest-room__image-wrapper {
    display: block;
    width: 100%;
    aspect-ratio: 12 / 7;
}

.guest-room__image {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.guest-room__name {
    font-size: 28px;
    font-weight: 400;
    line-height: 150%;
    margin-bottom: 20px
}

.guest-room__name-sub {
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    display: block;
}

@media screen and (max-width: 768px) {
    .guest-room__name {
        font-size: 22px;
        margin-bottom: 16px;
    }
}

/* **********
Recommendation -おすすめ旅行
********** */
.recommendation {
    padding-top: 80px;
    padding-bottom: 80px;
}

@media screen and (max-width: 768px) {
    .recommendation {
        padding-top: 40px;
        padding-bottom: 60px;
    }
}

.recommendation__title {
    color: #fff;
}

.recommendation__item:not(:last-child) {
    padding-bottom: 80px;
}

.recommendation__item-title {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 24px;
}

.recommendation__tour-list {
    display: flex;
    flex-wrap: wrap;
    margin: auto;
    gap: 16px;
    align-items: flex-start;
    width: fit-content;
}

.recommendation__tour-btn {
    display: block;
    width: 100%;
    padding: 8px calc(8px + 24px + 8px) 8px 24px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 4em;
    text-align: center;
    text-decoration: none;
    margin: auto;
    position: relative;
    background-position: center right 8px;
    background-repeat: no-repeat;
    background-color: #C99A32;
    background-image: url(../images/icon_open_in_new_w.svg);
    border: 1px solid #C99A32;
    color: #fff;
    transition: background 0.3s;
}

.recommendation__tour-btn:hover {
    background-color: rgba(201, 154, 50, 0.80);
}

@media screen and (max-width: 768px) {
    .recommendation__item:not(:last-child) {
        padding-bottom: 40px;
    }

    .recommendation__tour-item {
        width: calc(100% / 2 - 8px);
    }

}


.recommendation__btn-wrapper {
    text-align: center;
}

.recommendation__btn {
    display: block;
    width: 100%;
    max-width: 460px;
    padding: 12px calc(36px + 24px + 16px) 12px 48px;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    background: #C99A32;
    border-radius: 4em;
    text-align: center;
    text-decoration: none;
    margin: auto;
    position: relative;
    transition: background 0.3s;
}

.recommendation__btn::after {
    content: "";
    width: 20px;
    height: 20px;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 36px;
    margin: auto;
    background: url(../images/icon_arrow_r.svg) no-repeat center;
}

.recommendation__btn._pagelink::after {
    transform: rotate(90deg)
}

.recommendation__btn:hover {
    background-color: rgba(201, 154, 50, 0.80);
}


/* **********
Search
********** */
.search-box {
    padding-top: 188px;
    padding-bottom: 188px;
}