/* root */
:root {
    font-family: "Noto Sans JP", "Sawarabi Gothic", "Noto Sans", sans-serif;
    letter-spacing: 1px;
    line-break: strict;
    --white: #ffffff;
    --main-bg: #f6f8c7;
    --navy: #003e4e;
    --red: #e83828;
    --orange: #f29600;
    --blue: #009fe8;
}

.wrap {
    word-break: keep-all;
}

.red {
    color: var(--red);
}

.orange {
    color: var(--orange);
}

a {
    text-decoration: none;
    color: inherit;
}

.center {
    text-align: center;
}

.right {
    text-align: right;
}

.bold {
    font-weight: bold;
}

[hx-get]:not(main) {
    cursor: pointer;
}

/* main */
.main-top {
    height: 25rem;
    overflow: hidden;
    position: relative;
    background-image: var(--bg-img);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.main-top::before {
    content: "";
    position: absolute;
    background-color: rgb(51 51 51 / 20%);
    width: 100%;
    height: 100%;
}

.main-top_title {
    position: absolute;
    left: 50%;
    bottom: 50px;
    transform: translateX(-50%);
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    text-align: center;
}

.main-top_title img {
    width: 85px;
    margin: 0 auto;
    display: block;
    margin-bottom: 20px;
}

.main-top_title h3 {
    font-size: 20px;
}

.main-top_title_wh {
    color: var(--white);
}

/* header */
header {
    padding: 1em 4em;
    padding-bottom: 0;
    position: fixed;
    top: 0;
    left: 50%;
    width: 100%;
    height: 128px;
    z-index: 10;
    background-color: var(--white);
    box-shadow: 0 1rem 1rem -1rem #2225;
    transform: translateX(-50%);
    transition: all 400ms cubic-bezier(0.23, 1, 0.32, 1);
}

.header.float {
    top: 2rem;
    padding: 0 1em;
    width: 90%;
    height: 72px;
    border-radius: 50px;
    transition: all 400ms cubic-bezier(0.23, 1, 0.32, 1);
}

.header.float:has(.menu-dropdown input[type="checkbox"]:checked),
.header.float:has(.menu-dropdown:nth-child(3):hover) {
    border-radius: 50px 50px 0 0;
    transition: border-radius 400ms cubic-bezier(0.23, 1, 0.32, 1);
    transition: all 400ms cubic-bezier(0.23, 1, 0.32, 1);
}

.header-wrapper {
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 6fr 4fr;
    grid-template-rows: 1fr;
    gap: 1rem;
    grid-auto-flow: column;
}

.logo-wrapper {
    height: 3.5rem;
    align-self: center;
    justify-self: flex-start;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-menu {
    display: grid;
    /* grid-template-columns: repeat(6, 1fr); */
    grid-auto-flow: column;
}

.menu-dropdown {
    text-align: center;
    border-bottom: 5px solid transparent;
    display: grid;
    justify-items: center;
    align-items: center;
}

.menu-dropdown label {
    position: relative;
    display: block;
    width: 100%;
    font-weight: bold;
    z-index: -1;
}

.menu-dropdown:hover,
.menu-dropdown:has(+ .menu-content:hover) {
    color: var(--orange);
    border-bottom: 5px solid var(--orange);
}

header input[type="checkbox"] {
    display: none;
}

.menu-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    grid-auto-flow: column;
    height: 0;
    overflow: hidden;
    visibility: hidden;
    width: 100%;
    background-color: var(--white);
    position: absolute;
    top: 100%;
    left: 0;
    gap: 5em;
    justify-content: center;
    box-shadow: inset 0 1rem 2rem -1rem #222;
    border-radius: 0 0 50px 50px;
    transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1),
        visibility 800ms linear;
    z-index: 10;
}

.menu-dropdown:hover + .menu-content,
.menu-content:hover {
    padding: 3rem;
    min-height: 30vh;
    height: auto;
    visibility: visible;
}

.menu-item {
    position: relative;
    width: 100%;
    height: 100%;
    color: var(--white);
    text-decoration: none;
}

.menu-item h3 {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
}

.menu-item img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 25px;
}

.nav-buttons {
    /* margin-left: 5rem; */
    display: grid;
    grid-auto-flow: column;
    grid-template-columns: minmax(1rem, 1fr) 3fr 4fr;
    grid-template-rows: 1fr;
    gap: 1rem;
    align-items: center;
}

.language-selector {
    position: relative;
    height: 100%;
    display: grid;
    align-items: center;
}

.language-selector label {
    height: 2rem;
    cursor: pointer;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.language-menu {
    display: grid;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 2;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    background-color: var(--main-bg);
    padding: 1rem;
    text-align: left;
    transition: max-height 400ms cubic-bezier(0.23, 1, 0.32, 1),
        opacity 500ms cubic-bezier(0.23, 1, 0.32, 1);
}

.language-item {
    font-weight: bold;
    padding: 0.5em;
    cursor: pointer;
}

.language-item.selected {
    background-color: var(--navy);
    color: var(--white);
}

.language-item:hover {
    background-color: var(--navy);
    color: var(--white);
}

.language-selector input[type="checkbox"]:checked ~ .language-menu {
    max-height: 250px;
    opacity: 1;
    overflow: hidden;
}

.button-wrapper {
    height: 3rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background-color: var(--navy);
    color: var(--white);
    font-weight: bold;
    padding: 0.8rem 0.4rem;
    /* margin: 0 1rem; */
    border: 3px solid transparent;
    border-radius: 50px;
    transition: color 400ms cubic-bezier(0.23, 1, 0.32, 1),
        border-color 400ms cubic-bezier(0.23, 1, 0.32, 1),
        background-color 400ms cubic-bezier(0.23, 1, 0.32, 1);
}

.button-wrapper img {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    max-height: 100%;
    max-width: 100%;
    padding-right: 0.5rem;
    -webkit-filter: invert(97%) sepia(100%) saturate(0%) hue-rotate(24deg)
        brightness(103%) contrast(105%);
    filter: invert(97%) sepia(100%) saturate(0%) hue-rotate(24deg)
        brightness(103%) contrast(105%);
    transition: brightness 400ms cubic-bezier(0.23, 1, 0.32, 1),
        contrast 400ms cubic-bezier(0.23, 1, 0.32, 1),
        saturate 400ms cubic-bezier(0.23, 1, 0.32, 1);
}

.inquiry .button-wrapper {
    background-color: var(--red);
}

.reservation .button-wrapper:hover {
    background-color: var(--white);
    color: var(--navy);
    border-color: var(--navy);
    transition: color 400ms cubic-bezier(0.23, 1, 0.32, 1),
        border-color 400ms cubic-bezier(0.23, 1, 0.32, 1),
        background-color 400ms cubic-bezier(0.23, 1, 0.32, 1);
}

.reservation .button-wrapper:hover img {
    -webkit-filter: invert(21%) sepia(37%) saturate(1671%) hue-rotate(153deg)
        brightness(84%) contrast(102%);
    filter: invert(21%) sepia(37%) saturate(1671%) hue-rotate(153deg)
        brightness(84%) contrast(102%);
    transition: brightness 400ms cubic-bezier(0.23, 1, 0.32, 1),
        contrast 400ms cubic-bezier(0.23, 1, 0.32, 1),
        saturate 400ms cubic-bezier(0.23, 1, 0.32, 1);
}

.inquiry .button-wrapper:hover {
    background-color: var(--white);
    color: var(--red);
    border-color: var(--red);
    transition: color 400ms cubic-bezier(0.23, 1, 0.32, 1),
        border-color 400ms cubic-bezier(0.23, 1, 0.32, 1),
        background-color 400ms cubic-bezier(0.23, 1, 0.32, 1);
}

.inquiry .button-wrapper:hover img {
    -webkit-filter: invert(20%) sepia(99%) saturate(2923%) hue-rotate(353deg)
        brightness(102%) contrast(82%);
    filter: invert(20%) sepia(99%) saturate(2923%) hue-rotate(353deg)
        brightness(102%) contrast(82%);
    transition: brightness 400ms cubic-bezier(0.23, 1, 0.32, 1),
        contrast 400ms cubic-bezier(0.23, 1, 0.32, 1),
        saturate 400ms cubic-bezier(0.23, 1, 0.32, 1);
}

.hamburger-content-container img,
.logo-wrapper img,
.language-selector img {
    max-width: 100%;
    max-height: 100%;
}

.nav-mobile-dropdown {
    display: none;
}

.hamburger-content {
    display: none;
}

@media screen and (max-width: 1440px) {
    .nav-menu {
        margin: 0;
    }

    .nav-buttons {
        margin: 0;
    }

    .logo-wrapper {
        margin-left: 1rem;
    }
}

@media screen and (max-width: 768px) {
    .nav-buttons,
    .nav-menu {
        display: none;
    }

    .header-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 20vw;
    }

    .nav-mobile-dropdown {
        display: grid;
        grid-template-columns: repeat(2, minmax(2rem, 1fr));
        grid-template-rows: 1fr;
        gap: 0.5rem;
        grid-auto-flow: column;
        justify-content: flex-end;
        align-items: center;
    }

    .language-selector {
        justify-self: end;
        min-width: 2rem;
    }

    .hamburger-container {
        position: relative;
        width: 100%;
        height: 100%;
        cursor: pointer;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .hamburger,
    .hamburger::before,
    .hamburger::after {
        width: 2rem;
        height: 4px;
        display: block;
        position: absolute;
        background-color: #000;
        transition: transform 400ms cubic-bezier(0.23, 1, 0.32, 1);
    }

    .hamburger::before {
        content: "";
        margin-top: -8px;
    }

    .hamburger::after {
        content: "";
        margin-top: 8px;
    }

    .hamburger-text {
        display: none;
    }

    .nav-mobile-dropdown
        input[type="checkbox"]:checked
        ~ .hamburger-container
        .hamburger::before {
        margin-top: -4px;
        transform: rotate(225deg);
    }

    .nav-mobile-dropdown
        input[type="checkbox"]:checked
        ~ .hamburger-container
        .hamburger {
        background: rgba(255, 255, 255, 0);
    }

    .nav-mobile-dropdown
        input[type="checkbox"]:checked
        ~ .hamburger-container
        .hamburger::after {
        margin-top: -4px;
        transform: rotate(-225deg);
    }

    .nav-mobile-dropdown
        input[type="checkbox"]:checked
        ~ .hamburger-container
        .hamburger-text {
        display: block;
        justify-self: center;
        margin-top: 36px;
        font-family: sans-serif;
        font-weight: bold;
    }

    .hamburger-content {
        display: none;
        z-index: 1;
        position: fixed;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        padding: 2rem;
        padding-top: 20vh;
        padding-bottom: 20vh;
        background-color: var(--main-bg);
        gap: 1vh;
        align-items: center;
        justify-items: center;
        font: 1.25rem sans-serif;
        z-index: 9;
        overflow: scroll;
    }

    .hamburger-content a {
        color: #000;
        text-decoration: none;
        font-size: 1rem;
    }

    .hamburger-content-container {
        display: grid;
        grid-auto-flow: column;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: 4rem;
        justify-content: center;
        align-items: center;
        justify-items: center;
        gap: 4rem;
        width: 100%;
    }

    .hamburger-content-container a {
        width: 100%;
        height: 100%;
    }

    .hamburger-content-container a:first-child {
        text-align: right;
    }

    .hamburger-content-container a:nth-child(2) {
        text-align: center;
    }

    .hamburger-content-container a:last-child {
        text-align: left;
    }

    .hamburger-button-container {
        width: 100%;
    }

    .hamburger-button-container .button-wrapper {
        color: var(--white);
        padding: 2rem;
        height: 6rem;
        border-radius: 25px;
    }
}

/* breadcrumbs */

.breadcrumbs-wrap {
    width: 1100px;
    margin: 0 auto;
    max-width: 95%;
}

.breadcrumbs {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 1em;
}

.breadcrumbs li {
    color: var(--orange);
    margin-right: 0.5rem;
    font-size: 13px;
}

.breadcrumbs li:last-child {
    color: black;
    margin-right: 0;
}

.breadcrumbs li:not(:last-child):after {
    content: "▶";
    margin-left: 0.5rem;
    color: var(--orange);
}

/* main-contents */
.main-contents {
    min-height: 100vh;
    background: var(--main-bg);
    padding-top: 50px;
    padding-bottom: 80px;
}

.contents-wrap {
    background: var(--white);
    padding: 50px;
    border-radius: 1em;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.06);
}

.contents-title {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 1em;
}

.contents-title > picture img {
    width: 50px;
}

span.marker {
    background-color: var(--main-bg);
    padding-right: 1rem;
    padding-left: 0.5em;
}

.w1100 {
    width: 1100px;
    max-width: 95%;
    margin: 0 auto;
}

.material-symbols-outlined {
    font-variation-settings: "FILL" 1, "wght" 400, "GRAD" 0, "opsz" 24;

    vertical-align: middle;
}

.midashi.type1 {
    padding: 30px 0 0;
    color: #42210b;
    letter-spacing: 0.04em;
    text-align: center;
}

.midashi.type2 {
    padding: 0 0 30px;
    color: #42210b;
    letter-spacing: 0.04em;
    text-align: center;
    font-size: 0.8rem;
    display: block;
}

.is-small {
    max-width: calc(1160px + 8%);

    padding-right: 4%;
    padding-left: 4%;
    margin: 0 auto;
    padding-bottom: 50px;
}

@media screen and (min-width: 1400px) {
}

@media screen and (max-width: 1100px) {
}

@media screen and (max-width: 768px) {
    .contents-wrap {
        padding: 20px;
    }
}

/* mobile floating footer */
.footer-dummy-wrapper {
    background-color: var(--main-bg);
    position: relative;
    height: 4rem;
}

.mobile-floating-footer {
    display: none;
}

@media screen and (max-width: 768px) {
    .mobile-floating-footer {
        z-index: 10;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 4rem;
        font-size: 1rem;
        font-weight: bold;
        color: white;
        background-color: #29b6b0;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .mobile-floating-footer img {
        max-width: 24px;
        max-height: 24px;
        margin-right: 0.5rem;
    }

    .tel-container,
    .form-container {
        text-decoration: none;
        color: var(--white);
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
        padding: 0 0.5rem;
    }

    .mobile-floating-footer img {
        -webkit-filter: invert(97%) sepia(100%) saturate(0%) hue-rotate(24deg)
            brightness(103%) contrast(105%);
        filter: invert(97%) sepia(100%) saturate(0%) hue-rotate(24deg)
            brightness(103%) contrast(105%);
    }

    .tel-container {
        background-color: #29b6b0;
    }

    .form-container {
        background-color: var(--orange);
    }
}

.static-footer {
    width: 100%;
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-container {
    background-color: #f6f8c7;
    display: grid;
    grid-template-columns: repeat(2, minmax(100px, 1fr));
    grid-template-rows: repeat(2, minmax(200px, 1fr));
    grid-template-areas: "grid grid" "tel form";
    gap: 2rem 0;
    justify-content: center;
    align-items: center;
    justify-items: center;
    padding: 5rem 2rem;
    font-size: 1.3rem;
    font-weight: bolder;
    color: #306366;
}

.link-grid {
    grid-area: grid;
    max-width: 80%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2rem 1rem;
    word-break: keep-all;
    text-align: center;
}

.link-grid-item {
    width: fit-content;
    padding: 0 1rem;
    display: flex;
    justify-items: center;
    justify-content: center;
    align-content: center;
    text-decoration: none;
    color: inherit;
    font-size: 1rem;
}

.contact-number-wrapper {
    justify-self: end;
    margin-right: 5rem;
    position: relative;
    grid-area: tel;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.contact-text {
    position: relative;
    color: #000;
}

.contact-text::before,
.contact-text::after {
    content: "";
    position: absolute;
    --plr: -40%;
    top: 50%;
    transform: translateY(-60%);
    width: 50px;
    height: 6px;
    background-color: #003e4e;
}

.contact-text::before {
    left: var(--plr);
    transform: rotate(45deg);
}

.contact-text::after {
    right: var(--plr);
    transform: rotate(-45deg);
}

.contact-number {
    display: flex;
    flex-direction: row;
    justify-content: center;
    color: #000;
    font-size: 2.5rem;
    gap: 1rem;
}

.contact-icon {
    width: 48px;
    height: 48px;
}

.contact-icon svg {
    max-width: 100%;
    max-height: 100%;
    fill: #003e4e;
}

.contact-form-wrapper {
    justify-self: start;
    margin-left: 3.5rem;
    position: relative;
    grid-area: form;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.contact-form-button {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-items: center;
    gap: 1rem;
    color: #fff;
    padding: 1rem 3rem;
    background-color: #f29600;
    font-size: 1.5rem;
    border-radius: 50px;
    border: 2px solid #f29600;
    cursor: pointer;
}

.contact-form-button-icon {
    width: 48px;
    height: 48px;
}

.contact-form-button-icon svg {
    max-width: 100%;
    max-height: 100%;
    fill: white;
}

.contact-form-button:hover {
    color: #f29600;
    background-color: #fff;
}

.contact-form-button:hover .contact-form-button-icon svg {
    fill: #f29600;
}

.footer-ending-container {
    display: grid;
    grid-template-areas: "logo" "address" "copy";
    gap: 2rem;
    justify-items: center;
    align-content: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
}

.footer-logo-wrapper {
    grid-area: logo;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.logo-icon-wrapper {
    width: 160px;
    height: 160px;
}

.logo-icon-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}

.address-wrapper {
    grid-area: address;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.copyright-wrapper {
    grid-area: copy;
    white-space: nowrap;
    text-align: center;
    font-size: 1rem;
}

@media screen and (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        grid-template-rows: unset;
        grid-template-areas: "grid" "tel" "form";
        gap: 3rem;
    }

    .link-grid {
        max-width: 90%;
        height: unset;
        gap: 1rem;
    }

    .contact-number-wrapper,
    .contact-form-wrapper {
        justify-self: unset;
        margin: 0;
        gap: 0;
    }
    .contact-text::before,
    .contact-text::after {
        display: none;
    }
    .contact-number {
        font-size: 2rem;
    }

    .contact-icon {
        width: 1.5rem;
        height: 1.5rem;
    }

    .contact-text {
        overflow: hidden;
        --plr: 20%;
        font-size: 1.2rem;
    }

    .link-grid-item {
        font-size: 1rem;
    }

    .contact-form-button-icon {
        width: 28px;
        height: 28px;
    }

    .contact-form-button {
        font-size: 1.1rem;
    }
}

/* pages common */
.page-description {
    text-align: center;
    margin-top: 2rem;
    margin-bottom: 5rem;
    font-size: 1.2rem;
    color: #42210b;
    font-weight: bold;
}

.contents-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: start;
    gap: 2rem;
}

.contents-subgrid {
    grid-column: span 3;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    justify-items: center;
}

.contents-grid img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}

.contents-grid-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.contents-grid-item-title {
    width: 100%;
    padding-bottom: 0.5rem;
    text-align: center;
    font-size: 1.2rem;
    border-bottom: 3px solid #ff7d17;
    font-weight: bold;
    color: #42210b;
}

.contents-grid-item-description {
    line-break: strict;
}

.contents-grid-items-img-caption {
    text-align: center;
}

.contents-grid:not(:only-child) {
    margin-bottom: 4rem;
}

.contents-header {
    margin-top: 5rem;
    grid-column: span 3;
    width: 100%;
    background-color: #fce6c8;
    color: #c91018;
    font-weight: bold;
    font-size: 1.2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contents-container {
    margin-bottom: 2rem;
    display: grid;
    gap: 1rem;
}

.contents-table {
    table-layout: fixed;
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #000;
}

.contents-table th {
    background-color: #efefef;
    width: 33%;
}

.contents-table td {
    width: 66%;
}

.contents-table th,
.contents-table td {
    padding: 0.5rem;
    border: 1px solid #000;
}

.contents-table ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contents-table li {
    display: flex;
    align-items: start;
    gap: 0.75rem;
}

.list-numbering {
    width: 1.5rem;
    height: 1.5rem;
    flex-shrink: 0;
    background-color: #009fe8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    line-height: 1;
    color: #fff;
    font-weight: bold;
}

.list-details {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.list-details p {
    margin: 0;
    line-height: 1.4;
}

.list-details p:first-child {
    font-size: 1rem;
    font-weight: bold;
}

.list-details p:last-child {
    font-size: 0.9rem;
    color: #555;
}

.contents-description {
    color: #555;
    margin-bottom: 1rem;
    font-size: 0.8rem;
}

.route-video {
    margin: 0 auto;
    max-width: 100%;
    max-height: 100%;
    height: 700px;
}

.reservation-container,
.availability-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reservation-img-wrapper img,
.availability-img-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    width: 60px;
}

.availability-text,
.reservation-caption,
.availability-caption {
    font-size: 2.5rem;
    font-weight: bolder;
    color: #3aabd2;
}

.availability-text {
    margin-left: 76px;
}

.phone-number {
    font-size: 1.5rem;
    font-weight: bold;
    color: #009fe8;
}

@media screen and (max-width: 768px) {
    .contents-grid {
        grid-template-columns: 1fr;
    }

    .page-description {
        padding: 0 1rem;
        margin-bottom: 2rem;
    }
    .page-description p {
        font-size: 1rem;
    }
    .availability-text,
    .reservation-caption,
    .availability-caption {
        font-size: 1.5rem;
    }
}

/* loading anim */
/* From Uiverse.io by mrhyddenn */
.spinner {
    font-size: 28px;
    position: relative;
    display: inline-block;
    width: 1em;
    height: 1em;
}

.spinner.center {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}

.spinner .spinner-blade {
    position: absolute;
    left: 0.4629em;
    bottom: 0;
    width: 0.074em;
    height: 0.2777em;
    border-radius: 0.0555em;
    background-color: transparent;
    -webkit-transform-origin: center -0.2222em;
    -ms-transform-origin: center -0.2222em;
    transform-origin: center -0.2222em;
    animation: spinner-fade9234 1s infinite linear;
}

.spinner .spinner-blade:nth-child(1) {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
}

.spinner .spinner-blade:nth-child(2) {
    -webkit-animation-delay: 0.083s;
    animation-delay: 0.083s;
    -webkit-transform: rotate(30deg);
    -ms-transform: rotate(30deg);
    transform: rotate(30deg);
}

.spinner .spinner-blade:nth-child(3) {
    -webkit-animation-delay: 0.166s;
    animation-delay: 0.166s;
    -webkit-transform: rotate(60deg);
    -ms-transform: rotate(60deg);
    transform: rotate(60deg);
}

.spinner .spinner-blade:nth-child(4) {
    -webkit-animation-delay: 0.249s;
    animation-delay: 0.249s;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.spinner .spinner-blade:nth-child(5) {
    -webkit-animation-delay: 0.332s;
    animation-delay: 0.332s;
    -webkit-transform: rotate(120deg);
    -ms-transform: rotate(120deg);
    transform: rotate(120deg);
}

.spinner .spinner-blade:nth-child(6) {
    -webkit-animation-delay: 0.415s;
    animation-delay: 0.415s;
    -webkit-transform: rotate(150deg);
    -ms-transform: rotate(150deg);
    transform: rotate(150deg);
}

.spinner .spinner-blade:nth-child(7) {
    -webkit-animation-delay: 0.498s;
    animation-delay: 0.498s;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.spinner .spinner-blade:nth-child(8) {
    -webkit-animation-delay: 0.581s;
    animation-delay: 0.581s;
    -webkit-transform: rotate(210deg);
    -ms-transform: rotate(210deg);
    transform: rotate(210deg);
}

.spinner .spinner-blade:nth-child(9) {
    -webkit-animation-delay: 0.664s;
    animation-delay: 0.664s;
    -webkit-transform: rotate(240deg);
    -ms-transform: rotate(240deg);
    transform: rotate(240deg);
}

.spinner .spinner-blade:nth-child(10) {
    -webkit-animation-delay: 0.747s;
    animation-delay: 0.747s;
    -webkit-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg);
}

.spinner .spinner-blade:nth-child(11) {
    -webkit-animation-delay: 0.83s;
    animation-delay: 0.83s;
    -webkit-transform: rotate(300deg);
    -ms-transform: rotate(300deg);
    transform: rotate(300deg);
}

.spinner .spinner-blade:nth-child(12) {
    -webkit-animation-delay: 0.913s;
    animation-delay: 0.913s;
    -webkit-transform: rotate(330deg);
    -ms-transform: rotate(330deg);
    transform: rotate(330deg);
}

@keyframes spinner-fade9234 {
    0% {
        background-color: #69717d;
    }

    100% {
        background-color: transparent;
    }
}

.spacer {
    height: 100vh;
}

#loading-clone {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1);
    z-index: 9999;
}

.skeleton-loader {
    display: block;
    background: #d1d5db;
    z-index: 9999;
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

@font-face {
    font-family: "Noto Sans JP";
    src: url("NotoSansJP.woff2") format("woff2");
    font-display: swap;
}
