/* 目次のデザイン上書き */
.list-index-2 li.親記事::before,
.list-index-2 li.子記事::before {
    content: "⚫︎";
    display: inline-block;
    font-size: 1.2rem;
    line-height: 1;
    top: 0.15rem;
}

.list-index-2 li.親記事 {
    padding-left: 1.25rem;
}

.list-index-2 li.子記事 {
    padding-left: 3.55rem;
}

.list-index-2 li.子記事 .num-child {
    width: 2.1rem;
    display: inline-block;
    text-align: center;
    position: absolute;
    top: 0;
    left: 1.1rem;
}

.list-index-2 li.子記事:hover .num-child {
    color: var(--color-003);
}

/* 目次アコーディオン */
.list-index-2 {
    overflow: hidden;
    padding-bottom: 0 !important;
}

.list-index-2 li.is-hidden {
    max-height: 0;
    margin: 0;
    margin-top: 0 !important;
    padding: 0;
    border: none;
    opacity: 0;
}

.list-index-2 li.is-semi-faded {
    opacity: 0.2;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
}

.accordion-btn {
    display: none;
    margin-top: 3em;
    text-align: center;
    cursor: pointer;
    position: relative;
    z-index: 2;
}

.accordion-btn:hover {
    color: var(--color-003);
}

.accordion-btn-open,
.accordion-btn-close {
    display: none;
}

.accordion-btn.is-closed .accordion-btn-open {
    display: block;
}

.accordion-btn.is-open .accordion-btn-close {
    display: block;
}

.box-index {
    position: relative;
}

/* 子記事のwysiwygエディタのデザイン上書き */
.box-post .text-html {
    margin: 2rem 0;
}

/* カード */
.feature-link-slot+.feature-link-slot {
    margin-top: 2em;
}

.feature-link-slot a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0.25rem;
    border: 1px solid var(--color-033);
    border-radius: 0.5em;
    background-color: white;
}

.feature-link-slot a:hover .link-card-title {
    text-decoration: underline;
}

.feature-link-slot a .link-card-thumb {
    width: 25%;
    display: block;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 0.25rem;
    position: relative;
}

.feature-link-slot a .link-card-thumb::after {
    content: "";
    display: block;
    padding-top: 75%;
}

.feature-link-slot a .link-card-thumb img {
    width: 100%;
    height: 100% !important;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: 50% 50%;
    object-position: 50% 50%;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    position: absolute;
    top: 0;
    left: 0;

    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.feature-link-slot a:hover .link-card-thumb img {
    -webkit-transform: scale(1.1) translateZ(0);
    transform: scale(1.1) translateZ(0);
}

.feature-link-slot a .link-card-content {
    width: 10%;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    padding: 1rem 1rem 1rem 2.5rem;
}

.feature-link-slot a .link-card-cat {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0.5em 0;
    padding: 0.15rem 0.75rem 0.15rem 0.75rem;
    font-weight: 600;
    font-size: 0.8rem;
    line-height: 1;
    border-radius: 1.5em;
    background-color: #b3e2ea;
}

.feature-link-slot a .link-card-cat.ホテル {
    background-color: var(--color-035);
}

.feature-link-slot a .link-card-cat.グルメ {
    background-color: var(--color-036);
}

.feature-link-slot a .link-card-cat.観光地 {
    background-color: var(--color-037);
}

.feature-link-slot a .link-card-cat.体験 {
    background-color: var(--color-038);
}

.feature-link-slot a .link-card-cat.お土産 {
    background-color: var(--color-039);
}

.feature-link-slot a .link-card-title {
    margin: 1rem 0 0.5rem;
    font-weight: 600;
    line-height: 1.8;
}

.feature-link-slot a .link-card-date {
    display: block;
    margin-top: 0.5rem;
    font-size: 95%;
    color: #646464;
    text-align: right;
}

.feature-title {
    margin-bottom: 0.25rem;
}

@media (max-width: 599px) {
    .feature-link-slot+.feature-link-slot {
        margin-top: 1em;
    }

    .feature-link-slot a .link-card-thumb {
        width: 100%;
    }

    .feature-link-slot a .link-card-content {
        padding: 1rem;
    }

    /* 小さいバージョン */
    .feature-link-slot a .link-card-thumb {
        width: 33%;
    }

    .feature-link-slot a .link-card-content {
        padding: 0.5rem 1rem;
    }

    .feature-link-slot a .link-card-cat {
        margin: 0.25em 0;
        font-size: 0.6rem;
    }

    .feature-link-slot a .link-card-title {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        overflow: hidden;
        margin: 0.5rem 0 0.25rem;
        font-size: 0.9rem;
        line-height: 1.3;
        line-height: 1.4;
        text-overflow: ellipsis;

        line-clamp: 2;
        -webkit-line-clamp: 2;
    }

    .feature-link-slot a .link-card-date {
        margin-top: 0.25em;
        font-size: 10px;
    }
}

/* 住所・電話番号 */
.special-section-info-box {
    display: none;
    margin: 2rem 0;
    padding: 1.5rem 4rem;
    border-radius: 1rem;
    background-color: #f2f2f2;
}

.special-section-info-box.is-active {
    display: block;
}

.special-section-info-box-element {
    margin: 0.5rem 0;
}

/* 記事セクション */
.box-post .box-post-title {
    padding-left: 1.1em;
}

.box-post .box-post-title::before {
    content: "⚫︎";
}

/* swiper */
.swiper {
    width: 100%;
}

.swiperThumbnail {
    margin: 0.5rem 0 0;
    padding: 0 0.5rem !important;
}

.swiperThumbnail .swiper-slide {
    border: 3px solid white;
}

.swiperThumbnail .swiper-slide-thumb-active {
    border: 3px solid var(--color-007);
}

.swiper-caption {
    width: 100%;
    margin-top: 0.2rem;
    padding-right: 0.5rem;
    font-size: 10px;
    color: var(--color-032);
    letter-spacing: 0.1em;
    text-align: right;
}

@media (min-width: 1024px) {
    .box-slide {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .box-slide .swiperMain {
        width: 80%;
    }

    .box-slide.is-single .swiperMain {
        width: 100%;
    }

    .box-slide .swiperThumbnail {
        width: auto;
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        margin: 0 0 0 0.5rem;
        padding-right: 0 !important;
    }

    .box-slide .swiperThumbnail .swiper-wrapper {
        height: auto;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .box-slide .swiperThumbnail .swiper-slide {
        width: 100% !important;
        margin: 0 !important;
    }

    .box-slide .swiperThumbnail .swiper-slide+.swiper-slide {
        margin-top: 0.75rem !important;
    }
}

/* 予約セクション */
.section-reserve-container {
    margin-top: 1rem;
    margin-bottom: 4rem;
    padding-top: 4rem;
    padding-bottom: 4rem;
    padding-left: clamp(2rem, -1.6rem + 15.36vw, 3.2rem);
    padding-right: clamp(2rem, -1.6rem + 15.36vw, 3.2rem);
    background-color: var(--color-017);
    position: relative;
}

.section-reserve-container::after {
    content: "";
    width: 100vw;
    height: 100%;
    display: block;
    border-top: 2px dotted var(--color-001);
    border-bottom: 2px dotted var(--color-001);
    background-color: var(--color-017);
    position: absolute;
    top: 0;
    left: -5.5%;
    z-index: 1;
}

.section-reserve-container .section-reserve-container-inner {
    position: relative;
    z-index: 2;
}

.section-reserve-container.表示する {
    width: inherit !important;
    height: inherit !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.section-reserve-container.mb-none {
    height: auto;
    margin-bottom: 0;
}

.list-reserve-wrap {
    margin-top: 4rem;
}

.list-reserve+.btn-05 {
    margin-top: 3.5rem;
}

.list-reserve li+li {
    margin-top: 1.4rem;
}

.list-reserve li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    align-items: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 1.1rem 1.5rem;
    font-size: 1rem;
    letter-spacing: 0.1rem;
    text-align: center;
    border: 23px solid white;
    border-radius: 3rem;
    background-color: white;
    -webkit-transition: unset;
    transition: unset;
    position: relative;
}

.list-reserve li a::after {
    content: "";
    width: 0.9rem;
    height: 0.9rem;
    display: inline-block;
    border-top: 2px solid white;
    border-right: 2px solid white;
    -webkit-transform: rotate(45deg) translateY(-50%);
    transform: rotate(45deg) translateY(-50%);
    position: absolute;
    top: 47%;
    right: 1.7rem;
}

.list-reserve li a span {
    /* min-width: 100px; */
    display: inline-block;
    margin-right: 0.9rem;
}

.list-reserve li a:hover .mark-white {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.list-reserve li a:hover .mark-normal {
    display: none;
}

.list-reserve li a .mark {
    width: 70px;
    min-height: 18px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.list-reserve li a .mark-white {
    display: none;
}

.list-reserve li a span img {
    width: 100%;
    height: auto;
}

.list-reserve li.jalan a {
    border: 2px solid var(--color-010);
}

.list-reserve li.jalan a .mark {
    width: 65px;
}

.list-reserve li.jalan a::after {
    border-top: 2px solid var(--color-010);
    border-right: 2px solid var(--color-010);
}

.list-reserve li.rakuten a {
    border: 2px solid var(--color-011);
}

.list-reserve li.rakuten a .mark {
    width: 105px;
    margin-bottom: -0.3em;
}

.list-reserve li.rakuten a::after {
    border-top: 2px solid var(--color-011);
    border-right: 2px solid var(--color-011);
}

.list-reserve li.ikyu a {
    border: 2px solid var(--color-012);
}

.list-reserve li.ikyu a::after {
    border-top: 2px solid var(--color-012);
    border-right: 2px solid var(--color-012);
}

.list-reserve li a:hover {
    color: white;
}

.list-reserve li a:hover::after {
    border-top: 2px solid white;
    border-right: 2px solid white;
}

.list-reserve li.jalan a:hover {
    background-color: var(--color-010);
}

.list-reserve li.rakuten a:hover {
    background-color: var(--color-011);
}

.list-reserve li.ikyu a:hover {
    background-color: var(--color-012);
}

.btn-05 {
    width: 100%;
    max-width: 100%;
    margin-top: 3em;
    margin-left: auto;
    margin-right: auto;
}

.btn-05.-mt-0 {
    margin-top: 0;
}

.btn-05 a {
    display: block;
    padding: 1em 2.75em;
    font-weight: 600;
    font-size: 17px;
    color: var(--color-041);
    text-align: center;
    border: 2px solid var(--color-041);
    border-radius: 0.5em;
    background-color: white;
    position: relative;
}

.btn-05 a::after {
    content: "";
    width: 1em;
    height: 1em;
    display: block;
    border-top: 2px solid var(--color-041);
    border-right: 2px solid var(--color-041);
    -webkit-transition: 0.3s linear;
    transition: 0.3s linear;
    -webkit-transform: rotate(45deg) translate(0, -50%);
    transform: rotate(45deg) translate(0, -50%);
    position: absolute;
    top: 46%;
    right: 1.25em;
}

.btn-05 a:hover {
    color: white;
    background-color: var(--color-041);
    opacity: 1;
}

.btn-05 a:hover::after {
    border-top: 2px solid white;
    border-right: 2px solid white;
}

.list-reserve+.btn-05 {
    margin-top: 3.5rem;
}

@media (min-width: 1024px) {
    .section-reserve-container {
        margin-left: calc((-100vw + 800px) / 2);
        margin-right: calc((-100vw + 800px) / 2);
        padding-top: 4.8rem;
        padding-bottom: 4.8rem;
        padding-left: calc((100vw - 900px) / 2);
        padding-right: calc((100vw - 900px) / 2);
    }

    .section-reserve-container::after {
        left: 0;
    }

    .section-reserve-container.mb-none {
        margin-bottom: 0;
    }

    .section-reserve-container.-px {
        margin-top: 90px;
    }

    .list-reserve-wrap {
        margin-top: 6rem;
    }

    .list-reserve {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        align-items: center;
        -ms-flex-align: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .list-reserve li {
        width: calc((100% - 1rem) / 3);
        margin: 1rem 0.5rem;
    }

    .list-reserve li a {
        padding: 1rem 1.5rem;
        font-size: 13px;
        letter-spacing: 0.1rem;
    }

    .list-reserve li a:hover {
        background-color: var(--color-002);
        opacity: 1;
    }

    .list-reserve li a::after {
        width: 0.75rem;
        height: 0.75rem;
        -webkit-transform: translateY(-50%) rotate(45deg);
        transform: translateY(-50%) rotate(45deg);
        top: 50%;
        right: 1.3rem;
    }

    .list-reserve li a span {
        min-width: auto;
    }

    .list-reserve li.jalan a .mark {
        width: 55px;
    }

    .list-reserve li.rakuten a .mark {
        width: 105px;
        margin-bottom: -0.2em;
    }

    .list-reserve li.ikyu a .mark {
        width: 65px;
    }

    .list-reserve li+li {
        margin-top: 1rem;
    }

    .btn-05 {
        max-width: 400px;
        margin-top: 3.5em;
        margin-left: auto;
        margin-right: auto;
    }

    .btn-05 a {
        padding: 1.2em 3em;
        font-weight: 500;
        font-size: 15px;
    }
}
