@charset "UTF-8";

/* -----------------リセットCSS始まり----------------- */
* {
    margin: 0;
    padding: 0;
}

a {
    display: block;
}

ul {
    list-style-type: none;
}

@font-face {
    font-family: NotoSerifJP;
    src: url(../font/static/NotoSerifJP-Regular.ttf);
}

/* -----------------リセットCSS終わり----------------- */



/* -----------------header部分始まり----------------- */
.menu-btn {
    display: flex;
    position: fixed;
    height: 10vw;
    width: 100%;
    align-items: center;
    justify-content: right;
    z-index: 100;
    background-color: rgba(0, 0, 0, 0.7);
}

h1 {
    width: 50vw;
    height: 2.7vw;
    padding-left: 1vw;
    left: 0;
    position: fixed;
    font-family: NotoSerifJP;   
    z-index: 900;
}

h1 a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #ffffff;
}

h1 a span {
    margin-top: 2vw;
    margin-left: 1vw;
    font-size: 5vw;
    font-weight: 200;
}

h1 a img {
    width: 10vw;
    height: auto;
    margin-top: 2vw;
}

.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
    margin-right: 3vw;
    content: '';
    display: block;
    height: 0.2vw;
    width: 5vw;
    border-radius: 1vw;
    background-color: #ffffff;
    position: absolute;
}
.menu-btn span:before {
    bottom: 1.5vw;
}
.menu-btn span:after {
    top: 1.5vw;
}

#menu-btn-check:checked ~ .menu-btn span {
    background-color: rgba(255, 255, 255, 0);
}
#menu-btn-check:checked ~ .menu-btn span::before {
    bottom: 0;
    transform: rotate(45deg);
}
#menu-btn-check:checked ~ .menu-btn span::after {
    top: 0;
    transform: rotate(-45deg);
}

#menu-btn-check {
    display: none;
}

.menu-content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 80;
    background-color: rgba(0, 0, 0, 0.7);
}
.menu-content ul {
    padding: 10vw 2vw 0;
}
.menu-content ul li {
    border-bottom: solid 1px #ffffff;
    list-style: none;
}
.menu-content ul li a {
    text-align: center;
    display: block;
    width: 100%;
    font-size: 4vw;
    box-sizing: border-box;
    color:#ffffff;
    text-decoration: none;
    padding: 1vw 5vw 0.7vw 1vw;
    position: relative;
}

.menu-content ul li a:hover {
    background-color: rgba(202, 202, 202, 0.9);
    color: #000000;
    transition: 1s;
}

.menu-content {
    width: 100%;
    height: 60%;
    position: fixed;
    top: 0;
    left: 100%;/*leftの値を変更してメニューを画面外へ*/
    z-index: 80;
    background-color: rgba(0, 0, 0, 0.7);
    transition: all 0.5s;/*アニメーション設定*/
}

#menu-btn-check:checked ~ .menu-content {
    left: 0%;/*メニューを画面内へ*/
}
/* -----------------header部分終わり----------------- */



/* -----------------main部分始まり----------------- */



/* -----------------MENU詳細ページ始まり----------------- */

#MENU h2 {
    padding-top: 10vw;
    margin-bottom: 2vw;
    text-align: center;
    letter-spacing: 0.5em;
    font-size: 4vw;
    font-family: NotoSerifJP;
    color: #000000;
}

.page-header {
    text-align: center;
    margin-bottom: 3vw;
    font-size: 1.5vw;
    font-family: NotoSerifJP;
}

.category-title {
    width: 86vw;
    padding-top: 3vw;
    padding-bottom: 2vw;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 4vw;
    text-align: center;
    letter-spacing: 0.5em;
    font-size: 3vw;
    font-family: NotoSerifJP;
    color: #462020;
    border-bottom: #000000 0.1vw solid;
}

.menu-parent {
    width: 20vw;
}

.item-name {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 3vw;
    font-family: NotoSerifJP;
    font-weight: 600;
}

.item-price {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 2.5vw;
    font-family: NotoSerifJP;
}

.item-desc {
    text-align: center;
    font-size: 2vw;
    font-family: NotoSerifJP;
    margin-bottom: 2vw;
    color: #616161;
}


.menu-category {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4vw;
    width: 86vw;
    margin-left: auto;
    margin-right: auto;
}


.menu-parent {
    width: 100%;
}

.menu-item img {
    display: block;
    width: 100%; 
    height: 28vw; 
    margin-bottom: 2vw;
}

.menu-category-coffee {
    margin-bottom: 10vw;
}

.menu-item-coffee {
    display: flex;
}

.border-dotted {
    width: 30vw;
    border-bottom: 0.15vw dotted #cccccc;
    margin: 0 1.5vw
}

.menu-item-coffee {
    width: 60vw;
    margin-left: auto;
    margin-right: auto;
}

.item-name-coffee {
    display: block;
    width: 30vw;
    font-size: 2vw;
    font-family: NotoSerifJP;
    font-weight: 600;
}

.item-price-coffee {
    display: block;
    text-align: center;
    font-size: 2vw;
    font-family: NotoSerifJP;
    margin-bottom: 0.5vw;
}

.item-desc-coffee {
    font-size: 1.2vw;
    margin-top: 1vw;
    text-align: center;
    font-family: NotoSerifJP;
    margin-bottom: 2.5vw;
    color: #616161;
}

/* -----------------MENU詳細ページ終わり----------------- */



/* -----------------h2アニメーション始まり----------------- */

.fade-title span {
    display: inline-block; 
    opacity: 0;
    transform: translateY(30px); 
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-title.active span {
    opacity: 1;
    transform: translateY(0); 
}

/* -----------------h2アニメーション終わり----------------- */

/* -----------------main部分終わり----------------- */



/* -----------------footer部分始まり----------------- */

footer {
    padding: 3vw;
    background-color: #462020;
    color: #ffffff;
    font-family: NotoSerifJP;
    font-size: 1.5vw;
}

.footer-logo {
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.5vw;
    margin-bottom: 1.54vw;
}

.footer-info {
    text-align: center;
    margin-bottom: 3vw;
}

.footer-content {
    display: flex;
    width: 70%;
    margin-left: auto;
    margin-right: auto;
}

.footer-content ul li a {
    display: block;
    color: #ffffff;
    text-decoration: none;
}

.footer-nav {
    width: 50%;
    text-align: center;
}

.footer-nav ul li a{
    line-height: 5vw;
}

.sns-nav {
    width: 50%;
    border-left: #ffffff 0.1vw solid;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2vw; /* インスタとXの縦の隙間 */
}

/* 枠の中でさらに幅を決めて中央に寄せる */
.sns-nav li {
    width: 17vw;
    margin: 0 auto;
}

/* リンク全体（文字とアイコンを横に並べる） */
.sns-nav li a {
    display: flex;
    align-items: center; /* 縦の中心を揃える */
    gap: 1vw; /* アイコンと文字の間の隙間 */
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1vw; /* 文字の大きさ */
}

/* ★独自のクラスでアイコンだけを大きくし、幅を固定する */
.sns-icon {
    font-size: 2.5vw; /* アイコンを大きくする */
    width: 3vw;       /* アイコンの横幅を固定して文字の開始位置を揃える */
    text-align: center;
}

footer p small {
    display: block;
    margin-top: 2vw;
    text-align: center;
    font-size: 1.2vw;
}

footer a:hover {
    filter: brightness(0.5);
}

/* -----------------footer部分終わり----------------- */

