@charset "utf-8";

/* すべての要素に適用 */
*,
*::before,
*::after {
  box-sizing: border-box;
}


html {
    font-size: 16px;
}
body {
    margin: 0;
    background-color: rgba(215, 218, 206);

}



.header {
    height: 5rem;
    width: 100%;
    background-color: rgba(215, 218, 206);
    display: flex;
    justify-content: center;  
    align-items: center;    
}

h1 {
    font-size: 2.5rem;
    display: block;
    margin: 0;
}


.header__inner {
    height: 5rem;
    width: 5rem;
    position: fixed;
    top: 0;
    left: 0;
}


.hamburger {
    display: block;
    height: 5rem;
    width: 5rem;
    border: 0;
    padding: 1vh;
    background-color: #6f62622a;
    position: relative;
    z-index: 10;
    
}


.hamburger__line {
    display: block;
    height: 0.3rem;
    width: 3rem;
    background-color: #ddd9d4;
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translateX(-50%);
    transition: 0.4s;
}


.hamburger__line::before,
.hamburger__line::after {
    content: "";
    display: block;
    height: 100%;
    position: absolute;
    width: 100%;
    background-color: #ddd9d4;
    transition: inherit;
}


.hamburger__line::before {
    top: -0.7rem;
}
.hamburger__line::after {
    top: 0.7rem;
}


.hamburger__line.-active {
    background-color: transparent;
}

.-active.hamburger__line::before {
    top: 0;
    transform: rotate(45deg);
}

.-active.hamburger__line::after {
    top: 0;
    transform: rotate(-45deg);
}

.hamburger__text {
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
}

.hamburger__text::before {
    content: "メニュー";
    text-align: center;
    color: #172e59;
    font-size: 1rem;

    font-weight: 900;
}


.header__nav-area {
    position: fixed;
    top: 0;
    padding: 0px;
    left: -100%;
    z-index: 9;
    height: 100vh;
    width: 50vw;
    visibility: hidden;
    padding-top: 15vh;
    background-color: rgba(215, 218, 206, 0.942);
    transition: 0.4s;
}



.global-navigation__list {
    font-weight: bold;
    margin: 1rem 1rem 0 1rem;
    padding: 0;
    list-style: none;
}

.global-navigation__list li {
    padding: 1rem 0;
    border-bottom: solid 0.15rem;
    
}

.global-navigation__list li a {
    color: #000;
    text-decoration: none;
    padding: 1.2rem;
    
}
.header__nav-area.-active {
    left: 0;
    visibility: visible;
}


.-active.hamburger__text::before {
    content: "閉じる";
}




.slide-container {
    width: 100vw;
    display: flex;
    align-items: center;
    height: 66.6vw;
    overflow: hidden;
    flex-direction: row;


}

.slide-wrapper {
    display: flex;
    flex-direction: row;
    animation: slide-flow 20s infinite linear 1s both;
    z-index: -1;

}

.slide{
    width: 100vw;
    object-fit: cover;
    border: 1px solid #ddd;
}

@keyframes slide-flow {
    0% {transform: translateY(0);}
    100% {transform: translateX(-100%);}
}




main {
}

.container {
    padding: 0 0.75rem;
    margin: 2rem 0 2.25rem 0;
}

.container h1 {
    margin: 0 0 0.5rem 0;
    text-align: center;
    line-height: 1.6;
    font-family: "YuMincho", "Yu Mincho", "Hiragino Mincho ProN", "NotoSerifSubset", serif;
    font-size: 1.0rem;
    font-weight: 500;
}



.containerSlim {
    padding: 0 0.875rem 2.25rem 0.875rem;
}


.containerSlim p {
    margin: 0 0 1.5rem 0;
    text-align: justify;
    line-height: 1.8;
    font-family: "YuMincho", "Yu Mincho", "Hiragino Mincho ProN", "NotoSerifSubset", serif;
    font-size: 0.875rem;
    letter-spacing: 0.04375rem;
    text-indent: 0; /* インデントなしで揃える */
}




footer {
    height: 0.1rem;
    background-color: #6f62622a;
    margin: 0 1rem;
}






/* menu.index*/



.menu-i {
    margin-top: 1rem;
    text-align: center;
}

.menu-i img {
    opacity: 0;
    transition: opacity 1.0s ease;
}


.menu-i img.show {
    opacity: 1;
}


.menu-price {
    margin: 1rem;
    font-size: 1rem;
    font-weight: bold;
    color: #000;
}

.menu-caption {
    margin: 1rem;
    font-size: 1rem;
    font-weight: bold;
    color: #000;
}




/* テーブル全体のデザイン */
table {
    width: 95%;
    max-width: 600px; /* 必要に応じて調整 */
    margin: 20px auto;
    border-collapse: collapse;
    background-color: #222; /* 黒基調 */
    color: #fff; /* 白文字 */
    font-family: "Arial", sans-serif;
    text-align: center;
    border-radius: 8px; /* 角丸 */
    overflow: hidden;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
}

/* ヘッダーのスタイル */
th {
    background-color: #333; /* ヘッダー部分を少し明るく */
    padding: 15px;
    font-size: 1.2rem;
    font-weight: bold;
    border-bottom: 2px solid #555;
}

/* データセルのスタイル */
td {
    padding: 12px;
    font-size: 1.1rem;
    border-bottom: 1px solid #555;
}

/* 最後の行のボーダーを削除 */
tr:last-child td {
    border-bottom: none;
    
}

/* ホバー時の効果 */
tr:hover {
    background-color: #444;
    transition: 0.3s ease-in-out;
}





.popup-overlay {
    display: none;               /* 初期は非表示 */
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* 背景を暗く */
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup-content {
    position: relative;
    background: #fff;
    padding: 1rem;
    border-radius: 10px;
    max-width: 90%;
    max-height: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.popup-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}



.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 1.5rem;
    cursor: pointer;
}





/* タブレット用 768px 以上のときに適用*/
@media (min-width: 768px) {}
  
/* ノートPC・デスクトップ用 1024px 以上のときに適用*/
@media (min-width: 1280px) {


        
    html {
        font-size: 18px;
    }

    body {
        margin: 0;
        background-color: rgba(215, 218, 206);

    }


    .header {
        height: 4rem;
        width: 100%;
        background-color: rgba(215, 218, 206);
        display: flex;
        justify-content: center;  /* 水平方向に中央揃え */
        align-items: center;      /* 垂直方向に中央揃え */
        position: fixed;
        top: 0;
    }

    .main h1 {
        font-size: 2rem;
        display: block;
        margin: 0;
    }
    .hamburger {
        display: block;
        height: 5rem;
        width: 5rem;
        border: 0;
        padding: 1vh;
        background-color: #6f62622a;
        position: fixed;
        /* left: -100%; */
        z-index: 10;
        display: none;
        
    }

    
    

    .header__inner {
        position: fixed;
        height: 4rem;
        width: 4rem;
        top: 3rem;
        left: 0;
    }



    .header__nav-area {
        position: absolute;
        top: 8px;
        padding: 0;
        left: 0;
        z-index: 9;
        height: 4rem;
        width: 100vw;
        visibility: visible;
        background-color: rgba(215, 218, 206);
        transition: 0.4s;
    }


    .global-navigation__list {
        display: flex;
        justify-content: center;
        font-weight: bold;
        margin: 0;
        padding: 0;
        list-style: none;
    }
    
    .global-navigation__list li {
        margin: 0 1rem;
        padding: 1rem 0;
        border-bottom: solid 0.15rem;
        cursor: pointer;
        
    }

    main {
      margin-top: 9rem;
    }


    .slide-container {
        width: 100vw;
        display: flex;
        align-items: center;
        height: 25vh;
        overflow: hidden;
        /* flex-direction: column; */
        flex-direction: row;
    
    
    }

    .slide{
        width: 33.3vw;
        object-fit: cover;
        border: 1px solid #ddd;
    } 

    

    


    .containerSlim {
        padding: 0 8rem 2.25rem 8rem;
        
    }

    .containerSlim p {
        font-size: 1.5rem;
        text-align: center;
        
    }

    .m-menu {
        display: flex;
    }
    
    

}





