@charset "utf-8";



:root{
    --bgcolor:#fae1c8;
    --white:#fffafa;
    --black:#333333;
    --brown:#6c3524;
    --red:#e73562;
}

a{
    cursor: pointer;
}

body{
    font-family: Zen Maru Gothic;
    color:var(--black);
    background-color: var(--bgcolor);
}

h1,h2{
    font-family: Cormorant;
}

.main{
    margin-left: min(200px,20%);
}



/* loading画面 */
#loading {
    background-color:#f0e9df;
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    place-items: center;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

#loading_logo {
    width: 300px; /* ロゴのサイズを調整 */
    animation: spin 2s linear infinite;
}


.fadeUp{
    animation-name: fadeUpAnime;
    animation-duration:0.5s;
    animation-fill-mode:forwards;
    opacity: 0;
    }
    
    @keyframes fadeUpAnime{
    from {
    opacity: 0;
    transform: translateY(100px);
    }

    to {
    opacity: 1;
    transform: translateY(0);
    }
}

/* 各セクションのmargin-top */
.sec_margin_top{
    margin-top: 5rem;
}
/* セクションのコンテナ内margin-top */
.con_margin_top{
    margin-top: 2rem;
}
/* コンテナを中央揃えにする */
.w-container{
    width: 90%;
    max-width: 1080px;
    margin-left: auto;
    margin-right: auto;
}
/* 各セクションのタイトル */
.sec_title{
	position: relative;
	font-size: clamp(2rem, 0.7305rem + 3.1169vw, 4rem);
    width: 30%;
    margin-left: 2rem;
    color: var(--bgcolor);
    text-shadow:2px 2px 0 var(--brown), -2px -2px 0 var(--brown),
    -2px 2px 0 var(--brown), 2px -2px 0 var(--brown),
    0px 2px 0 var(--brown),  0 -2px 0 var(--brown),
    -2px 0 0 var(--brown), 2px 0 0 var(--brown);
}


@media (max-width:768px) {
    .sec_title{
        width: 50%;
    }
}

/* --------------------ボタン-------------------- */



.btn{
    display: flex;
    width: 150px;
    font-size: 1rem;
    color: var(--white);
    background-color: var(--brown);
    border: 1px solid var(--white);
    box-shadow: 0 0 0 3px var(--brown);
    margin: 2rem auto 0;
    transition: 0.4 ease;
}

.btn a{
    width: 100%;
    height: 100%;
    padding: 0.5rem 1rem;
    text-align: center;
}

.btn :hover{
    background-color: var(--red);
    /* border: 1px solid var(--white); */
    box-shadow: 0 0 0 3px var(--red);
}

/* --------------------header-------------------- */


.header {
    position: fixed;
    background-color: var(--bgcolor);
    z-index: 10;
    width: 20%;
    max-width: 200px;
    height: 100%;
    top:0;
    left: 0;
}

.header_inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    color: var(--brown);
}



.header_logo {
    width: 150px;
    height: 150px;
}

.header_logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.header_nav{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 3rem;
}

.header .header_nav ul{
    display: flex;
    flex-direction: column;
}

.header .header_nav ul li{
    padding: 1rem 0.5rem; 
    text-align: center;
}


.header .header_nav ul li > a {
    position: relative;
    color: var(--brown);
    text-decoration: none;
}

.header .header_nav ul li a::after {
    position: absolute;
    left: 0;
    content: '';
    width: 100%;
    height: 1px;
    background: var(--red);
    bottom: -1px;
    transform: scale(0, 1);
    transform-origin: center top;
    transition: transform 0.3s;
}

.header .header_nav ul li > a:hover::after {
    transform: scale(1, 1);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .main{
        margin:0 auto;
    }

    .header {
        position: fixed;
        background-color: var(--bgcolor);
        z-index: 10;
        width: 100%;
        max-width: initial;
        height: 50px;
    }
    .header_inner {
        width: 100%;
        margin: 0 auto;
        height: 100%;
    }
    .header_nav {
        display: flex;
        flex-direction: row;
        width: 100%;
        height: 50vh;
        position: fixed;
        top: -100%;
        left: 0;
        z-index: 2;
        background: var(--bgcolor);
        transition: 0.5s;
        margin: 0 auto;
        justify-content: center;
    }

    .header_nav.open {
        top: 0;
    }

    .header .header_nav ul {
        display: flex;
        flex-direction: column;
        padding: 1rem 2rem;
    }

    .header .header_nav ul li {
        padding-bottom: 1.5rem;
    }
    .mainsec {
        margin-left: 0; /* モバイルビューでは余白を無くす */
    }

    #menu-btn {
        display: block;
        width: 30px;
        height: 20px;
        position: fixed;
        top: 1rem;
        right: 1rem;
        z-index: 3;
        cursor: pointer;
    }

    #menu-btn span,
    #menu-btn span::before,
    #menu-btn span::after {
        content: "";
        height: 2px;
        width: 100%;
        border-radius: 3px;
        background: var(--brown);
        position: absolute;
        transition: 0.2s;
    }

    #menu-btn span {
        top: 0;
    }

    #menu-btn span::before {
        top: 8px;
    }

    #menu-btn span::after {
        top: 16px;
    }

    #menu-btn.open span {
        top: 8px;
        transform: rotate(45deg);
    }

    #menu-btn.open span::before {
        opacity: 0;
    }

    #menu-btn.open span::after {
        top: 0;
        transform: rotate(-90deg);
    }


}



/* --------------------メインビジュアル-------------------- */

.mainsec {
    position: relative;
    height: 90vh;
    overflow: hidden;
}

.main_text {
    display: flex;
    flex-direction: row;
    align-items: flex-start; /* 上揃え */
    position: absolute;
    z-index: 1;
    right: 20%; /* 右側に配置 */
    top: 50%;
    transform: translateY(-50%);
    text-align: right; /* 右寄せ */
}

.main_text h1 {
    color: var(--white);
    font-size: clamp(3.75rem, 2.386rem + 6.82vw, 7.5rem);
    margin: 0;
}

.main_text p {
    .shop_info {
        display: flex;
        height: 400px;
    }
    
    .shop_image {
        width: 600px;
        height: 100%;
    }
    
    table {
        table-layout: fixed;
        width: 100%;
        margin: 0 auto;
    }
    
    table tr {
        border-bottom: 1px dotted var(--brown);
    }
    
    table th,
    table td {
        padding: 1rem;
        border: none;
    }
    
    table th {
        width: 30%;
    }
    
    table td {
        width: 70%;
        text-align: left;
    }
    
    /* sp */
    @media (max-width: 768px) {
        .shop_info {
            flex-direction: column;
        }
    
        table th,
        table td {
            width: 100%;
            display: block;
        }
    
        table th {
            width: 100%;
        }
    
        table td {
            padding: 1rem;
            text-align: center;
        }
    }
    
    margin-top: -2rem;
    align-self: flex-start; 
}

.mainvisual {
    position: relative;
    height: 100%;
}

.mainvisual img {
    position: absolute;
    opacity: 0;
    transition: opacity 3s ease-in-out, transform 5s ease-in-out;
    width: 100%;
    height: 100%;
}

.mainvisual img.active {
    opacity: 1;
    transform: scale(1.1);
}

/* ---------------------------------------メインビジュアルの区切りの波------------------------------------------------- */

.custom-shape-divider-bottom-1722686187 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.custom-shape-divider-bottom-1722686187 svg {
    position: relative;
    display: block;
    width: calc(150% + 1.3px);
    height: 150px;
}

.custom-shape-divider-bottom-1722686187 .shape-fill {
    fill: var(--bgcolor);
}


/* デスクトップ用のスタイル */
.mainvisual .desktop {
    display: block;
}

.mainvisual .sp {
    display: none;
}

/* SP用のスタイル */
@media (max-width: 768px) {
    .mainvisual .desktop {
        display: none;
    }

    .mainvisual .sp {
        display: block;
    }
}


/* --------------------CONCEPT-------------------- */

.concept-container{
    text-align: center;
}

.concept-container h3{
    font-size: clamp(1.25rem, 0.269rem + 2.56vw, 2rem);
    margin-bottom: 1rem;
}

/* --------------------MENU-------------------- */


.menu-container{
    max-width: 960px;
}

.menu-container ul{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap:1rem
}

.menu-container li img{
    height: 200px;
    border-radius: 8px;
}

/* SP用のスタイル */
@media (max-width: 768px) {
    .menu-container ul{
        grid-template-columns: 1fr 1fr;
    }
}

/* --------------------新着情報-------------------- */

.card_list {
    max-width: 960px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.cardlist_item {
    min-height: 300px;
    background: var(--white);
    padding: 1.5rem 1rem;
    border-radius: 8px;
    opacity: 0.8;
}

.card_label{
    font-size: 14px;
}

.card_pic {
    width: 100%;
    height: 154px;
}

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

.card_body{
    margin-top: 0.5rem;
}

time {
    line-height: 1.6;
    color: var();
    padding: 0.5rem 0;
    margin-bottom: 1rem;
    border-bottom: 1px solid #9a9696;
}

.card_title {
    font-weight: bold;
    font-size: 1.2rem;
    margin-top: 0.5rem;
}

.cardlist_item a {
display: block;
transition: 0.2s;
}

.cardlist_item a:hover {
opacity: 0.6;
}



@media (max-width: 768px) {
    .card_list {
    max-width: 300px;
    grid-template-columns: repeat(1, 1fr);
}

/* ボタン */
.btn a::after {
    position: absolute;
    right: 15px;
}

.btn a:hover::after {
    right: 10px;
}
}


/* --------------------map-------------------- */

iframe{
    display: block;
    width: 80%;
    height: 300px;
    margin: 0 auto;
}

/* --------------------アクセス-------------------- */
.shop_info {
    display: flex;
    width: 90%;
    align-items: center;
    margin: 0 auto;
    padding: 2rem;
}

.shop_image {
    width: 600px;
    height: 100%;
}

.shop_image img{
    width: 100%;
}

table {
    table-layout: fixed;
    width: 100%;
    margin: 0 auto;
}

table tr {
    border-bottom: 1px dotted var(--brown);
}

table th,
table td {
    padding: 1rem;
    border: none;
    vertical-align: middle;
}

table th {
    width: 30%;
}

table td {
    width: 50%;
    text-align: left;
}

/* sp */
@media (max-width: 768px) {
    .shop_info {
        flex-direction: column;
    }

    table th,
    table td {
        width: 100%;
        display: block;
    }

    table th {
        width: 100%;
    }

    table td {
        padding: 1rem;
        text-align: center;
    }
}





/* --------------------footer-------------------- */
.footer {
    background: var(--bgcolor);
    color: var(--brown);
    padding: 2rem;
    margin-left: min(200px,20%);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 960px;
    width: 80%;
    margin: 0 auto;
    padding: 1rem;
    
}

.footer_logo {
    width: 150px;
    height: 150px;
}

.footer_logo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer_nav {
    width: 150px;
    margin-top: auto;
    margin-bottom: auto;
    text-align: center;
}

.footer_nav li {
    padding: 0.5rem;
}

.sns-container{
    width: 150px;
    display: flex;
    justify-content: space-around;
}

.sns-container li{
    padding: 0.5rem;
}
.sns-container i{
    font-size: 2rem;
}

.footer_nav ul li a::after {
    position: absolute;
    left: 0;
    content: '';
    width: 100%;
    height: 1px;
    background: var(--red);
    bottom: -1px;
    transform: scale(0, 1);
    transform-origin: center top;
    transition: transform 0.3s;
}

.footer_nav ul li > a:hover::after {
    transform: scale(1, 1);
}

small{
    display: block;
    width: 100%;
    color: var(--brown);
    padding: 0.8rem;
    text-align: center;
}

@media (max-width: 768px) {
    .footer {
        padding: 1.5rem 0 0;
        margin: 0 auto;
    }

    .footer-container {
        display: flex;
        flex-wrap: wrap-reverse;
        justify-content: center;
        gap: 2rem;
        margin: 2rem auto;
    }

    .footer-content {
        width: 100%;
        order: 1; 
        flex-direction: column;
    }

    .footer_logo {
        width: 100%;
        order: 2; 
        margin: 0 auto 1rem;
        text-align: center;
    }

    .footer_nav {
        margin-bottom: 1.5rem;
    }

    .footer_nav ul {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .footer_nav li {
        padding: 0.5rem;
    }

    .sns-container {
        display: flex;
    }
}




