@charset "utf-8";



/* header */
header {
    background: #ffffff;
    color: #000000;
    height: 125px;
    box-shadow: 0 2px 4px 0 rgba(100, 0, 0, 0.25);
    position: relative;
}

/* PC only */
@media (min-width: 769px) {
    header {
        height: 125px;
    }

    header nav {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 60px;
        z-index: 950;
        overflow: visible;
    }

    header nav.is-fixed {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
    }
}

/* SP */
@media (max-width: 768px) {
    header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 300;
    }
}


.hd_wrap {
    width: 96%;
    max-width: 1440px;
    height: 100%;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}



/* SP */
@media (max-width: 768px) {
.hd_wrap {
    padding-right: 15%;
    padding-left: 3%;
}

header {
    position: fixed;
    height: 75px;
}

}


.logo_area {
    display: block;
    margin: 0;
    width: 243px;
    height: 51px;
    aspect-ratio: 81/17;
}
.logo_area a {
    color: #ffffff;
    justify-content: center;
    height: 100%;
    line-height: 1;
}


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

    .logo_area {
    width: 60%;
    max-width: 220px;
    height: auto;
    aspect-ratio: 91/19;
}
}


.logo_area a small {
    font-size: 1rem;
    display: block;
letter-spacing: 0.1rem;
}

.logo_area a strong {
    font-size: 2.25rem;
    font-weight: normal;
    display: block;
}


/* SP */
@media (max-width: 768px) {
    header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 300;
    }
header .logo_area a small {
    font-size: 0.9rem;
    display: block;
letter-spacing: 0.1rem;
font-weight: 500;
}

header .logo_area a strong {
    font-size: 1.9rem;
    font-weight: normal;
    display: block;
}

}


/* ヘッダー中央（PC ONLY） */
header .hd_middle {
    width: stretch;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.hd_middle p {

    font-size: 18px;
}
/* SP */
@media (max-width: 1340px) {
.hd_middle p {
    display: none;
}
}

/* TEL */
.hd_middle div {
    align-items: flex-end;
    justify-content: flex-start;
    gap: 0;
    padding-left: 2rem;
    padding-right: 2rem;
    margin-left: auto;
}

.hd_middle div a {
    gap: 0.3rem;
    align-items: center;
    font-size: 36px;
    white-space: nowrap;
    line-height: 1;
}
.hd_middle div a img {
    object-fit: none;
}

.hd_middle div small {
    font-size: 16px;
}

.hd_middle a.booknow {
    width: 220px;
    height: 58px;
    flex-shrink: 0;
    background: #F2A100;
    color: #ffffff;
    font-size: 20px;
    justify-content: center;
    align-items: center;
    border-radius: 9999px;
    font-weight: 400;
}
.hd_middle a.booknow:hover {
    opacity: 0.7;
}






/* 翻訳プルダウン */
.gtranslate_wrapper {
    width: fit-content;
}


.gt_selector {
   border: none;
   background: var(--red);
   border-radius: 5px;
   border-right:solid 5px var(--red);
   color: #ffffff;
   width: 8rem;
    height: 3rem;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    /* border-radius: 0; */
   display: flex;
   align-items: center;
   padding-left: 1rem;
    padding-right: 1.75rem;
   font-size: 18px;
   font-weight: 400;
   font-family: "futura-pt", sans-serif;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M4.24265 5.30325L-0.000102848 1.0605L1.0604 -3.70913e-07L4.7729 3.7125L8.4854 -4.63559e-08L9.5459 1.0605L5.30315 5.30325C5.1625 5.44385 4.97177 5.52284 4.7729 5.52284C4.57402 5.52284 4.38329 5.44385 4.24265 5.30325Z' fill='%23FFFFFF'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.6rem center;
    background-size: 10px 6px;
   
}

/* SP only */
@media (max-width: 769px) {
    .gtranslate_wrapper {
    width: 40%;
}

    .gt_selector {

    width: 100%;
    height: 2.5rem;
    }
}




/* メニュー全体のスタイル */
.menu-container {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 2%;
    display: flex;
    align-items: center;
    z-index: 1100;
}

/* ハンバーガーメニューアイコン SP ONLY */
.hamburger {
   width: 2.5rem;
   height: 25px;
   display: flex;
   flex-direction: column;
   justify-content: space-between;
   cursor: pointer;
   z-index: 1001;
    position: relative;
    top: 0;
    right: 0;
    transform: none;
    -webkit-transform: none;
    -ms-transform: none;
}

.hamburger span {
   display: block;
   height: 2px;
   width: 2rem;
   background: var(--red);
   transition: all 0.3s ease;
}


/* ハンバーガーメニューのアニメーション（×に変化） */
.hamburger.active {
    justify-content: center;
}

.hamburger.active span {
    position: absolute;
    left: 0;
    top: 50%;
    width: 2rem;
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(-50%) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
   opacity: 0;
    transform: translateY(-50%) scaleX(0);
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-50%) rotate(-45deg);
}

/* スクロール禁止 */
body.no-scroll {
   overflow: hidden;
}




/* PC only*/
@media (min-width: 769px) {
    .menu-container {
        width: 100%;
        position: absolute;
        top: 125px;
        left: 0;
    }

    .hamburger {
        display: none;
    }
}



/* メニューのスタイル（デフォルト非表示・全画面） */
/* NAV */
/* PC only*/
@media (min-width: 769px) {
    nav.menu {
        height: 60px;
        background: var(--red);
        color: #ffffff;
        box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    }
}

/* SP only */
@media (max-width: 769px) {
nav.menu {
   position: fixed;
    top: 4.6875rem;
   left: 0;
   width: 100%;
    height: calc(100vh - 4.6875rem);
    background: #ffffff;
   /* display: flex;
    align-items: flex-start;
    justify-content: center; */
   opacity: 0;
   visibility: hidden;
   transition: opacity 0.3s ease, visibility 0.3s ease;
    overflow-y: auto;
    z-index: 1090;
    pointer-events: none;
    box-shadow: inset 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    padding-bottom: 2rem;
}

    /* メニューが開いたとき */
    nav.menu.active {
    opacity: 1;
    visibility: visible;
        pointer-events: auto;
    }

}

/* nav　メインメニュー */
/* PC only*/
@media (min-width: 769px) {
    .menu ul.menu_list {
        justify-content: center;
        gap: 0;
        height: 100%;
    }

    .menu ul.menu_list li {
        color: #ffffff;
        font-size: 1.2rem;
        font-weight: 400;
        width: 165px;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;

        transition-duration: 300ms;
    }
    .menu ul.menu_list li:hover {
    background:#FF6E73;
    }
    .menu ul.menu_list li a {
        color: #ffffff;
        text-align: center;
        line-height: 1.1;
    }
}

@media (min-width: 769px) and (max-width: 1001px) {
    .menu ul.menu_list li {
        padding: 0 0.5rem;
        font-size: 1rem;

    }
    .menu ul.menu_list li:first-child {
        width: fit-content;
        padding: 0 1rem;
    }
}



/* SP only */
@media (max-width: 769px) {

    .menu ul.menu_list {
    list-style: none;
        margin: 1rem auto 1.5rem;
    padding: 0;
        text-align: left;
        width: 90%;
    }

    .menu ul.menu_list li {
        margin: 0;

        border-bottom: solid 1px var(--red);
    }

    .menu ul li a.menu_main {
    text-decoration: none;
    color: #C2191F;
        font-size: 1.5rem;
        font-weight: 500;
        letter-spacing: 0.01em;
        transition: color 0.3s ease, opacity 0.3s ease;
        
        /* border-bottom: 1px solid #C2191F; */
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 1rem 1rem;
    }

    .menu ul li a.menu_main::after {
        content: "";
        width: 8px;
        height: 14px;
        flex-shrink: 0;
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
        transition: transform 0.3s ease;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='14' viewBox='0 0 8 14' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M7.07113 7.7456L1.41413 13.4026L0.00012207 11.9886L4.95012 7.0386L0.00012207 2.0886L1.41413 0.674591L7.07113 6.3316C7.2586 6.51917 7.36392 6.77352 7.36392 7.0386C7.36392 7.30367 7.2586 7.55803 7.07113 7.7456Z' fill='%23C2191F'/%3E%3C/svg%3E");
    }
    

}



/* メニューアコーディオン */
.menu_brand_block {
    /* border-bottom: 1px solid #C2191F; */
    /* padding: 1.4rem 0.25rem 0.8rem; */
}

.menu_brand_head {
    /* font-size: 1.5rem; */
    font-family: "futura-pt", sans-serif;
}

/* PC only*/
@media (min-width: 769px) {
    .menu_brand_head {
        width: 100%;
        height: 100%;
        color: #ffffff;
        font-size: 1.2rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: transparent;
        cursor: pointer;
        border: 0;
        padding: 0;
        margin: 0;
    }

    .menu_label {
    display: flex;
    justify-content: center;
    width: 100%;
    align-items: center;

        line-height: 1.1;
    }

    .menu_label:after {
        content: "";
        display: block;
        clip-path: polygon(100% 0, 0 0, 50% 100%);
        color: #ffffff;
        background: #ffffff;
        width: 14px;
        height: 8px;
        font-size: 0.9rem;
        margin-left: 0.8rem;
        display: inline-block;
        transform-origin: center;
        transition: transform 0.3s ease;
    }

    .menu_brand_block.is-open .menu_label:after {
        transform: rotate(180deg);
    }
}

@media (max-width: 1001px) {
        .menu_brand_head {
            font-size: 1rem;
        }
}

/* SP only */
@media (max-width: 769px) {
    .menu_brand_head {
    color: #C2191F;
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin: 0;
    padding: 1rem;
    padding-bottom: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    text-align: left;
}
.menu_label {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.menu_brand_head::after {
    content: "";
    width: 14px;
    height: 11px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    transition: transform 0.3s ease;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.29289 0.928932C5.68342 0.538408 6.31658 0.538408 6.70711 0.928932L11.7071 5.92893L10.2929 7.34315L6 3.05025L1.70711 7.34315L0.292893 5.92893L5.29289 0.928932Z' fill='%23C2191F'/%3E%3C/svg%3E");
}


}







.menu ul li a:hover {
    opacity: 0.8;
}

.menu ul li a:hover::after {
    transform: translateX(4px);
}


/* メニューアコーディオン中身 */
.menu_brand_items {
    gap: 1.2rem;
    justify-content: center;
    max-height: 0;
    opacity: 0;
    margin-top: 0;
    overflow: hidden;
    pointer-events: none;
    transform: translateY(-6px);
    will-change: max-height, opacity, transform;
    transition: max-height 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease, transform 0.3s ease, margin-top 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.menu_brand_block.is-open .menu_brand_items {
    max-height: 600px;
    opacity: 1;
    pointer-events: auto;
    margin-top: 1rem;
    transform: translateY(0);
}

.menu_brand_block.is-open .menu_brand_head::after {
    transform: rotate(180deg);
}

/* PC only */
@media (min-width: 769px) {
    .menu_brand_block {
        position: relative;
        height: 100%;
        display: flex;
        align-items: center;
    }

    .menu_brand_items {
        position: absolute;
        top: 100%;
        left: 0;
        transform: none;
        max-height: none;
        overflow: visible;
        margin-top: 0;
        background: #ffffff;
        box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.25);
        padding: 1rem;
        gap: 1rem;
        min-width: 205px;
        transition: opacity 0.25s ease, visibility 0s linear 0.25s;
        visibility: hidden;
        border-radius: 0 0 25px 25px;
        
    }

    .menu ul.menu_list li .menu_brand_items a {
        color: #000;
        font-size: 1rem;
        text-align: left;
        font-weight: 500;
    }
    .menu ul.menu_list li .menu_brand_items a:hover {
        color: var(--red);

    }
    .menu_brand_block.is-open .menu_brand_items {
        transform: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transition-delay: 0s;
        margin-top: 0;
    }
}

/* SP only */
@media (max-width: 769px) {
    .menu_brand_items {
        padding-bottom: 1rem;
    }
    .menu_brand_items a {
        border: 0;
        min-height: 0;
        padding: 0 1.1rem 0 15%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        /* max-width: 170px; */
        border-bottom:0!important;
        color: var(--red);
        font-size: 1.3rem;
        width: 100%;
    }

    .menu_brand_items a:after {
        content: "";
        width: 8px;
        height: 14px;
        flex-shrink: 0;
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
        transition: transform 0.3s ease;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='14' viewBox='0 0 8 14' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M7.07113 7.7456L1.41413 13.4026L0.00012207 11.9886L4.95012 7.0386L0.00012207 2.0886L1.41413 0.674591L7.07113 6.3316C7.2586 6.51917 7.36392 6.77352 7.36392 7.0386C7.36392 7.30367 7.2586 7.55803 7.07113 7.7456Z' fill='%23C2191F'/%3E%3C/svg%3E");
    }

    .menu ul.bottom_menu {
        width: 90%;
        margin: 0 auto 1.5rem;
        gap: 0.6rem;
    }

    .menu ul.bottom_menu li {
        border:solid 1px var(--red);
        border-radius: 10px;
    }
    .menu ul.bottom_menu li a {
        font-size: 1.3rem;
    }

    .menu a.sh_link {
        width: 90%;
        margin: 0 auto 2rem;
        display: block;
    }

}

    .menu_brand_items a img {
        width: 90%;
        height: auto;
    }













/* footer */
footer {
    border-radius: 80px 80px 0 0;
    width: 100%;
    overflow: hidden;
    margin-top: -5rem;
}

/* SP */
@media (max-width: 768px) {
footer {
    border-radius: 25px 25px 0 0;
    margin-top: -2rem;
}
}

.ft_top {
    width: 100%;
    padding-top: 4rem;
    padding-bottom: 4rem;
    color: #ffffff;
    background: var(--red);
}


/* SP */
@media (max-width: 768px) {
    .ft_top {
    padding-top: 3rem;
    padding-bottom: 3rem;
    }
}


.ft_top .ft_sns {
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
}

.ft_top .ft_sns a {
    width: 72px;
    height: 72px;
}

.ft_top p {
    font-size: 2.3rem;
    font-weight: 400;
    margin-bottom: 2rem;
}



.ft_top a.booknow {
    width: 220px;
    height: 58px;
    flex-shrink: 0;
    background: #F2A100;
    color: #ffffff;
    font-size: 20px;
    justify-content: center;
    align-items: center;
    border-radius: 9999px;
    font-weight: 400;
}
.ft_top a.booknow:hover {
    opacity: 0.7;
}





.ft_middle {
    padding: 1rem 0 150px;
}

/* SP only */
@media (max-width: 769px) {

    .ft_middle {
        padding: 0 0 1.5rem ;
    }

}

.ft_middle h2 {
    color: var(--red);
    text-align: center;
    font-size: 2.625rem;
    margin: 3rem 0 2rem;
}

/* SP only */
@media (max-width: 769px) {
    .ft_middle h2 {
        margin: 2rem 0 0rem;
    }
}



/* SHOP LIST SLIDE*/
.ft_shoplist {
    width: min(96%, 1210px);
    margin: 0 auto;
    position: relative;
    padding: 0rem 1rem 3rem 1rem;
}

.ft_shoplist .slick-list {
    overflow: hidden;
}

.ft_shoplist .slick-track {
    padding: 1rem 0;
}


.shoplist_detail {
    width: 50%;
    box-sizing: border-box;
    padding: 0.5rem 1rem;
}

.shoplist_inner {
    border-radius: 1.75rem;
    border: 1px solid #1d1d1d;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    background: #ffffff;
    overflow: hidden;
}

.shoplist_card {
    display: grid;
    grid-template-columns: minmax(0, 47%) minmax(0, 1fr);
    grid-template-areas:
        "photo title"
        "photo meta"
        "button button";
    gap: 0 0.8rem;
    /* background: #ffffff; */
    padding: 0.9rem;
}

.shoplist_photo {
    grid-area: photo;
}

.shoplist_photo img {
    width: 100%;
    height: auto;
    aspect-ratio: 8/5;
    /* min-height: 14rem; */
    object-fit: cover;
    border-radius: 1rem;
    display: block;
}

.shoplist_title {
    grid-area: title;
    color: var(--red);
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 10px;
}

.shoplist_meta {
    grid-area: meta;
    gap: 0.5rem;
}

.shoplist_meta_item {
    gap: 0.25rem;
    margin: 0;
}

.shoplist_meta_item dt {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.1;
}

.shoplist_meta_item dd {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.35;
}

.shoplist_toggle {
    grid-area: button;
    width: min(72%, 18rem);
    margin: 0.8rem auto 0;
}



.shoplist_more {
    max-height: none;
    overflow: visible;
    opacity: 1;
    margin-top: 0;
}

.shoplist_more p {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.1;
    padding: 1rem;
    padding-top: 0;
}




/* shoplist slide dots */
.shoplist_slide .slick-dots {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
}

.shoplist_slide .slick-dots li {
    line-height: 0;
}

.shoplist_slide .slick-dots li button {
    width: 0.875rem;
    height: 0.875rem;
    border: 1px solid var(--red);
    border-radius: 50%;
    background: #ffffff;
    font-size: 0;
    padding: 0;
}

.shoplist_slide .slick-dots li button::before {
    content: none;
}

.shoplist_slide .slick-dots li.slick-active button {
    background: var(--red);
}

/* SP only */
@media (max-width: 769px) {
    .ft_shoplist {
        width: 100%;
        padding: 0 0 1rem;
    }

    .ft_shoplist .slick-list {
        overflow: hidden;
        /* padding: 0.5rem 0; */
    }


    .shoplist_detail {
        width: 100%;
        padding: 0.5rem 1rem;
    }

    .shoplist_inner {
        border-radius: 1.5625rem;
    }

    .shoplist_card {
        grid-template-columns: minmax(0, 47%) minmax(0, 1fr);
        grid-template-areas:
            "photo title"
            "photo button"
            "meta meta";
        gap: 0 0.75rem;
        border-radius: 1.5rem;
        padding: 1rem;
    }

    .shoplist_photo img {
    }

    .shoplist_title {
        font-size: 1.3rem;
        align-self: end;
        margin: 0;
    }

    .shoplist_meta {
        gap: 0.5rem;
        padding-top: 0.7rem;
    }

    .shoplist_meta_item {
    }
    .shoplist_meta_item dt {
        /* font-size: 0.8rem; */
    }

    .shoplist_meta_item dd {
        /* font-size: 0.95rem; */
        line-height: 1.3;
    }

    .shoplist_toggle {
        width: 100%;
        min-height: 3rem;
        /* font-size: 0.9rem; */
        letter-spacing: 0.14em;
    }

    .shoplist_more p {
        font-size: 0.95rem;
        line-height: 1.45;
    }

    
    .ft_top .ft_sns {
        justify-content: center;
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .ft_top .ft_sns a {
        width: 57px;
        height: 57px;
    }

    .ft_top p {
        font-size: 1.5rem;
        font-weight: 400;
        margin-bottom: 1.5rem;
    }



}

/* ACCESS MAP */
.ft_map {
    justify-content: center;
        align-items: center;
    gap: 2rem;
}


/* SP only */
@media (max-width: 769px) {
    .ft_map {
    padding-top: 1rem;
    gap: 1rem;
    }
}


.ft_map div {
    width: 50%;
}

/* SP only */
@media (max-width: 769px) {
    .ft_map div {
    width: 100%;
}
}


.ft_map .map_area {
    border-radius: 1.5625rem;
    height: 26.75rem;
    overflow: hidden;
}

/* SP only */
@media (max-width: 769px) {
    .ft_map .map_area {
        border-radius: 0.9375rem;
        aspect-ratio: 370/247;
        width: 100%;
        height: auto;
    }
}

.ft_map .map_area iframe {
    width: 100%;
    height: 100%;
}



.ft_map .txt_area {
    gap: 0.35rem;
}

.ft_map .txt_area span {
    color: var(--red);
    font-size: 1.1rem;
}

.ft_map .txt_area p {
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}
/* SP only */
@media (max-width: 769px) {
    .ft_map .txt_area {
    gap: 0rem;
}
.ft_map .txt_area p {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}


}


.ft_bottom {
    background: #FFEEEE;
    width: 100%;
    color: var(--red);
    padding: 3rem 0 6rem;
    position: relative;
}

/* SP */
@media (max-width: 768px) {
    .ft_bottom {
        height: fit-content;
        padding: 2rem 0 3rem;
    }
}


.ft_bottom .ft_logo {
    width: 26.25rem;
    height: 5.5rem;
    aspect-ratio: 105/22;
    margin-bottom: 4rem;
}

/* SP */
@media (max-width: 768px) {
    .ft_bottom .ft_logo {
    width: 18rem;
height: 3.75rem;
aspect-ratio: 24/5;
}

}


.ft_bottom ul.ft_menu {
    gap: 2rem;
    justify-content: center;
    max-width: 1300px;
}

.ft_bottom ul.ft_menu li {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
}


/* PC only*/
@media (min-width: 769px) {
    .ft_bottom ul.ft_menu {
        width: 96%;
    }
    .ft_bottom ul.ft_menu li.sp {
        display: none;
    }
}

.ft_bottom ul.ft_menu li a {
    font-size: 1rem;
}

@media (max-width: 1200px) {
    .ft_bottom ul.ft_menu {
        gap: 1.5rem;
    }
.ft_bottom ul.ft_menu li a {
    font-size: 0.95rem;
    /* white-space: nowrap; */
}

}

.ft_bottom ul.ft_menu li a:hover {
    color: var(--red);
}
.ft_bottom ul.ft_menu li a:first-child {
    font-weight: 700;
}


/* SP */
@media (max-width: 768px) {
    .ft_bottom ul.ft_menu {
        gap: 1rem;
        width: 80%;
    }
    .ft_bottom ul.ft_menu li a,
    .ft_bottom ul.ft_menu li a:first-child {
        color: var(--red);
        font-size: 1.2rem;
        font-weight: 500;
    }

    .ft_bottom ul.ft_menu li a:nth-child(n + 2){
    display: none;
}

}

.ft_bottom .ft_card {
    position: absolute;
    right: 0;
    bottom: 0;
    background: #ffffff;
    width: 15.6875rem;
    height: fit-content;
    border-radius: 1.5625rem;
    padding: 0.5rem 1.5rem 1rem;

}
.ft_bottom .ft_card span {
    color: #000000;
    text-align: center;
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.ft_bottom .ft_card ul {
    width: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 3px;

}
.ft_bottom .ft_card ul li {
    width: calc((100% - 9px)/ 4 );
}

/* SP */
@media (max-width: 768px) {
    .ft_bottom .ft_card {
        position: relative;
        width: 80%;
        margin: 2rem auto 0 ;
    }
    .ft_bottom .ft_card ul li {
    width: calc((100% - 12px)/ 5 );
    }
}



/* モーダル */
/* オーバーレイのスタイル */
#overlay {
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: rgba(0, 0, 0, 0.5); /* 薄暗い背景 */
   opacity: 0;
   visibility: hidden;
   transition: opacity 0.3s, visibility 0.3s;
   z-index: 2000;
 }
 
 /* モーダルウィンドウの基本スタイル */
 #modal1, #modal2 {
   position: fixed;
   bottom: -100%; /* 初期状態では画面外に */
   left: 50%;
   transform: translate(-50%, 0%); /* X軸方向に-50%移動して中央に配置 */
   background: white;
   border-radius: 1.5625rem;
   width: 85vw;
   max-width: 1200px;
   height: 80vh;
   overflow: auto;
   /* max-width: 400px; */
   padding: 20px;
   box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
   transition: bottom 0.3s;
   visibility: hidden;
   z-index: 9999999;
   transition: opacity 0.3s, transform 0.5s; 
 }
 
 /* SP */
@media (max-width: 768px) {
     #modal1, #modal2 {
        width: 90%;
   height: 90vh;
   border-radius: 1rem;
     }
}

 /* モーダルウィンドウの表示スタイル */
 #modal1:not(.hidden),
 #modal2:not(.hidden) {
   top: 10vh; /* 画面の下から20%の位置に */
   transform: translate(-50%, 0%); /* Y軸の変化を削除 */
   visibility: visible;
 }

/* SP */
@media (max-width: 768px) {
        #modal1:not(.hidden),
        #modal2:not(.hidden) {
                top: 50%;
                transform: translate(-50%, -50%);
        }
}
 
 #modal1.hidden,
#modal2.hidden {
  top: 100vh; /* 画面外の下部から開始 */
  opacity: 0;
  transform: translate(-50%, 100%); /* 初期位置を下に設定 */
}


 /* オーバーレイの表示スタイル */
 #overlay:not(.hidden) {
   opacity: 1;
   visibility: visible;
 }
 
 /* モーダルコンテンツ */
 .modal-content {
   width: 80%;
   margin: 0 auto;
     padding: 3rem 0 2rem;
     position: relative;
 }
 
   /* SP */
@media (max-width: 768px) {
 .modal-content {
    width: 100%;
    padding: 1rem 0 1rem;
 }
}


 strong.popup_title {
    color: var(--red);
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    display: block;
    margin-bottom: 2rem;
}


 .modal-content p {
   /* white-space: pre-wrap; */

   font-size: 1.25rem;
   text-align: left;
   margin-bottom: 3rem;
   
 }

 .modal-content p span {
   font-weight: bold;
   display: block;
   font-size: 1.4rem;
   margin: 2rem 0 0rem;
 }
 
  /* SP */
@media (max-width: 768px) {
     strong.popup_title {
    font-size: 2rem;
     }
      .modal-content p {
        font-size: 1rem;
      }
 .modal-content p span { 
    margin: 1rem 0 0;
 }

    }


.modalClose {
    border: 0;
    cursor: pointer;
}

.modalCloseIcon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: transparent;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='27' height='27' viewBox='0 0 27 27' fill='none'%3E%3Cpath d='M13.247 14.781L1.88067 26.1473C1.67844 26.3496 1.43 26.4579 1.13533 26.4723C0.840666 26.4868 0.577777 26.3784 0.346666 26.1473C0.115555 25.9162 0 25.6606 0 25.3803C0 25.1001 0.115555 24.8444 0.346666 24.6133L11.713 13.247L0.346666 1.88067C0.144444 1.67844 0.0361106 1.43 0.0216661 1.13533C0.00722168 0.840666 0.115555 0.577777 0.346666 0.346666C0.577777 0.115555 0.833444 0 1.11367 0C1.39389 0 1.64956 0.115555 1.88067 0.346666L13.247 11.713L24.6133 0.346666C24.8156 0.144444 25.0647 0.0361106 25.3608 0.0216661C25.6541 0.00722168 25.9162 0.115555 26.1473 0.346666C26.3784 0.577777 26.494 0.833444 26.494 1.11367C26.494 1.39389 26.3784 1.64956 26.1473 1.88067L14.781 13.247L26.1473 24.6133C26.3496 24.8156 26.4579 25.0647 26.4723 25.3608C26.4868 25.6541 26.3784 25.9162 26.1473 26.1473C25.9162 26.3784 25.6606 26.494 25.3803 26.494C25.1001 26.494 24.8444 26.3784 24.6133 26.1473L13.247 14.781Z' fill='%23C2191F'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
    font-size: 0;
    line-height: 0;
    width: 1.65588rem;
    height: 1.65588rem;
    padding: 0;
    z-index: 300;
}

/* SP */
@media (max-width: 768px) {
.modalCloseIcon {
    top: 1rem;
    right: 1rem;
        width: 1rem;
    height: 1rem;
}
}


.modalCloseBottom {
    display: block;
    font-size: 1.3rem;
    color: #ffffff;
    font-weight: bold;
    background: #C2191F;
    padding: 0.5rem 3rem;
    border-radius: 1.5rem;
    margin: 0 auto;
}







.ft_last {
    background: var(--red);
    color: #ffffff;
    text-align: center;
    padding: 2rem;
}


.ft_last .ftlink {
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.ft_last a {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 400;
    pointer-events: fill;
}


/* SP only */
@media (max-width: 769px) {
    .ft_last {
    background: #ffffff;
    color: var(--red);
}
.ft_last p {
    font-size: 0.9rem;
}

}




