@charset "UTF-8";
/* 変数 */
:root {
    --text: #070707;
    --textwhite: #f4f4f4;
    --menu-white: #F2F2F2;
    --title: #AD4533;
    --bg-7A: #7A3123;
    --bg-43: #43321D;;
    --bg-A8: #A8A18C;
    --ff-suns: 'Noto Sans JP', sans-serif;
    --ff-selif: 'Noto Serif JP', serif;
    --ff-smooch: 'Smooch', cursive;

    --change: 0.5s ease-in-out;
}

/* 基本設定 */
html {
    scroll-behavior: smooth;
}
body {
    font-family: var(--ff-suns);
    font-feature-settings: "palt";
    color: var(--text);
    background-color: var(--bg-43);
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
figure {
    margin: 0;
    padding: 0;
    list-style: none;
}

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

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    opacity: 0.8;
}

.sr-only {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}


/* 共通パーツ */
.wrapper {
    max-width: 1500px;
    padding-inline: 20px;
    margin-inline: auto;
}

.section-title {
    font-family: var(--ff-suns);
    font-weight: 700;
    font-size: clamp(48px, 5.6vw, 108px);
    line-height: 1;
    color: var(--title);
}

.menu-title {
    font-family: var(--ff-smooch);
    font-weight: 400;
    font-size: 110;
    line-height: 1;
    color: var(--menu-white);
}

/* @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ */

@media (max-width: 768px) {
    .section-title {
        font-size: clamp(36px, 6.3vw, 48px);
    }
}
/* @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ */

/* ----------------------------------------- */
/* ファーストビュー */
/* ----------------------------------------- */
.top {
    height: 100vh;
    overflow: hidden;
    position: relative;
}

.top::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(img/fv.jpg);
    background-size: cover;
    background-position: center left;
    background-repeat: no-repeat;
    -webkit-animation: zoom 10s infinite;
    animation: zoom 10s forwards;
    animation-fill-mode: forwards;
}

@keyframes zoom {
    0% {
            opacity: 0.2;
            transform: scale(1);
    }

    10% {
            opacity: 0.3;
            transform: scale(1);
    }

    15% {
        opacity: 0.5;
    }
    
    50% {
        opacity: 0.7;
    }

    100% {
        opacity: 1;
        transform: scale(1.1);
    }

}

.top-content {
    height: 100%;
    display: flex;
    position: relative;
}

.top-content h1 {
    margin: auto;
}

.top-content  img {
    width: clamp(400px, 31vw, 600px);
    aspect-ratio: 1/1;
}

/* @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ */

@media (max-width: 500px) {
    .top {
        height:clamp(450px, 1.4vw, 700px);
    }
    
    .top-content  img {
        width: 50vw;
    }
}

/* @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ */


/* ----------------------------------------- */
/* トップメニュー：ナビ */
/* ----------------------------------------- */

.top-nav {
    width: clamp(150px, 15.6vw, 300px);
    height: 100%;
    background-color: var(--bg-7A);
    color: var(--textwhite);
}

.top-nav-list {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.top-nav-list li a {
    position: relative;
    display: inline-block;
    text-decoration: none;
}

.top-nav-list li a::after {
    position: absolute;
    bottom: -4px;
    left: 0;
    content: '';
    width: 100%;
    height: 2px;
    background: var(--bg-A8);
    transform: scale(0, 1);
    transform-origin: center top;
    transition: transform .3s;
}

.top-nav-list li a:hover::after {
    transform: scale(1, 1);
}

/* スクロール時ヘッダーナビ */

#top_nav.fixed {
    width: 100%;
    height: 60px;
    position: fixed;
    top: 0;
    z-index: 99;
    box-shadow: 0px 10px 10px -6px rgba(255, 255, 255, 0.3);
}

#top_nav.fixed .top-nav-list {
    flex-direction: row;
    gap: 40px;
    position: relative;
}

#top_nav.fixed .top-nav-list::before{
    content: '';
    position: absolute;
    display: inline-block;
    width: 50px;
    height: 50px;
    background-image: url(img/nav-menu.svg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    left: 2vw;
}


/********  ハンバーガーメニュー設定 *******/

/* ハンバーガーメニュー */
.header__hamburger {
    width: 50px;
    height: 50px;
    position: fixed;
    background-image: url(img/nav-menu.svg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
    transition: ease 1s;
    top: 10px;
    right: 10px;
    display: none;
}

.header__hamburger:hover {
    opacity: 0.8;
}

.hamburger {
    background-color: transparent;
    border-color: transparent;
    z-index: 9999;
    transition: ease .8s;
}

/* @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ */

@media (max-width: 768px) {
    .header__hamburger{
        display: block;
    }
    
    /* ハンバーガーメニュー設定:閉じている時; */
    .top-nav {
        width: 0;
        height: 0;
        background-color: rgba(168, 161, 140, 0.9);
        position: fixed;
        transition: ease .8s;
        transform: translateX(100%);

        right: 0;
        z-index: 100;
        overflow: hidden;
    }

    /* クリックでメニューオープン */
    body.active {
        width: 100%;
        height: 100%;
        overflow: hidden;
    }

    #top_nav.active {
        width: 100%;
        height: 100vh;
        transform: translateX(0);
        transition: ease .8s;
        position: fixed;
        z-index: 9999;
    }

    .header__hamburger.active {
        background-image: url(img/nav-close.svg);
        transition: ease .8s;
    }

    .header__hamburger.active:hover {
        opacity: 0.8;
    }

    .top-nav-list {
        justify-content: start;
        margin-top: clamp(200px, 39vw, 300px);
        position: relative;
    }

    .top-nav-list::before {
        content: '';
        position: absolute;
        display: block;
        width: 120px;
        height: auto;
        aspect-ratio: 1;
        background-image: url(img/fate2.svg);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        top: -160px;
    }
    
    .top-nav-list li a {
        font-size: 18px;
    }

    .top-nav-list li a::after {
        background: var(--bg-43);
    }
    
}
/* @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ */

/* ----------------------------------------- */
/* コンセプト */
/* ----------------------------------------- */
.concept {
    position: relative;
}

.concept-wrap {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-top: clamp(160px, 13.2vw, 254px);
}

.concept-wrap .section-title {
    width: fit-content;
    writing-mode: vertical-rl;
    transform: rotate(-180deg);
    align-self: center;
}

.concept-wrap .section-title::after {
    content: '';
    display: inline-block;
    width: 2px;
    height: 100%;
    background-color: var(--textwhite);
    position: absolute;
    top: 0;
    left: -25px;
}

.concept-content {
    width: 91%;
    display: flex;
    justify-content: flex-end;
    background-color: var(--bg-A8);
    position: relative;
}

.concept-img1,
.concept-img2 {
    max-height: 270px;
    aspect-ratio: 404 / 270;
    object-fit: cover;
}

.concept-img1 {
    align-self: flex-start;
    margin: -18px -280px 0 24px;
    position: relative;
}

.concept-img1 img,
.concept-img2 img {
    position: relative;
    z-index: 5;
}

.concept-img1::after {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid var(--textwhite);
    top: -24px;
    left: -24px;
}

.concept-img2 {
    align-self: flex-end;
    margin-right: 30px;
    margin-bottom: -18px;
    position: relative;
}

.concept-img2::after {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid var(--textwhite);
    bottom: -24px;
    right: -24px;
}

.concept-text {
    height: max-content;
    writing-mode: vertical-rl;
    font-family: var(--ff-selif);
    padding: 20px min(4vw, 77px) 0 min(2vw, 40px);
}

.text-title h3 {
    font-size: 40px;
    font-weight: 500;
    text-align: right;
}

.text-title h3 + h3 {
    margin-right: 1em;
}

.text-box {
    margin: 25px min(3.1vw, 60px) 20px 0;
}

.text-box p + p {
    margin-right: 2.88em;
}

.concept-catch {
    text-align: center;
    color: var(--textwhite);
    font-size: 70px;
    font-family: var(--ff-smooch);
    line-height: 1.43;
    position: absolute;
    transform: rotate(-25deg);
    bottom: -20%;
    left: 56%;
    z-index: 8;
}

/* @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ */
@media (max-width: 1200px) {
    .concept-wrap .section-title {
        align-self: flex-start;
        margin-top: 60px;
    }

    .concept-content {
        flex-direction: column-reverse;
        row-gap: 30px;
    }

    .concept-img1 {
        margin: -18px 0 0 10vw;
        order: 1;
    }

    .concept-img2 {
        margin: 0 10vw -18px 0;
    }

    .concept-text {
        align-self: center;
        padding: 20px;
    }

    .concept-catch {
        bottom: 10%;
        left: 10%;
    }

    .text-box {
        margin-inline: 0;
    }
}

@media (max-width: 768px) {
    .concept-wrap {
        flex-direction: column;
        margin-top: 80px;
    }

    .concept-wrap .section-title {
        margin-top: 0;
        writing-mode:initial;
        transform: rotate(0);
        align-self: center;
    }

    .concept-wrap .section-title::after {
        width: 100%;
        height: 2px;
        left: 0;
        top: 130%;
    }

    .concept-content {
        align-self: center;
        width: 100%;
    }

    .concept-img1 {
        display: none;
    }

    .concept-img2 {
        max-height: 200px;
    }

    .text-title h3 {
        font-size: clamp(24px, 4vw, 32px);
        text-align: left;
    }

    .text-title h3 + h3 {
        margin-right: 0.5em;
        margin-top: 2em;
    }

    .concept-text {
        margin-top: 50px;
    }

    .text-box {
        margin-right: 20px;
    }

    .text-box p + p {
        margin-right: 1em;
    }

    .concept-catch {
        font-size: clamp(48px, 7.8vw, 60px);
        bottom: 15%;
        left: 5%;
    }
}

@media (max-width: 500px) {
    .concept-wrap {
        padding-inline: 0;
    }

    .concept-content {
        width: 100%;
        padding: 30px 0;

        display: grid;
        grid-template-columns: 65% 35%;
        justify-content: center;
        place-items: center;
        row-gap: 20px;
    }

    .concept-img2 {
        width: 70%;
        align-self: flex-start;
        margin: unset;
        margin-top: 25%;
        grid-column: 1;
        grid-row: 1;
    }

    .concept-img2::after {
        bottom: -12px;
        right: -12px;
    }

    .concept-text {
        display: contents;
    }

    .text-title {
        grid-column: 2;
        grid-row: 1;
        margin-inline: 30px 20px;
        justify-self: start;
    }

    .text-box {
        grid-column: 1 / -1;
        margin-right: 0;
    }

    .concept-catch {
        bottom: unset;
        left: 7%;
        top: 30%;
    }
}

/* @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ */

/* ----------------------------------------- */
/* メニュー */
/* ----------------------------------------- */
.menu {
    margin-top: clamp(180px, 15.6vw, 300px);
}

.menu .section-title {
    margin-right: min(56vw, calc(50vw + 123px));
    position: relative;
    text-align: right;
    padding-left: 20px;
}

.menu .section-title:before {
    content: '';
    display: inline-block;
    width: 100%;
    height: 2px;
    background-color: var(--bg-A8);
    position: absolute;
    right: 0;
    top: -30px;
}

.menu-wrap {
    max-width: 1500px;
    margin-inline: auto;
}

.menu-food {
    margin-top: 41px;
    padding-top: 90px;
    background-image: url(img/menu-food-bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.menu-drink {
    padding-top: 90px;
    background-image: url(img/menu-drink-bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.food-title,
.drink-title {
    background-image: url(img/menu-title-bg.svg);
    background-size: cover;
    background-position: center;
    color: var(--menu-white);
    display: flex;
    align-items: center;
    padding-left: 20px;
}

.food-title h2,
.drink-title h2 {
    font-family: var(--ff-smooch);
    font-size: clamp(60px, 5.7vw, 110px);
}

.food-title p,
.drink-title p {
    margin-left: min(7.8vw, 150px);
    line-height: 1.5;
}


/* @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ */

@media (max-width: 1060px) {
    .food-title span {
        display: block;
    }
}

@media (max-width: 768px) {
    .menu .section-title {
        margin-right: 40vw;
    }

    .menu .section-title:before {
        top: -20px;
    }

    .food-title,
    .drink-title {
        flex-direction: column;
        padding: 12px;
    }

    .food-title p,
    .drink-title p {
        margin-left: 0;
        margin-bottom: 10px;
    }

}

@media (max-width: 500px) {
    .menu {
        margin-top: clamp(80px, 30vw, 160px);
    }

    .food-title span {
        display: none;
    }

    .drink-title {
        padding-bottom: 48px;
    }
}

/* @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ */

/* ----------------------------------------- */
/* メニュー：スライダー */
/* ----------------------------------------- */

.splide__wrap {
    margin-top: clamp(60px, 5.2vw, 100px);
    padding-bottom: 50px;
}

.slide-item {
    background-image: url(img/menu-card-bg.jpg);
    background-size: cover;
    background-position: center;
    border-radius: 5%;
    padding: 30px;
    text-align: center;
}

.slide-item img {
    aspect-ratio: 3 / 2;
    object-fit: cover;
    border: 5px solid rgba(255, 255, 255, 0.9);
    box-sizing: border-box;
}

.slide-item p {
    color: var(--menu-white);
    font-weight: 600;
    line-height: 1.25;
}


.slide-item p + p {
    margin-top: 20px;
}

.slide-item p:first-of-type {
    margin-top: 50px;
    height: 2.5em;
}

/* スライダー矢印設定 */

.splide .splide__arrow {
    background: none;
    height: 5em;
    width: 5em;
    opacity: 0.9;
}

.splide .splide__arrow--prev {
    left: 0; 
}

.splide .splide__arrow--next {
    right: 0; 
}

/* @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ */

@media (max-width: 500px) {
    .splide__wrap {
        margin-top: 40px;
    }

    .slide-item {
        margin-block-start: 30px;
    }

}
/* @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ */

/* ----------------------------------------- */
/* ニュース */
/* ----------------------------------------- */
.news {
    padding-top: clamp(80px, 10vw, 200px);
}

.news .section-title {
    margin-left: min(49vw, 960px);
    position: relative;
}

.news .section-title:before {
    content: '';
    display: inline-block;
    width: 100%;
    height: 2px;
    background-color: var(--bg-A8);
    position: absolute;
    left: 0;
    bottom: -40px;
}

.news-content {
    width: 100%;
    margin-top: clamp(100px, 11vw, 212px);
    padding-block: clamp(48px, 5.2vw, 100px);
    background-color: var(--bg-A8);
}

.news-content dl {
    display: flex;
    width: 75%;
    margin-inline: auto;
    padding-block: 20px 12px;
    border-bottom: 1px solid #696868;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.5;
}

.news-content dt {
    width: 32%;
}

.news-content dd {
    margin-left: 0;
}

.btn-more {
    appearance: none;
    display: block;
    background: var(--bg-43);
    margin-inline: auto;
    margin-top: 70px;
    color: var(--textwhite);
    border: none;
    border-radius: 33px;
    position: relative;
    transition: var(--change);
}

.btn-more:hover {
    background: var(--textwhite);
    color: var(--bg-43);
    font-weight: bold;
}

.btn-more a {
    display: inline-block;
    padding: 16px 64px;
}

/* @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ */

@media (max-width: 768px) {
    .news-content {
        border-radius: 30px;
    }
    .news .section-title {
        margin-left: 40vw;
    }

    .news .section-title:before {
        bottom: -20px;
    }

}

@media (max-width: 500px) {
    .news-content dl {
        flex-direction: column;
        padding-block: 0;
    }

    .news-content dd {
        margin-block: 12px;
        text-align: center;
    }
}
/* @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ */

/* ----------------------------------------- */
/* アクセス */
/* ----------------------------------------- */

.access {
    margin-top: clamp(120px, 14vw, 276px);
    background-color: var(--bg-A8);
}

.access-wrap {
    display: flex;
    flex-wrap: nowrap;
    gap: min(4vw, 77px);
    padding-bottom: clamp(80px, 8vw, 157px);
}

.access-wrap .section-title {
    height: max-content;
    writing-mode: vertical-rl;
    transform: rotate(-180deg);
    padding-bottom: 100px;
}

.access-wrap .section-title:after {
    content: '';
    display: inline-block;
    width: 2px;
    height: 100%;
    background-color: var(--bg-43);
    position: absolute;
    top: 0;
    left: -25px;
}

.info-map {
    display: flex;
    gap: min(4vw, 77px);
    justify-content: center;
}

.access-content {
    max-width: 562px;
    text-align: center;
}

.access-content .img-door {
    aspect-ratio: 562 / 374;
    object-fit: cover;
    margin-top: clamp(100px, 8vw, 156px);
}

.access-content .access-logo {
    max-width: 248px;
    aspect-ratio: 1 / 1;
    margin-top: clamp(32px, 4.6vw, 89px);
}

.access-info {
    text-align: left;
    margin: 22px auto 0;
    width: max-content;
}

.access-info h2 {
    font-size: clamp(30px, 2vw, 40px);
    font-weight: 600;
    line-height: 1.5;
}

.access-info span {
    font-size: clamp(24px, 2vw, 40px);
    font-weight: 600;
    line-height: 2;
    margin-left: 1.5em;
    position: relative;
}

.access-info span::before {
    content: '';
    position: absolute;
    background-image: url(img/phone.svg);
    background-size: cover;
    width: clamp(33px, 2.4vw, 45px);
    height: clamp(33px, 2.4vw, 45px);
    left: -1.5em;
    top: 50%;
    transform: translateY(-50%);
}

.access-info p {
    line-height: 1.5;
    margin-top: 20px;
}

.access-map {
    max-width: 651px;
    aspect-ratio: 651 / 566;
    margin-top: clamp(240px, 23vw, 441px);
}

/* @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ */

@media (max-width: 1024px) {

    .access-wrap {
        gap: 30px;
    }

    .info-map {
        gap: 30px;
    }

    .access-content {
        width: 40%;
    }

    .access-content .img-door {
        display: none;
    }

    .access-content .access-logo {
        max-width: 200px;
        margin-top: 60px;
    }

    .access-map {
        width: 60%;
        margin-top: 60px;
    }
}

@media (max-width: 768px) {
    .access {
        margin-top: 80px;
    }

    .access-wrap {
        padding-bottom: clamp(30px, 10vw, 80px);
    }

    .info-map {
        flex-direction: column;
        align-items: center;
    }

    .access-content {
        width: 100%;
    }

    .access-content .access-logo {
        margin-top: 32px;
    }

    .access-info {
        text-align: center;
    }

    .access-map {
        width: 96%;
        margin-top: 0;
    }
}

@media (max-width: 768px) {
    .access-wrap {
        flex-direction: column;
        padding: 80px 0;
    }

    .access-wrap .section-title {
        writing-mode: unset;
        transform: rotate(0);
        padding-bottom: 0;
        margin-right: 40vw;
        text-align: right;
    }

    .access-wrap .section-title:after {
        width: 100%;
        height: 2px;
        top: 130%;
        left: 0;
    }

    .access-map {
        width: 86%;
    }

}
/* @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ */

/* ----------------------------------------- */
/* リザーブ */
/* ----------------------------------------- */
.reserve {
    background-color: var(--bg-43);
    padding-top: clamp(72px, 10vw, 200px);
    padding-bottom: clamp(72px, 11.5vw, 220px);
}

.reserve .section-title {
    width: fit-content;
    margin-inline: auto;
    position: relative;
}

.reserve .section-title:before {
    content: '';
    display: inline-block;
    width: 100%;
    height: 2px;
    background-color: var(--bg-A8);
    position: absolute;
    left: 0;
    bottom: -40px;
}

.btn-wrap {
    margin-top: clamp(72px, 12.5vw, 240px);
    margin-inline: auto;
    width: fit-content;
    display: flex;
    gap: clamp(60px, 12.7vw, 244px);
}

.btn-wrap .btn {
    appearance: none;
    display: inline-block;
    background: var(--bg-A8);
    margin-inline: auto;
    color: var(--text);
    border: none;
    border-radius: 60px;
    position: relative;
    width: fit-content;
    transition: var(--change);
}

.btn-wrap .btn:hover {
   background: var(--textwhite);
}

.btn-wrap .btn a::after {
    content: '';
    display: inline-block;
    width: 1.9em;
    height: 1.9em;
    background-image: url(img/Play-arrow.svg);
    background-size: cover;
    background-position: center;
    position: absolute;
    right: 0.84em;
    top: 50%;
    transform: translateY(-50%);
}

.btn-wrap .btn a {
    display: inline-block;
    font-size: clamp(16px, 1.7vw, 32px);
    font-weight: 600;
    line-height: 1.5;
    padding-block: 1em;
}

.btn-wrap .btn-reserve a {
    padding-inline: 3em;
}

.btn-wrap .btn-reserve a::before {
    content: '';
    display: inline-block;
    width: 1.5em;
    height: 1.6em;
    background-image: url(img/reserve.svg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    left: 0.9em;
    top: 50%;
    transform: translateY(-50%);
}

.btn-wrap .btn-contact a {
    padding-inline: 3.5em;
}

.btn-wrap .btn-contact a::before {
    content: '';
    display: inline-block;
    width: 1.63em;
    height: 1.4em;
    background-image: url(img/mail.svg);
    background-size: cover;
    background-position: center;
    position: absolute;
    left: 1em;
    top: 50%;
    transform: translateY(-50%);
}

/* @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ */

@media (max-width: 768px) {
    .btn-wrap {
        flex-direction: column;
        gap: 30px;
    }

    .reserve .section-title:before {
        bottom: -20px;
    }

}

/* @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ */

/* ----------------------------------------- */
/* フッター */
/* ----------------------------------------- */

.footer {
    background-color: var(--bg-7A);
    color: var(--textwhite);
}

.footer .inner {
    padding-block: clamp(72px, 5.2vw, 100px);
}

.footer-nav-list {
    display: flex;
    justify-content: center;
    gap: min(4.6vw,88px);
}

.footer-nav-list li {
    font-size: clamp(18px, 1.67vw, 32px);
    line-height: 2;
}

.footer-nav-list li a {
    position: relative;
    display: inline-block;
    text-decoration: none;
}

.footer-nav-list li a::after {
    position: absolute;
    bottom: -4px;
    left: 0;
    content: '';
    width: 100%;
    height: 2px;
    background: var(--bg-A8);
    transform: scale(0, 1);
    transform-origin: center top;
    transition: transform .3s;
}

.footer-nav-list li a:hover::after {
    transform: scale(1, 1);
}

.copyright {
    margin-top: 50px;
    text-align: center;
}

/* @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ */

@media (max-width: 580px) {
    .footer .inner {
        padding-block: 40px;
    }
    .footer-nav {
        display: none;
    }

    .copyright {
        margin-top: 0;
    }

}

/* @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ */
