@charset "utf-8";


:root {
    --color-theme:       #c93430;
    --color-light-theme: #f0ffff;
    --color-accent:      #000099;
    --fg-color:          #000;
    --bg-color:          transparent;
    --color-white:       #fff;
    --color-lightgray:   #f0f0f0;
    --font-alphabet: 'SF Pro', 'Noto Sans JP', 'Helvetica Neue', 'Helvetica', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Arial', 'Yu Gothic', 'Meiryo', sans-serif;
    --font-gothic: 'Noto Sans JP', 'Helvetica Neue', 'Helvetica', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Arial', 'Yu Gothic', 'Meiryo', sans-serif;
    --font-mincho: 'Noto Serif JP', 'Times New Roman', 'YuMincho', 'Hiragino Mincho ProN', 'Yu Mincho', 'MS PMincho', serif;
}


@font-face {
    font-family: 'SF Pro';
    src: url('../fonts/SF-Pro-Text-Regular.otf') format('opentype');
    font-weight: 400;
}

@font-face {
    font-family: 'SF Pro';
    src: url('../fonts/SF-Pro-Text-Bold.otf') format('opentype');
    font-weight: 700;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

img {
    display: block;
    margin: 0;
    vertical-align: middle;
    width: 100%;
    max-width: 100%;
    height: auto;
    font-style: italic;
    background-repeat: no-repeat;
    background-size: cover;
    shape-margin: 0.75rem;
}

a {
    color: var(--fg-color);
    text-decoration: none;
    transition: opacity 0.5s ease-out;
}
button {
    cursor: pointer;
    transition: opacity 0.5s ease-out;
}

@media ( hover: hover ) {
    a:hover, button:hover {
        opacity: 0.5;
    }
}

ul, p {
    line-height: 1.5;
}

section {
    position: relative;
}

em {
    color: var(--color-accent);
    font-style: normal;
}

u {
    font-weight: 700;
    text-decoration-color: #ffec5d;
    text-decoration-thickness: 4px;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-underline-offset: 0.3em;
}

.center {
    text-align: center;
}

.left {
    text-align: left;
}

.right {
    text-align: right;
}


@media ( width < 768px ) {
    .pc {
        display: none;
    }
    .sp {
        display: block;
    }
}

@media ( width >= 768px ) {
    .pc {
        display: block;
    }
    .sp {
        display: none;
    }
}


/* スクロールアニメーション */
.ws-scroll-fadeIn {
    opacity: 0.0;
    /*transform: scale( 0.5, 0.5 ); */
    transition: all 1.0s ease-out;
}
.ws-scroll-fadeIn.ws-scroll-show {
    opacity: 1.0;
    /* transform: scale( 1.0, 1.0 ); */
}

.ws-scroll-fadeIn-l {
    opacity: 0.0;
    transform: translateX( -200px );
    transition: all 1.0s ease-out;
}
.ws-scroll-fadeIn-r {
    opacity: 0.0;
    transform: translateX( 200px );
    transition: all 1.0s ease-out;
}
.ws-scroll-fadeIn-l.ws-scroll-show,
.ws-scroll-fadeIn-r.ws-scroll-show {
    opacity: 1.0;
    transform: translateX( 0 );
}

.ws-scroll-fadeIn-u {
    opacity: 0.0;
    transform: translateY( -200px ) scale( 0.8, 0.8 );
    transition: all 1.0s ease-out;
}
.ws-scroll-fadeIn-d {
    opacity: 0.0;
    transform: translateY( 200px ) scale( 0.8, 0.8 );
    transition: all 1.0s ease-out;
}
.ws-scroll-fadeIn-u.ws-scroll-show,
.ws-scroll-fadeIn-d.ws-scroll-show {
    opacity: 1.0;
    transform: translateY( 0 )  scale( 1.0, 1.0 );
}

.ws-goto-top {
    position: fixed;
    z-index: 20;
    margin: 0;
    padding: 0 0 2px;
    top: auto;
    bottom: 10px;
    left: auto;
    right: 10px;
    width: clamp( 30px, 5.0vw, 60px );
    height: clamp( 30px, 5.0vw, 60px );
    background: var(--color-theme);
    border: 2px solid #fff;
    border-radius: clamp( 15px, 2.5vw, 30px );
    opacity: 0.0;
    transform-origin: right bottom;
    transform: scale( 0.01, 0.01 );
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 1.0s;
}
.ws-goto-top::before {
    position: absolute;
    content: "";
    left: 40%;
    top: 42%;
    width: 20%;
    height: 20%;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    rotate: -45deg;
}
.ws-goto-top.ws-scroll-show {
    transform: scale( 1.0, 1.0 );
    opacity: 0.9;
}
@media ( hover: hover ) {
    .ws-goto-top:hover {
        opacity: 0.5;
    }
}

.ws-scroll-top-menu {
    opacity: 0.0;
    transform: translateY( -150px );
    transition: 0.5s;
}
.ws-scroll-top-menu.ws-scroll-show {
    opacity: 1.0;
    transform: translateY( 0 );
}



/* 以下サイトごと */

html {
    margin: 0;
    padding: 0;
    width: 100%;
    font-size: min( 18px, 3.0vw );
    overflow-x: hidden;
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    position: relative;
    margin: 0;
    padding: 0;
    width: 100%;
    color: var(--fg-color);
    font-family: var(--font-alphabet);
    font-weight: 500;
    line-height: 1.5;
    background: var(--bg-color);
    opacity: 0.0;
    animation: anim-fadein 1.0s ease-out 0s forwards;
    z-index: 0;
}

@keyframes anim-fadein {
    0%   { opacity: 0.0; }
    100% { opacity: 1.0; }
}


header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 91;
    transition: background 0.5s ease-out;
}


/**
 * スマホ用設定
 */
@media ( max-width: 768px ) {

    body {
        padding-top: 80px;
    }
    header {
        height: 60px;
    }
    header .header-wrap {
        margin: 0 auto;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    header .header-logo {
        padding: 0 20px;
        height: 100%;
        overflow: hidden;
    }
    header .header-logo img {
        width: auto;
        height: 110%;
        position: relative;
        top: -5%;
        left: -25px;
    }
    header .header-menu {
        display: none;
    }
    header .header-btns {
        display: none;
    }
    header .header-sp-btns {
        width: auto;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        margin-right: 5px;
    }
    header .header-sp-btns #header-sp-search {
        position: relative;
        margin: 0;
        padding: 0;
        width: 45px;
        height: 100%;;
        aspect-ratio: 1 / 1;
        display: grid;
        place-items: center;
        cursor: pointer;
        z-index: 1;
    }
    header .header-sp-btns #header-sp-search img {
        width: 22px;
    }
    header .header-sp-btns #header-sp-menu {
        position: relative;
        margin: 0;
        padding: 0;
        width: 45px;
        height: 100%;;
        aspect-ratio: 1 / 1;
        cursor: pointer;
        z-index: 98;
    }
    header .header-sp-btns #header-sp-menu > div {
        position: absolute;
        left: calc(50% - 11px);
        width: 22px;
        height: 2px;
        background: #C93430;
        border-radius: 4.0rem;
    }
    header .header-sp-btns #header-sp-menu > div:nth-child(1) {
        top: calc( 50% - 8px );
        transition: transform 0.25s ease-out, background 0.25s ease-out;
    }
    header .header-sp-btns #header-sp-menu > div:nth-child(2) {
        top: calc( 50% );
        transition: opacity 0.25s ease-out;
    }
    header .header-sp-btns #header-sp-menu > div:nth-child(3) {
        top: calc( 50% + 8px );
        transition: transform 0.25s ease-out, background 0.25s ease-out;
    }
    header .header-sp-btns #header-sp-menu.open > div:nth-child(1) {
        background: #fff;
        transform: translateY( 8px ) rotate( 45deg );
    }
    header .header-sp-btns #header-sp-menu.open > div:nth-child(2) {
        opacity: 0;
    }
    header .header-sp-btns #header-sp-menu.open > div:nth-child(3) {
        background: #fff;
      transform: translateY( -8px ) rotate( -45deg );
    }
    header #header-sp-menu-list {
        position: fixed;
        top: 0;
        left: 50%;
        width: 50%;
        height: 100dvh;
        height: 100vh;
        margin: 0;
        padding: 50px 20px 0;
        color: #fff;
        background: #C93430;
        border-radius: 15px 0 0 0;
        z-index: 92;
        display: none;
    }
    header #header-sp-menu-list.open {
        transform: scaleX( 1 );
    }
    header #header-sp-menu-list .title {
        margin: 20px auto;
        font-size: 16px;
        font-weight: 700;
        text-align: center;
    }
    header #header-sp-menu-list .lang {
        margin: 10px auto 0;
        padding: 1.5em 0;
        font-size: 12px;
        font-weight: 700;
        text-align: center;
        line-height: 1.0;
    }
    header #header-sp-menu-list .lang.active {
        border: 1px solid #fff;
        border-radius: 4.0em;
    }
    header #header-sp-menu-list .download {
        margin: 20px auto 0;
        padding: 20px 0;
        width: 100%;
        border-top: 1px solid #fff;
        border-bottom: 1px solid #fff;
    }
    header #header-sp-menu-list .download img {
        margin: 0 auto;
        width: 70%;
    }
    header #header-sp-menu-list a {
        display: block;
        margin: 0 auto;
        padding: 1.0em 0;
        color: #fff;
        font-size: 12px;
        font-weight: 700;
        text-align: center;
    }
    header #header-sp-menu-list button {
        color: #fff;
        font-size: 12px;
        font-weight: 700;
        border: 0;
        cursor: pointer;
        background-color: transparent !important;
        width: 100%;
    }

    .mv {
        margin: 0 auto;
        width: 100%;
    }
    .mv .mv-bg {
        margin: 0;
        padding: 0;
        width: 100%;
        height: calc( 100vh - 130px );
        height: calc( 100dvh - 130px );
        background: #ccc;
    }
    .mv .mv-bg img {
        margin: 0;
        padding: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .mv .mv-box {
        position: absolute;
        top: 20%;
        left: 20%;
        margin: 0;
        padding: 0;
        width: 60%;
        height: 60%;
        color: #fff;
        font-size: clamp(20px, 4.0vw, 40px);
        background: rgba( 255, 255, 255, 0.1 );
        box-shadow: 0 0 1.0em rgba( 0, 0, 0, 0.2 );
        -webkit-backdrop-filter: blur(0.2em);
        backdrop-filter: blur(0.2em);
        display: grid;
        place-items: center;
    }

    #mv-slider {
        position: relative;
        margin: 40px auto;
        padding: 0 0 80px;
        width: 50%;
        background: #fff;
        overflow: hidden;
    }
    #mv-slider > .swiper-wrapper {
    }
    #mv-slider > .swiper-wrapper > .swiper-slide {
        height: auto;
        aspect-ratio: 2 / 1;
    }
    #mv-slider > .swiper-wrapper > .swiper-slide figure {
        width: 100%;
        height: 100%;
    }
    #mv-slider > .swiper-wrapper > .swiper-slide figure img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    main {
        margin: 0 auto;
        width: 100%;
        max-width: 1200px;
    }

    .common-flex {
        margin: calc( 60 * min( 100vw, 1200px ) / 1200 ) auto;
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        align-items: flex-start;
        justify-content: space-between;
    }
    .common-flex .common-col30 {
        width: 28%;
    }
    .common-flex .common-col40 {
        width: 38%;
    }
    .common-flex .common-col50 {
        width: 48%;
    }
    .common-flex .common-col60 {
        width: 58%;
    }
    .common-flex .common-col70 {
        width: 68%;
    }

    section h2 {
        margin: 3.0em auto 1.0em;
        font-size: calc( 32 * min( 100vw, 1200px ) / 1200 );
        font-weight: 700;
        text-align: center;
    }
    section h3 {
        margin: 2.0em auto 1.0em;
        font-size: calc( 28 * min( 100vw, 1200px ) / 1200 );
        font-weight: 700;
        text-align: left;
    }
    section h4 {
        margin: 2.0em auto 1.0em;
        font-size: calc( 22 * min( 100vw, 1200px ) / 1200 );
        font-weight: 700;
        text-align: left;
    }
    section h5 {
        margin: 2.0em auto 1.0em;
        font-size: calc( 20 * min( 100vw, 1200px ) / 1200 );
        font-weight: 500;
        text-align: left;
    }
    section :is(h2,h3,h4,h5):first-child {
        margin-top: 0;
    }
    section p {
        margin: 1.0em auto;
        font-size: calc( 16 * min( 100vw, 1200px ) / 1200 );
        font-weight: 500;
        text-align: left;
    }

    .feature-table-wrap {
        margin: calc( 40 * min( 100vw, 1200px ) / 1200 ) auto;
        padding: 0;
        width: max-content;
        overflow-x: auto;
    }
    .feature-table-wrap .feature-table {
        display: grid;
        grid-template-columns: 160px repeat( 4, 200px );
        align-items: stretch;
    }
    .feature-table-wrap .feature-table div {
        padding: 1.0em 0 1.0em;
        width: 100%;
        font-size: calc( 20 * min( 100vw, 1200px ) / 1200 );
        font-weight: 500;
        text-align: center;
        display: grid;
        place-items: center;
        border-bottom: 1px solid #ccc;
    }
    .feature-table-wrap .feature-table div:nth-child(1),
    .feature-table-wrap .feature-table div:nth-child(2),
    .feature-table-wrap .feature-table div:nth-child(3),
    .feature-table-wrap .feature-table div:nth-child(4),
    .feature-table-wrap .feature-table div:nth-child(1) {
        border-top: 1px solid #ccc;
    }

    .anim-scroll {
        display: none;
    }

    .about {
        padding: calc( 60 * min( 100vw, 1200px ) / 1200 ) 0;
    }

    .archive {
        margin: 0 auto;
        padding: 0;
        width: 90%;
    }
    .archive > h1 {
        margin: 0 auto;
        padding: 0.2em 0;
        color: #fff;
        font-size: 18px;
        font-weight: 700;
        text-align: center;
        background: var(--color-theme);
        border-radius: 10px;
    }
    .archive > h2 {
        margin: 2.0em auto 0;
        padding: 0;
        color: var(--fg-color);
        font-size: 16px;
        font-weight: 700;
        text-align: left;
    }
    .archive > p {
        margin: 0 auto;
        padding: 0;
        color: var(--fg-color);
        font-size: 16px;
        font-weight: 400;
        text-align: left;
    }

    .archive .archive-wrap {
        margin: 30px auto 0;
        padding: 0;
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 0 30px;
    }
    .archive .archive-list {
        margin: 0 auto;
        padding: 0;
        width: 100%;
    }

    .archive-sidebar {
        position: fixed;
        top: 60px;
        left: 0;
        margin: 0;
        padding: 0;
        width: 100%;
        height: calc( 100dvh - 60px );
        height: calc( 100vh - 60px );
        background: #fff2f2;
        overflow-y: auto;
        z-index: 90;
        display: none;
    }
    .archive-sidebar.open {
        transform: scaleY( 1 );
    }
    .archive-search {
        display: block;
        margin: 0;
        padding: 30px;
        width: 100%;
        background: #fff2f2;
        border-radius: 20px;
    }
    .archive-conditions {
        display: block;
        margin: 0;
        padding: 30px;
        width: 100%;
        background: #fff2f2;
        border-radius: 20px;
        border-top: 1px solid #ddd;
    }
    .archive-conditions .row {
        column-count: 2;
        gap: 10px;
        margin: 10px 0 22px;
    }
    .archive-conditions div.condition {
        margin-bottom: 10px !important;
    }
    .archive-sidebar label {
        display: block;
        margin: 0;
        color: var(--fg-color);
        font-size: 20px;
        font-weight: 700;
        text-align: left;
        line-height: 1.0;
    }
    .archive-sidebar div.search {
        position: relative;
        margin: 10px 0 0;
    }
    .archive-sidebar div.search + label {
        margin-top: 20px;
    }
    .archive-sidebar input[type="text"] {
        margin: 0;
        padding: 10px 10px 10px 44px;
        width: 100%;
        color: var(--fg-color);
        font-size: 16px;
        font-family: inherit;
        background: #fff;
        border: 1px solid #ddd;
        border-radius: 5px;
    }
    .archive-sidebar input[type="text"]::placeholder {
        color: #ddd;
    }
    .archive-sidebar .icon-search::before {
        position: absolute;
        content: "";
        top: calc( 50% - 12px );
        left: 10px;
        width: 24px;
        height: 24px;
        background: url(../images/icon-search.svg) no-repeat center / contain;
    }
    .archive-sidebar .icon-gps::before {
        position: absolute;
        content: "";
        top: calc( 50% - 12px );
        left: 14px;
        width: 16px;
        height: 24px;
        background: url(../images/icon-gps.svg) no-repeat center / contain;
    }
    .archive-sidebar .icon-genre::before {
        position: absolute;
        content: "";
        top: calc( 50% - 12px );
        left: 10px;
        width: 25px;
        height: 24px;
        background: url(../images/icon-restaurant.svg) no-repeat center / contain;
    }
    .archive-sidebar .search-delete {
        position: absolute;
        content: "";
        top: calc( 50% - 5px );
        right: 10px;
        width: 10px;
        height: 10px;
        background: url(../images/icon-cross.svg) no-repeat center / contain;;
        cursor: pointer;
    }
    .archive-sidebar button[type="submit"] {
        display: block;
        margin: 20px auto 0;
        width: 50%;
        height: auto;
        aspect-ratio: 157.5 / 40;
        color: #fff;
        font-size: 16px;
        font-weight: 700;
        font-family: inherit;
        background: var(--color-theme);
        border: 0;
        border-radius: 30px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0 8px;
    }
    .archive-sidebar button[type="submit"]::before {
        content: "";
        width: 1.4em;
        height: 1.4em;
        background: url(../images/icon-search-white.svg) no-repeat center / contain;
    }
    .archive-sidebar div.condition-wrap {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2.0vw 2.0vw;
    }
    .archive-sidebar div.condition {
        position: relative;
        margin: 0;
    }
    .archive-sidebar div.condition-wrap + label {
        margin-top: 20px;
    }
    .archive-sidebar label + div.condition-wrap {
        margin-top: 10px;
    }
    .archive-sidebar div.condition .condition-check {
        position: absolute;
        top: 0;
        right: 0;
        width: 1px;
        height: 1px;
        opacity: 0;
    }
    .archive-sidebar div.condition .condition-label {
        position: relative;
        margin: 0;
        padding: 0 0 0 40px;
        width: 100%;
        height: auto;
        aspect-ratio: 240 / 50;
        color: var(--fg-color);
        font-size: 16px;
        font-weight: 400;
        background: #d1d1d1;
        border-radius: 5px;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        cursor: pointer;
    }
    .archive-sidebar div.condition .condition-label::before {
        position: absolute;
        content: "";
        top: calc( 50% - 15px );
        left: 0;
        width: 50px;
        height: 30px;
        background: url(../images/icon_certied-off.png) no-repeat center / contain;
    }
    .archive-sidebar div.condition .condition-label::after {
        position: absolute;
        content: "";
        top: calc( 50% - 8px );
        right: 0;
        width: 50px;
        height: 16px;
    }
    .archive-sidebar div.condition .condition-check:checked ~ .condition-label {
        color: #fff;
        background: #b03f38;
    }
    .archive-sidebar div.condition .condition-check:checked ~ .condition-label::before {
        background: url(../images/icon_certied.png) no-repeat center / contain;
    }
    .archive-sidebar div.condition .condition-check:checked ~ .condition-label::after {
        background: url(../images/icon-check-white.svg) no-repeat center / contain;
    }

    .archive .archive-box {
        margin: 0;
        padding: 30px 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 20px 0;
        border-bottom: 1px solid #ddd;
    }
    .archive .archive-box:first-child {
        padding-top: 0;
    }
    .archive .archive-box .archive-pic {
        width: 100%;
        height: auto;
        aspect-ratio: 275 / 200;
    }
    .archive .archive-box .archive-pic img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 20px;
    }
    .archive .archive-box .archive-info {
        width: 100%;
    }
    .archive .archive-box h3 {
        margin: -0.2em 0 0;
        color: var(--fg-color);
        font-size: 36px;
        font-weight: 700;
        text-align: left;
        line-height: 1.2;
    }
    .archive .archive-box .category {
        margin: 0;
        color: var(--color-theme);
        font-size: 16px;
        font-weight: 700;
        text-align: left;
        line-height: 1.0;
    }
    .archive .archive-box .icons {
        margin: 20px 0;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: flex-start;
        gap: 0 9px;
    }
    .archive .archive-box .icons figure {
        position: relative;
        display: inline-block;
        width: 26px;
        height: auto;
        aspect-ratio: 26 / 26;
    }
    .archive .archive-box .icons figure img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    .archive .archive-box .icons figure::before {
        position: absolute;
        content: attr(data-popup);
        bottom: calc( 100% + 6px );
        left: 50%;
        translate: -50% 0;
        margin: 0;
        padding: 0.5em 1.0em;
        width: max-content;
        color: #fff;
        font-size: 9px;
        font-weight: 700;
        background: var(--color-theme);
        border-radius: 5px;
        opacity: 0;
        transform: scaleY( 0.0 );
        transform-origint: center bottom;
        transition: transform 0.01s ease-out 0.5s, opacity 0.5s ease-out;
    }
    .archive .archive-box .icons figure::after {
        position: absolute;
        content: "";
        bottom: calc( 100% + 2px );
        left: 50%;
        translate: -50% 0;
        margin: 0;
        padding: 0;
        width: 10px;
        height: 6px;
        background: var(--color-theme);
        clip-path: polygon( 0 0, 100% 0, 50% 100% );
        opacity: 0;
        transform: scaleY( 0.0 );
        transform-origint: center bottom;
        transition: transform 0.01s ease-out 0.5s, opacity 0.5s ease-out;
    }
    @media ( hover: hover ) {
        .archive .archive-box .icons figure:hover::after {
            opacity: 1;
            transform: scaleY( 1.0 );
            transition: transform 0.01s ease-out, opacity 0.5s ease-out;
        }
        .archive .archive-box .icons figure:hover::before {
            opacity: 1;
            transform: scaleY( 1.0 );
            transition: transform 0.01s ease-out, opacity 0.5s ease-out;
        }
    }
    .archive .archive-box .icons span {
        display: inline-block;
        color: var(--color-theme);
        font-size: 20px;
        font-weight: 400;
    }
    .archive .archive-box p {
        margin: 0;
        color: var(--fg-color);
        font-size: 16px;
        font-weight: 400;
        text-align: left;
    }

    .archive .pagination {
        margin: 30px auto 0;
        padding: 0;
        width: 100%;
        max-width: 420px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .archive .pagination :where(.prev,.next) {
    }
    .archive .pagination :where(.prev,.next) > a {
        position: relative;
        display: block;
        margin: 0;
        padding: 0;
        width: 30px;
        height: 30px;
        background: #fff2f2;
        border-radius: 100%;
        transition: background 0.5s ease-out;
    }
    .archive .pagination .pages {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0 4px;
    }
    .archive .pagination .pages > .page {
        display: block;
        margin: 0;
        padding: 0;
        width: 22px;
        height: 22px;
        color: var(--fg-color);
        font-size: 16px;
        font-weight: 400;
        text-align: center;
    }
    .archive .pagination .pages > .current {
        color: #fff;
        background: var(--color-theme);
        border-radius: 100%;
    }
    .archive .pagination .prev > a::after {
        position: absolute;
        content: "";
        top: 8px;
        left: 10px;
        width: 10px;
        height: 10px;
        border-left: 4px solid var(--color-theme);
        border-bottom: 4px solid var(--color-theme);
        rotate: 45deg;
        transition: border 0.5s ease-out;
    }
    .archive .pagination .next > a::after {
        position: absolute;
        content: "";
        top: 8px;
        right: 10px;
        width: 10px;
        height: 10px;
        border-right: 4px solid var(--color-theme);
        border-bottom: 4px solid var(--color-theme);
        rotate: -45deg;
        transition: border 0.5s ease-out;
    }
    @media ( hover: hover ) {
        .archive .pagination :where(.prev,.next) > a:hover {
            background: #b03f38;
            opacity: 1.0;
        }
        .archive .pagination .prev > a:hover::after {
            border-left: 4px solid #fff2f2;
            border-bottom: 4px solid #fff2f2;
        }
        .archive .pagination .next > a:hover::after {
            border-right: 4px solid #fff2f2;
            border-bottom: 4px solid #fff2f2;
        }
        .archive .pagination .pages > .page:hover {
            text-decoration: underline;
        }
    }

    /* Prayer Space Archive Page Styling */
    .archive.prayer-space-archive > h1 {
        background: #007A40;
    }

    .archive.prayer-space-archive .archive-box .category {
        color: #007A40;
    }

    .archive.prayer-space-archive .archive-box .icons span {
        color: #007A40;
    }

    .archive.prayer-space-archive .pagination .pages > .current {
        background: #007A40;
    }

    .archive.prayer-space-archive .pagination .prev > a::after {
        border-left: 4px solid #007A40;
        border-bottom: 4px solid #007A40;
    }

    .archive.prayer-space-archive .pagination .next > a::after {
        border-right: 4px solid #007A40;
        border-bottom: 4px solid #007A40;
    }

    @media (hover: hover) {
        .archive.prayer-space-archive .pagination :where(.prev,.next) > a:hover {
            background: #005a2f;
            opacity: 1.0;
        }

        .archive.prayer-space-archive .pagination .prev > a:hover::after {
            border-left: 4px solid #fff2f2;
            border-bottom: 4px solid #fff2f2;
        }

        .archive.prayer-space-archive .pagination .next > a:hover::after {
            border-right: 4px solid #fff2f2;
            border-bottom: 4px solid #fff2f2;
        }
    }

    .detail {
        margin: 0 auto;
        padding: 0;
        width: 90%;
    }

    #information {
        margin: 0 auto;
        padding: 0;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4.0vw 0;
    }
    #information .info-pics {
        position: relative;
        width: 100%;
    }

    #information .info-pics #detail-slider-main {
        position: relative;
        overflow: hidden;
    }
    #information .info-pics #detail-slider-main .main-pic {
        position: relative;
        width: 100%;
        height: 300px; /* 固定高さを設定（デスクトップ） */
        aspect-ratio: 507 / 352; /* フォールバック用 */
    }
    #information .info-pics #detail-slider-main .main-pic img {
        width: 100%;
        height: 100%;
        object-fit: contain; /* 画像全体を表示 */
        border-radius: 20px;
        user-select: none;
    }
    #information .info-pics #detail-slider-main .swiper-button-prev {
        position: absolute;
        top: calc( 50% - 19px );
        left: 7px;
        margin: 0;
        padding: 0;
        width: 38px;
        height: 38px;
        background: #fff2f2;
        border-radius: 100%;
        transition: background 0.5s ease-out;
    }
    #information .info-pics #detail-slider-main .swiper-button-next {
        position: absolute;
        top: calc( 50% - 19px );
        right: 7px;
        margin: 0;
        padding: 0;
        width: 38px;
        height: 38px;
        background: #fff2f2;
        border-radius: 100%;
        transition: background 0.5s ease-out;
    }
    #information .info-pics #detail-slider-main .swiper-button-prev::after {
        position: absolute;
        content: "";
        top: 12px;
        left: 14px;
        width: 10px;
        height: 10px;
        border-left: 4px solid var(--color-theme);
        border-bottom: 4px solid var(--color-theme);
        rotate: 45deg;
        transition: border 0.5s ease-out;
    }
    #information .info-pics #detail-slider-main .swiper-button-next::after {
        position: absolute;
        content: "";
        top: 12px;
        right: 14px;
        width: 10px;
        height: 10px;
        border-right: 4px solid var(--color-theme);
        border-bottom: 4px solid var(--color-theme);
        rotate: -45deg;
        transition: border 0.5s ease-out;
    }
    @media ( hover: hover ) {
        #information .info-pics #detail-slider-main .swiper-button-prev:hover,
        #information .info-pics #detail-slider-main .swiper-button-next:hover {
            background: #b03f38;
            opacity: 1.0;
        }
        #information .info-pics #detail-slider-main .swiper-button-prev:hover::after {
            border-left: 4px solid #fff2f2;
            border-bottom: 4px solid #fff2f2;
        }
        #information .info-pics #detail-slider-main .swiper-button-next:hover::after {
            border-right: 4px solid #fff2f2;
            border-bottom: 4px solid #fff2f2;
        }
    }
    #information .info-pics #detail-slider-thumb {
        margin: 10px 0 0;
        width: 100%;
        height: auto;
        overflow: hidden;
    }
    #information .info-pics #detail-slider-thumb .thumb-pic {
        height: 80px;
        transition: opacity 0.5s ease-out;
        cursor: pointer;
        overflow: hidden;
    }
    #information .info-pics #detail-slider-thumb .thumb-pic img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 12px;
        user-select: none;
    }
    #information .info-pics #detail-slider-thumb .swiper-wrapper .swiper-slide.swiper-slide-thumb-active img {
        border: 3px solid #f00;
    }
    @media ( hover: hover ) {
        #information .info-pics #detail-slider-thumb .thumb-pic:hover {
            opacity: 0.5;
        }
    }

    #information .info-text {
        width: 100%;
    }
    #information .info-text h1 {
        margin: 0;
        color: var(--fg-color);
        font-size: 40px;
        font-weight: 700;
        text-align: left;
        word-break: break-word;
        overflow-wrap: break-word;
    }
    #information .info-text .category {
        margin: 0;
        color: var(--color-theme);
        font-size: 14px;
        font-weight: 700;
    }
    .detail.prayer-space-detail #information .info-text .category {
        color: #007A40;
    }
    #information .info-text .attr {
        margin: 1.0em 0 0;
        color: var(--color-theme);
        font-size: 14px;
        font-weight: 400;
    }
    #information .info-text .attr img {
        display: inline-block;
        width: auto;
        height: 1.2em;
        translate: 0 -10%;
    }
    #information .info-text h2 {
        margin: 40px 0 0;
        color: var(--fg-color);
        font-size: 16px;
        font-weight: 700;
        text-align: left;
    }
    #information .info-text .icons {
        margin: 10px 0 0;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: flex-start;
        gap: 10px 20px;
    }
    #information .info-text .icons .icon {
        width: 50px;
        height: 50px;
    }
    #information .info-text .icons .icon img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    #information .info-text .info-alert {
        margin: 40px auto 0;
        padding: 20px 0;
        width: 300px;
        max-width: 100%;
        color: var(--color-theme);
        font-size: 16px;
        font-weight: 700;
        text-align: center;
        background: #fff2f2;
        border-radius: 8px;
    }
    #information .info-text .info-alert img {
        display: inline-block;
        margin: 0 4px 0 0;
        width: 24px;
        height: 22px;
        object-fit: contain;
        translate: 0 -10%;
    }

    #information .info-text a.reservation-service-link {
        display: block;
        margin: 12px auto 0;
        padding: 16px;
        width: 220px;
        color: var(--color-theme);
        font-size: 16px;
        font-weight: 700;
        text-align: center;
        background: #fff2f2;
        border-radius: 9999px;
    }

    #information .info-text .info-note {
        margin: 40px auto 0;
        padding: 20px 0;
        width: 300px;
        max-width: 100%;
        color: #2E7D32;
        font-size: 16px;
        font-weight: 700;
        text-align: center;
        background: #D4EDDA;
        border-radius: 8px;
    }

    #description {
        margin: 30px auto 0;
        padding: 0;
        width: 100%;
        color: var(--fg-color);
        font-size: 20px;
        font-weight: 400;
        text-align: left;
        font-size: 16px;
    }

    #link {
        margin: 30px auto 0;
        padding: 0;
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        align-items: flex-start;
        justify-content: center;
        gap: 10px 20px;
    }
    #link .link-box {
        width: 80px;
        color: #666;
        font-size: 14px;
        font-weight: 400;
        text-align: center;
    }
    #link .link-box a {
        margin: 0 auto 10px;
        padding: 0;
        width: 60px;
        height: 60px;
        background: #fff2f2;
        border-radius: 100%;
        display: grid;
        place-items: center;
    }
    #link .link-box a img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    #link .link-box.sns a img {
        width: 50%;
        height: 50%;
    }

    #map {
        margin: 20px auto 0;
        padding: 0;
        width: 100%;
        background: #ebefec;
        border-radius: 20px;
        overflow: hidden;
    }
    #map .wrap {
       aspect-ratio: 335 / 240;
    }
    #map iframe {
        aspect-ratio: 335 / 240;
        height: auto;
        width: 100%;
    }
    #map .map-pic {
        margin: 0 auto;
        padding: 0;
        width: 100%;
        height: auto;
    }
    #map .map-address {
        margin: 0 auto;
        padding: 10px 0;
        width: 100%;
        color: var(--fg-color);
        font-size: 16px;
        font-weight: 400;
        text-align: center;
    }

    footer {
        margin: 0 auto;
        width: 100%;
    }
    footer .footer-banner {
        margin: 30px auto 0;
        padding: 30px 0 30px;
        width: 90%;
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px 0;
        border-top: 1px solid #ddd;
        border-bottom: 1px solid #ddd;
    }
    footer .footer-wrap {
        margin: 0 auto 0;
        padding: 30px 0;
        width: 90%;
        max-width: 960px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 20px 0;
    }
    footer .footer-wrap .footer-logo {
        margin: 0 0 30px;
        width: 70px;
        height: auto;
    }
    footer .footer-wrap .footer-link {
    }
    footer .footer-wrap .footer-menu {
        list-style: none;
        line-height: 1.5;
    }
    footer .footer-wrap .footer-menu > li {
        list-style: none;
    }
    footer .footer-wrap .footer-menu > li a {
        display: block;
        margin: 0;
        padding: 0.2em 0;
        width: 100%;
        color: var(--fg-color);
        font-size: 18px;
        font-weight: 700;
        text-align: center;
    }
    footer .footer-wrap .footer-sns {
        margin: 30px 0 0;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0 30px;
    }
    footer .footer-wrap .footer-sns img {
        width: 36px;
        height: 36px;
        object-fit: contain;
    }
    footer .copyright {
        margin: 0 auto;
        padding: 0.5em 0;
        width: 100%;
        color: #fff;
        font-size: 12px;
        text-align: center;
        background: var(--color-theme);
    }

    .none-sf-pro {
        font-size: 40px;
    }
    .sf-pro {
        font-size: 40px;
        font-family: var(--font-alphabet);
    }

    #ws-popup {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        color: #fff;
        font-size: min( 40px, 4.0vw );
        font-weight: 700;
        background: rgba( 0, 0, 0, 0.8 );
        display: grid;
        place-items: center;
        transform-origin: top center;
        transform: scaleY( 0.0 );
        opacity: 0;
        transition: transform 0.01s ease-out 0.5s, opacity 0.5s ease-out;
        z-index: 999;
    }
    #ws-popup.show {
        transform: scaleY( 1.0 );
        opacity: 1.0;
        transition: transform 0.01s ease-out, opacity 0.5s ease-out;
    }
    #ws-popup #popup-box {
        position: absolute;
        top: 50%;
        left: 10%;
        margin: 0;
        padding: 0;
        width: 80%;
        background: #fff;
        border-radius: 4.0vw;
        translate: 0 -50%;
    }
    #ws-popup #popup-box .popup-up {
        padding: 4.0vw 0;
        width: 100%;
        background: var(--color-theme);
        border-radius: 4.0vw 4.0vw 0 0;
    }
    #ws-popup #popup-box .popup-title {
        margin: 0 auto;
        width: 80%;
        height: auto;
    }
    #ws-popup #popup-box .popup-btm {
        padding: 4.0vw 0;
        width: 100%;
        background: #fff;
        border-radius: 0 0 4.0vw 4.0vw;
    }
    #ws-popup #popup-box .popup-msg {
        color: var(--fg-color);
        font-size: 5.2vw;
        font-weight: 700;
        text-align: center;
        line-height: 1.2;
    }
    #ws-popup #popup-box .popup-pics {
        margin: 4.0vw auto 0;
        width: 80%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 1.0vw 0;
    }
    #ws-popup #popup-box .popup-pics > div:nth-child(1) {
        order: 1;
        margin: 0 auto;
        padding: 0;
        width: 100%;
        color: #b03f38;
        font-size: 3.6vw;
        font-weight: 700;
        text-align: center;
    }
    #ws-popup #popup-box .popup-pics > div:nth-child(2) {
        order: 3;
        margin: 1.0em auto 0;
        padding: 0;
        width: 100%;
        color: #b03f38;
        font-size: 3.6vw;
        font-weight: 700;
        text-align: center;
    }
    #ws-popup #popup-box .popup-pics > figure:nth-child(3),
    #ws-popup #popup-box .popup-pics > figure:nth-child(4) {
        display: none;
    }
    #ws-popup #popup-box .popup-pics > a:nth-child(5) {
        order: 2;
        display: block;
        margin: 0 auto;
        padding: 0;
        width: 240px;
        max-width: 72%;
        height: auto;
    }
    #ws-popup #popup-box .popup-pics > a:nth-child(6) {
        order: 4;
        display: block;
        margin: 0 auto;
        padding: 0;
        width: 270px;
        max-width: 81%;
        height: auto;
    }
    #ws-popup #popup-close {
        position: absolute;
        top: -25px;
        right: -25px;
        width: 50px;
        height: 50px;
        background: #fff;
        border-radius: 100%;
        cursor: pointer;
    }
    #ws-popup #popup-close {
        position: absolute;
        top: -25px;
        right: -25px;
        width: 50px;
        height: 50px;
        background: #fff;
        border-radius: 100%;
        cursor: pointer;
    }
    #ws-popup #popup-close::after {
        position: absolute;
        content: "";
        top: 15px;
        left: 15px;
        width: 20px;
        height: 20px;
        background: #ccc;
        clip-path: polygon( 5% 0, 50% 45%, 95% 0, 100% 5%, 55% 50%, 100% 95%, 95% 100%, 50% 55%, 5% 100%, 0 95%, 45% 50%, 0 5% );
    }

}


/**
 * PC用設定
 */
@media ( min-width: 769px ) {
  
    #sp-search-menu, #header-sp-menu-list {
        display: none !important;
    }
  
    .archive-wrap #sp-search-menu{
        display: block !important;
    }

    body {
        padding-top: 115px;
    }
    header {
        height: 95px;
    }
    header .header-wrap {
        margin: 0 auto;
        padding: 0 60px;
        width: 100%;
        max-width: 1920px;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    header .header-logo {
        padding: 0 0;
        width: auto;
        height: 100%;
        flex: 1 0 auto;
    }
    header .header-logo a {
        display: block;
        width: auto;
        height: 100%;
        aspect-ratio: 724 / 380;
    }
    header .header-logo img {
        width: 100%;
        height: 100%;
        object-fit: conatin;
    }
    header .header-menu {
        display: none;
        width: auto;
        height: 100%;
        flex: 0 0 auto;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        list-style: none;
        display: none;
    }
    header .header-menu > li {
        width: auto;
        height: 100%;
        list-style: none;
    }
    header .header-menu > li > a {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
        padding: 0 1.0em;
        color: #fff;
        font-size: 15px;
        font-weight: 600;
        transition: color 0.5s ease-out, opacity 0.5s ease-out;
    }
    header .header-menu > li.has-submenu {
        position: relative;
    }
    header .header-menu > li.has-submenu > .header-submenu {
        position: absolute;
        top: 100%;
        right: 50%;
        width: max-content;
        margin: 0;
        padding: 0;
        background: #fff;
        box-shadow: 0 4px 4px #0003;
        list-style: none;
        opacity: 0.0;
        transform-origin: top center;
        transform: translateX( 50% ) scale( 1.0, 0.0 );
        transition: opacity 0.3s ease-out, transform 0.5s ease-out;
    }
    header .header-menu > li.has-submenu > .header-submenu > li {
        width: 100%;
        list-style: none;
    }
    header .header-menu > li.has-submenu > .header-submenu > li > a {
        display: block;
        margin: 0;
        padding: 1.0em 2.0em;
        width: 100%;
        color: var(--fg-color);
        font-size: max( 14px, calc( 18 * min( 100vw, 1920px ) / 1920 ) );
        font-weight: 500;
        text-align: left;
        transition: color 0.5s ease-out, background 0.5s ease-out;
    }
    @media ( hover: hover ) {
        header .header-menu > li.has-submenu:hover > .header-submenu {
            opacity: 1.0;
            transform: translateX( 50% ) scale( 1.0, 1.0 );
            transition: opacity 0.3s ease-out, transform 0.5s ease-out;
        }
        header .header-menu > li.has-submenu > .header-submenu > li > a:hover {
            opacity: 1.0;
            color: #fff;
            background: var(--fg-color);
        }
    }
    header .header-menu > li.has-megamenu {
        position: relative;
    }
    header .header-menu > li.has-megamenu > .header-megamenu {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        margin: 0;
        padding: 0;
        background: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        box-shadow: 0 4px 4px #0003;
        list-style: none;
        opacity: 0.0;
        transform-origin: top center;
        transform: scale( 1.0, 0.0 );
        transition: opacity 0.3s ease-out, transform 0.5s ease-out;
    }
    header .header-menu > li.has-megamenu > .header-megamenu > li {
        width: 30%;
        list-style: none;
    }
    header .header-menu > li.has-megamenu > .header-megamenu > li > a {
        display: block;
        margin: 0;
        padding: 1.0em 2.0em;
        width: 100%;
        color: var(--fg-color);
        font-size: max( 14px, calc( 18 * min( 100vw, 1920px ) / 1920 ) );
        font-weight: 500;
        text-align: center;
        transition: color 0.5s ease-out, background 0.5s ease-out;
    }
    @media ( hover: hover ) {
        header .header-menu > li.has-megamenu:hover > .header-megamenu {
            opacity: 1.0;
            transform: scale( 1.0, 1.0 );
            transition: opacity 0.3s ease-out, transform 0.5s ease-out;
        }
        header .header-menu > li.has-megamenu > .header-megamenu > li > a:hover {
            opacity: 1.0;
            color: #fff;
            background: var(--fg-color);
        }
    }
    header .header-btns {
        margin: 0;
        padding: 30px 0;
        width: auto;
        height: 100%;
        flex: 0 0 auto;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        list-style: none;
        gap: 0 16px;
    }
    header .header-btns > li {
        margin: 0;
        padding: 0;
        width: auto;
        height: 100%;
        list-style: none;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 9.4em;
        height: 100%;
        padding: 0;
        font-size: 16px;
        font-weight: 700;
        border: 1px solid var(--color-theme);
        border-radius: 4.0em;
        transition: color 0.5s ease-out, background 0.5s ease-out;
    }
    header .header-btns > li.header-btn-lang {
        color: #fff;
        background: var(--color-theme);
    }
    header .header-btns > li.header-btn-lang.active {
        color: var(--color-theme);
        background: #fff;
        opacity: 1.0;
    }
    header .header-btns > li.header-btn-lang:hover {
        opacity: 1.0;
    }
    header .header-sp-btns {
        display: none;
    }
    #header-sp-menu-list,
    nav#sp-search-menu {
        display: none;
    }

    .mv {
        margin: 0 auto;
        width: 100%;
    }
    .mv .mv-bg {
        margin: 0;
        padding: 0;
        width: 100%;
        height: calc( 100vh - 130px );
        height: calc( 100dvh - 130px );
        background: #ccc;
    }
    .mv .mv-bg img {
        margin: 0;
        padding: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .mv .mv-box {
        position: absolute;
        top: 20%;
        left: 20%;
        margin: 0;
        padding: 0;
        width: 60%;
        height: 60%;
        color: #fff;
        font-size: clamp(20px, 4.0vw, 40px);
        background: rgba( 255, 255, 255, 0.1 );
        box-shadow: 0 0 1.0em rgba( 0, 0, 0, 0.2 );
        -webkit-backdrop-filter: blur(0.2em);
        backdrop-filter: blur(0.2em);
        display: grid;
        place-items: center;
    }

    #mv-slider {
        position: relative;
        margin: 40px auto;
        padding: 0 0 80px;
        width: 50%;
        background: #fff;
        overflow: hidden;
    }
    #mv-slider > .swiper-wrapper {
    }
    #mv-slider > .swiper-wrapper > .swiper-slide {
        height: auto;
        aspect-ratio: 2 / 1;
    }
    #mv-slider > .swiper-wrapper > .swiper-slide figure {
        width: 100%;
        height: 100%;
    }
    #mv-slider > .swiper-wrapper > .swiper-slide figure img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    main {
        margin: 0 auto;
        width: 100%;
        max-width: 1200px;
    }

    .common-flex {
        margin: calc( 60 * min( 100vw, 1200px ) / 1200 ) auto;
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        align-items: flex-start;
        justify-content: space-between;
    }
    .common-flex .common-col30 {
        width: 28%;
    }
    .common-flex .common-col40 {
        width: 38%;
    }
    .common-flex .common-col50 {
        width: 48%;
    }
    .common-flex .common-col60 {
        width: 58%;
    }
    .common-flex .common-col70 {
        width: 68%;
    }

    section h2 {
        margin: 3.0em auto 1.0em;
        font-size: calc( 32 * min( 100vw, 1200px ) / 1200 );
        font-weight: 700;
        text-align: center;
    }
    section h3 {
        margin: 2.0em auto 1.0em;
        font-size: calc( 28 * min( 100vw, 1200px ) / 1200 );
        font-weight: 700;
        text-align: left;
    }
    section h4 {
        margin: 2.0em auto 1.0em;
        font-size: calc( 22 * min( 100vw, 1200px ) / 1200 );
        font-weight: 700;
        text-align: left;
    }
    section h5 {
        margin: 2.0em auto 1.0em;
        font-size: calc( 20 * min( 100vw, 1200px ) / 1200 );
        font-weight: 500;
        text-align: left;
    }
    section :is(h2,h3,h4,h5):first-child {
        margin-top: 0;
    }
    section p {
        margin: 1.0em auto;
        font-size: calc( 16 * min( 100vw, 1200px ) / 1200 );
        font-weight: 500;
        text-align: left;
    }

    .feature-table-wrap {
        margin: calc( 40 * min( 100vw, 1200px ) / 1200 ) auto;
        padding: 0;
        width: max-content;
        overflow-x: auto;
    }
    .feature-table-wrap .feature-table {
        display: grid;
        grid-template-columns: 160px repeat( 4, 200px );
        align-items: stretch;
    }
    .feature-table-wrap .feature-table div {
        padding: 1.0em 0 1.0em;
        width: 100%;
        font-size: calc( 20 * min( 100vw, 1200px ) / 1200 );
        font-weight: 500;
        text-align: center;
        display: grid;
        place-items: center;
        border-bottom: 1px solid #ccc;
    }
    .feature-table-wrap .feature-table div:nth-child(1),
    .feature-table-wrap .feature-table div:nth-child(2),
    .feature-table-wrap .feature-table div:nth-child(3),
    .feature-table-wrap .feature-table div:nth-child(4),
    .feature-table-wrap .feature-table div:nth-child(1) {
        border-top: 1px solid #ccc;
    }

    .anim-scroll {
        display: none;
    }

    .about {
        padding: calc( 60 * min( 100vw, 1200px ) / 1200 ) 0;
    }

    .archive {
        margin: 0 auto;
        padding: 0;
        width: 90%;
        max-width: 960px;
    }
    .archive > h1 {
        margin: 0 auto;
        padding: 0.2em 0;
        color: #fff;
        font-size: 32px;
        font-weight: 700;
        text-align: center;
        background: var(--color-theme);
        border-radius: 20px;
    }
    .archive > h2 {
        margin: 2.0em auto 0;
        padding: 0;
        color: var(--fg-color);
        font-size: 16px;
        font-weight: 700;
        text-align: left;
    }
    .archive > p {
        margin: 0 auto;
        padding: 0;
        color: var(--fg-color);
        font-size: 16px;
        font-weight: 400;
        text-align: left;
    }

    .archive .archive-wrap {
        margin: 70px auto 0;
        padding: 0;
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 0 30px;
    }
    .archive .archive-wrap .archive-sidebar {
        margin: 0 auto;
        padding: 0;
        width: 300px;
    }
    .archive .archive-wrap .archive-list {
        margin: 0 auto;
        padding: 0;
        width: calc( 100% - 330px );
    }
    .archive .archive-search {
        display: block;
        margin: 0;
        padding: 30px;
        width: 100%;
        background: #fff2f2;
        border-radius: 20px;
    }
    .archive .archive-conditions {
        display: block;
        margin: 30px 0 0;
        padding: 30px;
        width: 100%;
        background: #fff2f2;
        border-radius: 20px;
    }
    .archive .archive-sidebar label {
        display: block;
        margin: 0;
        color: var(--fg-color);
        font-size: 20px;
        font-weight: 700;
        text-align: left;
        line-height: 1.0;
    }
    .archive .archive-sidebar div.search {
        position: relative;
        margin: 10px 0 0;
    }
    .archive .archive-sidebar div.search + label {
        margin-top: 20px;
    }
    .archive .archive-sidebar input[type="text"] {
        margin: 0;
        padding: 10px 10px 10px 44px;
        width: 100%;
        color: var(--fg-color);
        font-size: 16px;
        font-family: inherit;
        background: #fff;
        border: 1px solid #ddd;
        border-radius: 5px;
    }
    .archive .archive-sidebar input[type="text"]::placeholder {
        color: #ddd;
    }
    .archive .archive-sidebar .icon-search::before {
        position: absolute;
        content: "";
        top: calc( 50% - 12px );
        left: 10px;
        width: 24px;
        height: 24px;
        background: url(../images/icon-search.svg) no-repeat center / contain;
    }
    .archive .archive-sidebar .icon-gps::before {
        position: absolute;
        content: "";
        top: calc( 50% - 12px );
        left: 14px;
        width: 16px;
        height: 24px;
        background: url(../images/icon-gps.svg) no-repeat center / contain;
    }
    .archive .archive-sidebar .icon-genre::before {
        position: absolute;
        content: "";
        top: calc( 50% - 12px );
        left: 10px;
        width: 25px;
        height: 24px;
        background: url(../images/icon-restaurant.svg) no-repeat center / contain;
    }
    .archive .archive-sidebar .search-delete {
        position: absolute;
        content: "";
        top: calc( 50% - 5px );
        right: 10px;
        width: 10px;
        height: 10px;
        background: url(../images/icon-cross.svg) no-repeat center / contain;;
        cursor: pointer;
    }
    .archive .archive-sidebar button[type="submit"] {
        display: block;
        margin: 20px auto 0;
        width: 100%;
        height: auto;
        aspect-ratio: 240 / 60;
        color: #fff;
        font-size: 16px;
        font-weight: 700;
        font-family: inherit;
        background: var(--color-theme);
        border: 0;
        border-radius: 30px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0 8px;
    }
    .archive .archive-sidebar button[type="submit"]::before {
        content: "";
        width: 1.4em;
        height: 1.4em;
        background: url(../images/icon-search-white.svg) no-repeat center / contain;
    }
    .archive .archive-sidebar div.condition {
        position: relative;
        margin: 10px 0;
    }
    .archive .archive-sidebar div.condition + div.condition {
        margin-top: 10px;
    }
    .archive .archive-sidebar div.condition-wrap + label {
        margin-top: 20px;
    }
    .archive .archive-sidebar div.condition .condition-check {
        position: absolute;
        top: 0;
        right: 0;
        width: 1px;
        height: 1px;
        opacity: 0;
    }
    .archive .archive-sidebar div.condition .condition-label {
        position: relative;
        margin: 0;
        padding: 0 0 0 50px;
        width: 100%;
        height: auto;
        aspect-ratio: 240 / 50;
        color: var(--fg-color);
        font-size: 16px;
        font-weight: 400;
        white-space: nowrap;
        background: #d1d1d1;
        border-radius: 5px;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        cursor: pointer;
    }
    .archive .archive-sidebar div.condition .condition-label::before {
        position: absolute;
        content: "";
        top: calc( 50% - 15px );
        left: 0;
        width: 50px;
        height: 30px;
        background: url(../images/icon_certied-off.png) no-repeat center / contain;
    }
    .archive .archive-sidebar div.condition .condition-label::after {
        position: absolute;
        content: "";
        top: calc( 50% - 8px );
        right: 0;
        width: 50px;
        height: 16px;
    }
    .archive .archive-sidebar div.condition .condition-check:checked ~ .condition-label {
        color: #fff;
        background: #b03f38;
    }
    .archive .archive-sidebar div.condition .condition-check:checked ~ .condition-label::before {
        background: url(../images/icon_certied.png) no-repeat center / contain;
    }
    .archive .archive-sidebar div.condition .condition-check:checked ~ .condition-label::after {
        background: url(../images/icon-check-white.svg) no-repeat center / contain;
    }

    .archive .archive-box {
        margin: 0;
        padding: 30px 0;
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 0 20px;
        border-bottom: 1px solid #ddd;
    }
    .archive .archive-box:hover {
        opacity: 1;
    }
    .archive .archive-box .archive-pic img {
        transition: opacity 0.5s ease-out;
    }
    .archive .archive-box:hover .archive-pic img {
        opacity: .5;
    }
    .archive .archive-box:first-child {
        padding-top: 0;
    }
    .archive .archive-box .archive-pic {
        width: 43.6%;
        height: auto;
        aspect-ratio: 275 / 200;
    }
    .archive .archive-box .archive-pic img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 20px;
    }
    .archive .archive-box .archive-info {
        width: calc( 56.4% - 20px );
    }
    .archive .archive-box h3 {
        margin: -0.2em 0 0;
        color: var(--fg-color);
        font-size: 36px;
        font-weight: 700;
        text-align: left;
        line-height: 1.2;
    }
    .archive .archive-box .category {
        margin: 0;
        color: var(--color-theme);
        font-size: 16px;
        font-weight: 700;
        text-align: left;
        line-height: 1.0;
    }
    .archive .archive-box .icons {
        margin: 20px 0;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: flex-start;
        gap: 0 8px;
    }
    .archive .archive-box .icons figure {
        position: relative;
        display: inline-block;
        width: 26px;
        height: auto;
        aspect-ratio: 26 / 26;
    }
    .archive .archive-box .icons figure img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    .archive .archive-box .icons figure::before {
        position: absolute;
        content: attr(data-popup);
        bottom: calc( 100% + 6px );
        left: 50%;
        translate: -50% 0;
        margin: 0;
        padding: 0.5em 1.0em;
        width: max-content;
        color: #fff;
        font-size: 9px;
        font-weight: 700;
        background: var(--color-theme);
        border-radius: 5px;
        opacity: 0;
        transform: scaleY( 0.0 );
        transform-origint: center bottom;
        transition: transform 0.01s ease-out 0.5s, opacity 0.5s ease-out;
    }
    .archive .archive-box .icons figure::after {
        position: absolute;
        content: "";
        bottom: calc( 100% + 2px );
        left: 50%;
        translate: -50% 0;
        margin: 0;
        padding: 0;
        width: 10px;
        height: 6px;
        background: var(--color-theme);
        clip-path: polygon( 0 0, 100% 0, 50% 100% );
        opacity: 0;
        transform: scaleY( 0.0 );
        transform-origint: center bottom;
        transition: transform 0.01s ease-out 0.5s, opacity 0.5s ease-out;
    }
    @media ( hover: hover ) {
        .archive .archive-box .icons figure:hover::after {
            opacity: 1;
            transform: scaleY( 1.0 );
            transition: transform 0.01s ease-out, opacity 0.5s ease-out;
        }
        .archive .archive-box .icons figure:hover::before {
            opacity: 1;
            transform: scaleY( 1.0 );
            transition: transform 0.01s ease-out, opacity 0.5s ease-out;
        }
    }
    .archive .archive-box .icons span {
        display: inline-block;
        color: var(--color-theme);
        font-size: 20px;
        font-weight: 400;
    }
    .archive .archive-box p {
        margin: 0;
        color: var(--fg-color);
        font-size: 16px;
        font-weight: 400;
        text-align: left;
    }

    .archive .pagination {
        margin: 30px auto 0;
        padding: 0;
        width: 100%;
        max-width: 420px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .archive .pagination :where(.prev,.next) {
    }
    .archive .pagination :where(.prev,.next) > a {
        position: relative;
        display: block;
        margin: 0;
        padding: 0;
        width: 30px;
        height: 30px;
        background: #fff2f2;
        border-radius: 100%;
        transition: background 0.5s ease-out;
    }
    .archive .pagination .pages {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0 8px;
    }
    .archive .pagination .pages > .page {
        display: block;
        margin: 0;
        padding: 0;
        width: 22px;
        height: 22px;
        color: var(--fg-color);
        font-size: 16px;
        font-weight: 400;
        text-align: center;
    }
    .archive .pagination .pages > .current {
        color: #fff;
        background: var(--color-theme);
        border-radius: 100%;
    }
    .archive .pagination .prev > a::after {
        position: absolute;
        content: "";
        top: 8px;
        left: 10px;
        width: 10px;
        height: 10px;
        border-left: 4px solid var(--color-theme);
        border-bottom: 4px solid var(--color-theme);
        rotate: 45deg;
        transition: border 0.5s ease-out;
    }
    .archive .pagination .next > a::after {
        position: absolute;
        content: "";
        top: 8px;
        right: 10px;
        width: 10px;
        height: 10px;
        border-right: 4px solid var(--color-theme);
        border-bottom: 4px solid var(--color-theme);
        rotate: -45deg;
        transition: border 0.5s ease-out;
    }
    @media ( hover: hover ) {
        .archive .pagination :where(.prev,.next) > a:hover {
            background: #b03f38;
            opacity: 1.0;
        }
        .archive .pagination .prev > a:hover::after {
            border-left: 4px solid #fff2f2;
            border-bottom: 4px solid #fff2f2;
        }
        .archive .pagination .next > a:hover::after {
            border-right: 4px solid #fff2f2;
            border-bottom: 4px solid #fff2f2;
        }
        .archive .pagination .pages > .page:hover {
            text-decoration: underline;
        }
    }

    /* Prayer Space Archive Page Styling (Desktop) */
    .archive.prayer-space-archive > h1 {
        background: #007A40;
    }

    .archive.prayer-space-archive .archive-box .category {
        color: #007A40;
    }

    .archive.prayer-space-archive .archive-box .icons span {
        color: #007A40;
    }

    .archive.prayer-space-archive .pagination .pages > .current {
        background: #007A40;
    }

    .archive.prayer-space-archive .pagination .prev > a::after {
        border-left: 4px solid #007A40;
        border-bottom: 4px solid #007A40;
    }

    .archive.prayer-space-archive .pagination .next > a::after {
        border-right: 4px solid #007A40;
        border-bottom: 4px solid #007A40;
    }

    @media (hover: hover) {
        .archive.prayer-space-archive .pagination :where(.prev,.next) > a:hover {
            background: #005a2f;
            opacity: 1.0;
        }

        .archive.prayer-space-archive .pagination .prev > a:hover::after {
            border-left: 4px solid #fff2f2;
            border-bottom: 4px solid #fff2f2;
        }

        .archive.prayer-space-archive .pagination .next > a:hover::after {
            border-right: 4px solid #fff2f2;
            border-bottom: 4px solid #fff2f2;
        }
    }

    .detail {
        margin: 0 auto;
        padding: 0;
        width: 90%;
        max-width: 960px;
    }

    #information {
        margin: 0 auto;
        padding: 0;
        width: 100%;
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 0 30px;
    }
    #information .info-pics {
        position: relative;
        width: 53%;
    }

    #information .info-pics #detail-slider-main {
        position: relative;
        overflow: hidden;
    }
    #information .info-pics #detail-slider-main .main-pic {
        position: relative;
        width: 100%;
        height: 300px; /* 固定高さを設定（デスクトップ） */
        aspect-ratio: 507 / 352; /* フォールバック用 */
    }
    #information .info-pics #detail-slider-main .main-pic img {
        width: 100%;
        height: 100%;
        object-fit: contain; /* 画像全体を表示 */
        border-radius: 20px;
        user-select: none;
    }
    #information .info-pics #detail-slider-main .swiper-button-prev {
        position: absolute;
        top: calc( 50% - 19px );
        left: 7px;
        margin: 0;
        padding: 0;
        width: 38px;
        height: 38px;
        background: #fff2f2;
        border-radius: 100%;
        transition: background 0.5s ease-out;
    }
    #information .info-pics #detail-slider-main .swiper-button-next {
        position: absolute;
        top: calc( 50% - 19px );
        right: 7px;
        margin: 0;
        padding: 0;
        width: 38px;
        height: 38px;
        background: #fff2f2;
        border-radius: 100%;
        transition: background 0.5s ease-out;
    }
    #information .info-pics #detail-slider-main .swiper-button-prev::after {
        position: absolute;
        content: "";
        top: 12px;
        left: 14px;
        width: 10px;
        height: 10px;
        border-left: 4px solid var(--color-theme);
        border-bottom: 4px solid var(--color-theme);
        rotate: 45deg;
        transition: border 0.5s ease-out;
    }
    #information .info-pics #detail-slider-main .swiper-button-next::after {
        position: absolute;
        content: "";
        top: 12px;
        right: 14px;
        width: 10px;
        height: 10px;
        border-right: 4px solid var(--color-theme);
        border-bottom: 4px solid var(--color-theme);
        rotate: -45deg;
        transition: border 0.5s ease-out;
    }
    @media ( hover: hover ) {
        #information .info-pics #detail-slider-main .swiper-button-prev:hover,
        #information .info-pics #detail-slider-main .swiper-button-next:hover {
            background: #b03f38;
            opacity: 1.0;
        }
        #information .info-pics #detail-slider-main .swiper-button-prev:hover::after {
            border-left: 4px solid #fff2f2;
            border-bottom: 4px solid #fff2f2;
        }
        #information .info-pics #detail-slider-main .swiper-button-next:hover::after {
            border-right: 4px solid #fff2f2;
            border-bottom: 4px solid #fff2f2;
        }
    }
    #information .info-pics #detail-slider-thumb {
        margin: 12px 0 0;
        width: 100%;
        height: auto;
        overflow: hidden;
    }
    #information .info-pics #detail-slider-thumb .thumb-pic {
        height: 80px;
        transition: opacity 0.5s ease-out;
        cursor: pointer;
        overflow: hidden;
    }
    #information .info-pics #detail-slider-thumb .thumb-pic img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 12px;
        user-select: none;
    }
    #information .info-pics #detail-slider-thumb .swiper-wrapper .swiper-slide.swiper-slide-thumb-active img {
        border: 3px solid #f00;
    }
    @media ( hover: hover ) {
        #information .info-pics #detail-slider-thumb .thumb-pic:hover {
            opacity: 0.5;
        }
    }

    #information .info-text {
        width: calc( 47% - 30px );
    }
    #information .info-text h1 {
        margin: 0;
        color: var(--fg-color);
        font-size: 40px;
        font-weight: 700;
        text-align: left;
        word-break: break-word;
        overflow-wrap: break-word;
    }
    #information .info-text .category {
        margin: 0;
        color: var(--color-theme);
        font-size: 14px;
        font-weight: 700;
    }
    .detail.prayer-space-detail #information .info-text .category {
        color: #007A40;
    }
    #information .info-text .attr {
        margin: 1.0em 0 0;
        color: var(--color-theme);
        font-size: 14px;
        font-weight: 400;
    }
    #information .info-text .attr img {
        display: inline-block;
        width: auto;
        height: 1.2em;
        translate: 0 -10%;
    }
    #information .info-text h2 {
        margin: 40px 0 0;
        color: var(--fg-color);
        font-size: 16px;
        font-weight: 700;
        text-align: left;
    }
    #information .info-text .icons {
        margin: 10px 0 0;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: flex-start;
        gap: 8px 4px;
    }
    #information .info-text .icons .icon {
        width: 38px;
        height: 38px;
    }
    #information .info-text .icons .icon img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    #information .info-text .info-alert {
        margin: 40px 0 0;
        padding: 20px 0;
        width: 300px;
        max-width: 100%;
        color: var(--color-theme);
        font-size: 14px;
        font-weight: 700;
        text-align: center;
        background: #fff2f2;
        border-radius: 8px;
    }
    #information .info-text .info-alert img {
        display: inline-block;
        margin: 0 4px 0 0;
        width: 24px;
        height: 22px;
        object-fit: contain;
        translate: 0 -10%;
    }

    #information .info-text a.reservation-service-link {
        display: block;
        margin: 12px 40px;
        padding: 16px;
        width: 220px;
        color: var(--color-theme);
        font-size: 16px;
        font-weight: 700;
        text-align: center;
        background: #fff2f2;
        border-radius: 9999px;
    }

    #information .info-text .info-note {
        margin: 40px 0 0;
        padding: 20px 0;
        width: 300px;
        max-width: 100%;
        color: #2E7D32;
        font-size: 16px;
        font-weight: 700;
        text-align: center;
        background: #D4EDDA;
        border-radius: 8px;
    }


    #description {
        margin: 30px auto 0;
        padding: 0;
        width: 100%;
        color: var(--fg-color);
        font-size: 20px;
        font-weight: 400;
        text-align: left;
    }

    #link {
        margin: 30px auto 0;
        padding: 0;
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        align-items: flex-start;
        justify-content: center;
        gap: 10px 20px;
    }
    #link .link-box {
        width: 80px;
        color: #666;
        font-size: 14px;
        font-weight: 400;
        text-align: center;
    }
    #link .link-box a {
        margin: 0 auto 10px;
        padding: 0;
        width: 60px;
        height: 60px;
        background: #fff2f2;
        border-radius: 100%;
        display: grid;
        place-items: center;
    }
    #link .link-box a img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    #link .link-box.sns a img {
        width: 50%;
        height: 50%;
    }

    #map {
        margin: 90px auto 0;
        padding: 0;
        width: 100%;
        background: #ebefec;
        border-radius: 20px;
        overflow: hidden;
    }
    #map .map-pic {
        margin: 0 auto;
        padding: 0;
        width: 100%;
        height: auto;
    }
    #map iframe {
        display: block;
        margin: 0 auto;
        padding: 0;
        width: 100%;
        height: auto;
        aspect-ratio: 960 / 593;
    }
    #map .map-address {
        margin: 0 auto;
        padding: 30px 0;
        width: 100%;
        color: var(--fg-color);
        font-size: 16px;
        font-weight: 400;
        text-align: center;
    }

    footer {
        margin: 0 auto;
        width: 100%;
    }
    footer .footer-banner {
        margin: 100px auto 0;
        padding: 0 0 100px;
        width: 90%;
        max-width: 960px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px 60px;
        border-bottom: 1px solid #ddd;
    }
    footer .footer-wrap {
        margin: 0 auto 20px;
        padding: 40px 0 0;
        width: 90%;
        max-width: 960px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    footer .footer-wrap .footer-logo {
        width: 85px;
        height: auto;
    }
    footer .footer-wrap .footer-link {
    }
    footer .footer-wrap .footer-menu {
        list-style: none;
        line-height: 1.5;
    }
    footer .footer-wrap .footer-menu > li {
        list-style: none;
    }
    footer .footer-wrap .footer-menu > li a {
        color: var(--fg-color);
        font-size: 14px;
        font-weight: 700;
    }
    @media ( hover: hover ) {
        footer .footer-wrap .footer-menu > li a:hover {
            text-decoration: underline;
            opacity: 1.0;
        }
    }
    footer .footer-wrap .footer-sns {
        margin: 20px 0 0;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 0 10px;
    }
    footer .footer-wrap .footer-sns img {
        width: 27px;
    }
    footer .copyright {
        margin: 0 auto;
        padding: 0.5em 0;
        width: 100%;
        color: #fff;
        font-size: 12px;
        text-align: center;
        background: var(--color-theme);
    }

    .none-sf-pro {
        font-size: 40px;
    }
    .sf-pro {
        font-size: 40px;
        font-family: var(--font-alphabet);
    }

    #ws-popup {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        color: #fff;
        font-size: min( 40px, 4.0vw );
        font-weight: 700;
        background: rgba( 0, 0, 0, 0.8 );
        display: grid;
        place-items: center;
        transform-origin: top center;
        transform: scaleY( 0.0 );
        opacity: 0;
        transition: transform 0.01s ease-out 0.5s, opacity 0.5s ease-out;
        z-index: 999;
    }
    #ws-popup.show {
        transform: scaleY( 1.0 );
        opacity: 1.0;
        transition: transform 0.01s ease-out, opacity 0.5s ease-out;
    }
    #ws-popup #popup-box {
        position: absolute;
        top: 50%;
        left: 50%;
        margin: 0;
        padding: 0;
        width: 660px;
        background: #fff;
        border-radius: 20px;
        translate: -50% -50%;
    }
    #ws-popup #popup-box .popup-up {
        padding: 30px 0;
        width: 100%;
        background: var(--color-theme);
        border-radius: 20px 20px 0 0;
    }
    #ws-popup #popup-box .popup-title {
        margin: 0 auto;
        width: 42%;
        height: auto;
    }
    #ws-popup #popup-box .popup-btm {
        padding: 30px 0;
        width: 100%;
        background: #fff;
        border-radius: 0 0 20px 20px;
    }
    #ws-popup #popup-box .popup-msg {
        color: var(--fg-color);
        font-size: 36px;
        font-weight: 700;
        text-align: center;
        line-height: 1.2;
    }
    #ws-popup #popup-box .popup-pics {
        margin: 30px auto 0;
        width: 305px;
        max-width: 80%;
        display: grid;
        justify-content: center;
        grid-template-columns: 120fr 135fr;
        gap: 8px 50px;
    }
    #ws-popup #popup-box .popup-pics > div:nth-child(1),
    #ws-popup #popup-box .popup-pics > div:nth-child(2) {
        margin: 0 auto;
        padding: 0;
        width: 100%;
        color: #b03f38;
        font-size: 16px;
        font-weight: 700;
        text-align: center;
    }
    #ws-popup #popup-box .popup-pics > figure:nth-child(3),
    #ws-popup #popup-box .popup-pics > figure:nth-child(4) {
        display: block;
        margin: 0 auto;
        padding: 0;
        width: 100px;
        height: auto;
    }
    #ws-popup #popup-box .popup-pics > a:nth-child(5) {
        display: block;
        margin: 0 auto;
        padding: 0;
        width: 120px;
        height: auto;
    }
    #ws-popup #popup-box .popup-pics > a:nth-child(6) {
        display: block;
        margin: 0 auto;
        padding: 0;
        width: 135px;
        height: auto;
    }
    #ws-popup #popup-close {
        position: absolute;
        top: -25px;
        right: -25px;
        width: 50px;
        height: 50px;
        background: #fff;
        border-radius: 100%;
        cursor: pointer;
    }
    #ws-popup #popup-close::after {
        position: absolute;
        content: "";
        top: 15px;
        left: 15px;
        width: 20px;
        height: 20px;
        background: #ccc;
        clip-path: polygon( 5% 0, 50% 45%, 95% 0, 100% 5%, 55% 50%, 100% 95%, 95% 100%, 50% 55%, 5% 100%, 0 95%, 45% 50%, 0 5% );
    }

}


@keyframes anim-scroll-right {
    0%   { opacity: 1.0; transform: translateX( 0 ); }
    50%  { opacity: 0.2; transform: translateX( -20% ); }
    100% { opacity: 1.0; transform: translateX( 0 ); }
}


@media (min-width: 769px) {
    .is_sp {
        display: none;
    }
}

@media (max-width: 768px) {
    .is_pc {
        display: none;
    }
}




/**
 * PC用設定
 */
 @media (width >= 768px) {
  .privacy {
      margin: 0 auto;
      padding: 0;
      width: 90%;
      max-width: 960px;
  }

  .privacy > h1{
      margin: 0 auto;
      padding: 0.2em 0;
      color: #fff;
      font-size: 32px;
      font-weight: 700;
      text-align: center;
      background: var(--color-theme);
      border-radius: 20px;
  }

  .privacy .privacy-wrap .privacy-title {
      margin: 2.0em auto 0;
      padding: 0;
      color: var(--fg-color);
      font-size: 16px;
      font-weight: 700;
      text-align: left;
  }

  .privacy .privacy-wrap .privacy-title:first-of-type {
      margin-top: 100px;
  }

  .privacy .privacy-wrap .privacy-txt {
      margin: 0 auto;
      padding: 0;
      color: var(--fg-color);
      font-size: 16px;
      font-weight: 500;
      text-align: left;
  }

  .privacy .privacy-wrap .privacy-lists {
      margin: 0 auto;
      padding: 0;
      color: var(--fg-color);
      font-size: 16px;
      font-weight: 500;
      text-align: left;
  }

  .privacy .privacy-wrap .privacy-lists > li {
      list-style-position: inside;
      text-indent: -1.4em;
      padding-left: 1.4em;
  }
}

@media (max-width: 768px) {
  .privacy > h1{
      margin: 0 auto;
      padding: 0.2em 0;
      color: #fff;
      font-size: 18px;
      font-weight: 700;
      text-align: center;
      background: var(--color-theme);
      border-radius: 15px;
  }

  .privacy .privacy-wrap .privacy-txt {
      margin: 0 auto;
      padding: 0;
      color: var(--fg-color);
      font-size: 16px;
      font-weight: 400;
      text-align: left;
  }

  .privacy .privacy-wrap .privacy-title {
      margin: 2.0em auto 0;
      padding: 0;
      color: var(--fg-color);
      font-size: 16px;
      font-weight: 700;
      text-align: left;
  }

  .privacy {
      margin: 0 auto;
      padding: 0;
      width: 90%;
      max-width: 960px;
  }

  .privacy .privacy-wrap .privacy-lists > li {
      font-size: 16px;
      font-weight: 400;
      list-style-position: inside;
      text-indent: -1.4em;
      padding-left: 1.4em;
  }
}

/* 個別ページ用CSS */
.single-page {
  margin: 0 auto;
  padding: 0;
  width: 90%;
  max-width: 960px;
}

.single-page > h1{
  margin: 0 auto 1.5em;
  padding: 0.2em 0;
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  background: var(--color-theme);
  border-radius: 20px;
}

.single-page .single-page-wrap .single-page-title {
  margin: 2.0em auto 1em;
  padding: 0;
  color: var(--fg-color);
  font-size: 22px;
  font-weight: 700;
  text-align: left;
  border-bottom: 2px var(--color-theme) solid;
}

.single-page .single-page-wrap .single-page-title:first-of-type {
  margin-top: 50px;
}

.single-page .single-page-wrap .single-page-subtitle {
  margin: 1.5em auto 0.6em;
  padding: 0;
  color: var(--color-theme);
  font-size: 18px;
  font-weight: 700;
  text-align: left;
}

.single-page .single-page-wrap .single-page-txt {
  margin: 0 auto;
  padding: 0;
  color: var(--fg-color);
  font-size: 16px;
  font-weight: 500;
  text-align: left;
  line-height: 2;
}

.single-page .single-page-wrap .single-page-txt a {
color: var(--color-theme);
text-decoration: underline;
}

.single-page .single-page-wrap .single-page-lists {
  margin: 0 auto;
  padding: 0;
  color: var(--fg-color);
  font-size: 16px;
  font-weight: 500;
  text-align: left;
}

.single-page .single-page-wrap .single-page-lists > li {
  list-style-position: inside;
  text-indent: -1.4em;
  padding-left: 1.4em;
}

.single-page .single-page-wrap table {
width: 100%;
border-collapse:collapse;
border: 2px #000 solid;
}

.single-page .single-page-wrap table th,
.single-page .single-page-wrap table td {
text-align: left;
padding: 0.6em;
border: 1px #000 solid;
max-width: 550px;
}

.single-page .single-page-wrap table th.plan-head,
.single-page .single-page-wrap table td.plan-head {
border-bottom: 2px #000 solid;
font-weight: bold;
}

.single-page .single-page-wrap table tr:nth-child(2n+1) {
background: #FFF2F2;
}

.single-page .single-page-wrap table th {
border-right: 2px #000 solid;
}

.single-page-img {
    margin-bottom: 0.6em;
}

.single-page-img img {
    border-radius: 8px;
}

.button-wrap {
    margin: 2em auto 1em;
    text-align: center;
}
.button-wrap a {
    display: inline-block;
    width: 100%;
    max-width: 300px;
    background: var(--color-theme);
    text-align: center;
    padding: 5px;
    color: #FFF;
    border-radius: 999px;
    font-size: 16px;
}

@media screen and (max-width: 767px) {
  .single-page > h1{
      margin: 0 auto 1.5em;
      padding: 0.2em 0;
      color: #fff;
      font-size: 18px;
      font-weight: 700;
      text-align: center;
      background: var(--color-theme);
      border-radius: 15px;
  }

  .single-page .single-page-wrap .single-page-txt {
      margin: 0 auto;
      padding: 0;
      color: var(--fg-color);
      font-size: 16px;
      font-weight: 400;
      text-align: left;
  }
  .single-page .single-page-wrap .single-page-txt a {
    word-break: break-all;
  }
  .single-page .single-page-wrap .single-page-txt small {
    line-height: 1.5;
    display:inline-block;
  }

  .single-page .single-page-wrap .single-page-title {
      padding: 0;
      color: var(--fg-color);
      font-size: 20px;
  }

  .single-page {
      margin: 0 auto;
      padding: 0;
      width: 90%;
      max-width: 960px;
  }

  .single-page .single-page-wrap .single-page-lists > li {
      font-size: 16px;
      font-weight: 400;
      list-style-position: inside;
      text-indent: -1.4em;
      padding-left: 1.4em;
  }
}




.index_body, .top_mv {
  font-size: 10px;
}

.index_body ul, .index_body li, .top_mv ul, .top_mv li {
  list-style: none;
}

@media (min-width: 769px) and (max-width: 1200px) {
  .index_body, .top_mv {
    font-size: calc(100vw * 10 / 1200);
  }
}

@media (max-width: 768px) {
  .index_body section p, .top_mv section p {
    font-size: 16px;
  }
}

.index_body {
  max-width: 100%;
}

.index_body img {
  width: auto;
  height: auto;
}

.u_inner {
  max-width: calc(100% - 40px);
  margin: 0 auto;
}

@media (min-width: 769px) {
  .u_inner {
    width: 96em;
  }
}

.top_mv {
  position: relative;
  margin: -20px 0 50px;
}

@media (max-width: 768px) {
  .top_mv {
    margin: -20px 0 30px;
    font-size: calc(100vw * 10 / 375);
  }
}

.top_mv .bg img {
  height: calc(100vh - 183px);
  object-fit: cover;
  width: 100%;
}

@media (max-width: 768px) {
  .top_mv .bg img {
    height: calc(100vh - 167px);
  }
}

.top_mv .catch {
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  text-align: center;
  width: 100%;
}

.top_mv .catch img {
  width: 96.6em;
  display: block;
  margin: 0 auto;
  object-fit: contain;
  height: calc(100vh - 220px);
}

.index_footer {
  margin-bottom: 107px;
}

@media (min-width: 769px) {
  .index_footer {
    margin-bottom: 90px;
  }
}

.fixed_footer {
  position: fixed;
  z-index: 10;
  bottom: 0;
  width: 100%;
  left: 0;
  background: #C93430;
  text-align: center;
}

.fixed_footer dl {
  height: 107px;
}

@media (min-width: 769px) {
  .fixed_footer dl {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    height: 90px;
  }
}

.fixed_footer dt {
  background: #C93430;
  font-size: 16px;
  color: #fff;
  line-height: 3.375;
  font-weight: bold;
}

@media (max-width: 768px) {
  .fixed_footer dt {
    font-size: 15px;
  }
}

.fixed_footer dt img {
  width: 1.125em;
  display: inline-block;
  margin-right: .5em;
}

@media (max-width: 768px) {
  .fixed_footer dt img {
    width: 12px;
  }
}

.fixed_footer dd {
  display: flex;
  gap: 30px;
  justify-content: center;
}

@media (max-width: 768px) {
  .fixed_footer dd {
    gap: 20px;
  }
}

.fixed_footer dd a {
  display: block;
}

.fixed_footer dd img {
  height: 50px;
  width: auto !important;
}

@media (max-width: 768px) {
  .fixed_footer dd img {
    height: 40px;
  }
}

.top_bnr {
  width: 728px;
  max-width: calc(100% - 11px);
  margin: 0 auto;
}

.c_ttl {
  font-size: 3.6em;
  position: relative;
  line-height: 1;
  margin-bottom: 1.5em;
}

@media (max-width: 768px) {
  .c_ttl {
    font-size: 3.2em;
    margin-bottom: 1.2em;
    line-height: 1.2;
  }
  .c_ttl.b {
    text-align: left;
    margin-left: 1.41em;
    text-indent: -1.41em;
  }
}

.c_ttl:before {
  content: '';
  background: url(../images/icon_circle.svg) no-repeat 50%/contain;
  width: 1.11em;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  display: inline-block;
  vertical-align: -.2em;
  margin-right: .3em;
}

.c_btn {
  text-align: center;
  margin-top: 3em;
}

.c_btn a {
  display: inline-block;
  background: #C93430;
  position: relative;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .8em;
  color: #fff;
  font-size: 1.6em;
  width: 15em;
  line-height: 3.75;
  border-radius: 3em;
}

@media (max-width: 768px) {
  .c_btn a {
    font-size: 1.8em;
    width: 10em;
    line-height: 2.27;
    gap: .6em;
  }
}

.c_btn a:after {
  content: '';
  background: url(../images/icon_btn_arrow.svg) no-repeat 50%/contain;
  display: block;
  width: 1.3125em;
  aspect-ratio: 21 / 22;
}

@media (max-width: 768px) {
  .c_btn a:after {
    width: .9em;
  }
}

.c_sec {
  padding: 10em 0;
}

@media (max-width: 768px) {
  .c_sec {
    padding: 4em 0;
  }
}

.top_about {
  margin: 100px 0;
}

@media (min-width: 769px) {
  .top_about .row {
    display: flex;
    justify-content: space-between;
  }
  .top_about .img {
    width: 40%;
  }
  .top_about .desc {
    width: 56.3%;
  }
}

@media (max-width: 768px) {
  .top_about figure {
    margin-top: 3em;
  }
}

.top_about figure + figure {
  margin-top: 3em;
}

.top_about figure img {
  border-radius: 19px;
}

.top_feature {
  background: #FFF2F2;
}

.top_feature .lead {
  text-align: center;
  margin-top: -1.7em;
}

.top_feature .ttl {
  text-align: center;
  font-size: 2.4em;
  border: solid 1px #DDDDDD;
  border-radius: 3em;
  line-height: 2;
  background: #fff;
  color: #C93430;
  width: 20em;
  max-width: 100%;
}

@media (max-width: 768px) {
  .top_feature .ttl {
    font-size: 2em;
    margin-bottom: 1.5em;
  }
}

.top_feature .ttl img {
  display: inline-block;
  margin-right: .7em;
  width: 1.29em;
  vertical-align: -.3em;
}

.top_feature figure img {
  height: 28em;
}

@media (max-width: 768px) {
  .top_feature figure img {
    height: 20em;
  }
}

.top_feature dt {
  font-size: 2em;
  font-weight: bold;
  line-height: 1.3;
  margin-bottom: .5em;
}

.top_feature dd {
  font-size: 1.6em;
}

.top_feature li {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 768px) {
  .top_feature li {
    margin-top: 2em;
  }
}

@media (min-width: 769px) {
  .top_feature li {
    gap: 3em;
  }
}

.top_feature .img {
  display: flex;
  justify-content: space-between;
}

@media (min-width: 769px) {
  .top_feature .img {
    width: 43.3em;
  }
}

@media (max-width: 768px) {
  .top_feature .img figure img {
    height: 12em;
  }
}

@media (max-width: 768px) {
  .top_feature dl {
    width: calc(100% - 11em);
  }
  .top_feature .scan .desc {
    width: calc(100% - 11em);
  }
  .top_feature .scan li:nth-child(2) {
    position: relative;
    margin-top: 5em;
  }
  .top_feature .scan li:nth-child(2) .desc {
    width: calc(100% - 20em);
  }
  .top_feature .scan li:nth-child(2):before {
    content: '';
    position: absolute;
    background: url(../images/icon_arrow_down.png) no-repeat 50%/contain;
    height: 3.2em;
    width: 100%;
    top: -5em;
  }
}

@media (min-width: 769px) {
  .top_feature ul {
    display: flex;
    justify-content: space-between;
  }
  .top_feature .search {
    gap: 3em;
  }
  .top_feature .search li {
    width: 50%;
  }
  .top_feature dl {
    width: 30em;
  }
  .top_feature .scan .desc {
    width: 13em;
  }
  .top_feature .scan li:nth-child(2) {
    width: 58.7em;
    position: relative;
  }
  .top_feature .scan li:nth-child(2) .desc {
    width: 12.4em;
  }
  .top_feature .scan li:nth-child(2):before {
    content: '';
    position: absolute;
    background: url(../images/icon_arrow_right.svg) no-repeat 50%/contain;
    height: 100%;
    width: 4.3em;
    left: -6.5em;
  }
}

.c_slide {
  position: relative;
}

.c_slide .prev, .c_slide .next {
  position: absolute;
  height: 100%;
  background: url(../images/icon_prev.png) no-repeat 50%/contain;
  width: 5.6em;
  top: 0;
  z-index: 2;
  cursor: pointer;
}

@media (max-width: 768px) {
  .c_slide .prev, .c_slide .next {
    width: 4em;
  }
}

.c_slide .prev {
  left: calc(50% - 57.6em);
}

@media (max-width: 768px) {
  .c_slide .prev {
    left: calc(50% - 19.3em);
  }
}

.c_slide .next {
  background-image: url(../images/icon_next.png);
  right: calc(50% - 57.6em);
}

@media (max-width: 768px) {
  .c_slide .next {
    right: calc(50% - 19.3em);
  }
}

.c_slide .pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}

.c_slide .pagination span {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #D9D9D9;
  opacity: 1;
}

.c_slide .pagination .swiper-pagination-bullet-active {
  background: #AAAAAA;
}

.top_rest {
  overflow: hidden;
}

.top_rest .c_slide .prev, .top_rest .c_slide .next {
  width: 4em;
  height: 21.4em;
}

@media (max-width: 768px) {
  .top_rest .c_slide .prev, .top_rest .c_slide .next {
    width: 3em;
  }
}

.top_rest .c_slide .prev {
  background-image: url(../images/icon_prev_b.svg);
}

@media (max-width: 768px) {
  .top_rest .c_slide .prev {
    left: calc(50% - 18.6em);
  }
}

.top_rest .c_slide .next {
  background-image: url(../images/icon_next_b.svg);
}

@media (max-width: 768px) {
  .top_rest .c_slide .next {
    right: calc(50% - 18.6em);
  }
}

@media (max-width: 768px) {
  .top_rest .u_inner.b {
    max-width: 100%;
  }
}

@media (min-width: 769px) {
  .top_rest .u_inner {
    width: 116em;
    overflow: hidden;
    max-width: 100%;
  }
  .top_rest .c_slide {
    padding: 0 10em;
  }
}

.top_rest .swiper-slide {
  width: 28.5em;
  margin: 0 2.625em;
}

.top_rest figure {
  height: 200px;
  overflow: hidden;
}
.top_rest figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 17px;
}

.top_rest ul {
  display: flex;
  gap: .63em;
  margin-bottom: -.6em;
}

.top_rest li {
  width: 3em;
}

.top_rest dt {
  text-align: center;
  font-size: 2.4em;
  font-weight: bold;
  line-height: 1.2;
  margin: 1em 0 .5em;
}

.top_rest dt small {
  display: block;
  color: #C93430;
  font-size: .66em;
}

.top_rest .eval {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.6em;
  gap: .3em;
  margin-bottom: 1em;
}

.top_rest .eval img {
  width: 1.25em;
}

.top_city {
  background: #FFF2F2;
  overflow: hidden;
}

.top_city .swiper-slide {
  width: 34em;
  margin: 0 1.5em;
  background: #fff;
  border-radius: 20px;
  padding: 2em;
}

.top_city figcaption {
  font-size: 2.4em;
  font-weight: bold;
  text-align: center;
  margin-bottom: .6em;
}

.top_city figure img {
  border-radius: 10px;
}

.top_rests {
  margin: 10em 0;
}

@media (max-width: 768px) {
  .top_rests {
    margin: 4em 0;
  }
}

.top_rests p {
  color: #C93430;
  font-weight: bold;
  font-size: 1.8em;
}

@media (max-width: 768px) {
  .top_rests p {
    margin-top: 1.5em;
  }
}

.top_rests li {
  margin-bottom: .6em;
  font-size: 1.6em;
}

@media (max-width: 768px) {
  .top_rests li br {
    display: none;
  }
}

.top_rests a:hover {
  text-decoration: underline;
  opacity: 1;
}

@media (min-width: 769px) {
  .top_rests .row {
    margin-bottom: 4em;
    display: flex;
  }
  .top_rests .row ul {
    width: 25%;
  }
}

/* Prayer Space Section Styling */
.top_rests.prayer-space .c_ttl:before {
  background: url(../images/icon_circle_green.svg) no-repeat 50%/contain;
}

.top_rests.prayer-space p {
  color: #007A40;
}

.top_insta {
  margin: 10em 0 12em;
}

.top_insta ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3em 5em;
}

@media (max-width: 768px) {
  .top_insta ul {
    gap: 1em;
  }
}

.top_insta img {
  border-radius: 1.7em;
  aspect-ratio: 285 / 214;
  object-fit: cover;
}

.top_insta video {
  border-radius: 1.7em;
  aspect-ratio: 285 / 214;
  object-fit: cover;
  max-width: 100%;
}

@media (max-width: 768px) {
  .top_insta img,
  .top_insta video {
    border-radius: 1em;
  }
}

.listed-cta {
    position: fixed;
    left: 40px;
    bottom: 100px;
    border: 6px #C93430 solid;
    color: #C93430;
    font-weight: bold;
    text-align: center;
    width: 140px;
    height: 140px;
    font-size: 16px;
    background: #FFF2F2;
    z-index: 999;
    border-radius: 999px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.listed-cta p {
    line-height: 1.2;
}

.listed-cta u {
    text-decoration-color: #C93430;
    text-decoration-thickness: 2px;
    text-underline-offset: 0.2em;
}

@media (max-width: 1280px) {
    .listed-cta {
        left: 20px;
        width: 120px;
        height: 120px;
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .listed-cta {
        left: 10px;
        bottom: 120px;
        border: 3px #C93430 solid;
        width: 100px;
        height: 100px;
        font-size: 13px;
    }
}

/* レスポンシブ対応 - 店舗詳細画面の画像表示領域 */
@media (max-width: 768px) {
    #information .info-pics #detail-slider-main .main-pic {
        height: 200px; /* モバイル用の固定高さ */
    }
}

@media (max-width: 480px) {
    #information .info-pics #detail-slider-main .main-pic {
        height: 180px; /* 小画面用の固定高さ */
    }
}

/* 画像クリック時のカーソル表示 */
#information .info-pics #detail-slider-main .main-pic {
    cursor: pointer;
}

/* 画像モーダル用スタイル */
.image-modal-swiper img {
    max-width: 100%;
    max-height: 80vh;
    width: auto;
    height: auto;
    object-fit: contain;
    margin: 0 auto;
    display: block;
}

.image-modal-swiper .swiper-button-prev,
.image-modal-swiper .swiper-button-next {
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.image-modal-swiper .swiper-button-prev:after,
.image-modal-swiper .swiper-button-next:after {
    font-size: 20px;
}

.top_video {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 240px;
    height: 135px;
    z-index: 999;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 16px rgba(0, 0, 0, 0.3);
    cursor: pointer;
}
@media (max-width: 1025px) {
  .top_video {
    right: 10px;
    bottom: 100px;
    width: 280px;
    height: 160px;
    border-radius: 7px;
  }
  .top_video video {
    border-radius: 7px;
  }
}
@media (max-width: 480px) {
  .top_video {
    border-radius: 5px;
    width: 160px;
    height: 90px;
    bottom: 120px;
  }
  .top_video video {
    border-radius: 5px;
  }
}

#close-video {
    position: absolute;
    top: 3px;
    right: 3px;
    width: 20px;
    height: 20px;
    background: rgba(255,255,255,0.8);
    color: #000;
    font-size: 20px;
    text-align: center;
    line-height: 18px;
    border-radius: 50%;
    border:0;
    z-index: 999;
}

/* ライトボックス用 */
.video-lightbox {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
}
.video-lightbox.active {
  display: flex;
}
.video-lightbox-content {
  position: relative;
  background: #000;
  border-radius: 12px;
  padding: 20px;
  max-width: 90vw;
  max-height: 90vh;
  box-sizing: border-box;
}
.video-iframe-wrap {
  width: 80vw;
  max-width: 800px;
  aspect-ratio: 16/9;
}
.video-iframe-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 8px;
}
#close-lightbox {
  position: absolute;
  top: 10px; right: 10px;
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.8);
  color: #000;
  font-size: 24px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  text-align: center;
  line-height: 32px;
}
