/* =========================
    基本スタイル
========================= */
body {
    font-family: 'Noto Sans JP', sans-serif; 
    color: #4a3c31;
    line-height: 1.6;
    font-size: 20px;
}
.font-en {
    font-family: "Josefin Sans", sans-serif;
}
* a {
    transition: opacity .3s;
}
* a:hover {
    opacity: .7;
}
.fadeIn_up {
    opacity: 0;
    transform: translate(0, 50%);
    transition: 2s;
}
.fadeIn_up.is-show {
    transform: translate(0, 0);
    opacity: 1;
}

.fadeIn_right {
    opacity: 0;
    transform: translate(50%, 0);
    transition: 2s;
}
.fadeIn_right.is-show {
    transform: translate(0, 0);
    opacity: 1;
}
.movie-box iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 0;
    margin-top: 40px;
}
.hamburger {
    background: #814530;
    padding: 20px;
    border-radius: 0 0 0 10px;
    aspect-ratio: 1 / 1;
    align-items: center;
    cursor: pointer;
    display: none;
    z-index: 11;
    position: absolute;
    top: 0;
    right: 0;
}
.hamburger.drawer-toggle.pnav {
    width: 20px;
    height: 20px;
    position: absolute;
    top: 10px;
    right: 15px;
    padding: 13px;
}
.btn-trigger {
    position: relative;
    width: 20px;
    height: 17px;
    cursor: pointer;
    aspect-ratio: 20/17;
}
.btn-trigger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #fff;
    border-radius: 4px;
}
.btn-trigger, .btn-trigger span {
    display: inline-block;
    transition: all .5s;
    box-sizing: border-box;
}
.btn-trigger span:nth-of-type(1) {
    top: 0;
}
.btn-trigger span:nth-of-type(2) {
    top: 7.5px;
}
.btn-trigger span:nth-of-type(3) {
    bottom: 0;
}
.btn-trigger.active span:nth-of-type(1) {
    -webkit-transform: translateY(20px) rotate(-45deg);
    transform: translateY(7px) rotate(-45deg);
}
.btn-trigger.active span:nth-of-type(2) {
    opacity: 0;
}
.btn-trigger.active span:nth-of-type(3) {
    -webkit-transform: translateY(-20px) rotate(45deg);
    transform: translateY(-8px) rotate(45deg);
}
ul.sub-container {
    font-size: 14px;
    padding: 0 20px;
}
.breadcrumbs {
    max-width: 1100px;
    margin: 0 auto;
}


/* =========================
    HEADER
========================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: url(/assets/images/header_bg.png) top left #fff;
    background-size: auto 98%;
    background-repeat: no-repeat;
    background-color: #FAF9F7;
}

.header-inner {
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* PCデフォルトのナビ（1ソース） */
.gnav {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 1px 1px 4px rgba(0,0,0,0.3);
    background: #fff;
}
.gnav ul {
    display: flex;
    list-style: none;
    height: 76px;
}
.gnav ul li {
    padding: 0 10px;
    display: flex;
    align-items: center;
}
.gnav ul li:nth-child(1) {
    padding-left: 35px;
}
.gnav ul li:nth-child(7) {
    padding-right: 35px;
}
.gnav ul li a {
    text-decoration: none;
    color: #4a3c31;
    transition: opacity .3s;
    font-size: 16px;
    font-weight: bold;
    display: block;
}
.gnav ul li a:hover {
    opacity: .7;
}
.gnav ul li.btn-tel,
.gnav ul li.btn-reserve {
    padding: 0;
}
.gnav ul li.btn-tel a,
.gnav ul li.btn-reserve a {
    color: #FFFFFF;
    padding: 0 20px;
    height: 100%;
    display: flex;
    align-items: center;
}
.gnav ul li.btn-tel a {
    background-color: #814530;
}
.gnav ul li.btn-reserve a {
    background-color: #FF6D3B;
}

/* ハンバーガー（SPのみ表示） */
.sp-menu-btn {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
}
.sp-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background: #333;
    margin: 5px 0;
}
/* =========================
    UTILITY
========================= */
.text-center {
    text-align: center;
}
.btn {
    background: #ff6d3b;
    color: #fff;
    padding: 17px 50px;
    border-radius: 50px;
    text-decoration: none;
    transition: opacity .3s;
    display: block;
    font-size: 22px;
    max-width: 360px;
    position: relative;
    margin-top: 40px;
    margin-left: auto;
}
.btn:hover { opacity: .7; }
.btn::after {
    content: "";
    background: url(../images/link_arrow.svg) 100% no-repeat;
    display: block;
    width: 10px;
    height: 20px;
    position: absolute;
    top: 50%;
    right: 50px;
    transform: translate(0%, -50%);
}

/* =========================
    MAIN
========================= */
.main-contents {
    margin-top: 126px;
}

/* =========================
    MV
========================= */
.mv img { width: 100%; display: block; }
.mv-copy {
    position: absolute;
    bottom: 20%;
    left: 8%;
    color: #fff;
}
.mv-copy span {
    font-size: 40px;
    display: block;
    color: #333;
    font-weight: 500;
    position: relative;
    background: linear-gradient(transparent 60%, rgba(40, 72, 178, 0.2) 0%);
    text-shadow: 0px 3px 6px rgba(0, 0, 0, 0.25);
}
section.sub-mv {
    padding: 20px;
    max-width: 1280px;
    margin: 0 auto;
}
section.sub-mv picture img {
    width: 100%;
}

/* =========================
    COMMON SECTIONS
========================= */
.section {
    padding: 80px 20px;
    overflow: hidden;
}
main {
    margin-top: 126px;
}
.color-section {
    background-color: #FAF9F7;
}
.section p {
    line-height: 2;
}
.inner {
    max-width: 1100px;
    margin: 0 auto;
}
.sub .inner {
    max-width: 800px;
}
.sub h4 {
    color: #FF6D3B;
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 500;
}
.sub .leaves {
    display: flex;
    align-items: center;
    gap: 10px
}
.sub .leaves:before {
    content: '';
    background-image: url(../images/icon_leaves.svg);
    background-repeat: no-repeat;
    background-size: 100%;
    width: 30px;
    height: 30px;
    display: block;
}
.menu-category {
    margin-top: 40px;
}
.section-title {
    font-size: 2rem;
    color: #333333;
    margin-bottom: 80px;
}
.main_head {
    font-family: "Josefin Sans", sans-serif;
    font-size: 80px;
    font-weight: bold;
    display: block;
    line-height: 1;
}
.sub_head {
    font-family: 'Noto Sans JP', sans-serif; 
    font-size: 32px;
    font-weight: bold;
    color: #2848B2;
    display: block;
}
.sub .main_head {
    text-align: center;
}
.sub .sub_head {
    text-align: center;
}
.sub .sub-text {
    text-align: center;
}
.sub #menu .sub-text {
    text-align: left;
}
.sub #concept .sub-text {
    /* margin-top: 0; */
}
.font-italic {
    font-style: italic;
}
.font-large {
    font-size: 120px;
    margin: 0 20px;
}
.sub-text {
    margin-top: 40px;
}
.mv {
    width: 100%;
    padding: 25px 30px 25px;
    position: relative;
}
.iframe-container {
    width: 100%;
    height: 100%;
    aspect-ratio: 653 / 307;
}

/* ABOUT */
.about-movie {
    display: flex;
    gap: 40px;
    margin-top: 90px;
}
.movie-item {
    width: 50%;
    aspect-ratio: 16 / 9;
}
.movie-item iframe {
    width: 100%;
    height: 100%;
}
.box-item:not(:first-of-type) {
    margin-top: 40px;
}
.features-grid {
    display: flex;
    flex-wrap: wrap;
    margin-top: 40px;
}
.features-grid .features-item {
    width: 50%;
    text-align: center;
    padding: 30px 20px;
}
.features-grid .features-item figure figcaption {
    margin-top: 20px;
    font-weight: 500;
}
.features-grid .features-item:nth-of-type(odd) {
    border-right: 1px solid #333;
}
.features-grid .features-item:nth-of-type(3),
.features-grid .features-item:nth-of-type(4){
    border-top: 1px solid #333;
}
/* POINT */
.point-info {}
.point-info ul {}
.point-info ul li {
    padding-top: 117px;
    position: relative;
}
.point-info ul li::before {
    content: "";
    display: block;
    width: 100%;
    height: 330px;
    background: #FAF9F7;
    position: absolute;
    top: 0;
    z-index: -1;
}
.point-info ul li:nth-child(odd)::before {
    left: calc((-100%) + 250px);
}
.point-info ul li:nth-child(even)::before {
    right: calc((-100%) + 250px);
}
.point-info ul li figure {
    display: flex;
    flex-wrap: wrap;
}
.point-info ul li:nth-child(even) figure {
    flex-direction: row-reverse;
}
.point-info ul li figure .img-box {
    width: 42%;
}
.point-info ul li figure .img-box img {
    width: 100%;
    vertical-align: bottom;
}
.point-info ul li figure figcaption {
    width: 58%;
}
.point-info ul li figure figcaption h3 {
    font-size: 32px;
    line-height: 1.4;
    font-weight: bold;
    border-bottom: 1px solid #2848B2;
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 20px 0;
}
.point-info ul li:nth-child(odd) figure figcaption h3 {
    padding-left: 75px;
}
.point-info ul li:nth-child(odd) figure figcaption p {
    padding-left: 75px;
}
.point-info ul li figure figcaption h3 span {
    font-family: "Josefin Sans", sans-serif;
    font-size: 65px;
    color: #2848B2;
    position: relative;
    top: 8px;
}
.point-info ul li figure figcaption p {
    padding: 40px;
}

/* SERVICE */
.service-number {
    font-size: 14px;
    font-family: "Josefin Sans", sans-serif;
    color: #2848B2;
    border: 1px solid #2848B2;
    border-radius: 20px;
    padding: 13px 28px 10px;
    display: inline-block;
    line-height: 1;
}
.service-name {
    font-size: 38px;
    font-weight: 500;
    color: #2848B2;
}
.price-card {
    padding: 40px 40px 50px;
    box-shadow: 1px 1px 8px rgba(0,0,0,0.3);
    border-radius: 10px;
    background-color: #fff;
}
.price-card:not(:first-of-type) {
    margin-top: 60px;
}
.price-card h3 {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 0px;
}
.price-card figure {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
}
.price-card figure figcaption h4 {
    font-size: 32px;
    font-weight: bold;
    line-height: 1.8;
    padding: 20px 0;
}
.price-card figure figcaption {
    width: calc((100% - 400px) - 30px);
}
.price-card figure .img-box {
    width: 400px;
}
.price-card figure .img-box img {
    width: 100%;
}
.price-list {}
.price-list ul {}
.price-list ul li {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #707070;
    padding: 23px 0;
}
.price-list ul li:last-of-type {
    border-bottom: 1px solid #707070;
}

/* BLOG */
.blog-list ul {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}
.blog-item {
    background: #FAF9F7;
    width: calc(50% - 20px);
    box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}
.blog-item a {
    padding: 25px;
    display: block;
}
.blog-item figure {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}
.blog-item .cat-list {
    display: flex;
    gap: 10px;
}
.blog-item .cat-list .cat-item {
    font-size: 14px;
    color: #814530;
    border: 1px solid #814530;
    border-radius: 20px;
    padding: 12px 28px 12px;
    display: inline-block;
    line-height: 1;
    background-color: #ffffff;
}
.blog-item .blog-title {
    font-size: 16px;
    line-height: 1.5;
    color: #555555;
    margin-top: 20px;
}
.blog-item .blog-date {
    font-size: 14px;
    display: inline-block;
    margin-left: auto;
}
.blog-item .img-box {
    width: 148px;
    border-radius: 10px;
    aspect-ratio: 1 / 1;
}
.blog-item .img-box img {
    width: 100%;
    height: 100%;
    vertical-align: bottom;
    object-fit: cover;
    border-radius: 10px;
}
/* BENEFITS */
.benefits {
    position: relative;
}
.benefits:before {
    content: '';
    width: 100%;
    height: 600px;
    background: #FAF9F7;
    position: absolute;
    top: 10%;
    left: 0;
    z-index: -1;
}
.benefits-info {
    justify-content: center;
    display: flex;
    gap: 100px;
}
.benefits-item:last-of-type {
    margin-top: 100px;
}
.benefits-item h3 {
    font-size: 32px;
    line-height: 1.5;
    font-weight: bold;
    text-align: center;
}
.benefits-item .img-box {
    width: 398px;
    aspect-ratio: 1 / 1;
    margin-top: 20px;
    border-radius: 10px;
    overflow: hidden;
}
.benefits-item .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.benefits-item p {
    font-size: 20px;
    text-align: center;
}

/* RESERVATION */
.reserve-btns ul {
    display: flex;
    gap: 40px;
    justify-content: center;
}
.reserve-btns ul li {
    background: #FAF9F7;
    width: calc(50% - 20px);
    box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    overflow: hidden;
}
.reserve-btns ul li a {
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 45px 25px;
    font-size: 40px;
    font-weight: 500;
    text-align: center;
    line-height: 1;
    color: #FF6D3B;
    letter-spacing: 2px;
    height: 100%;
    transition: opacity .3s;
}
.reserve-btns ul li a:hover {
    opacity: 0.7;
}
.reserve-btns ul li a:before {
    content: '';
    display: block;
    width: 30px;
    height: 30px;
}
.reserve-btns ul li a.tel:before {
    content: '';
    display: block;
    width: 55px;
    height: 55px;
    background: url(../images/icon_tel.svg) top center no-repeat;
    background-size: cover;
}
.reserve-btns ul li a.web:before {
    content: '';
    display: block;
    width: 45px;
    height: 48px;
    background: url(../images/icon_reserve.svg) 100% 100% no-repeat;
    background-size: cover;
}

/* access */
.access-card {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}
.access-card .access-item {
    background: #FAF9F7;
    width: calc(50% - 20px);
    box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 25px;
    font-size: 16px;
    overflow: hidden;
}
.access-card .access-item h3 {
    color: #814530;
    font-weight: bold;
    margin-bottom: 10px;
}
.access-card .access-item dl dt:not(:first-child) {
    margin-top: 20px;
}
.access-card .access-map {
    padding: 0;
}
.access-card .access-map iframe {
    width: 100%;
    height: 100%;
}
.access-hour p span {
    font-size: 14px;
}
.access-item.access-info dl.info-list {
    display: grid;
    grid-template-columns: 120px 1fr;
    margin: 0;
    align-items: center;
}
.access-item.access-info dl.info-list dt {
    width: 120px;
    font-weight: bold;
    padding: 6px 0;
    margin-top: 0;
    color: #814530;
}
.access-item.access-info dl.info-list dd {
    flex: 1;
    padding: 6px 0;
    margin: 0;
}

/* FAQ */
.faq-item {
    padding: 25px;
    background: #ffffff;
    border-radius: 20px;
    margin-top: 40px;
}
.faq-item:first-of-type {
    margin-top: 0;
}
.faq-item dt {
    color: #FF6D3B;
    margin-bottom: 20px;
    font-size: 24px;
}
.faq-item dd {
    color: #333;
}

#blog-contents dl dd.tit {
    color: #FF6D3B;
    font-size: 20px;
    font-weight: 500;
    border-bottom: 1px solid #333;
    padding-bottom: 20px;
    margin-bottom: 40px;
}
#blog-contents .text p {
    margin-top: 1rem;
}
#blog-contents .date_txt {
    font-size: 18px;
    margin-bottom: 10px;
    display: inline-block;
}

#card_container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
#card_container li.card_item {
    background: #FAF9F7;
    width: calc((100% / 3) - 14px);
    box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 25px;
    font-size: 16px;
    overflow: hidden;
}
#card_container li.card_item .item_img {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
}
#card_container li.card_item .item_img img {
    width: 100%;
}


/* FOOTER */
.footer {
    background-image: url(../images/footer_bg_left.png), url(../images/footer_bg_right.png);
    background-repeat: no-repeat, no-repeat;
    background-position: left bottom, right bottom;
    background-size: 122px, 92px;
    background-color: #814530;
    color: #fff;
    text-align: center;
    padding: 20px;
}
.footer-wrap {
    display: flex;
    justify-content: space-between;
}
nav.fgnav ul {
    display: flex;
    gap: 20px;
    padding:10px 0;
}
nav.fgnav ul li a {
    font-size: 16px;
    display: inline-block;
}
nav.fgnav ul li a:hover {
    opacity: 0.7;
}
nav.fsns ul {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
    align-items: center;
}
.footer small {
    text-align: right;
    font-size: 12px;
}
.icon-box {
    height: 50px;
}
.icon-box img {
    height: 100%;
}
.recruit-list table tr {
    border-top: 1px solid #333;
}
.recruit-list table tr th {
    width: 30%;
    padding: 20px;
}
.recruit-list table tr td {
    width: 70%;
    padding: 20px;
}


@media(max-width: 1280px) {
    main {
        margin-top: 61px;
    }
    .gnav {
        display: none;
    }
    .hamburger {
        display: flex;
    }
    .mv {
        width: 100%;
        padding: 20px;
        position: relative;
    }
    #gnavi {
        display: none;
    }
    #gnavi.active {
        display: block;
        z-index: 10;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
    #gnavi {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        background: rgba(238, 238, 238, 0.96);
        z-index: -1;
        transition: opacity 0.4s ease, visibility 0.4s ease;
    }
    .gnav ul {
        flex-direction: column;
        gap: 15px;
        padding: 0 20px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        display: block;
        height: auto;
        width: 80%;
    }
    .gnav ul li {
        margin-top: 0;
        text-align: center;
        padding: 10px 0;
        border-bottom: 1px solid #555;
    }
    .gnav ul li:first-child {
        margin-top: 0;
        padding-left: 0;
    }
    .gnav ul li:nth-child(7) {
        padding-right: 0;
    }
    .gnav ul li.btn-tel, .gnav ul li.btn-reserve {
        padding: 0;
        border: none;
        margin: 20px 0;
        justify-content: center;
    }
    .gnav ul li.btn-tel a {
        background-color: transparent;
        color: #333;
        display: block;
        font-size: 28px;
    }
    .gnav ul li.btn-reserve a {
        background-color: #FF6D3B;
        font-size: 22px;
        padding: 10px 20px;
        border-radius: 30px;
        display: block;
    }
    .gnav ul li a {
        font-size: 18px;
        padding: 10px 0;
        display: inline-block;
        transition: color 0.3s;
        width: 100%;
    }
    .header-inner {
        padding: 14px 20px;
    }
    .logo {
        width: 198px;
    }
    .logo img {
        width: 100%;
    }   
}

/* =========================
    RESPONSIVE (SP)
========================= */
@media(max-width: 768px) {

    body {
        font-size: 16px;
    }
    .pc {
        display: none;
    }

    /* ハンバーガーを表示 */
    .sp-menu-btn { display: block; }

    /* PCナビ → 非表示（JSで開閉） */
    .nav {
        display: none;
        width: 100%;
        background: #fff;
        padding: 20px 0;
        border-top: 1px solid #eee;
    }
    .section {
        padding: 40px 20px;
        overflow: hidden;
    }
    /* 縦並びメニューに変更 */

    /* ABOUT・SERVICE は縦並びに */
    .about-flex,
    .service-box {
        flex-direction: column;
    }

    .about-movie {
        flex-direction: column;
        gap: 20px;
        margin-top: 20px;
    }
    .movie-item {
        width: 100%;
        aspect-ratio: 16 / 9;
    }

    /* MVコピー調整 */
    .mv-copy {
        font-size: 1.4rem;
        top: 30%;
        left: 5%;
    }
    .section-title {
        margin-bottom: 40px;
    }
    .main_head {
        font-size: 36px;
    }
    .sub_head {
        font-size: 16px;
    }
    .sub .sub_head {
        font-size: 24px;
    }
    .faq-item dt {
        font-size: 18px;
    }
    .font-large {
        font-size: 60px;
        margin: 0 10px;
    }
    .btn {
        padding: 14px 30px;
        font-size: 16px;
        max-width: 200px;
        margin: 20px auto 0;
        text-align: center;
    }
    .btn::after {
        right: 20px;
    }
    .mv-copy span {
        font-size: 1.6rem;
    }
    .point-info ul li figure {
        flex-direction: column;
    }
    .point-info ul li figure .img-box {
        width: 100%;
    }
    .point-info ul li figure figcaption {
        width: 100%;
    }
    .point-info ul li {
        padding-top: 40px;
    }
    .point-info ul li figure figcaption h3 {
        font-size: 20px;
        gap: 10px;
        padding: 20px;
        line-height: 1;
    }
    .point-info ul li:nth-child(odd) figure figcaption h3 {
        padding-left: 20px;
    }
    .point-info ul li:nth-child(odd) figure figcaption p {
        padding-left: 20px;
    }
    .point-info ul li figure figcaption h3 span {
        font-size: 42px;
        top: 5px;
    }
    .point-info ul li figure figcaption p {
        padding: 20px;
    }

    .benefits-info {
        justify-content: center;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    .benefits-item:last-of-type {
        margin-top: 40px;
    }
    .benefits:before {
        height: 400px;
        top: 5%;
    }
    .benefits-item h3 {
        font-size: 22px;
        line-height: 1.5;
        font-weight: bold;
        text-align: center;
    }
    .benefits-item .img-box {
        width: 100%;
        aspect-ratio: 3 / 2;
        margin-top: 20px;
    }
    .benefits-item p {
        font-size: 16px;
    }
    .price-card h3 {
        flex-direction: column;
        justify-content: center;
        gap: 10px;
    }
    .price-card {
        padding: 20px 20px 20px;
    }
    .price-card:not(:first-of-type) {
        margin-top: 30px;
    }
    .service-name {
        font-size: 24px;
    }
    .price-card figure {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 20px;
    }
    .service-number {
        font-size: 12px;
        padding: 10px 15px 7px;
    }
    .price-card figure figcaption {
        width: 100%;
    }
    .price-card figure .img-box {
        width: 100%;
    }
    .price-card figure figcaption h4 {
        font-size: 20px;
        line-height: 1.5;
        padding: 10px 0;
        text-align: center;
    }
    .price-list ul li {
        padding:10px 0;
        gap: 10px;
    }
    .blog-list ul {
        flex-direction: column;
        gap: 20px;
    }
    .blog-item {
        width: 100%;
    }
    .blog-item .cat-list .cat-item {
        font-size: 12px;
        padding: 10px 20px 10px;
    }
    .blog-item .blog-title {
        font-size: 14px;
        line-height: 1.7;
        margin-top: 10px;
    }
    .blog-item a {
        padding: 15px;
    }
    .reserve-btns ul {
        flex-direction: column;
        gap: 20px;
    }
    .reserve-btns ul li {
        width: 100%;
    }
    .reserve-btns ul li a {
        gap: 20px;
        padding: 30px 20px;
        font-size: 24px;
    }
    .reserve-btns ul li a.tel:before {
        width: 38px;
        height: 38px;
    }
    .reserve-btns ul li a.web:before {
        width: 34px;
        height: 36px;
    }
    span.menu-name {
        width: 60%;
    }
    span.menu-price {
        width: 40%;
        text-align: right;
    }
    .access-card {
        flex-direction: column;
    }
    .access-card .access-item {
        width: 100%;
        padding: 20px;
    }
    .access-card .access-map {
        padding: 0;
        aspect-ratio: 3 / 2;
    }
    .footer-wrap {
        flex-direction: column;
        justify-content: center;
    }
    nav.fgnav ul {
        flex-direction: column;
        gap: 20px;
        padding: 10px 0;
        margin: 20px 0;
    }
    nav.fsns ul {
        justify-content: center;
    }
    .footer small {
        text-align: center;
        margin-top: 20px;
        display: block;
    }
    .sub h4 {
        font-size: 20px;
    }
    .sub-text {
        margin-top: 20px;
    }
}
