@charset "UTF-8";

/*------------------------
resmin
----------------------------*/
html {
    -webkit-text-size-adjust: 100%;
    box-sizing: border-box;
    -moz-tab-size: 4;
    tab-size: 4;
    word-break: normal
}

*,
:after,
:before {
    background-repeat: no-repeat;
    box-sizing: inherit
}

:after,
:before {
    text-decoration: inherit;
    vertical-align: inherit
}

* {
    margin: 0;
    padding: 0
}

hr {
    color: inherit;
    height: 0;
    overflow: visible
}

details,
main {
    display: block
}

summary {
    display: list-item;
}

small {
    font-size: 80%
}

[hidden] {
    display: none
}

abbr[title] {
    border-bottom: none;
    text-decoration: underline;
    text-decoration: underline dotted
}

a {
    background-color: transparent
}

a:active,
a:hover {
    outline-width: 0
}

code,
kbd,
pre,
samp {
    font-family: monospace, monospace
}

pre {
    font-size: 1em
}

b,
strong {
    font-weight: bolder
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline
}

sub {
    bottom: -.25em
}

sup {
    top: -.5em
}

table {
    border-color: inherit;
    text-indent: 0
}

iframe {
    border-style: none
}

input {
    border-radius: 0
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
    height: auto
}

[type=search] {
    -webkit-appearance: textfield;
    outline-offset: -2px
}

[type=search]::-webkit-search-decoration {
    -webkit-appearance: none
}

textarea {
    overflow: auto;
    resize: vertical
}

button,
input,
optgroup,
select,
textarea {
    font: inherit
}

optgroup {
    font-weight: 700
}

button {
    overflow: visible
}

button,
select {
    text-transform: none
}

[role=button],
[type=button],
[type=reset],
[type=submit],
button {
    cursor: pointer
}

[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner,
button::-moz-focus-inner {
    border-style: none;
    padding: 0
}

[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner,
button:-moz-focusring {
    outline: 1px dotted ButtonText
}

[type=reset],
[type=submit],
button,
html [type=button] {
    -webkit-appearance: button
}

button,
input,
select,
textarea {
    background-color: transparent;
    border-style: none
}

a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline-width: 0
}

select {
    -moz-appearance: none;
    -webkit-appearance: none
}

select::-ms-expand {
    display: none
}

select::-ms-value {
    color: currentColor
}

legend {
    border: 0;
    color: inherit;
    display: table;
    max-width: 100%;
    white-space: normal
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    color: inherit;
    font: inherit
}

[disabled] {
    cursor: default
}

img {
    border-style: none
}

progress {
    vertical-align: baseline
}

[aria-busy=true] {
    cursor: progress
}

[aria-controls] {
    cursor: pointer
}

[aria-disabled=true] {
    cursor: default
}

/*-----------------------------------------------------------------------
:root
-------------------------------------------------------------------------*/
:root {
    --main-color: #4A3428;
    --sab-color: #fff;
    --base-color: #F3EFED;
    --en-title: "Explora", serif;
    --ja-title: "Noto Serif JP", serif;
    --normal-font: 1.6rem;
}

/*-----------------------------------------------------------------------
共通css
-------------------------------------------------------------------------*/

html {
    font-size: 62.5%;
}

body {
    font-size: var(--normal-font);
    color: var(--main-color);
    font-family: "Noto Serif JP", serif;
    letter-spacing: 0.5px;
    background: var(--base-color);
    background-image: url(../img/bg-.jpg);
    background-repeat: repeat-y;
    background-size: contain;
    font-weight: normal;
}

a {
    text-decoration: none;
    color: var(--main-color);
}

li {
    list-style: none;
}

summary {
    list-style: none;
    cursor: pointer;
}

summary::-webkit-details-marker {
    display: none;
}

/*-------------------------------------------------------------------------
レイアウト
--------------------------------------------------------------------------*/
.section {
    padding-top: 80px;
    padding-bottom: 80px;
    padding-inline: clamp(40px, 3.18vw, 80px);
    max-width: 1400px;
    width: 100%;
    margin-inline: auto;
}

/*------------------------------------------------------------------------
共通パーツ
-------------------------------------------------------------------------*/
.section-title {
    font-family: var(--en-title);
    font-size: clamp(8rem, 6.359vw, 16rem);
    font-weight: normal;
    line-height: 1;
    display: inline-flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 80px;
}

.section-title span {
    font-family: var(--ja-title);
    font-size: clamp(1.8rem, 1.192vw, 3rem);
}

.section-title__left {
    rotate: -90deg;
    align-items: flex-end;
}

.section-title__right {
    align-items: flex-start;
    color: var(--sab-color);
    rotate: 90deg;
}

.section-2n {
    margin-top: 80px;
    margin-bottom: 80px;
    background: var(--main-color);
    position: relative;
}


.section-2n::before {
    position: absolute;
    content: "";
    background-image: url("../img/bg.png");
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
    opacity: 0.3;
    inset: 0;
}

/*-------------------------------------------------------------------------
各セクション
-------------------------------------------------------------------------*/
/*------------------------
ヘッダー
----------------------------*/
.header-cta {
    background: var(--main-color);
    border-radius: 50%;
    width: 100px;
    height: 100px;
    padding: 24px;
    position: fixed;
    right: 200px;
    top: 40px;
    z-index: 9999;
    transition: 0.3s ease;
}

.header-cta:hover {
    opacity: 0.5;
}

.header-cta img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hamburger-line__wrapper {
    width: 100px;
    height: 100px;
    background: var(--main-color);
    border-radius: 50%;
    position: fixed;
    right: 80px;
    top: 40px;
    z-index: 9999;
}

.hamburger-line {
    display: inline-block;
    position: absolute;
    width: 50px;
    height: 1px;
    background: var(--sab-color);
    left: 50%;
    transform: translateX(-50%);
    transition: 0.5s ease;
}

.hamburger-line:nth-child(1) {
    top: 45px;
}

.hamburger-line:nth-child(2) {
    top: 58px;
}

.hamburger-line__wrapper.is-open .hamburger-line:nth-child(1) {
    rotate: 15deg;
    top: 58px;
}

.hamburger-line__wrapper.is-open .hamburger-line:nth-child(2) {
    rotate: -15deg;
    top: 45px;
}

.header-nav {
    width: 30vw;
    position: fixed;
    height: 100vh;
    background: var(--base-color);
    right: 0;
    top: 0;
    z-index: 9998;
    padding-block: 200px;
    text-align: right;
    padding-inline: 80px;
    opacity: 0;
    transform: translateX(30vw);
    transition: opacity 1s ease, transform 0.7s ease;
}

.header-nav::before {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url("../img/bg.svg");
    background-repeat: no-repeat;
    background-size: cover;
    content: "";
    top: 0;
    left: 0;
    opacity: 0.3;
}

.header-nav.is-open {
    opacity: 1;
    transform: translateX(0);
}

.header-nav__item {
    margin-bottom: 80px;
}

.header-nav__item:nth-child(4) {
    margin-bottom: 0;
}

.header-nav__item a {
    font-size: 8rem;
    font-family: var(--en-title);
    display: flex;
    flex-direction: column;
}

.header-nav__item span {
    font-size: 1.6rem;
    font-family: var(--ja-title);
}

/*------------------------
ヒーロー
----------------------------*/
.hero-container {
    padding-top: 160px;
    display: flex;
    align-items: flex-start;
    height: 100vh;
    justify-content: space-between;
    gap: clamp(40px, 3.18vw, 80px);
    padding-inline: clamp(40px, 3.18vw, 80px);
    padding-bottom: 80px;
}

.hero-inner__left {
    width: 70%;
    /* height: stretch; */
}

.hero-inner__img {
    position: relative;
    /* height: fit-content; */
    width: 100%;
    overflow: hidden;
}

.hero-inner__img::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background-image: url("../img/bg.png");
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;
    background-position: center;
    opacity: 0.5;
    inset: 0;
    /* background-color: var(--main-color); */
}

.hero-inner__left img {
    width: 100%;
    height: calc(100vh - 240px);
    object-fit: cover;
    filter: blur(5px);
    display: block;
}

.logo-container {
    display: flex;
    align-items: flex-end;
    font-size: clamp(2.5rem, 1.987vw, 5rem);
}

.logo-container img {
    width: clamp(100px, 7.949vw, 200px);
}

.site-title__wrapper {
    position: absolute;
    top: 0;
    color: var(--sab-color);
    top: 29%;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    z-index: 2;
}

.site-title {
    display: flex;
    font-size: clamp(3.5rem, 2.782vw, 7rem);
    font-weight: normal;
}

.site-title__span {
    position: relative;
}

.site-title__span::before {
    position: absolute;
    content: "";
    display: inline-block;
    width: 30px;
    height: 30px;
    background-image: url("../img/mame.svg");
    top: -31px;
    transform: rotate(-20deg);
}

.site-title__span:nth-child(1)::before {
    left: 53px;
}

.site-title__span:nth-child(2)::before {
    left: 29px;
}

.site-title__span:nth-child(1) {
    padding-left: 32px;
    padding-right: 8px;
}

.site-title__span:nth-child(2) {
    padding-right: 32px;
    padding-left: 8px;
}

.site-title__wrapper p {
    text-align: center;
    padding-top: 16px;
    font-size: clamp(1.8rem, 0.795vw, 2rem);
}

.hero-cta {
    position: absolute;
    bottom: 15px;
    right: 10px;
    white-space: nowrap;
    background: var(--base-color);
    padding-inline: 80px;
    padding-block: 24px;
    z-index: 2;
    color: var(--main-color);
    transition: 0.3s ease;
}

.hero-cta:hover {
    color: var(--sab-color);
    background: var(--main-color);
}

.hero-cta span {
    display: inline-block;
    width: 70px;
    height: 1px;
    background: var(--main-color);
    position: absolute;
    bottom: 25px;
    right: 0;
    transition: 0.3s ease;
}

.hero-cta:hover span {
    background: var(--sab-color);

}

.hero-cta span::before {
    position: absolute;
    content: "";
    width: 140px;
    height: 1px;
    background: var(--main-color);
    bottom: -5px;
    right: 0;
    transition: 0.3s ease;
}

.hero-cta:hover span::before {
    background: var(--sab-color);
}

.hero-nav__item a {
    font-size: clamp(5rem, 3.975vw, 10rem);
    font-family: var(--en-title);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    transition: 0.3s ease;
}

.hero-nav__item a:hover {
    opacity: 0.5;
    transform: scale(1.1);
}

.hero-nav__item span {
    font-size: 1.6rem;
    font-family: var(--ja-title);
}

.hero-inner__right {
    height: calc(100vh - 240px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hero-nav__inner {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: calc(100vh - 440px);
}

/*------------------------
コンセプト
----------------------------*/
.concept-container {
    display: flex;
    align-items: flex-start;
    gap: clamp(40px, 3.18vw, 80px);
}

.concept-inner__image {
    width: 100%;
    height: 20vh;
    object-fit: cover;
    object-position: center;
    margin-block: 80px;
}

/*------------------------
ギャラリー
----------------------------*/


.gallery-container .section {
    display: flex;
    align-items: flex-start;
    gap: clamp(40px, 3.18vw, 80px);
    position: relative;
}

.slider {
    order: -1;
    width: 100%;
    height: 100%;
}

.slider__item.active {
    opacity: 1;
    overflow: hidden;
    position: relative;
    transition: 0.9s ease;
    filter: none;
}

.slider__item {
    opacity: 0;
    position: absolute;
}

.slider__item img {
    width: 100%;
    height: 50vh;
    object-fit: cover;
}

.slider-counter {
    position: absolute;
    color: var(--sab-color);
    bottom: 30px;
    font-family: var(--en-title);
    font-size: 4rem;
    line-height: 1;
    border-top: 1px solid;
    padding-top: 3px;
}

#current {
    opacity: 1;
    transition: 0.3s ease;
}

#current.is-change {
    opacity: 0;
}

/*------------------------
こだわり
----------------------------*/
.commitment-container .section-title {
    margin-top: 160px;
}

.commitment-container {
    display: flex;
    align-items: flex-start;
    gap: clamp(40px, 3.18vw, 80px);
}

.commitment-item:nth-child(1) {
    padding-bottom: 80px;
}

.commitment-item__image {
    width: 100%;
    height: 20vh;
    object-fit: cover;
}

.commitment-item__title {
    font-size: 3rem;
    font-weight: normal;
    position: relative;
}

.commitment-item__title span {
    position: absolute;
    top: 0;
    left: 0;
    transform: translateY(-50%) translateX(-50%);
    font-family: var(--en-title);
    font-size: 10rem;
    z-index: -1;
    opacity: 0.4;
}

.commitment-item__text {
    padding-block: 40px;
}

/*------------------------
メニュー
----------------------------*/
.menu-container .section {
    display: flex;
    align-items: flex-start;
    max-width: unset;
    justify-content: center;
    gap: clamp(40px, 3.18vw, 80px);
    /* padding-inline: 80px; */
}

.menu-container .section-title {
    order: 1;
    margin-top: 20px;
}

.menu-item {
    color: var(--sab-color);
    margin-bottom: 150px;
    padding-bottom: 150px;
    position: relative;
}

.menu-item::before,
.menu-item::after {
    position: absolute;
    content: "";
    display: inline-block;
    height: 1px;
    background: var(--sab-color);
    left: 0;
    transform: rotate(-3deg);
    opacity: 0.5;
}

.menu-item:nth-child(2n)::before,
.menu-item:nth-child(2n)::after {
    transform: rotate(3deg);
    right: 0;
    left: unset;
}

.menu-item:nth-child(3)::before,
.menu-item:nth-child(3)::after {
    display: none;
}

.menu-item::before {
    width: 100%;
    bottom: 0;
}

.menu-item::after {
    width: 50%;
    bottom: -21px;
}

.menu-item:nth-child(3) {
    margin-bottom: 0;
}

.menu-item__flex {
    display: flex;
    align-items: center;
    gap: 80px;
}

.menu-item__title {
    font-size: 3rem;
    font-weight: normal;
    position: relative;
    padding-bottom: 40px;
    margin-left: 40px;
}

.menu-item__title span {
    font-family: var(--en-title);
    position: absolute;
    top: 0;
    left: 0;
    transform: translateY(-50%) translateX(-50%);
    font-size: 10rem;
    opacity: 0.3;
}

.menu-item__image__wrapper {
    position: relative;
    overflow: hidden;
    max-width: 500px;
    width: 100%;
    height: 250px;
    flex-shrink: 0;
}

.menu-item__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.menu-item:nth-child(2n) .menu-item__wrapper {
    order: 1;
}

/*------------------------
CTA
----------------------------*/
.cta-container.section {
    padding-inline: 0;
}

.cta-btn {
    width: 100%;
    display: flex;
    justify-content: center;
    color: var(--main-color);
}

.cta-btn__wrapper {
    position: relative;
    border: 1px solid;
    max-width: 1400px;
    width: 100%;
    height: 20vh;
    border-color: var(--main-color);
}

.cta-btn__wrapper::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: url("../img/main.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    filter: blur(2px);
}

.cta-btn__wrapper::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: var(--main-color);
    top: 0;
    left: 0;
    opacity: 0.3;
    background-image: url("../img/bg.svg");
    background-repeat: no-repeat;
    background-size: cover;
}

.cta-btn__text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    padding-inline: 24px;
    padding-block: 8px;
    font-size: 2rem;
}

.cta-btn__text::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: var(--sab-color);
    z-index: -1;
    filter: blur(10px);
    border-radius: 100px;
}

.cta-btn__span {
    position: absolute;
    color: var(--sab-color);
    bottom: 32px;
    right: 80px;
    z-index: 10;
    transition: 0.3s ease;
}

.cta-btn__span::after {
    position: absolute;
    content: "";
    display: inline-block;
    background-image: url("../img/cta.svg");
    width: 18vw;
    height: 20vh;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 10;
    right: -80px;
    bottom: -32px;
    z-index: -1;
}

.cta-btn__span::before {
    position: absolute;
    content: "";
    width: 140px;
    height: 15px;
    background-image: url("../img/line.svg");
    bottom: -14px;
    right: -80px;
    z-index: 40;
    background-size: contain;
    background-repeat: no-repeat;
}

.cta-btn__span:hover {
    opacity: 0.5;
}

/*------------------------
フッター
----------------------------*/
.footer-container {
    color: var(--sab-color);
}

.footer-container.section-2n {
    margin-bottom: 0;
}

.footer-logo {
    display: flex;
    font-size: 3rem;
    align-items: flex-end;
}

.footer-logo__image {
    width: 150px;
}

.footer-inner__flex {
    display: flex;
    gap: clamp(40px, 3.18vw, 80px);
    padding-block: 80px;
    align-items: flex-start;
}

.footer-map {
    width: calc(100% / 2 - 40px);
}

.footer-map__detail {
    width: calc(100% / 2 - 40px);
}

.footer-map__detail__title {
    position: relative;
    margin-left: 40px;
    margin-bottom: 24px;
}

.footer-map__detail__title::before {
    position: absolute;
    content: "";
    display: inline-block;
    width: 30px;
    height: 1px;
    background: var(--sab-color);
    top: 50%;
    left: -40px;
    transform: translateY(-50%);
}

.footer-map__detail__text {
    margin-left: 80px;
    padding-bottom: 40px;
}

.footer-map__detail__text:nth-child(12) {
    padding-bottom: 0;
}

.footer-nav__inner {
    display: flex;
    align-items: center;
    gap: 80px;
    justify-content: center;
}

.footer-nav__item a {
    color: var(--sab-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    font-size: 6rem;
    font-family: var(--en-title);
    line-height: 1;
    transition: 0.3s ease;
    position: relative;
}

.footer-nav__item img {
    width: 30px;
}

.footer-nav__item span {
    font-size: 1.8rem;
}

.footer-nav__item a:hover {
    opacity: 0.5;
    transform: scale(1.1);
}

/*-------------------------------------------------------------------------
sp
--------------------------------------------------------------------------*/
/*================
=================*/
@media (max-width: 899px) {

    /*------------------------
    共通パーツ
    ----------------------------*/
    .section {
        padding-inline: 20px;
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .section-title {
        margin-top: 0;
        /* margin-left: 20px; */
        font-size: 6rem;
    }

    .section-2n {
        /* writing-mode: sideways-rl; */
    }

    .section-title__right {
        writing-mode: unset;
        /* transform: rotate(0deg); */
        rotate: 0deg;
    }

    .section-title__left {
        rotate: 0deg;
        align-items: flex-start;
    }

    .section-title span {
        font-size: 1.5rem;
    }

    /*------------------------
    ヘッダー
    ----------------------------*/
    .header-cta {
        width: 80px;
        height: 80px;
        right: 120px;
        /* top: 20px; */
    }

    .hamburger-line__wrapper {
        width: 80px;
        height: 80px;
        right: 20px;
        /* top: 20px; */
    }

    .hamburger-line {
        width: 30px;
    }

    .hamburger-line:nth-child(1) {
        top: 37px;
    }

    .hamburger-line:nth-child(2) {
        top: 47px;
    }

    .hamburger-line__wrapper.is-open .hamburger-line:nth-child(1) {
        top: 47px;
    }

    .hamburger-line__wrapper.is-open .hamburger-line:nth-child(2) {
        top: 39px;
    }

    .header-nav {
        width: 100vw;
        transform: translateX(100vw);
        padding-block: 120px;
        padding-inline: 40px;
    }

    .header-nav__item {
        margin-bottom: 40px;
    }

    /*------------------------
    ヒーロー
    ----------------------------*/
    .hero-container {
        flex-direction: column;
        padding-inline: 0;
        padding-top: 120px;
    }

    .hero-inner__left {
        width: 100%;
        order: 1;
    }

    .hero-nav {
        display: none;
    }

    .logo-container {
        position: absolute;
        top: 20px;
        left: 20px;
    }

    .site-title__wrapper {
        padding-inline: 20px;
    }

    .site-title__span:nth-child(1)::before {
        left: 35px;
    }

    .site-title__span:nth-child(2)::before {
        left: 17px;
    }

    .site-title__span::before {
        width: 20px;
    }

    .hero-inner__img::after {
        position: absolute;
        content: "";
        width: 100%;
        height: 100%;
        background: var(--main-color);
        inset: 0;
        opacity: 0.7;
    }

    .site-title__span:nth-child(1) {
        padding-left: 24px;
    }

    .site-title__span:nth-child(2) {
        padding-right: 24px;
    }

    .hero-cta {
        position: fixed;
        bottom: 0;
        right: 0;
        padding-inline: 40px;
        padding-block: 8px;
        z-index: 9997;
    }

    .hero-cta span {
        display: none;
    }

    /*------------------------
    コンセプト
    ----------------------------*/
    .concept-container {
        flex-direction: column;
    }

    /*------------------------
    ギャラリー
    ----------------------------*/
    .gallery-container .section {
        flex-direction: column;
        padding-bottom: 80px;
    }

    .slider {
        order: unset;
    }

    .slider__item img {
        height: 30vh;
    }

    .slider-counter {
        bottom: 50px;
        font-size: 2rem;
    }

    /*------------------------
    こだわり
    ----------------------------*/
    .commitment-container {
        flex-direction: column;
        gap: 80px;
    }

    .commitment-container .section-title {
        margin-top: 0;
        /* margin-left: 80px; */
    }

    .commitment-inner {
        width: 100%;
    }

    .commitment-item__title {
        margin-left: 40px;
    }

    .commitment-item__title span {
        font-size: 7rem;
    }

    /*------------------------
    メニュー
    ----------------------------*/
    .menu-container .section {
        flex-direction: column;
        gap: 80px;
        align-items: center;
    }

    .menu-container .section-title {
        order: 0;
        margin-top: 0;
        /* justify-content: left; */
    }

    .menu-item__flex {
        flex-direction: column;
        gap: 0;
        align-items: flex-start;
    }

    .menu-item__image__wrapper {
        width: 50%;
        height: 100%;
        aspect-ratio: 1 / 1;
    }

    .menu-item__text {
        position: relative;
        margin-top: -20px;
        z-index: 1;
    }

    .menu-item__image__wrapper::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(to top,
                rgb(74 52 40) 0%,
                rgb(74 52 40 / 36%) 40%,
                rgba(74, 52, 40, 0) 100%),
            url("/img/bg.png");
        z-index: 1;
        pointer-events: none;

    }

    .menu-item:nth-child(2n) .menu-item__wrapper {
        order: unset;
    }

    .menu-item:nth-child(2n)::before,
    .menu-item:nth-child(2n)::after {
        transform: rotate(-3deg);
        right: unset;
        left: 0;
    }

    .menu-item__title span {
        font-size: 7rem;
    }

    /*------------------------
    CTA
    ----------------------------*/
    .cta-btn__text {
        /* position: unset; */
        transform: translateY(-100%) translateX(-50%);
        top: 0;
        /* left: 50%; */
        width: 100%;
        font-size: 1.8rem;
    }

    .cta-btn__wrapper {
        height: 15vh;
    }

    .cta-btn__span::after {
        height: 15vh;
        width: 25vw;
    }

    .cta-btn__text::before {
        display: none;
    }

    /*------------------------
    フッター
    ----------------------------*/
    .footer-logo {
        font-size: 1.8rem;
    }

    .footer-logo__image {
        width: 100px;
    }

    .footer-inner__flex {
        flex-direction: column;
        padding-block: 40px;
    }

    .footer-map {
        width: 100%;
        height: 25vh;
    }

    .footer-map__detail {
        width: 100%;
        margin-bottom: 40px;
        padding-bottom: 40px;
        position: relative;
    }

    .footer-map__detail::before {
        position: absolute;
        content: "";
        width: 100%;
        height: 1px;
        background: var(--sab-color);
        bottom: 0;
        left: 0;
        right: 0;
        rotate: -3deg;
        opacity: 0.5;
    }

    .footer-map__detail::after {
        position: absolute;
        content: "";
        width: 30%;
        height: 1px;
        background: var(--sab-color);
        bottom: -24px;
        left: 0;
        rotate: -3deg;
        opacity: 0.5;
    }

    .footer-nav__inner {
        flex-direction: column;
    }

    .footer-nav__item a {
        font-size: 6rem;
    }
}

/*================
=================*/
@media (max-width: 599px) {

    /*------------------------
    ヘッダー
    ----------------------------*/
    .header-cta {
        width: 60px;
        height: 60px;
        padding: 16px;
        right: 85px;
    }

    .hamburger-line__wrapper {
        width: 60px;
        height: 60px;
    }

    .hamburger-line:nth-child(1) {
        top: 28px;
    }

    .hamburger-line:nth-child(2) {
        top: 35px;
    }

    .logo-container img {
        width: 80px;
    }

    .logo-container {
        font-size: 2rem;
    }

    .hamburger-line__wrapper.is-open .hamburger-line:nth-child(1) {
        top: 37px;
    }

    .hamburger-line__wrapper.is-open .hamburger-line:nth-child(2) {
        top: 29px;
    }

    .header-nav__item a {
        font-size: 6rem;
    }

    /*------------------------
    ヒーロー
    ----------------------------*/
    .site-title {
        flex-direction: column;
        gap: 8px;
    }

    .site-title__wrapper {
        white-space: normal;
        width: 100%;
        /* text-align: left; */
    }

    .site-title__wrapper p {
        text-align: left;
    }
}