@charset "utf-8";

/* ========================================
   Base
======================================== */
body {
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

:root {
    --page-gutter: clamp(16px, 3vw, 35px);
    --content-width: 1000px;
    --wide-width: 1400px;
    --content-container: min(100%, var(--content-width));
    --wide-container: min(100%, var(--wide-width));
    --content-container-gutter: min(calc(100% - (var(--page-gutter) * 2)), var(--content-width));
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    overflow-x: visible;
}

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

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    font-size: clamp(1.5rem, 2.5vw, 2.25rem);
}

h2 {
    font-size: clamp(1.25rem, 3.255vw, 1.75rem);
}

h3 {
    font-size: clamp(1rem, 2.6042vw, 1.25rem);
}

.wrapper {
    padding-inline: var(--page-gutter);
}

.sp {
    display: none;
}

.pc {
    display: inline-block;
}

/* ========================================
   Common Centered Containers
======================================== */
.header_inner,
.osusume_inner,
.facilityicon_map,
.about-access_inner,
.footer_inner,
.footer_information,
.footer_banner {
    margin-inline: auto;
}

/* ========================================
   Header
======================================== */
.header {
    position: absolute;
    top: clamp(16px, 2.5vw, 35px);
    left: var(--page-gutter);
    right: var(--page-gutter);
    z-index: 10;
}

.header_inner {
    width: var(--wide-container);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: clamp(16px, 3vw, 32px);
}

.logo {
    flex: 0 1 auto;
}

.logo img {
    width: clamp(120px, 24vw, 380px);
    height: auto;
}

.nav {
    flex: 1 1 auto;
    min-width: 0;
}

.nav ul {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: center;
    list-style: none;
    gap: clamp(8px, 1.2vw, 20px);
    margin: 0;
    padding: 0;
    width: 100%;
    min-width: 0;
}

.nav li {
    flex: 0 1 auto;
    min-width: 0;
}

.nav a {
    display: block;
}

.nav a img {
    display: block;
    width: auto;
    height: clamp(20px, 3.1vw, 30px);
    max-width: 100%;
}

.nav_logo_center a img {
    height: clamp(30px, 4vw, 50px);
}


.nav_toggle {
    display: none;
    appearance: none;
    border: 0;
    background: transparent;
    padding: 0;
    margin: 0;
    cursor: pointer;
    position: relative;
    z-index: 30;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
}

.nav_toggle span {
    position: absolute;
    left: 50%;
    width: 24px;
    height: 2px;
    background-color: #673e16;
    border-radius: 999px;
    transform: translateX(-50%);
    transition: transform 0.3s ease, opacity 0.3s ease, top 0.3s ease;
    transform-origin: center;
}

.nav_toggle span:nth-child(1) {
    top: 14px;
}

.nav_toggle span:nth-child(2) {
    top: 21px;
}

.nav_toggle span:nth-child(3) {
    top: 28px;
}

.nav_toggle.is-open span:nth-child(1) {
    top: 21px;
    transform: translateX(-50%) rotate(45deg);
}

.nav_toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.nav_toggle.is-open span:nth-child(3) {
    top: 21px;
    transform: translateX(-50%) rotate(-45deg);
}

.sticky_header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

.sticky_header.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.sticky_header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 100vw;
    height: 125px;
    transform: translateX(-50%);
    background-image: url("images/header_wave.png?v=20260327");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 100% 125px;
    z-index: 0;
    pointer-events: none;
}

.sticky_header_inner {
    width: min(calc(100% - (var(--page-gutter) * 2)), var(--wide-width));
    margin: 0 auto;
    min-height: 125px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 20px 0 0;
    gap: clamp(12px, 1.8vw, 20px);
    position: relative;
    z-index: 1;
}

.sticky_header_inner::after {
    content: none;
}

.sticky_header_logo img {
    width: clamp(140px, 16vw, 200px);
    height: auto;
}

.sticky_header_nav {
    flex: 1 1 auto;
    min-width: 0;
}

.sticky_header_nav ul {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: center;
    list-style: none;
    gap: clamp(8px, 1vw, 16px);
    margin: 0;
    padding: 4px 0 0;
    width: 100%;
    min-width: 0;
}

.sticky_header_nav a {
    display: block;
    text-decoration: none;
}

.sticky_header_nav a img {
    display: block;
    width: auto;
    height: clamp(18px, 1.9vw, 30px);
    max-width: 100%;
}

.sticky_header_nav .nav_logo_center a img {
    height: clamp(30px, 4vw, 50px);
}

.sticky_header_nav li {
    flex: 0 1 auto;
    min-width: 0;
}

/* ========================================
   Top
======================================== */
.top {
    background-image: url("images/top_background-image260327.jpg?v=20260326");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    max-width: 1400px;
    width: 100%;
    min-height: min(680px, 48.57vw);
    padding: clamp(110px, 12vw, 176px) clamp(16px, 3vw, 35px) clamp(40px, 6vw, 70px);
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    position: relative;
}


/* ========================================
   Osusume
======================================== */
.osusume {
    position: relative;
    z-index: 1;
    width: 100%;
    margin: 0 auto;
    padding: clamp(48px, 6vw, 70px) var(--page-gutter);
    background: transparent;
}

.osusume_facility_wrap {
    position: relative;
    width: 100%;
    margin: 0 auto;
}

.osusume_facility_wrap::after {
    content: "";
    position: absolute;
    top: 30%;
    bottom: 0;
    left: 50%;
    width: 100vw;
    transform: translateX(-50%);
    background-image: url("images/facilityicon_background-image.png?v=20260326");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    pointer-events: none;
    -webkit-mask-image: linear-gradient(to bottom,
            black 0%,
            black 88%,
            rgba(0, 0, 0, 0.6) 98%,
            transparent 100%);
    mask-image: linear-gradient(to bottom,
            black 0%,
            black 88%,
            rgba(0, 0, 0, 0.6) 98%,
            transparent 100%);
}

.osusume::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: calc(-2 * clamp(48px, 6vw, 70px));
    left: 50%;
    width: 100vw;
    transform: translateX(-50%);
    background-image: url("images/osusume_background-image.png?v=20260326");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
    pointer-events: none;
    -webkit-mask-image: linear-gradient(to bottom,
            transparent 0%,
            rgba(0, 0, 0, 0.6) 10%,
            black 20%,
            black 70%,
            rgba(0, 0, 0, 0.4) 85%,
            transparent 100%);
    mask-image: linear-gradient(to bottom,
            transparent 0%,
            rgba(0, 0, 0, 0.6) 10%,
            black 20%,
            black 70%,
            rgba(0, 0, 0, 0.4) 85%,
            transparent 100%);
}

.osusume_inner {
    position: relative;
    z-index: 1;
    width: var(--content-container);
    margin: 0 auto;
}

.osusume_heading {
    text-align: center;
    margin-bottom: clamp(28px, 5vw, 40px);
    justify-items: center;
}

.osusume_heading img {
    width: clamp(42px, 4vw, 58px);
    margin-bottom: clamp(12px, 2vw, 20px);
}

.osusume_heading h2 img {
    display: block;
    width: clamp(114px, 22vw, 214px);
    height: auto;
}

.osusume_posts {
    display: grid;
    grid-template-columns: minmax(0, 490px) minmax(0, 490px);
    justify-content: space-between;
    gap: clamp(16px, 2vw, 20px);
    align-items: start;
    margin-bottom: clamp(36px, 6vw, 60px);
}

.osusume_maincard,
.osusume_card {
    background: rgba(255, 255, 255, 0.92);
    width: 100%;
    margin: 0 auto;
}

.osusume_maincard {
    border-radius: 30px;
    padding: clamp(12px, 1.4vw, 14px) clamp(12px, 1.8vw, 16px) clamp(20px, 3vw, 28px);
    min-height: 0;
    max-width: 490px;
    aspect-ratio: 49 / 63;
}

.osusume_maincard .osusume_thumb,
.osusume_card .osusume_thumb {
    margin: 0 auto;
}

.osusume_card {
    border-radius: 20px;
    padding: 10px 12px 18px;
    max-width: 240px;
    aspect-ratio: 24 / 31;
}

.osusume_cardLink {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.osusume_thumb {
    border-radius: 18px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    width: 100%;
    background: #f3f0e7;
    flex: 0 0 auto;
}

.osusume_thumb--main {
    width: 100%;
    max-width: 460px;
}

.osusume_thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.osusume_cardBody {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    justify-content: space-between;
}

.osusume_maincard .osusume_cardBody {
    min-height: 0;
}

.osusume_cardText {
    margin: 0;
    color: #673e16;
    font-family: "Zen Old Mincho", serif;
    font-size: clamp(0.95rem, 1.6vw, 1.125rem);
    font-weight: 700;
    letter-spacing: 0;
    text-align: justify;
}

.osusume_card .osusume_cardText {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: calc(1.5em * 2);
    line-height: 1.5;
}

.osusume_maincard .osusume_cardText {
    line-height: 1.6;
}

.osusume_cardDate {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.4rem;
    margin-top: 14px;
    color: #7b6a54;
    font-size: clamp(0.75rem, 1vw, 13px);
}

.osusume_cardDate::before {
    content: "";
    display: block;
    width: 15px;
    height: 15px;
    background-image: url("images/osusume_carddate.png?v=20260326");
    background-size: contain;
    background-repeat: no-repeat;
    flex-shrink: 0;
}

.osusume_subgrid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 240px));
    justify-content: space-between;
    gap: clamp(10px, 1.2vw, 14px);
    width: 100%;
}

.osusume_subgrid .osusume_card {
    justify-self: stretch;
}

.osusume_snsLinks {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: clamp(12px, 2vw, 18px);
}

.osusume_snsButton {
    width: min(100%, 340px);
    padding: clamp(14px, 1.5vw, 16px) clamp(16px, 2vw, 22px);
    border-radius: 10px;
    text-align: center;
    text-decoration: none;
    color: #ffffff;
    font-weight: 700;
    font-size: clamp(0.9rem, 1.3vw, 1rem);
    line-height: 1.4;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-family: "Zen Old Mincho", serif;
}

.osusume_subText {
    font-size: clamp(0.8rem, 2vw, 1rem);
}

.osusume_snsButton--instagram {
    background: #ff7a00;
}

.osusume_snsButton--instagram:hover {
    background: #ffb347;
}

.osusume_snsButton--instagram::before {
    content: "";
    width: 20px;
    height: 20px;
    background-image: url("images/Instagramicon260327.png");
    background-size: contain;
    background-repeat: no-repeat;
    flex-shrink: 0;
}

.osusume_snsButton--instagram::after {
    content: "";
    width: 16px;
    height: 16px;
    background-image: url("images/linkicon.png?v=20260326");
    background-size: contain;
    background-repeat: no-repeat;
    flex-shrink: 0;
}

.osusume_snsButton--facebook {
    background: #3977f0;
}

.osusume_snsButton--facebook:hover {
    background: #5b8df5;
}

.osusume_snsButton--facebook::before {
    content: "";
    width: 20px;
    height: 20px;
    background-image: url("images/facebookicon.png?v=20260326");
    background-size: contain;
    background-repeat: no-repeat;
    flex-shrink: 0;
}

.osusume_snsButton--facebook::after {
    content: "";
    width: 16px;
    height: 16px;
    background-image: url("images/linkicon.png?v=20260326");
    background-size: contain;
    background-repeat: no-repeat;
    flex-shrink: 0;
}

/* ========================================
   Facility
======================================== */
.facilityicon {
    position: relative;
    z-index: 1;
    width: var(--wide-container);
    margin: 0 auto;
    padding: clamp(56px, 7vw, 80px) var(--page-gutter);
    background: transparent;
}

.facilityicon_inner,
.facilityicon_heading {
    position: relative;
    z-index: 1;
}

.facilityicon_map {
    width: var(--content-container);
    max-width: 100%;
}

.facilityicon_map>img {
    width: 100%;
    display: block;
    margin-bottom: clamp(24px, 5vw, 42px);
}

.facilityicon_map_grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: clamp(16px, 2.5vw, 34px);
    row-gap: clamp(16px, 2.5vw, 34px);
    align-items: start;
}

.facilityicon_map_flex {
    display: grid;
    grid-template-columns: clamp(72px, 9vw, 110px) minmax(0, 1fr);
    column-gap: clamp(12px, 2vw, 20px);
    align-items: start;
}

.facilityicon_map_flex img {
    object-fit: contain;
    display: block;
    grid-column: 1;
    grid-row: 1 / span 2;
    width: 100%;
    max-width: 110px;
    height: auto;
}

.map_title {
    grid-column: 2;
    grid-row: 1;
    color: #7fb37c;
    font-family: "Zen Old Mincho", serif;
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: 0.075em;
}

.map_content {
    grid-column: 2;
    grid-row: 2;
    display: block;
    margin: 0;
    color: #673e16;
    font-family: "Zen Old Mincho", serif;
    font-size: clamp(0.8rem, 1.2vw, 1rem);
    font-weight: 500;
    line-height: 1.7;
    letter-spacing: 0.015em;
}

/* ========================================
   About / Access
======================================== */

.about-access_wrap {
    position: relative;
    display: grid;
    overflow: hidden;
}

.about-access_bg,
.about-access {
    grid-area: 1 / 1;
}

.about-access_bg {
    position: relative;
    z-index: 0;
    align-self: stretch;
    height: 100%;
}

.about-access_bg img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-access {
    position: relative;
    z-index: 1;
    width: 100%;
    padding-top: clamp(40px, 4vw, 100px);
    padding-inline: var(--page-gutter);
}

.about-access_inner,
.about__heading {
    position: relative;
    z-index: 1;
}

.about-access_inner {
    width: var(--content-container);
    margin: 0 auto clamp(40px, 6vw, 80px);
    display: grid;
    grid-template-columns: minmax(0, 480px) minmax(0, 1fr);
    gap: clamp(20px, 3vw, 36px);
    align-items: start;
    padding-bottom: clamp(40px, 6vw, 80px);
    padding-inline: 0;
}

table {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    border-collapse: separate;
    border-spacing: 2px;
    table-layout: auto;
    color: #673e16;
    font-family: "Zen Old Mincho", serif;
}

table td {
    background-color: #fff;
    border: none;
    color: #673e16;
    font-size: clamp(0.875rem, 1.15vw, 1rem);
    line-height: 1.5;
    vertical-align: top;
    padding: clamp(6px, 1vw, 12px) clamp(6px, 1vw, 12px);
    word-break: break-word;
}

table td.bc {
    width: clamp(72px, 20%, 96px);
    background-color: #79b27b;
    color: #ffffff;
    white-space: nowrap;
}

.hours_cell {
    padding: 0;
}

.hours_item {
    position: relative;
    padding: clamp(0.8rem, 2.0833vw, 1rem);
    line-height: 1.55;
}

.hours_item:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 0;
    border-bottom: 1px dashed #673e16;
}

.access_text {
    color: #673e16;
    font-family: "Zen Old Mincho", serif;
    line-height: 1.8;
    margin-bottom: clamp(16px, 3vw, 27px);
}

.access_titl {
    font-size: clamp(1rem, 1.8vw, 1.375rem);
    font-weight: 700;
}

.access_subtitl,
.access_car,
.access_walk {
    font-size: clamp(0.8rem, 1.4vw, 1.125rem);
    font-weight: 500;
    position: relative;
}

.access_car::before,
.access_walk::before {
    content: "";
    width: 20px;
    height: 20px;
    background-size: contain;
    background-repeat: no-repeat;
    display: inline-block;
    margin-right: 8px;
    vertical-align: text-bottom;
}

.access_car::before {
    background-image: url("images/access_car.png?v=20260326");
}

.access_walk::before {
    background-image: url("images/access_walk.png?v=20260326");
}

.access_iframe iframe {
    width: 100%;
    max-width: 480px;
    height: auto;
    aspect-ratio: 480 / 356;
    display: block;
}

/* ========================================
   Bottom Visual
======================================== */
/* .bottom_images {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    margin-top: clamp(-222px, -8vw, -72px);
    overflow: hidden;
    z-index: -3;
}

.bottom_images_bg img {
    display: block;
    width: 100%;
    height: auto;
    margin: 0;
}

.bottom_images_bg {
    width: 100%;
} */

/* ========================================
   Footer
======================================== */

/* ========================================
   Footer color
======================================== */
.footer {
    width: 100%;
    color: #fff;
    background-color: #845039;
    position: relative;
    z-index: 2;
    isolation: isolate;
    overflow: visible;
        font-family: "Zen Old Mincho", serif;

}

.footer_yellow {
    width: 100%;
    color: #fff;
    background-color: #b78439;
    position: relative;
    z-index: 2;
    isolation: isolate;
    overflow: visible;
     margin-top: 2px;
}

.footer_beige {
    width: 100%;
    color: #fff;
    background-color: #917040;
    position: relative;
    z-index: 2;
    isolation: isolate;
    overflow: visible;
}

.footer_blue {
    width: 100%;
    color: #fff;
    background-color: #070760;
    position: relative;
    z-index: 2;
    isolation: isolate;
    overflow: visible;
}

.footer::before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: none;
    height: 130px;
    display: block;
    background-image: url("images/footer_background-image.png?v=20260326");
    background-size: 100% 130px;
    background-repeat: no-repeat;
    background-position: center top;
    pointer-events: none;
    z-index: 1;
    top: 0;
}

.footer_yellow::before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: none;
    height: calc(max(1400px, 100vw) * 130 / 1400);
    display: block;
    background-image: url("images/footer_background-image_yellow.png?v=20260326");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center top;
    pointer-events: none;
    z-index: 1;
    top: calc(max(1400px, 100vw) * -80 / 1400);
}

.footer_beige::before {
 content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: none;
    height: calc(max(1400px, 100vw) * 130 / 1400);
    display: block;
    background-image: url("images/footer_background-image_beige.png?v=20260326");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center top;
    pointer-events: none;
    z-index: 1;
    top: calc(max(1400px, 100vw) * -80 / 1400);
}


.footer_blue::before {
   content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: none;
    height: calc(max(1400px, 100vw) * 130 / 1400);
    display: block;
    background-image: url("images/footer_background-image_blue.png?v=20260326");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center top;
    pointer-events: none;
    z-index: 1;
    top: calc(max(1400px, 100vw) * -80 / 1400);
}

.footer>* {
    position: relative;
    z-index: 3;
}

/* ========================================
======================================== */


.footer_side_sns {
    max-width: 1400px;
    position: absolute;
    top: 40px;
    right: max(0px, calc((100vw - 1400px) / 2));
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: clamp(10px, 1.6vw, 28px);
    gap: clamp(6px, 0.9vw, 12px);
    font-family: "Zen Old Mincho", serif;
    padding-right: clamp(0rem, 4vw, 3.125rem);
}

.footer_side_snsIcons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer_side_snsLink {
    width: clamp(16px, 1.4vw, 26px);
    height: clamp(16px, 1.4vw, 26px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer_side_snsLink img {
    width: clamp(10px, 1vw, 16px);
    height: auto;
}

.footer_side_copy {
    margin-top: auto;
    margin-bottom: clamp(6px, 1vw, 14px);
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: clamp(6px, 0.55vw, 8px);
    line-height: 1.35;
    letter-spacing: 0.05em;
}

.footer a,
.footer .nav a,
.footer .footer_inner,
.footer .footer_inner * {
    color: #fff;
}

.footer_inner,
.footer_information,
.footer_banner {
    position: relative;
    z-index: 1;
    padding-inline: 0;
}

.footer_inner {
    width: var(--content-container-gutter);
    margin: 0 auto;
    align-items: center;
    padding-top: 40px;
}

.footer_inner .logo img {
    width: clamp(150px, 18vw, 240px);
}

.footer_inner nav a img {
    display: block;
    width: auto;
    height: clamp(1rem, 2.6042vw, 1.25rem);
    max-width: 100%;
}

.footer_contents {
    position: relative;
}

.footer_contents p {
    margin: 0;
    font-family: "Zen Old Mincho", serif;
    font-size: clamp(12px, 0.95vw, 14px);
    font-weight: 400;
    line-height: 2;
    letter-spacing: 0.06em;
}

.footer_contents span {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: "Zen Old Mincho", serif;
    font-size: clamp(16px, 1.4vw, 20px);
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: 0.06em;
}

.footer_contents p span::before {
    content: "";
    width: clamp(20px, 1.6vw, 26px);
    height: clamp(20px, 1.6vw, 26px);
    background-image: url("images/footer-telephone-icon.png?v=20260326");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: block;
    flex-shrink: 0;
}

.footer_contents img {
    width: min(100%, clamp(180px, 16vw, 220px));
    height: auto;
    border-radius: 8px;
    margin-top: clamp(18px, 2vw, 26px);
}

.footer_information {
    width: var(--content-container-gutter);
    margin: 24px auto 50px;
    display: grid;
    grid-template-columns: fit-content(220px) minmax(0, 1fr);
    align-items: start;
        column-gap: clamp(1rem, 3.4167vw, 5.25rem);
}

.footer_info_grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    row-gap: 24px;
    column-gap: clamp(1.5rem, 1.5vw, 2.125rem);
    align-items: start;
    font-family: "Zen Old Mincho", serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 24.5px;
    letter-spacing: 0.075em;
}

.footer_info_block {
    display: grid;
    grid-template-columns: max-content minmax(0, 1fr);
    align-items: start;
    column-gap: 20px;
}

.footer_info_block--facility {
    width: 100%;
}

.footer_info_block--hours {
    width: 100%;
}

.footer_info_heading {
    margin: 0;
    white-space: nowrap;
    font-family: "Zen Old Mincho", serif;
    font-size: clamp(12px, 0.95vw, 14px);
    font-weight: 700;
    line-height: 1.75;
    letter-spacing: 0.06em;
}

.footer_info_body {
    min-width: 0;
}

.footer_schedule_list,
.footer_facility_list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer_schedule_list li,
.footer_facility_list li {
    position: relative;
    margin: 0;
    padding-left: 10px;
    font-family: "Zen Old Mincho", serif;
    font-size: clamp(10px, 0.82vw, 12px);
    font-weight: 400;
    line-height: 2;
    letter-spacing: 0.06em;
    word-break: break-word;
}

.footer_schedule_list li+li,
.footer_facility_list li+li {
    margin-top: 6px;
}

.footer_schedule_list li::before,
.footer_facility_list li::before {
    content: "";
    position: absolute;
    top: 0.8em;
    left: 0;
    width: 7px;
    height: 7px;
    background-color: #62ad78;
    border-radius: 50%;
}

.footer_schedule_row {
    display: flex;
    align-items: baseline;
    width: 100%;
}

.footer_schedule_label {
    display: grid;
    grid-template-columns: max-content minmax(24px, 1fr);
    align-items: baseline;
    flex: 1 1 auto;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    font-family: "Zen Old Mincho", serif;
    font-size: clamp(10px, 0.82vw, 12px);
    font-weight: 400;
    line-height: 2;
    letter-spacing: 0.06em;
}

.footer_schedule_label::after {
    content: "";
    display: block;
    min-width: 24px;
    width: 100%;
    border-bottom: 2px dotted #fff;
    transform: translateY(-2px);
}

.footer_schedule_labelText {
    display: block;
    width: max-content;
    max-width: 100%;
    min-width: 0;
    padding-right: 8px;
}

br.md {
    display: none;
}

@media screen and (max-width: 868px) and (min-width: 769px) {
    .footer_schedule_label {
        white-space: normal;
    }

    .footer_schedule_labelText br.md {
        display: initial;
    }
}

.footer_schedule_time {
    flex: 0 0 auto;
    white-space: nowrap;
    text-align: right;
    font-family: "Zen Old Mincho", serif;
    font-size: clamp(10px, 0.82vw, 12px);
    font-weight: 400;
    line-height: 2;
    letter-spacing: 0.06em;
        padding-left: 8px;
}

.footer_schedule_time.sp {
    display: none !important;
    overflow: hidden;
    white-space: nowrap;
    text-align: center;
    letter-spacing: 2px;
}

.footer_schedule_time:last-child {
    white-space: nowrap;
}

.footer_schedule_row .footer_schedule_time:first-of-type {
    display: none;
}

.footer_closed_text {
    margin: 20px 0 0;
    font-family: "Zen Old Mincho", serif;
    font-size: clamp(10px, 0.82vw, 12px);
    font-weight: 400;
    line-height: 2;
    letter-spacing: 0.06em;
    word-break: break-word;
}

.footer_info_block--hours .footer_info_heading:nth-of-type(2) {
    grid-column: 1;
    grid-row: 2;
    margin-top: 20px;
}

.footer_info_block--hours .footer_info_heading:nth-of-type(2)+.footer_info_body {
    grid-column: 2;
    grid-row: 2;
}

.footer_banner {
    width: var(--content-container-gutter);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    align-items: start;
    padding-bottom: 75px;
}

.footer_banner a {
    display: block;
    min-width: 0;
}

.footer_banner img {
    width: 100%;
    height: auto;
    display: block;
}


/* ========================================
   Section Title (Image)
======================================== */

.osusume_heading h2,
.about__heading h2 {
    line-height: 0;
    margin: 0;
}

/* おすすめ情報 */
.osusume_heading h2 img {
    display: block;
    width: 100%;
    max-width: 166px;
    height: auto;
    margin: 0 auto;
}

/* 施設案内 */
.facilityicon_heading h2 img {
    display: block;
    width: 100%;
    max-width: 114px;
    height: auto;
    margin: 0 auto;
}

/* 彩菜茶屋について */
.about__heading h2 img {
    display: block;
    width: 100%;
    max-width: 214px;
    height: auto;
    margin: 0 auto;
}

/* 交通アクセス */
.access .about__heading h2 img {
    display: block;
    width: 100%;
    max-width: 159px;
    height: auto;
    margin: 0 auto;
}

@media screen and (max-width: 1126px) {
    .footer_side_sns {
        display: flex;
        position: static;
        background: transparent;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        width: min(calc(100% - 40px), 1400px);
        margin: 0 auto;
        padding: 0 0 clamp(28px, 8vw, 60px);
        gap: 0;
        column-gap: clamp(12px, 5.333vw, 20px);
    }

    .footer_side_snsIcons {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 20px;
        flex: 0 0 auto;
    }

    .footer_side_snsLink {
        width: 30px;
        height: 30px;
        flex: 0 0 auto;
    }

    .footer_side_snsLink img {
        max-width: clamp(24px, 5.867vw, 44px);
        width: 100%;
        height: auto;
    }

    .footer_side_copy {
        writing-mode: horizontal-tb;
        font-family: "Zen Old Mincho", serif;
        font-size: clamp(12px, 2.667vw, 20px);
        font-weight: 700;
        line-height: 1.6;
        letter-spacing: 0.04em;
        margin: 0;
        margin-left: auto;
        -webkit-text-size-adjust: 100%;
        text-size-adjust: 100%;
        -webkit-font-smoothing: antialiased;
    }
}