@charset "utf-8";
/*---------------------------------------------------------------------
Parts Style
style.css
-----------------------------------------------------------------------
Copyright 2026 (c) linkpath Allrights Reserved.
Created: linkpath
Created url: https://linkpath.jp/
Coding: Hinako Hayashi
Last Update: 2026.02.25
---------------------------------------------------------------------*/
/*===========================================================
    font-size
===========================================================*/
.section-title {
    font-size: 180%;
}
.link-btn {
    font-size: 150%;
}
.h-menu a span {
    font-size: 140%;
}
.booking-btn span {
    font-size: 130%;
}
.f-menu a span {
    font-size: 120%;
}
.h-menu a.h-menu__btn span,
.info-btn a span,
.scroll-bar span {
    font-size: 110%;
}
.h-menu a span small,
.f-menu a span small {
    font-size: 60%;
}
.h-logo span {
    font-size: 27.5%;
}

/*===========================================================
    parts
===========================================================*/
/* wbr */
.wbr {
word-break: keep-all;
overflow-wrap: break-word;
}

/* br */
br.pc {
    display: none;
}

/* none */
.none {
    display: none;
}
.sp-none {
    display: none;
}

/* link-btn */
.link-btn {
    max-width: 350px;
    width: 10em;
    letter-spacing: 0.1em;
    text-indent: 0.1em;
    text-align: center;
    border-radius: 200px;
    padding: 0.5em;
    margin: 0 auto;
    position: relative;
    transition: all 0.3s;
}
.link-btn:hover {
    transform: translateX(5px);
}
.link-btn svg {
    width: 2em;
    position: absolute;
    top: 50%;
    right: -1em;
    transform: translateY(-70%);
}

/* mask */
.mask {
    max-width: 350px;
    width: 100%;
    display: inline-block;
    margin: 0 auto;
    position: relative;
    vertical-align: middle;
}
.mask-svg {
    width: 100%;
    height: 100%;
    display: block;
}
.morph-path {
    transform: scale(1);
    transform-origin: center;
}

/* parts-border */
.parts-border {
    width: 5em;
    height: 2px;
    display: block;
    border-radius: 100px;
    transform: rotate(90deg);
    margin: 3em auto;
}

/* parts-marker */
.parts-marker {
    display: inline-block;
    border-radius: 200px;
    padding: 0.5em;
}

/* parts-circle */
#parts-circle {
    height: 2em;
}
#parts-circle g circle:nth-child(2) {
    opacity: 0.7;
}
#parts-circle g circle:nth-child(3) {
    opacity: 0.4;
}
#parts-circle g .st1,
#parts-circle g .st2 {
    isolation: isolate;
}

/* parts-twinkle */
.parts-twinkle {
    height: 1em;
}

/* read-more */
.hide-text {
    display: none;
    cursor: pointer;
}
.read-btn {
    cursor: pointer;
}

/* height-more */
/* --- リスト全体のコンテナ --- */
.height-more {
    position: relative;
    max-height: 280px;
    overflow: hidden;
    padding-bottom: 4em !important;
    transition: max-height 0.5s ease-in-out;
}

/* 開いた状態 */
.height-more.is-open {
    max-height: 2000px;
}
.height-more::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: linear-gradient(transparent, var(--color-base));
    transition: opacity 0.3s;
    pointer-events: none;
}
.height-more.is-open::after {
    opacity: 0;
}
.height-btn {
    min-width: 12em;
    width: fit-content;
    text-align: center;
    display: block;
    border-radius: 200px;
    user-select: none;
    cursor: pointer;
    padding: 0.5em 1em;
    position: absolute;
    bottom: 1em;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    transition: all 0.3s;
}
.height-btn:hover {
    transform: translate(-50%, -5px);
}

/* line-dots */
.line-dots {
    display: -webkit-box;
    text-box: unset;
    -webkit-box-orient: vertical;

    overflow: hidden;
}
.line-dots.one {
    -webkit-line-clamp: 1;
}
.line-dots.two {
    -webkit-line-clamp: 2;
}
.line-dots.three {
    -webkit-line-clamp: 3;
}

/* scroll-slider */
.scroll-slider {
    width: 100%;
    padding-bottom: 5em;
    position: relative;
}
.scroll-item-wrap {
    position: static !important;
}
.scroll-slider.is-centered {
    padding-bottom: 0;
}
.scroll-slider.is-centered .scroll-item-wrap {
    width: fit-content;
    margin: 0 auto;
}
.scroll-slide:hover {
    opacity: 1;
}
/*slider-scrollbar*/
.scroll-slider .slider-scrollbar {
    max-width: 1350px;
    width: 90% !important;
    position: absolute;
    left: 50% !important;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    bottom: 2em;
    z-index: 2;
}
.scroll-slider .slider-scrollbar::before {
    content: "";
    display: block;
    width: 100%;
    height: 3px;
    background: var(--color-main);
    border-radius: 100px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}
.scroll-slider .slider-btn {
    aspect-ratio: 1 / 1;
    background-color: var(--color-main);
    border-radius: 50%;
    cursor: pointer;
    position: relative;
}
.scroll-slider .slider-start {
    font-weight: 600;
    position: absolute;
    bottom: -2em;
    left: 0;
}
.scroll-slider .slider-goal {
    font-weight: 600;
    position: absolute;
    bottom: -2em;
    right: 0;
    display: flex;
    align-items: flex-end;
    gap: 5px;
}
.scroll-slider .slider-goal img {
    width: 1em;
    height: auto;
}

/* scroll-bar */
.scroll-bar {
    writing-mode: vertical-rl;
    position: relative;
    padding-bottom: 110px;
    margin: 0 auto;
}
.scroll-bar::before {
    animation: scroll 2s infinite;
    background: var(--color-main);
    bottom: 0;
    content: "";
    height: 100px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    width: 1px;
}
@keyframes scroll {
    0% {
        transform: scale(1, 0);
        transform-origin: 0 0;
    }
    50% {
        transform: scale(1, 1);
        transform-origin: 0 0;
    }
    51% {
        transform: scale(1, 1);
        transform-origin: 0 100%;
    }
    100% {
        transform: scale(1, 0);
        transform-origin: 0 100%;
    }
}

/*===========================================================
    header
===========================================================*/
body::before {
    content: "";
    width: 100%;
    height: 100vh;
    height: 100lvh;
    background-color: var(--color-base);
    background-image: linear-gradient(90deg, var(--color-grad__purple__pastel));
    position: fixed;
    bottom: 0;
    left: 0;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s;
    z-index: 96;
}
body.h-active::before {
    opacity: 1;
}
/* h-logo */
.h-logo {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 97;
    transition: all 0.3s;
}
.h-logo:hover {
    opacity: 0.6;
}
.h-logo__sp {
    width: 100%;
}
.h-logo__pc {
    display: none;
}
.h-logo span {
    white-space: nowrap;
    display: none;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 3.75em;
}

body.s-active .h-logo {
    transform: translateY(-0.5em);
}

/* header */
header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    transition: all 0.3s;
    z-index: 98;
}
header.s-active {
    transform: translateY(-1em);
}
header::before {
    content: "";
    width: 100%;
    height: 1em;
    background: var(--color-base);
    position: absolute;
    left: 0;
    top: 0;
}
header.s-active::before {
    height: 1.5em;
}
header > .wave-parts {
    display: none;
}

/* h-nav */
.h-nav {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 0.5em;
    position: fixed;
    top: 3em;
    left: 0;
    transition: all 0.3s;
}

/* h-menu */
.h-menu {
    max-width: 500px;
    width: 100%;
    height: calc(100vh - 7em);
    height: calc(100dvh - 7em);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    align-content: flex-start;
    gap: 1.5em;
    padding: 2em;
    padding-bottom: 2em;
    padding-top: 0;
    position: fixed;
    top: 7em;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s;
    overflow-y: scroll;
}
header.h-active .h-menu {
    opacity: 1;
    pointer-events: auto;
}
.h-menu li {
    width: 100%;
}
.h-menu a {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 200px;
    padding: 1em;
    padding-left: 2em;
    transition: all 0.3s;
}
.h-menu a:hover {
    transform: translateY(-5px);
}
.h-menu a span small {
    font-weight: 500;
    padding-left: 0.5em;
}
.h-menu a svg {
    height: 2em;
}

/* h-menu__btn */
.h-menu li:has(.h-menu__btn) {
    width: calc(50% - 0.75em);
}
.h-menu a.h-menu__btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.5em;
    border-radius: 1em;
    padding: 1em;
}
.h-menu a.h-menu__btn small {
    border-radius: 200px;
    padding: 0.5em 1em;
}
.h-menu a.h-menu__btn span {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.h-menu a.h-menu__btn span svg {
    height: 3em;
}

/* booking-btn */
.booking-btn {
    height: 3em;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5em;
    border-radius: 200px;
    padding: 0 0.75em;
    position: relative;
    transition: all 0.3s;
    z-index: 2;
}
.booking-btn:hover {
    transform: translateY(-5px);
}
.booking-btn svg {
    height: 1.75em;
}
.booking-btn span {
    font-weight: 500;
    white-space: nowrap;
}

/* h-btn */
.h-btn {
    display: flex;
    gap: 0.5em;
    position: relative;
    z-index: 2;
}

/* contact-btn */
.contact-btn {
    width: 3em;
    height: 3em;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: all 0.3s;
}
.contact-btn:hover {
    transform: translateY(-5px);
}
.contact-btn svg {
    height: 1.75em;
}

/* hb */
.hb {
    width: 3em;
    height: 3em;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 0.5em;
    border-radius: 50%;
    transition: all 0.3s;
}
.hb:hover {
    opacity: 0.6;
}
.hb li {
    width: 1.5em;
    height: 2px;
    border-radius: 200px;
    transform-origin: left;
    transition: all 0.3s;
}
.hb li:nth-child(2) {
    width: 1em;
}
header.h-active .hb li:nth-child(1) {
    transform: rotate(45deg) translate(0, -0.3em);
}
header.h-active .hb li:nth-child(2) {
    width: 1.5em;
    transform: rotate(-45deg)  translate(0, 0.3em);
}

@media screen and (max-width: 376px) {
/* h-menu */
.h-menu {
    gap: 1em;
}
.h-menu a {
    padding: 0.5em 1em;
}
}

/*===========================================================
    wrap
===========================================================*/
/* section */
section {
    max-width: 1350px;
    width: 90%;
    gap: 2em;
    padding: 3em 0;
    margin: 0 auto;
}
.section-title {
    width: 100%;
    text-align: center;
    background-image: url(../img/title_back.webp);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    padding: 1.5em 2em;
    padding-top: 1em;
}
.section-title.text-accent {
    background-image: url(../img/title_back_2.webp);
}

/* slider */
.one-slider,
.two-slider {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1em;
}
.one-slider .swiper-wrapper,
.two-slider .swiper-wrapper {
    width: 100%;
}
.swiper-slide {
    transition: all 0.3s;
}
.swiper-slide:hover {
    opacity: 0.7;
}

/* slide-btns */
.slide-btns {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1em;
}
.slide-btn {
    width: 4em;
    display: block;
    transition: all 0.3s;
}
.slide-btn:hover {
    opacity: 0.7;
}
.slide-btn__next {
    transform: scale(-1, 1);
}

/* slide-dots */
.slide-dots {
    width: fit-content !important;
    display: flex;
    justify-content: flex-start;
    gap: 1em;
}
.slide-dot {
    width: 0.75em;
    height: 0.75em;
    border-radius: 50%;
    background: var(--color-main);
    transition: all 0.3s;
}
.slide-dot:hover {
    opacity: 0.7;
}
.slide-dot.is-active {
    width: 2em;
    border-radius: 200px;
}

/*===========================================================
    article-info
===========================================================*/
.section-info {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.info-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 1.5em;
}

/* info-btn */
.info-btn {
    max-width: 810px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1.5em;
}
.info-btn li{
    width: calc(50% - 0.75em);
}
.info-btn a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.5em;
    border-radius: 1em;
    padding: 1em;
    transition: all 0.3s;
}
.info-btn a:hover {
    transform: translateY(-5px);
}
.info-btn a small {
    border-radius: 200px;
    padding: 0.5em 1em;
}
.info-btn a span {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.info-btn a span svg {
    height: 3em;
}
.info-btn a > svg {
    height: 2em;
}

/* access-content */
.access-content {
    max-width: 810px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5em;
}
.access-map {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 1em;
    overflow: hidden;
}
.access-map iframe {
    width: 100%;
    height: 100%;
    display: block;
}
.access-detail {
    text-align: center;
}
.access-detail dt {
    font-weight: 500;
}
.access-detail dd {
    font-weight: 500;
    padding-top: 1em;
}
.access-time {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.5em;
    border-radius: 1em;
    padding: 1em;
    margin-top: 1em;
}
.access-time dt {
    min-width: 10em;
    text-align: center;
    border-radius: 1em;
    padding: 0.5em 1em;
    margin-top: -2em;
}
.access-time dd {
    text-box: unset;
}

/*===========================================================
    footer
===========================================================*/
footer {
    margin-top: -1.5px;
    position: relative;
}

/* f-top */
footer > .wave-parts {
    display: none;
}
.f-top {
    margin-bottom: -1.5px;
}

/* f-nav */
.f-nav {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3em;
    padding: 3em 0;
    padding-top: 0;
}

/* f-logo */
.f-logo {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1em;
}
.f-logo img {
    max-width: 300px;
    width: 80%;
}

/* f-sns */
.f-sns {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1em;
}
.f-sns a {
    height: 4em;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    aspect-ratio: 1 / 1;
    transition: all 0.3s;
}
.f-sns a:hover {
    transform: translateY(-5px);
}
.f-sns a svg {
    height: 60%;
    display: block;
}

/* f-menu */
.f-menu {
    max-width: 500px;
    width: 90%;
    display: flex;
    flex-wrap: wrap;
    gap: 2em;
    margin: 0 auto;
}
.f-menu li {
    width: calc(50% - 1em);
}
.f-menu a {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5em;
    padding-left: 1em;
    position: relative;
    transition: all 0.3s;
}
.f-menu a:hover {
    opacity: 0.7;
}
.f-menu a:before {
    content: "";
    width: 0.25em;
    height: 100%;
    border-radius: 200px;
    background: var(--color-main);
    position: absolute;
    top: 0;
    left: 0;
}
.f-menu a span {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 0.25em;
}
.f-menu a span small {
    font-weight: 500;
}
.f-menu a svg {
    height: 2em;
}

.f-menu li.f-menu__policy {
    width: 100%;
    padding-top: 2em;
}
.f-menu li.f-menu__policy a {
    justify-content: center;
    padding: 0;
}
.f-menu li.f-menu__policy a::before {
    content: none;
}
.f-menu li.f-menu__policy a svg {
    height: 1em;
}

/* f-btn */
.f-btn {
    max-width: 250px;
    width: 90%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1em;
    margin: 0 auto;
}
.f-btn li {
    width: 100%;
}
.f-btn a {
    width: 100%;
    height: 6em;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5em;
    clip-path: polygon(10% 0, 90% 0, 100% 20%, 100% 80%, 90% 100%, 10% 100%, 0 80%, 0 20%);
    padding: 2.5em 1.5em;
    position: relative;
    isolation: isolate;
    transition: all 0.3s;
}
.f-btn a:hover {
    transform: translateY(-5px);
}
.f-btn a::before {
    content: "";
    width: calc(100% - 3px);
    height: calc(100% - 3px);
    clip-path: polygon(10% 0, 90% 0, 100% 20%, 100% 80%, 90% 100%, 10% 100%, 0 80%, 0 20%);
    background: var(--color-base);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}
.f-btn a span {
    font-weight: 500;
}
.f-btn a svg {
    height: 2em;
}

/* c-copy */
.c-copy {
    width: 100%;
    text-align: center;
    padding: 2em;
}


@media screen and (min-width: 481px) {
/*===========================================================
    font-size
===========================================================*/
.h-logo span {
    font-size: 45%;
}

/*===========================================================
    parts
===========================================================*/

/*===========================================================
    header
===========================================================*/
/* h-logo */
.h-logo {
    width: 180px;
    left: 50%;
    top: 1.5em;
    transform: translateX(-50%);
    z-index: 99;
}
body.s-active .h-logo {
    transform: translateX(-50%) translateY(-0.5em);
}
.h-logo__sp {
    display: none;
}
.h-logo__pc {
    display: block;
}

.h-logo span {
    display: block;
    bottom: -1.25em;
}

/* header */
header {
    background: var(--color-base);
}
header > .wave-parts.sp {
    display: block !important;
}

/* h-nav */
.h-nav {
    position: static;
    padding: 2em 0.5em;
    padding-bottom: 1em;
}

/* h-menu */
.h-menu {
    height: calc(100vh - 8em);
    height: calc(100dvh - 8em);
    top: 8em;
}

/*===========================================================
    wrap
===========================================================*/
/* section */
section {
    gap: 3em;
    padding: 5em 0;
}

/*===========================================================
    footer
===========================================================*/
/* f-top */
.f-top {
    display: none;
}
footer > .wave-parts.sp {
    display: block !important;
}

/* f-nav */
.f-nav {
    padding-top: 3em;
}
}

@media screen and (min-width: 960px) {
/*===========================================================
    font-size
===========================================================*/
.info-btn a span {
    font-size: 150%;
}

.info-btn a small {
    font-size: 110%;
}

/*===========================================================
    parts
===========================================================*/
/* none */
.pc-none {
    display: none;
}
.sp-none {
    display: block;
}

/* br */
br.pc {
    display: inline-block;
}
br.sp {
    display: none;
}

/* parts-border */
.parts-border {
    margin: 4em auto;
}

/*===========================================================
    header
===========================================================*/
/* header */
header > .wave-parts.sp {
    display: none !important;
}

/* h-logo */
.h-logo {
    left: 1em;
    transform: none;
}

body.s-active .h-logo {
    transform: translateY(-0.5em);
}

/* h-nav */
.h-nav {
    justify-content: flex-end;
    gap: 1.2em;
    padding: 2em 1em;
    padding-bottom: 1em;
}

/* h-menu */
.h-menu {
    max-width: 810px;
    padding-top: 3em;
}
.h-menu li {
    width: calc(50% - 1em);
}

/* h-btn */
.h-btn {
    gap: 1em;
}

/*===========================================================
    wrap
===========================================================*/
/* section */
section {
    gap: 4em;
    padding: 6em 0;
}

/*===========================================================
    article-info
===========================================================*/
.info-content {
    max-width: 1080px;
    width: 100%;
    flex-direction: row-reverse;
}
.info-btn, .access-content {
    max-width: 100%;
}

/* info-btn */
.info-btn {
    width: calc(40% - 0.75em);
}
.info-btn li {
    width: 100%;
}
.info-btn a {
    flex-wrap: wrap;
    flex-direction: row;
    gap: 1em;
}
.info-btn a small {
    max-width: 20em;
    width: 80%;
    font-weight: 500;
    text-align: center;
}
.info-btn a span {
    flex-direction: row;
    gap: 1em;
}
.info-btn a span svg {
    height: 2.5em;
}

/* access-content */
.access-content {
    width: calc(60% - 0.75em);
    align-items: flex-start;
}
.access-map {
    aspect-ratio: 16 / 9;
}
.access-detail {
    text-align: left;
}
.access-time {
    align-items: flex-start;
    padding: 1em 2em;
}
.access-time dt {
    width: fit-content;
    margin-left: -1em;
}
.access-content .link-btn {
    margin: 0 auto 0 0;
}

/*===========================================================
    footer
===========================================================*/
footer > .wave-parts.sp {
    display: none !important;
}

/* f-nav */
.f-nav {
    align-items: flex-start;
    position: relative;
}

/* f-logo */
.f-logo {
    align-items: flex-start;
}

/* f-sns */
.f-sns {
    justify-content: flex-start;
}

/* f-menu */
.f-menu {
    max-width: 750px;
    width: 60%;
    position: absolute;
    top: 3em;
    right: 0;
    padding-right: clamp(5%, calc((100vw - 1350px) / 2), 9999px);
    padding-right: clamp(5%, calc((100lvw - 1350px) / 2), 9999px);
}
.f-menu li {
    width: calc(100% / 4 - 2em * 3 / 4);
}
.f-menu a svg {
    display: none;
}

.f-menu li.f-menu__policy {
    width: 100%;
    padding-top: 2em;
}
.f-menu li.f-menu__policy a {
    justify-content: flex-end;
}
.f-menu li.f-menu__policy a svg {
    display: block;
}

/* f-btn */
.f-btn {
    max-width: 550px;
    gap: 2em;
}
.f-btn li {
    width: calc(50% - 1em);
}
}


@media screen and (min-width: 1450px) {
/*===========================================================
    font-size
===========================================================*/
.h-menu a span {
    font-size: 120%;
}

/*===========================================================
    parts
===========================================================*/

/*===========================================================
    header
===========================================================*/
body::before {
    display: none;
}

/* h-nav */
.h-nav {
    padding: 1em;
}

/* h-menu */
.h-menu {
    max-width: fit-content;
    width: fit-content;
    height: fit-content;
    justify-content: flex-end;
    gap: 0 1.5em;
    background: var(--color-base);
    padding: 0;
    padding-top: 1em;
    position: static;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    overflow-y: hidden;
}
.h-menu li {
    width: fit-content;
}
.h-menu a {
    width: fit-content;
    gap: 1.2em;
    background: none;
    border-radius: 0;
    border: none;
    box-shadow: none;
    padding: 0;
}
.h-menu a span {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 0.25em;
}
.h-menu a span small {
    padding-left: 0;
}

/* h-menu__btn */
.h-menu a.h-menu__btn {
    display: none;
}

/* booking-btn */
.booking-btn {
    margin-top: 1em;
}

/* contact-btn */
.contact-btn {
    margin-top: 1em;
}

/* hb */
.hb {
    display: none;
}
}