@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;600;800&Noto+Serif+JP:wght@200..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
@import url('extra.css');


/*config*/
:root {
    --main-color: #313131;
    --sub-color: #FDE67C;
    --header-height: 100px;
    --fixed-header-height: 100px;
    --sp-header-height: 70px;
    --item-list-gap: 4vmax;
    --sp-item-list-gap: 15px;
}

/* ////////////////////////////////////////////
*                 BASE
* //////////////////////////////////////////// */

/* clearfix
------------------------------------------*/
.clear {
    clear: both;
}

.clearfix {
    zoom: 1;
}

.clearfix:after {
    content: '';
    display: table;
    clear: both;
}


.slider {
    opacity: 0;
    transition: opacity .3s linear;
}

.slider.slick-initialized {
    opacity: 1;
}

/* base
------------------------------------------*/

html {
    height: 100%;
    font-size: 62.5%;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    background: #fff;
    overflow-y: auto;
    overflow-x: hidden
}

@media screen and (max-width:768px) {
    html {
        font-size: 56.5%;
    }
}

body {
    text-align: center;
    font-size: 1.5rem;
    line-height: 2;
    /*font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, sans-serif;
    */
    /*font-family: "メイリオ" ,"Meiryo", "Hiragino Sans", "ヒラギノ角ゴシック", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro W3", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;*/
    font-family: 'Noto Sans JP', sans-serif;
    color: var(--main-color);
    background: #f3eee7;
    font-feature-settings: "palt";
    letter-spacing: 0.02em;
    text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    /*Chrome,Safari*/
    -ms-text-size-adjust: 100%;
    /*EgdeMobile*/
    -moz-text-size-adjust: 100%;
    /*firefox*/
    overflow-x: hidden;
}


.font-min {
    font-family: "Noto Serif JP", serif;
    font-weight: 400;
    font-style: normal;
}

.en {
    font-family: "Playfair Display", serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
}


.main-color {
    color: #436F0B;
}

.uline {
    text-decoration: underline;
}

a {
    color: var(--main-color);
    text-decoration: none;
}

a.uline {
    text-decoration: underline;

}

.bigger:hover,
a:hover {
    opacity: 0.7;
}

/* use hover animation */
a,
.bigger:hover,
a:hover {
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}


img {
    max-width: 100%;
    height: auto;
    vertical-align: top;
}

.zoom-hover {
    display: inline-block;
    overflow: hidden;
    /* ズーム時に画像がはみ出さないようにする */
    position: relative;
    /* 画像のポジションを相対的に設定 */
}

.zoom-hover:hover {
    opacity: 1;

}

.zoom-hover img {
    transition: transform 0.5s ease, opacity 0.5s ease;
    /* ゆっくりとしたズーム＆フェード */
}

.zoom-hover:hover img {
    transform: scale(1.05) translateY(-5px);
    /* 少し上にシフト */
    opacity: 0.95;
    /* 軽くフェードアウトで上品な印象 */
}

/* ////////////////////////////////////////////
*                 favorite-btn
* //////////////////////////////////////////// */
.favorite-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
}

/* 一覧用のお気に入りボタン */
.post-thumbnail .favorite-btn {
    position: absolute;
    left: 10px;
    bottom: 20px;

}

.favorite-btn .fa-heart {
    color: #000;
    /* 未クリック時の色 */
}

.favorite-btn[data-favorite="1"] .fa-heart {
    color: #ff0000;
    /* クリック済みの色 */
}

/* ////////////////////////////////////////////
*                 common
* //////////////////////////////////////////// */


.inner {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0;
    position: relative;
}

.inner-lg {
    max-width: 1800px;
    margin: 0 auto;
    padding: 0;
    position: relative;
}

.inner-md {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    position: relative;
}

.inner-sm {
    max-width: 900px;
    margin: 0 auto;
    padding: 0;
    position: relative;
}

@media screen and (max-width:1600px) {

    .inner,
    .inner-lg,
    .inner-md,
    .inner-sm {
        padding: 0 2vmax;
    }
}


.main-common-tit {
    font-size: 1.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    position: relative;
    line-height: 1.4;
    font-family: "Noto Serif JP", serif;
    font-weight: 400;

}

.main-common-tit .en {
    font-size: 4.0rem;
    letter-spacing: 0.05em;
    margin-right: 0.3em;
}

@media screen and (max-width:768px) {
    .main-common-tit {
        font-size: 1.6rem;
    }

    .main-common-tit .en {
        font-size: 3.0rem;
    }

}



/* ////////////////////////////////////////////
*                 header
* //////////////////////////////////////////// */
#header {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    font-size: 1.4rem;
}


#header.fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    -webkit-animation: fixedanime 1s 0s both;
    animation: fixedanime 1s 0s both
}


@keyframes fixedanime {
    0% {
        opacity: (.1);
        transform: translateY(-100px)
    }

    70% {
        opacity: (.1)
    }

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

#header-inner {
    max-width: 100%;
    padding: 0 3vmax;
    height: var(--header-height);
    margin: 0 auto;
    position: relative;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    /*
    border-bottom: 1px solid #ccc;
    */
}

.fixed #header-inner {
    height: var(--fixed-header-height);
    display: none;
}

#header-nav {
    align-items: center;
}

@media screen and (max-width:1199px) {

    #header-inner,
    .fixed #header-inner {
        height: var(--sp-header-height);
    }


}

@media screen and (max-width:768px) {
    #header-inner {
        padding: 0 20px 0 10px;
    }
}

#header-lang {
    position: relative;
    display: inline-block;
    margin: 0;
    text-align: left;

    .header-lang-inner {
        position: relative;
        display: inline-block;

        /* 下向きアイコン */
        &::after {
            content: "\f107";
            font-family: 'Font Awesome 5 Pro';
            font-weight: 400;
            position: absolute;
            top: 50%;
            right: 12px;
            transform: translateY(-50%);
            pointer-events: none;
        }
    }

    select.styled-select {
        /* 本体は透明背景に */
        color: #000;
        -webkit-text-fill-color: #000;
        /* iOS Safari 対策 */
        background: transparent;
        font-size: 16px;
        line-height: 1.2;
        padding: 10px 30px 10px 10px;
        border: none;
        border-radius: 4px;
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        cursor: pointer;
        min-height: 44px;

        &:focus {
            outline: none;
        }

        /* ドロップダウン項目の背景・文字色 */
        option {
            background: rgba(0, 0, 0, 0.5);
            color: #fff;
        }
    }
}


#header-logo {
    max-width: 32%;
    border-radius: 0 0 20px 0;
    z-index: 100;
}

#header #header-logo img {
    max-width: 300px;
    opacity: 1;
    -webkit-transition: 0.3s ease-in-out;
    vertical-align: middle;
}

#header.fixed #header-logo img {
    opacity: 0;
}

#header-favorte {
    margin-right: 30px;
}

#header-favorte a {
    display: flex;
    align-items: center;
    position: relative;
    mix-blend-mode: difference;
}

#header-favorte a::after {
    content: '\f005';
    font-weight: 400;
    font-family: 'Font Awesome 5 Pro';
    font-size: 10px;
    line-height: 1;
    position: absolute;
    top: 6px;
    left: 2px;
}


#header-favorte a::before {
    content: '\f02e';
    font-weight: 300;
    font-family: 'Font Awesome 5 Pro';
    margin-right: 5px;
    font-size: 20px;
    line-height: 1;
}

#header-lang,
#header-logo,
#header-nav {
    flex: 1;
}

.dark #header-lang,
.dark #header-nav,
.dark #header-lang a,
.dark #header-nav a,
.dark #panel-btn-text {
    color: #fff !important;
}

.dark #panel-btn-icon,
.dark #panel-btn-icon::before,
.dark #panel-btn-icon::after {
    background: #fff !important;
}

@media screen and (max-width:768px) {
    #header-inner {
        gap: 15px;
    }

    #header-favorte {
        margin-right: 10px;
    }

    #header-favorte a::after {
        top: 2px;
    }

    #header-logo {
        flex: 0;
        flex-grow: 1;
        max-width: 100%;
    }

    #header-lang,
    #header-nav {
        flex: 0;
        flex-basis: 20%;
    }
}


/* ////////////////////////////////////////////
*                sphone-nav
* //////////////////////////////////////////// */


#gnav-trigger {
    z-index: 999;
    cursor: pointer;
    position: relative;
}

#gnav-trigger::before {
    display: block;
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
}

#panel-btn {

    display: flex;
    align-items: center;
}

#panel-btn:hover {
    color: var(--main-color);
    opacity: 1;
}

#panel-btn-text {
    display: block;
    position: relative;
    text-align: center;
    margin-left: 10px;
}

#panel-btn-text::before {
    content: "メニュー";
    color: var(--main-color);
}

.translatepress-en_US #panel-btn-text::before {
    content: "MENU";
    color: var(--main-color);
}

#panel-btn-icon {
    display: block;
    position: relative;
    width: 25px;
    height: 2px;
    background: var(--main-color);
    transition: .2s
}


.is-drawer-open #panel-btn-icon,
.is-drawer-open #panel-btn-icon:after,
.is-drawer-open #panel-btn-icon:before {
    width: 25px;
}

#panel-btn-icon:before {
    margin-top: -8px;
    width: 30px;
}

#panel-btn-icon:after {
    margin-top: 6px;
    width: 20px;
}

#panel-btn-icon:after,
#panel-btn-icon:before {
    display: block;
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    height: 2px;
    background: var(--main-color);
    transition: .3s
}

#panel-btn .close {
    background: 0 0
}

#panel-btn .close:after,
#panel-btn .close:before {
    margin-top: 0
}

#panel-btn .close:before {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg)
}

#panel-btn .close:after {
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg)
}


#drawer-bg {
    display: none;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 998;
    background: #f8f6f2;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch
}

#drawer-menu {
    display: none;
    width: 1000px;
    margin: 0 auto;
    position: absolute;
    right: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 101;
    padding: 2vmax;

}

@media screen and (max-width:1000px) {
    #drawer-menu {
        display: none;
        width: 100%;
        height: 100%;
        position: absolute;
        left: 0;
        right: auto;
        top: 80px;
        transform: none;
        z-index: 101;
        padding: 2vmax 4vmax;

    }
}

.drawer-kodawari {
    border: 1px solid var(--main-color);
    padding: 0.5em;
    margin-bottom: 2vmax;

}

.drawer-kodawari::before {
    content: '\f00e';
    font-weight: 400;
    font-family: 'Font Awesome 5 Pro';
    margin-right: 0.5em;
    font-size: 2rem;

}

.drawer-favorite {
    border: 1px solid var(--main-color);
    padding: 0.5em;
    margin-bottom: 2vmax;
    display: block;

}

.drawer-favorite::before {
    content: '\f005';
    font-weight: 400;
    font-family: 'Font Awesome 5 Pro';
    margin-right: 0.5em;
    font-size: 2rem;

}


#drawer-menu .stay-search-button {
    font-size: 1em;
    margin-top: 1vmax;
}

@media screen and (max-width:920px) {

    #drawer-menu .form-group-wrap,
    #sliding-panel .form-group-wrap {
        margin-bottom: 4vmax;
    }
}

#drawer-menu ul.stay_area-list,
#drawer-menu ul.stay_scene-list {

    display: flex;
    margin-bottom: 2vmax;
    text-align: left;
    flex-wrap: wrap;
}

#drawer-menu ul.stay_area-list li,
#drawer-menu ul.stay_scene-list li {
    padding: 0.5em 0;
    margin-right: 2em;
}

#drawer-menu ul.menu-list li {
    display: block;
    padding: 0.5em 0;
    position: relative;
    text-align: left;
}

#drawer-menu ul li a::before {
    content: '\f105';
    font-weight: 400;
    font-family: 'Font Awesome 5 Pro';
    margin-right: 0.5em;
}


#drawer-menu li a .areaname {}


.is-drawer-open #drawer-bg {
    display: block;
    animation-duration: .5s;
    animation-name: fadein
}

.is-drawer-open #header {
    background: none;
}

.is-drawer-closed #header-logo .logo-close {
    display: block;
}

.logo-open {
    display: none;
}

.is-drawer-open #header-logo .logo-close {
    display: none;
}

.is-drawer-open #header-logo .logo-open {
    display: block;
}

.is-drawer-open #drawer-menu {
    display: block;
}

/* has children
------------------------------------------*/
#drawer-menu li.parent a {
    display: inline-block;
    position: relative;
}

#drawer-menu li.parent::after {
    position: absolute;
    right: 1em;
    top: 1em;
    content: '\f078';
    font-weight: 300;
    font-family: 'Font Awesome 5 Pro';
    padding-right: 0.5em;
    color: #fff;
}

#drawer-menu li.parent.open::after {
    content: '\f077';
}

#drawer-menu ul.sub-menu {
    display: none;
    margin: 0 1em 1em 1em;
}

#drawer-menu ul.sub-menu li {
    display: block;
    position: relative;
}

#drawer-menu ul.sub-menu li a {
    padding: 0.3em 0.8em;
    font-size: 1.8rem;

}

/* ////////////////////////////////////////////
*                 スマホ検索モーダル
* //////////////////////////////////////////// */

#sliding-panel {
    position: fixed;
    top: 0;
    right: -100%;
    /* 初期状態は画面外 */
    width: 100%;
    height: 100%;
    background: #f8f6f2;
    /* 背景色を変更可能 */
    box-shadow: -4px 0 8px rgba(0, 0, 0, 0.2);
    transition: right 0.3s ease-in-out;
    /* スライドアニメーション */
    z-index: 1000;
    /* 他の要素より前面に表示 */
    overflow-y: auto;
    /* コンテンツが長い場合スクロール可能 */
}


.panel-header {
    padding: 10px;
    background-color: #f5f5f5;
    border-bottom: 1px solid #ddd;
    text-align: left;
}

.panel-header button {
    background: none;
    border: none;
    cursor: pointer;
    color: #333;
    /* ボタンの色を指定 */
    outline: none;
    /* フォーカス時のアウトラインを削除 */
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    /* スマホの青いハイライトを無効化 */
}


.panel-content {
    padding: 2vmax;
    /* コンテンツ部分のスタイルを自由に調整可能 */
}

#sliding-panel .search-filter-form {
    border-bottom: none;
}

#sliding-panel .stay-search-button {
    font-size: 1.8rem;
    margin-top: 2vmax;
}


/* ////////////////////////////////////////////
*                 more-btn
* //////////////////////////////////////////// */

.more-btn {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: var(--main-color);
    /* 初期の文字色 */
    font-weight: bold;
    padding: 5px 10px;
    overflow: hidden;
    /* 子要素がはみ出ないようにする */
    letter-spacing: 0.1em;
}

/* 初期の下線 */
.more-btn::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    /* 下線の高さ */
    background-color: var(--main-color);
    /* 初期の下線の色 */
}

/* アニメーション付きの下線 */
.more-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    /* 下線の高さ */
    color: #998675;
    background-color: #998675;
    /* ホバー時の下線の色 */
    transform: scaleX(0);
    /* 初期状態で非表示 */
    transform-origin: left;
    /* アニメーションの起点を左に設定 */
    transition: transform 0.3s ease;
    /* アニメーション設定 */
}

.more-btn:hover {
    color: #998675;
    opacity: 1;
}

.more-btn:hover::after {
    transform: scaleX(1);
    /* ホバー時に下線を塗りつぶす */
}

.more-btn span {
    min-width: 150px;
    display: flex;
    justify-content: space-between;
}

/* アイコンの疑似要素 */
.more-btn span::after {
    content: '\f105';
    font-weight: 300;
    font-family: 'Font Awesome 5 Pro';
    /* アイコンの太さを設定 */
    margin-left: 15px;
    /* アイコンと文字の間にスペース */
}

/* ////////////////////////////////////////////
*                 more-btn-02
* //////////////////////////////////////////// */

.more-btn-02 {
    display: inline-block;
    position: relative;
    background: var(--main-color);
    border-radius: 2px;
}

.more-btn-02 span {
    color: #fff;
    display: block;
    padding: 1em 3em;
    font-size: 1.8rem;
    font-weight: 600;
    position: relative;
    line-height: 1;
    text-align: center;
}

.more-btn-02:after {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 22px;
    content: '\f105';
    font-weight: 300;
    font-family: 'Font Awesome 5 Pro';
    color: #fff;
}

.more-btn-02.outline {
    border: 1px solid var(--main-color);
    background: #fff;
}

.more-btn-02.outline span {
    color: var(--main-color);
}

.more-btn-02.outline:after {
    color: var(--main-color);
}



@media screen and (max-width:768px) {
    .more-btn-02 span {
        font-size: 1.8rem;
        padding: 1.8em 4em;
    }
}

/* ////////////////////////////////////////////
*                 mainimage
* //////////////////////////////////////////// */
#wrapper {

    overflow-x: hidden
}


@media screen and (max-width:1199px) {

    .home #content {
        margin-top: 0;
    }
}

/* ////////////////////////////////////////////
*                 mainimage
* //////////////////////////////////////////// */
#mainimage {
    position: relative;
    z-index: 1;
    margin: 0 3vmax;
    display: block;
    overflow: hidden;
}

@media screen and (max-width:920px) {
    #mainimage {
        margin: 0 0;
    }
}

.loader {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    /* 幅を100%に設定 */
    height: 1px;
    /* 高さを2pxに設定 */
    background: transparent;
    /* 初期色を透明に */
    transform: translate(-50%, -50%);
    /* 中央に配置 */
}

.loader:before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    /* 初期位置を中央に設定 */
    width: 100%;
    height: 100%;
    background-color: #000;
    /* 塗りつぶし色 */
    transform: translateX(-50%) scaleX(0);
    /* 初期状態はスケール0で中央に配置 */
    transform-origin: center;
    /* 塗りつぶしの始まりを中心に設定 */
    animation: fill 2.5s cubic-bezier(0.7, 0, 0.3, 1) forwards;
    /* 塗りつぶしアニメーションにイージングを追加 */
}

@keyframes fill {
    0% {
        transform: translateX(-50%) scaleX(0);
        /* 初期状態 */
    }

    70% {
        transform: translateX(-50%) scaleX(1);
        /* 中間で幅100%に達する */
    }

    100% {
        transform: translateX(-50%) scaleX(1);
        /* 最終的に幅100% */
    }
}


.mainimage-inner {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 0.5;
    overflow: hidden;
}

.mainimage-inner video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    aspect-ratio: 16 / 9;
}

@media (max-width: 768px) {
    .mainimage-inner {
        aspect-ratio: 1 / 1.5;
    }
}




/* ////////////////////////////////////////////
*                 main-ranking
* //////////////////////////////////////////// */
.main-ranking {
    padding: 4vmax 0 6vmax 0;
}

/* タブの基本スタイル */
.ranking-tabs {
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    gap: 4px;
    margin-bottom: 2vmax;
}

.tab-link {
    all: unset;
    cursor: pointer;
    padding: 10px 15px;
    text-align: center;
    min-width: 80px;
    display: inline-block;
    flex: 1;
    position: relative;
}

@media screen and (max-width:768px) {
    .tab-link {
        padding: 10px 10px;
        min-width: 60px;
    }
}

/* デフォルトの下線 */
.tab-link::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #ccc;
}

/* カレントタブのアニメーション付き下線 */
.tab-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #998675;
    transform: scaleX(0);
    /* 初期状態で非表示 */
    transform-origin: left;
    transition: transform 0.3s ease;
}

/* カレントタブのアニメーション */
.tab-link.current::after,
.tab-link:hover::after {
    transform: scaleX(1);
}

.tab-link.current {
    color: #998675;
    font-weight: 800;
}

/* コンテンツ部分 */
.ranking-contents .ranking-content {
    display: none;
}

.ranking-contents .ranking-content.active {
    display: block;
}

.post-items-wrap {
    margin: 40px 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--item-list-gap);
}

.post-thumbnail {
    position: relative;
    z-index: 0;

}

@media screen and (max-width:768px) {
    .main-ranking .post-items-wrap {
        gap: var(--sp-item-list-gap);
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .main-ranking .post-items-wrap .post-item {
        width: 46%;
    }

    .main-ranking .post-items-wrap .post-item:first-of-type {
        width: 100%;
    }

    .main-ranking .post-items-wrap .post-item:first-of-type .post-thumbnail img {
        aspect-ratio: 1 / 0.4;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .main-ranking .post-items-wrap .post-item .post-excerpt {
        display: none;
    }

    .main-ranking .post-items-wrap .post-item:first-of-type .post-excerpt {
        display: block;
    }
}




.post-excerpt {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.post-stay-area-term {
    font-size: 1.2rem;
}

.post-more-btn {
    font-size: 1.4rem;
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: var(--main-color);
    /* 初期の文字色 */
    font-weight: bold;
    padding: 5px 0;
    overflow: hidden;
    /* 子要素がはみ出ないようにする */
    letter-spacing: 0.1em;
}

@media screen and (max-width:768px) {
    .post-more-btn {
        font-size: 1.0rem;
    }
}

/* 初期の下線 */
.post-more-btn::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    /* 下線の高さ */
    background-color: var(--main-color);
    /* 初期の下線の色 */
}

/* アニメーション付きの下線 */
.post-more-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    /* 下線の高さ */
    color: #998675;
    background-color: #998675;
    /* ホバー時の下線の色 */
    transform: scaleX(0);
    /* 初期状態で非表示 */
    transform-origin: left;
    /* アニメーションの起点を左に設定 */
    transition: transform 0.3s ease;
    /* アニメーション設定 */
}

.post-more-btn:hover {
    color: #998675;
    opacity: 1;
}

.post-more-btn:hover::after {
    transform: scaleX(1);
    /* ホバー時に下線を塗りつぶす */
}

/* アイコンの疑似要素 */
.post-more-btn span::after {
    content: '\f105';
    font-weight: 300;
    font-family: 'Font Awesome 5 Pro';
    /* アイコンの太さを設定 */
    margin-left: 15px;
    /* アイコンと文字の間にスペース */
}


.ranking-icon {
    position: absolute;
    top: -30px;
    left: 15px;

}

.ranking-icon span {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #111;
    /* 丸の背景色 */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    color: #fff;
    font-weight: bold;
    z-index: 1;
}

.ranking-icon::after {
    content: '';
    position: absolute;
    bottom: -25px;
    /* リボンを丸の下に配置 */
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 30px;
    background-color: rgba(255, 255, 255, 0.8);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 60%, 0 100%);
    z-index: 0;
}

.ranking-icon span.first {
    background-color: #111;
    color: #fff;
    /* 1位の色 */
}

.ranking-icon span.second {
    background-color: #998675;
    color: #fff;
    /* 2位の色 */
}

.ranking-icon span.third {
    background-color: #999;
    color: #fff;
    /* 3位の色 */
}

@media screen and (max-width:768px) {

    .ranking-icon {
        position: absolute;
        top: -10px;
        left: 10px;

    }

    .ranking-icon span {
        width: 40px;
        height: 40px;
        font-size: 2.2rem;
    }

    .ranking-icon::after {
        content: '';
        position: absolute;
        bottom: -15px;
        /* リボンを丸の下に配置 */
        left: 50%;
        transform: translateX(-50%);
        width: 15px;
        height: 25px;
        background-color: rgba(255, 255, 255, 0.8);
        clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 60%, 0 100%);
        z-index: 0;
    }


}

/* ////////////////////////////////////////////
*                 main-newarrivals
* //////////////////////////////////////////// */
.main-newarrivals {
    padding: 6vmax 0;
    background: #f8f6f2;
}

.newarrivals-list li {
    max-width: 400px;
    margin: 0 20px;
}

@media screen and (max-width:768px) {
    .newarrivals-list li {
        margin: 0 10px;
    }
}

.progress-container {
    max-width: 1400px;
    height: 1px;
    /* バーの高さを設定 */
    background-color: #CECECE;
    /* バーの初期色 */
    position: relative;
    margin: 4vmax auto 0 auto;
    /* 中央に配置 */
}

.progress-bar1-1 {
    width: 0;
    /* 初期状態では幅0 */
    height: 100%;
    /* バーの高さを100%に設定 */
    background-color: var(--main-color);
    /* 塗りつぶしの色 */
    position: absolute;
    top: 0;
    left: 0;
    transition: width 0.5s ease;
    /* アニメーション設定 */
}

/* ////////////////////////////////////////////
*                 main-area
* //////////////////////////////////////////// */
.main-area {
    padding: 6vmax 0;
    position: relative;
}

.main-area::after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 10%;
    width: 80%;
    height: 1px;
    background: #ccc;

}

.main-area .main-common-tit {
    margin-right: 2vmax;

}

.main-area-map-wrap {
    gap: 20px;
    margin: 4vmax 0 0 0;
}

.main-area-map iframe {
    aspect-ratio: 16 / 9;
    max-width: 800px;
    width: 100%;
    height: 100%;
}

.main-area-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

@media screen and (max-width:768px) {
    .main-area-list {
        margin-top: 20px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .main-area-map iframe {
        aspect-ratio: 1 / 1;
        max-width: 800px;
        width: 100%;
        height: 100%;
    }

}

.main-area-list li {
    border-bottom: 1px solid #ccc;
}

.main-area-list .name {
    padding: 0.5em 0;
    position: relative;
    font-size: 1.8rem;
}

.main-area-list .name::before {
    content: '\f105';
    font-weight: 300;
    font-family: 'Font Awesome 5 Pro';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);

}


/* ////////////////////////////////////////////
*                 main-scene
* //////////////////////////////////////////// */
.main-scene {
    padding: 6vmax 0;
    position: relative;
}


.main-scene-list {
    display: flex;
    gap: 20px;
    margin: 4vmax 0;
}


.main-scene-list li {
    position: relative;
}

.main-scene-list li .name {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    color: #fff;
    font-weight: 800;
    white-space: nowrap;
    font-size: 1.8rem;
}

.main-scene-list li img {
    aspect-ratio: 1 / 1.6;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media screen and (max-width:768px) {
    .main-scene-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        margin: 4vmax 0;
    }

    .main-scene-list li img {
        aspect-ratio: 1 / 1;
    }
}


/* ////////////////////////////////////////////
*                 main-about-mv
* //////////////////////////////////////////// */

.main-about-mv {
    width: 100%;
    height: 40vmax;
    position: relative;
    overflow: hidden;
    background-image: url('../images/about-mv.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* パララックス効果の基本設定 */
}


.main-about-mv .main-common-tit {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
    z-index: 1;
}

/* ////////////////////////////////////////////
*                 main-about
* //////////////////////////////////////////// */
.main-about {
    position: relative;
    z-index: 3;
}

.main-about::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 50%;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: #f8f6f2;
}


.main-about-text {
    padding: 6vmax 2vmax;
}

.main-about-img {
    width: 97vmax;
    margin-right: 3vmax;
    height: 35vmax;
}

.main-about-img.left {
    width: 97vmax;
    margin-right: 0;
    margin-left: 3vmax;
}

.main-about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media screen and (max-width:768px) {
    .main-about-img {
        height: 25vmax;
    }
}

/* ////////////////////////////////////////////
*                 main-owners
* //////////////////////////////////////////// */
.main-owners {
    padding: 6vmax 0;
    background: #f8f6f2;
}

/* ////////////////////////////////////////////
*                 main-news
* //////////////////////////////////////////// */
.main-news {
    position: relative;
    padding: 6vmax 2vmax;
    display: block;

}

.main-news-inner .more-btn {
    display: block;
}

@media screen and (max-width:768px) {
    .main-news-inner .more-btn {
        display: inline-block;
    }
}

.main-news-inner .more-btn span {
    padding: 1em 4em 1em 1em;
}


.main-news .main-news-ttl {
    width: 20%;
    max-width: 300px;
    margin-right: 4vmax;
}

@media screen and (max-width:768px) {
    .main-news .main-news-ttl {
        width: 100%;
        max-width: 100%;
        margin-right: 0;
    }
}


.main-news .list {
    flex: 1;
    margin-bottom: 3vmax;
}

.main-news .list li {
    padding: 1.5em 0;
    border-bottom: 1px solid #ccc;
    text-align: left;
    position: relative;

}

.main-news .list li:before,
.main-news .list li:after {
    position: absolute;
    top: 50%;
    right: 22px;
    height: 1px;
    background: var(--main-color);
    content: '';
}

.main-news .list li:before {
    width: 30px;
    transform: translateY(-50%);
    background: var(--main-color);
}

.main-news .list li:after {
    width: 8px;
    transform: translateY(-50%) rotate(45deg);
    transform-origin: right center;
}

.main-news .list li .date {
    margin: 0 2em;
}

.main-news .list li .icon {
    color: #0066CC;

}

.main-news .list li a:hover {
    color: #998675;
    opacity: 1;

}

@media screen and (max-width:768px) {
    .main-news {
        padding: 6vmax 2vmax;

    }

    .main-news .list li {
        padding: 1em 0;

    }

    .main-news .list li .date {
        margin: 0 2em 0 0;
    }
}




/* ////////////////////////////////////////////
*                 side-cta
* //////////////////////////////////////////// */
#side-cta {
    position: fixed;
    z-index: 99;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

@media screen and (max-width:1400px) {
    #side-cta {
        max-width: 100px;
    }
}

@media screen and (max-width:920px) {
    #side-cta {
        display: none;
    }
}



#side-cta a {
    display: block;
    position: relative;
    /*right: -115px;*/
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;

}

#side-cta a:hover {
    /*right: 0;*/
    opacity: 1 !important;


}

#side-cta a:hover,
#side-cta a img:hover {
    opacity: 1 !important;

}

#side-cta a {
    margin-bottom: 10px;
}

#side-cta a:last-of-type {
    margin-bottom: 0;
}


/* ////////////////////////////////////////////
*                 sp-footer
* //////////////////////////////////////////// */
#sp-footer-cta {
    display: none;
}

@media screen and (max-width:920px) {
    #sp-footer-cta {
        padding: 0.8em;
        background-color: rgba(22, 22, 22, 0.95);
        color: #fff;
        display: block;
        position: fixed;
        cursor: pointer;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 999;
    }

    #sp-footer-cta span::before {
        content: '\f00e';
        font-weight: 400;
        font-family: 'Font Awesome 5 Pro';
        margin-right: 0.5em;
    }
}

/* ////////////////////////////////////////////
*                 footer
* //////////////////////////////////////////// */
#footer {
    padding: 6vmax 0;
    background: #f8f6f2;
    position: relative;
}


#footer .more-btn span {
    background: var(--sub-color);
}


.footer-logo {
    margin-bottom: 2vmax;
}

.footer-logo img {
    max-width: 300px;
}

.footer-nav {
    flex: 1;
    gap: 30px;
}

.footer-nav li {
    text-align: left;
    margin: 0 0 2em 0;
    line-height: 1.4;
    font-size: 1.2rem;
}



.footer-nav li a::before {
    content: '\f105';
    font-weight: 400;
    font-family: 'Font Awesome 5 Pro';
    margin-right: 0.5em;

}

.footer-nav li ul li {
    margin: 0.7em 1em;
}

.footer-nav li ul li a::before {
    content: '・';
    margin-right: 0.5em;

}

.footer-nav-02 {
    width: 100%;
    gap: 20px;
    text-align: left;
    margin: 4vmax 0;
}

.footer-nav-02>li {
    flex: 1;
    font-size: 1.4rem;
}

.footer-nav-02>li>a {
    padding: 0.5em 0;
    display: block;
}

.footer-nav-02>li ul {
    padding: 1em;
    border-top: 1px solid #111;
}




#copyright {
    font-size: 12px;
    padding: 0.5em;
}

@media screen and (max-width:768px) {
    #copyright {
        margin-top: 4vmax;
    }
}



/* ////////////////////////////////////////////
*                 pagetop-btn
* //////////////////////////////////////////// */

.pagetop-btn-wrap {
    display: none;
    position: fixed;
    bottom: 100px;
    right: 2vmax;
    z-index: 99;
}

.pagetop-btn {
    position: relative;

}

.pagetop-btn::before {
    content: '\f077';
    font-weight: 300;
    font-family: 'Font Awesome 5 Pro';
    display: block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50px;
    color: #111;
    border: 1px solid #111;
}


/* ////////////////////////////////////////////
*                 lower-entry
* //////////////////////////////////////////// */

.page-header-wrapper {
    position: relative;
    z-index: 4;
}

.page-header-wrapper::before {
    position: absolute;
    content: "";
    display: block;
    width: 100vw;
    height: 50%;
    left: 0;
    bottom: 0;
    z-index: -1;
}

.page-header {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
}


.page-header .ttl {
    font-size: 3rem;
    line-height: 1.4;
    text-align: center;


}



@media screen and (max-width:768px) {
    .page-header {
        height: 20vmax;

    }

    .page-header .ttl {
        font-size: 3rem;

    }


}




/* ////////////////////////////////////////////
*                 breadcrumbs
* //////////////////////////////////////////// */
.breadcrumbs {
    padding: 1em;
    text-align: left;
    position: relative;
    font-size: 1.2rem;

}

.breadcrumbs a,
.breadcrumbs a:hover {
    color: var(--main-color);
}

/* ////////////////////////////////////////////
*               sidenav
* //////////////////////////////////////////// */

#sidebar {
    margin: 4vmax 0;
}

.side-nav-title {
    background: var(--main-color);
    padding: 0.5em 1em;
    border-radius: 5px;
    color: #fff;
}

.side-nav-list {
    margin: 1em;
}

.side-nav-list li {
    margin: 1em;
}

.side-nav-list li a::before {
    content: '\f105';
    font-weight: 300;
    font-family: 'Font Awesome 5 Pro';
    margin-right: 0.5em;
}







/* ////////////////////////////////////////////
*                contact
* //////////////////////////////////////////// */


.confirm-show {
    display: none;
}

.mw_wp_form_confirm .confirm-show {
    display: block;
}

.input-show {
    display: none;
}

.mw_wp_form_input .input-show {
    display: block;
}

.page-id-84 .input-show.read,
.mw_wp_form_complete .input-show {
    display: none;
}

.table-contact p {
    margin: 0 0 0 0;
}

.table-contact {
    margin: 0 0 0.8em 0;
    padding: 0;
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    table-layout: fixed;
    word-break: break-all;
    word-wrap: break-all;
}

.table-contact th {
    padding: 2em 1em;
    width: 30%;
    border-bottom: #ccc 1px solid;
    vertical-align: middle;
    font-weight: bold;
}

.table-contact th .title {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.table-contact .hissu {
    display: inline-block;
    background: #998675;
    color: #fff;
    font-size: 1.2rem;
    padding: 0.15em 1em;
    margin-left: 1em;
}

.table-contact td {
    padding: 2em 1em;
    border-bottom: #ccc 1px solid;
    text-align: left;
}

.table-contact tr:last-of-type th,
.table-contact tr:last-of-type td {
    border-bottom: none;
}

.table-contact td ul li {
    margin: 0 0 0 20px;
    list-style: outside disc;
}

@media screen and (max-width:768px) {

    .table-contact th,
    .table-contact td {
        display: block;
        width: 100%;
    }

    .table-contact th {
        border-bottom: none;
        padding: 2em 0.25em 0.25em 0.25em;
    }

    .table-contact td {
        border-bottom: none;
        padding: 0.25em 0.25em 2em 0.25em;
        border-bottom: #ccc 1px solid;
    }

}

.table-contact .example {
    font-size: 1.4rem;
}

.table-contact .type-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;

}

.table-contact .type-grid .horizontal-item {
    margin-left: 0;
}

.mw_wp_form .error {
    background: #FADBDA;
}

@media screen and (max-width:768px) {
    .table-contact .type-grid {
        display: block;
    }

    .table-contact .type-grid .horizontal-item {
        display: block;
    }
}

.table-contact .wpcf7-list-item {
    display: inline-block;
    margin: 0 1em 0 0;
}

@media screen and (max-width:768px) {
    .table-contact .wpcf7-form-control.wpcf7-radio {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

#contact button,
#contact input,
#contact textarea {
    background-color: transparent;
    border-style: none;
    color: inherit;
    font-size: 1.8rem;
}

#contact select {
    padding: 0.3em;
    font-size: 1.6rem;
}

#contact textarea,
#contact input[type="text"] {
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 0.3em;
    width: 100%;
}

#contact input[type="email"] {
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 0.3em;
    width: 100%;
}

#contact input[type="tel"] {
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 0.3em;
    width: 100%;
}

@media screen and (min-width:768px) {
    #contact input[type="text"].short {
        width: 50%;
    }

}


.page-id-547 .entry-content button,
.page-id-547 .entry-content input[type="text"],
.page-id-547 .entry-content textarea {
    background-color: transparent;
    border-style: none;
    color: inherit;
    font-size: 1.6rem;
}

.page-id-547 .entry-content textarea,
.page-id-547 .entry-content input[type="text"] {
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 0.3em;
    width: 100%;
    background: #fff;
}

.form-btn {
    text-align: center;
    margin: 1vmax 4vmax 4vmax 4vmax;
}

.form-btn input {
    display: inline-block;
    background: var(--main-color);
    color: #fff;
    padding: 0.3em 2em;
    margin-left: 1em;
    font-size: 2rem;
    border-radius: 5px;
    font-weight: bold;
}

.form-btn input {
    display: inline-block !important;
    width: 450px;
    padding: 0.5em 2em;
    background: var(--main-color);
    color: #fff;
    border-radius: 50px;
    border: none;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
}

@media screen and (max-width:768px) {
    .form-btn input {
        width: 90%;
    }
}

.form-btn input:hover {
    color: #fff;
}

.form-btn input::after {
    content: '\f0a9';
    font-weight: bold;
    font-family: 'Font Awesome 5 Pro';
    margin-left: 0.5em;
}





/* ////////////////////////////////////////////
*                column
* //////////////////////////////////////////// */

.column-list {
    width: 100%;
    margin: 0 0 4vmax 0;
}

@media screen and (max-width:1200px) {
    .column-list {
        padding-left: 4vmax;
        padding-right: 4vmax;
    }
}

.column-list li {
    padding: 1.5em 0;
    text-align: left;
    border-bottom: 2px dotted #ccc;
    font-size: 1.9rem;
    line-height: 1.6;

}

.column-list li .icon {
    flex-shrink: 0;
    text-align: center;
    margin: 0 0.8em;

}

@media screen and (max-width:768px) {
    .column-list li {
        padding: 1em 0;

    }

    .column-list li .icon {}
}

.column-list li .new-icon {
    display: inline-block;
    color: #fff;
    padding: 0.3em 1.2em;
    background: var(--sub-color);
    color: var(--main-color);
    border-radius: 50px;
    font-size: 1.6rem;
    font-weight: 800;

}

.column-list li .date {
    margin-right: 1em;

}

.column-list li a:hover {
    color: var(--main-color);
    opacity: 1;

}

.column-title {
    font-size: 2.2rem;
    font-weight: 600;
    margin: 4vmax 0 1.5em 0;
    padding: 1em 0;
    color: var(--main-color);
    border-bottom: 1px solid var(--main-color);
    position: relative;
    text-align: left;
}


.column-title .post-date {
    font-size: 1.6rem;
}

.single-post .col-md-9 {
    padding: 0;
}

.post .entry-content,
.post .entry-content h2:not([class]) {
    text-align: left;
}

.post .entry-content {
    font-size: 1.7rem;
    margin-bottom: 6vmax;
}

@media screen and (max-width:1199px) {
    .post .entry-content {
        padding-left: 0vmax !important;
        padding-right: 0vmax !important;
    }
}

.post .entry-content .more-btn span {
    padding: 1em 4em;

}

/* ////////////////////////////////////////////
*                entry - section
* //////////////////////////////////////////// */

.entry-once {
    padding: 4vmax 0;
}

@media screen and (max-width:1160px) {
    .entry-once {
        padding: 4vmax 2vmax;
    }
}

.entry-once.bg-01 {
    background: #E5F6FF;
}


/* ////////////////////////////////////////////
*                entry
* //////////////////////////////////////////// */

.blog-content p {
    margin-bottom: 1em;
}


@media screen and (min-width:768px) {
    .m-left {
        margin-left: 1.5em;
    }

    .m-right {
        margin-right: 1.5em;
    }
}

/* ////////////////////////////////////////////
*                box&list
* //////////////////////////////////////////// */
.box {
    background: #fff;
    padding: 5vmax;
    border-radius: 2px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    position: relative;
}

.box::before {
    background: url(../images/leaf.png)no-repeat left top / contain;
    position: absolute;
    width: 182px;
    aspect-ratio: 1 / 1.423;
    content: "";
    display: block;
    left: -60px;
    top: -60px;

}

.box::after {
    background: url(../images/leaf-b.png)no-repeat left top / contain;
    position: absolute;
    width: 182px;
    aspect-ratio: 1 / 1.423;
    content: "";
    display: block;
    right: -60px;
    bottom: -60px;

}

.box-sm {
    background: #fff;
    padding: 3vmax 5vmax;
    border-radius: 2px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    position: relative;
}

.box-sm::before {
    background: url(../images/leaf-l.png)no-repeat left top / contain;
    position: absolute;
    width: 150px;
    aspect-ratio: 1 / 1;
    content: "";
    display: block;
    left: -30px;
    top: -50px;

}

.box-sm::after {
    background: url(../images/leaf-r.png)no-repeat left top / contain;
    position: absolute;
    width: 150px;
    aspect-ratio: 1 / 1;
    content: "";
    display: block;
    right: -40px;
    top: -50px;

}

.box-noimg::before,
.box-noimg::after {
    display: none;
}

@media screen and (max-width:768px) {

    .box,
    .box-sm {
        padding: 3vmax;
    }

    .box::before {
        width: 80px;
        aspect-ratio: 1 / 1.423;
        left: -30px;
        top: -30px;
    }

    .box::after {
        width: 80px;
        aspect-ratio: 1 / 1.423;
        right: -30px;
        bottom: -30px;


    }

    .box-sm::before {
        width: 60px;
        aspect-ratio: 1 / 1;
        left: -20px;
        top: -20px;

    }

    .box-sm::after {
        width: 60px;
        aspect-ratio: 1 / 1;
        right: -20px;
        top: -20px;

    }
}


ul.disc {
    list-style-type: disc;
    /* 中点 */
    list-style-position: inside;
    /* ul範囲に中点を入れる */
    text-indent: -1.5em;
    padding-left: 2em;
}

ul.check li {
    display: flex;
    align-items: flex-start;
    padding: 0.3em 0;
}

ul.check li::before {
    position: relative;
    top: 5px;
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url("../images/check.png") no-repeat center center /contain;
    margin-right: 1em;
    flex-shrink: 0;

}

ul.check.red li::before {
    background: url("../images/check-red.png") no-repeat center center /contain;

}



/* ////////////////////////////////////////////
*                entry
* //////////////////////////////////////////// */
.entry-content a:not([class]) {
    color: var(--main-color);
}

.entry-content {
    text-align: left;
}

.page .entry-content {
    margin-bottom: 6vmax;
}

.h2,
.entry-content h2:not([class]) {
    font-size: 6rem;
    font-weight: 600;
    color: #436F0B;
    margin: 1em 0 0.5em 0;
    position: relative;
    text-align: center;

    z-index: 3;
    line-height: 1.4;
}

.post .entry-content h2:not([class]) {
    font-size: 2.6rem;
    padding: 0.3em 1em;
    border-bottom: 1px dotted #ccc;

}

.post .entry-content h2:not([class])::before {
    position: absolute;
    left: 0;
    top: 10%;
    width: 10px;
    height: 80%;
    background: #436F0B;
    content: "";
    display: block;

}

.h2.fixed {
    margin-bottom: -0.6em;
}

.h2-en {
    font-size: 10rem;
    font-weight: 600;
    color: #DADADA;
    margin-bottom: 1em;
    position: relative;
    text-align: center;

    z-index: 3;
    line-height: 1.4;
    margin-bottom: -0.6em;
}


@media screen and (max-width:768px) {

    .h2,
    .entry-content h2:not([class]) {
        font-size: 2.9rem;
    }

    .h2::before,
    .entry-content h2:not([class])::before {
        width: 50px;
        height: 34px;
    }

    .post .entry-content h2:not([class]) {
        font-size: 2.4rem;
    }

    .h2-en {
        font-size: 5rem;
    }

}

.h3,
.entry-content h3:not([class]) {
    font-size: 2.2rem;
    font-weight: 800;
    margin: 1em 0 0.5em 0;
    line-height: 1.8;

    text-align: left;
    padding: 0.5em 0;

}

@media screen and (max-width:768px) {

    .h3,
    .entry-content h3:not([class]) {
        font-size: 2.2rem;

    }
}



.h4,
.entry-content h4:not([class]) {
    font-size: 2rem;
    font-weight: 600;
    margin: 1em 0 0.5em 0;
    position: relative;
}

.h4::before,
.entry-content h4:not([class])::before {
    content: '\f138';
    font-weight: 600;
    font-family: 'Font Awesome 5 Pro';
    color: var(--main-color);
    margin-right: 0.5em;
}

.h5,
.entry-content h5:not([class]) {
    font-size: 2.2rem;
    color: var(--main-color);
    font-weight: 600;
    margin: 1em 0 0.5em 0;
    position: relative;
    text-align: left;
}

@media screen and (max-width:768px) {

    .h5,
    .entry-content h5:not([class]) {
        font-size: 2.2rem;

    }
}



.entry-content table:not([class]) {
    margin: 0 0 0.8em 0;
    padding: 0;
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    word-break: break-all;
    word-wrap: break-all;
    border-left: #ccc 1px solid;
    border-right: #ccc 1px solid;
    border-bottom: #ccc 1px solid;
}


.entry-content table:not([class]) th {
    padding: 1em;
    width: 30%;
    border-right: #ccc 1px solid;
    border-bottom: #ccc 1px solid;
}

.entry-content table:not([class]) td {
    padding: 1em;
    border-bottom: #ccc 1px solid;
    text-align: left;
}


.entry-content table:not([class]) tr:first-of-type td,
.entry-content table:not([class]) tr:first-of-type th {
    border-top: #ccc 2px solid;
}

@media screen and (max-width:768px) {

    .entry-content table:not([class]) td {
        background: #f8f6f2;
    }

    .entry-content table:not([class]) th,
    .entry-content table:not([class]) td {
        width: 100%;
        display: block;
    }

    .entry-content table:not([class]) {
        border-top: #ccc 1px solid;
    }

    .entry-content table:not([class]) tr:first-of-type td,
    .entry-content table:not([class]) tr:first-of-type th {
        border-top: none;
    }


}


/* ////////////////////////////////////////////
*                 pagination
* //////////////////////////////////////////// */
.pagination a {
    padding: 0.4em 0.8em;
    margin-bottom: 6vmax;
    display: inline-block;
    border: solid 1px #ccc;
    background-color: #fff;
    font-size: 1.6rem;
    text-decoration: none
}

.pagination a:hover {
    background-color: #e8e8e8
}

.pagination span {
    padding: 0.2em 0.8em;
    display: inline-block
}

.pagination span.current {
    padding: 0.4em 0.8em;
    color: #fff;
    font-size: 1.6rem;
    background-color: var(--main-color);
    border: 1px solid var(--main-color);
}

.pagination {
    position: relative !important;
    overflow: hidden;
    margin: 2vw 0;
    text-align: center;
    clear: both;
    background-color: transparent
}

.pagination h2.screen-reader-text {
    display: none
}

/* ////////////////////////////////////////////
*                googlemap
* //////////////////////////////////////////// */
.googlemap {
    height: 0;
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
}

.googlemap iframe {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
}

/* ////////////////////////////////////////////
*                favorite-post
* //////////////////////////////////////////// */


.favorite-post-list {
    margin: 4vmax 2vmax 6vmax 2vmax;
    gap: var(--item-list-gap);
    display: grid;
    grid-template-columns: repeat(4, 1fr);

}

@media screen and (max-width:768px) {
    .favorite-post-list {
        grid-template-columns: repeat(2, 1fr);

    }
}

.favorite-post-list .favorite-btn {
    display: none;
}



/* ////////////////////////////////////////////
*                stay-archive
* //////////////////////////////////////////// */


.stay-archive-mv {
    height: 25vmax;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    color: #fff;
    margin: 0 3vmax;
    position: relative;
    z-index: 1;
}

@media screen and (max-width:768px) {
    .stay-archive-mv {
        height: 30vmax;
        margin: 0 0;
    }
}

.stay-archive-mv::before {
    position: absolute;
    z-index: 2;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: block;
    content: "";
}


.stay-archive-mv-inner {
    position: relative;
    z-index: 3;
    text-shadow: rgba(0, 0, 0, 0.25) 1px 1px 2px;

}

.stay-archive-mv-title {
    font-size: 2.2rem;
}

.stay-archive-mv-title .en {
    font-size: 4.3rem;
    margin-right: 0.5em;
}

@media screen and (max-width:768px) {
    .stay-archive-mv-title {
        font-size: 1.8rem;
    }

    .stay-archive-mv-title .en {
        font-size: 3rem;
    }

    .stay-archive-mv-description p {
        font-size: 1.2rem;
    }
}

.stay-post-list {
    margin: 4vmax 2vmax 6vmax 2vmax;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--item-list-gap);

}

.taxonomy-summary {
    margin-top: 30px;
}

@media screen and (max-width:768px) {
    .stay-post-list {
        margin: 4vmax 0 6vmax 0;
        grid-template-columns: repeat(1, 1fr);
        gap: var(--sp-item-list-gap);

    }

    .stay-post-list .post-thumbnail img {
        aspect-ratio: 1 / 0.5;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .stay-post-list .post-item {
        margin-bottom: 10px;

    }

}

/* ////////////////////////////////////////////
*                stay-single
* //////////////////////////////////////////// */
.stay-single-content {
    padding: 0 0 2vmax 0;

}

.stay-single-gallery-wrap {
    position: relative;
}

.stay-single-gallery-wrap .stay-single-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}

.stay-single-gallery-wrap .stay-single-logo img.fade-logo {
    display: block;
    aspect-ratio: 1 / 0.7;
    max-width: 400px;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 1;
}

.stay-single-gallery {
    margin: 0 3vmax 4vmax 3vmax;
}


.stay-single-gallery .slick-slide {
    width: 100%;
    aspect-ratio: 1 / 0.45;
    overflow: hidden;
}

@media screen and (max-width:920px) {
    .stay-single-gallery {
        margin: 0 0 4vmax 0;
    }

    .stay-single-gallery .slick-slide {
        aspect-ratio: 1 / 0.8;
    }
}


.stay-single-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    /* 上下左右中央を基準に調整 */
}

@keyframes zoomUp {
    0% {
        transform: scale(1.15);
    }

    100% {
        transform: scale(1);
    }
}


.stay-single-gallery .add-animation img {
    animation: zoomUp 15s linear 0s normal both;
}

.stay-single-data {
    margin: 4vmax 0;
}


.stay-single-title {
    font-size: 3.2rem;
    letter-spacing: 0.15em;
}

@media screen and (max-width:768px) {
    .stay-single-title {
        font-size: 2.8rem;
    }

}


.stay-single-favorite span {
    cursor: pointer;
    padding: 0.5em;
    border-bottom: 1px solid var(--main-color);
}

.stay-single-favorite span::before {
    content: '\f004';
    font-weight: 300;
    font-family: 'Font Awesome 5 Pro';
    color: var(--main-color);
    margin-right: 0.5em;
}

.stay-single-favorite span.favorited::before {
    content: '\f004';
    font-weight: 600;
    font-family: 'Font Awesome 5 Pro';
    color: var(--main-color);
    margin-right: 0.5em;
}

.stay-single-cta {
    margin: 2vmax 0 0 0;
    gap: 20px;
}

.stay-single-cta a {
    max-width: 250px;
    display: block;
    flex-grow: 1;
}

@media screen and (max-width:768px) {
    .stay-single-favorite {
        margin-bottom: 3vmax;

    }

    .stay-single-cta {
        margin-bottom: 6vmax;
    }

    .stay-single-cta a {
        margin: 1.5vmax auto;
        max-width: 400px;
        display: block;
    }
}

.details-item {
    margin-bottom: 4vmax;
}

.details-title {
    font-size: 2.8rem;
    letter-spacing: 0.15em;

}

@media screen and (max-width:920px) {
    .details-title {
        font-size: 2.2rem;
        line-height: 1.4;

    }
}

.details-item-text {
    padding: 2vmax;
}

.taxonomy-terms-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin: 2vmax;
}

.taxonomy-terms-list li a {
    background: #fff;
    padding: 0.3em 1em;
    border: 1px solid #998675;
    border-radius: 2px;
}

.taxonomy-terms-list li a::before {
    content: '\23';
    font-weight: 300;
    font-family: 'Font Awesome 5 Pro';
    margin-right: 0.2em;
}

.fancybox-nav span {
    visibility: visible !important;
}

.stay-single-gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    /* 4列 */
    gap: 10px;
    /* 隙間 */
    margin-bottom: 4vmax;
}

.stay-single-gallery-grid a {
    display: block;
    overflow: hidden;
}

.stay-single-gallery-grid img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 /1;
    object-fit: cover;
    height: auto;
    display: block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stay-single-gallery-grid img:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}


.stay-single-recommend {
    padding: 6vmax 0;
    background: #f8f6f2;
}

.stay-single-recommend-list {
    display: flex;
    justify-content: center;
    gap: 40px;

}

.stay-single-recommend-list li {
    width: calc(100% / 4);

}

.stay-single-bed-list {
    margin-bottom: 2vmax;
}

.stay-single-bed-list li:first-of-type {
    border-left: 1px solid #ccc;
}

.stay-single-bed-list li {
    padding: 0.5em 1em;
    border-right: 1px solid #ccc;
}


.stay-single-spec-list {
    display: flex;
    gap: 2em;
    justify-content: center;
}

@media screen and (max-width:768px) {
    .stay-single-spec-list {
        gap: 1em;
    }
}

.stay-single-icon {
    display: flex;
    align-items: center;
    flex-direction: column;
    line-height: 1.2;
}

.stay-single-icon::before {
    content: '\f004';
    font-weight: 300;
    font-family: 'Font Awesome 5 Pro';
    margin-right: 0.2em;
    font-size: 2.2rem;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon-scenic::before {
    content: '\f762';
}

.icon-sauna::before {
    content: '\f593';
}

.icon-group::before {
    content: '\f0c0';
}

.icon-bbq::before {
    content: '\ea47';
    font-family: 'Material Symbols Outlined';
    font-weight: 400;
    margin-right: 0.2em;
    font-size: 2.8rem;
}

.icon-pet:before {
    content: '\f701';
}


.icon-onsen::before {
    content: '\f6f8';
    font-family: 'Material Symbols Outlined';
    font-weight: 400;
    margin-right: 0.2em;
    font-size: 2.7rem;
}

.stay-single-content .book-form-title {
    display: none !important;
}

/* ////////////////////////////////////////////
*                end
* //////////////////////////////////////////// */