

.header-logo {
    display: block;
    width: 25%;
    margin:30px auto;
}

.header-logo-img {
    width: 100%;
}

.header-title{
    font-size: 25px;
    text-align: center;
    font-weight: normal;
    font-family: "Kiwi Maru", serif;
}

.header-nav-list {
    width:50%;
    font-size: 20px;
    margin:0 auto;
    margin-bottom: 50px;
    text-align: center;
    line-height: 1.5em;
    font-weight: normal;
    font-family: "Kiwi Maru", serif;
    display: flex;
    justify-content: space-between;
}

.header-nav-item {
    color:black;
    border-bottom: 3px solid gray;
}

.header-nav-item a {
    text-decoration: none;
    color: inherit;
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
    .header {
        flex-direction: column;
        align-items: center;
    }

    .header-nav-list {
        font-size: 25px;
        width: 60%;
    }

    .header-title {
        font-size: 25px;
    }

    .header-logo {
        width: 100%;
    }

    .header-logo-img {
        width: 300px;
    }

}

@media screen and (max-width: 768px) {
    .header {
        flex-direction: column;
        text-align: center;
        margin-bottom: 10px;
    }

    .header-nav-list {
        margin-top: 20px;
        width:60%;
    }

    .header-title {
        font-size: 20px;
    }

    .header-logo {
        width: 35%;
    }
}

@media screen and (max-width: 480px) {
    .header-title {
        font-size: 17px;
    }

    .header-nav-list {
        width:80%;
        font-size: 15px;
    }

    .header-logo{
        width:100%;
    }

    .header-logo-img {
        width: 200px;
    }
}


.firstview {
    margin-bottom: 100px;
    overflow: hidden;
    width: 100%;
    justify-content: center;
}

.firstview-image {
    display: flex;
    transition: transform 2s ease-in-out;
}

.firstview-image img {
    max-width: 50vw;
    display: block;
    margin: 0 auto;
    width: calc(100% / 5);
        /* ← 画像が5枚（4枚＋クローン）なら */
    flex-shrink: 0;
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
    .firstview {
        margin-bottom: 50px;
    }

    .firstview-image img {
        max-width: 70vw;
        flex-shrink: 0;
    }
}

@media screen and (max-width: 768px) {
    .firstview {
        margin-bottom: 50px;
    }

    .firstview-image img {
        max-width: 70vw;
        flex-shrink: 0;
    }
}

@media screen and (max-width: 480px){
    .firstview {
        margin-bottom: 50px;
    }

    .firstview-image img {
        max-width: 70vw;
        flex-shrink: 0;
    }
}

@media screen and (max-width: 400px) {
    .firstview {
        margin-bottom: 50px;
        width: 100%;
        overflow: hidden;
    }

    .firstview-image {
        display: flex;
        transition: transform 0.5s ease-in-out;
        width: 500%;
        /* 画像5枚ぶん（JSと一致させる） */
    }

    .firstview-image img {
        max-width: 70vw;
        flex-shrink: 0;
    }
}
.menu {
    background-color: #fce8f1;
    padding:50px 50px;
}

.menu-title {
    font-size: 36px;
    font-weight: lighter;
    font-family: "Kiwi Maru", serif;
    margin-bottom: 40px;
    text-align: left;
    /* 左寄せ */
    position: relative;
    display: inline-block;
    /* 下線の幅をタイトルの長さに合わせる */
    padding-bottom: 10px;
    /* 下線との間隔を調整 */
}

.menu-title::after {
    content: "";
    display: block;
    width: 100%;
    /* タイトルの長さに合わせる */
    height: 4px;
    background-color: #e06c9f;
    position: absolute;
    bottom: 0;
    left: 0;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    justify-items: center;
    margin: 0 auto;
    /* 中央寄せ */
}

.popular-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #f376ac;
    color: white;
    padding: 10px 20px;
    font-size: 18px;
    font-weight: lighter;
    border-radius: 50%;
    width: 80px;
        /* 横幅 */
    height: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.menu-card {
    position: relative;
    width: 90%;
    background: #f5f5f5;
    /* 明るめの背景色 */
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    font-family: "Kiwi Maru", serif;
    /* フォント */
}

.menu-card img {
    width: 100%;
    border-radius: 10px;
}

.menu-card:hover {
    transform: scale(1.05);
    /* ホバー時に少し拡大 */
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

/* メニューアイテムの文字の位置 */
.menu-name,
.menu-name3 {
    font-size: 22px;
    font-weight: lighter;
    font-family: "Kiwi Maru", serif;
    text-align: center;
    color: #e06c9f;
    padding: 8px 15px;
    border: 3px solid #fce8f1;
    /* 枠線 */
    border-radius: 6px;
    /* 角を丸く */
    display: inline-block;
    margin-top: 15px;
    width: fit-content;
    background-color: #fff;
    /* 白背景 */
}

.menu-description{
    color: #888;
}

.menu-price {
    font-size: 30px;
    color:#e06c9f;
    margin-top: 8px;
    margin-bottom: 8px;
}

/* 「その他メニュー」のタイトル */
.menu-subtitle {
    font-size: 22px;
    font-weight: lighter;
    text-align: left;
    margin-bottom: 20px;
    margin-top: 40px;
    padding-left: 20px;
}

/* その他メニューのリスト */
.menu-list {
    list-style: none;
    padding: 0;
}

.menu-item {
    font-size: 18px;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
    color: #555;
    text-align: left;
}

.menu-item p{
    font-size: 15px;
}

.price-red {
    color: #e06c9f;
    /* おしゃれな赤ピンク。もっと赤くしたければ #d80000 とかも◎ */
    font-weight: lighter;
}

.menu-other {
    margin-top: 40px;
    font-family: "Kiwi Maru", serif;
    margin: 0 auto;
}

@media screen and (min-width: 821px) and (max-width: 1024px) {
    .menu-card {
        padding: 15px 10px;
    }

    .menu-name {
        font-size: 19px;
    }
    .menu-description {
        font-size: 11px;
    }

    .popular-tag {
        position: absolute;
        top: -10px;
        left: -40px;
    }
}

@media screen and (max-width: 820px) {
        .menu-grid{
            display: block;
        }

        .menu-card {
            padding: 30px;
        }

        .menu-name {
            font-size: 33px;
        }

        .menu-name3 {
            font-size: 32px;
        }

        .menu-price{
            font-size: 33px;
        }

        .menu-description {
            font-size: 20px;
        }

        .popular-tag {
            position: absolute;
            top: 10px;
            left: 40px;
            font-size: 30px;
            width: 130px;
                /* 横幅 */
            height: 140px;
        }
}

@media screen and (max-width: 480px) {
    .menu-title{
        font-size: 25px;
    }
    .menu-card {
        padding: 20px;
    }

    .menu-name {
        font-size: 20px;
    }

    .menu-price {
        font-size: 20px;
    }

    .menu-description {
        font-size: 13px;
    }

    .popular-tag {
        position: absolute;
        top: 10px;
        left: -10px;
        font-size: 16px;
        width: 70px;
        /* 横幅 */
        height: 80px;
    }

    .menu-subtitle{
        font-size: 20px;
    }

    .menu-item{
        font-size: 15px;
    }
}

@media screen and (max-width: 400px) {
    .menu-title {
        font-size: 25px;
    }

    .menu-card {
        padding: 20px;
    }

    .menu-name {
        font-size: 19px;
    }

    .menu-name3 {
        font-size: 18px;
    }

    .menu-price {
        font-size: 20px;
    }

    .menu-description {
        font-size: 11px;
    }

    .popular-tag {
        position: absolute;
        top: 10px;
        left: -20px;
        font-size: 15px;
        width: 60px;
        height: 70px;
    }

    .menu-subtitle {
        font-size: 15px;
    }

    .menu-item {
        font-size: 12px;
    }

    .menu-item p {
        font-size: 10px;
    }
}

.reserve,
.poppy,
.gallery{
    padding: 50px 50px;
    font-family: "Kiwi Maru", serif;
}

.reserve-title,
.poppy-title,
.gallery-title {
    font-size: 36px;
    /* ちょい大きめ */
    font-weight: lighter;
    text-align: left;
    /* 左寄せ */
    position: relative;
    /* 下線用 */
    display: inline-block;
    /* 下線の幅を調整 */
    margin-bottom: 40px;
}

.reserve-title::after,
.poppy-title::after,
.gallery-title::after {
    content: "";
    display: block;
    width: 100%;
    /* 文字列の下にしっかり合わせる */
    height: 4px;
    background-color: #e06c9f;
    /* 桜っぽいピンク */
    margin-top: 10px;
}

.reserve-content {
    font-size: 24px;
    background: #fff8f8;
    /* ほんのりピンク系の背景 */
    padding: 30px;
    margin: 0 auto;
}

/* 説明文 */
.reserve-text {
    font-size: 22px;
    font-weight: lighter;
    color: #e06c9f;
    /* ピンク系で優しい雰囲気 */
    margin-bottom: 20px;
}

/* 電話番号 */
.reserve-tell {
    font-size: 26px;
    font-weight: lighter;
    color: #333;
    margin-bottom: 20px;
}

.line-apps{
    margin-bottom: 10px;
    display: block;
}

.fa-solid{
    margin-right:10px;
}

@media screen and (min-width: 821px) and (max-width: 1024px) {
    .reserve-text2{
        font-size: 18px;
    }
}

@media screen and (max-width: 820px) {
    .reserve-text2 {
        font-size: 14px;
    }
}

@media screen and (max-width: 480px) {
    .reserve-text{
        font-size:18px;
    }
    .reserve-content {
        padding: 10px;
    }

    .reserve-text2 {
        font-size: 14px;
    }
}

@media screen and (max-width: 400px) {
    .reserve-text {
        font-size: 16px;
    }

    .reserve-content {
        padding: 10px;
    }

    .reserve-text2 {
        font-size: 12px;
    }
}

.poppy {
    background-color: #fce8f1;
    padding: 50px;
}

/* 2カラムの親コンテナ */
.poppy-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    /* 左右の余白 */
    margin: 0 auto;
    font-size: 22px;
}

.poppy-text{
    margin-bottom: 30px;
    font-size: 18px;
}

/* 左側（徒歩6分＋地図） */
.poppy-left {
    width: 35%;
    text-align: center;
}

/* 地図のサイズを半分に */
.poppy-map {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.15);
}

/* 右側（店舗情報テーブル） */
.poppy-right {
    width:70%;
}

.poppy-table th {
    text-align: center;
    padding: 10px 10px;
    background-color: gainsboro;
    border-right: solid 1px gray;
    border-left: 1px solid gray;
    color: gray;
    font-size: 20px;
    width: 30%;
    font-weight: normal;
}

.poppy-table td {
    border-right: 1px solid gray;
    color: gray;
    font-size: 20px;
    padding: 10px 10px;
    font-weight: lighter;
}

.poppy-table tr {
    border-bottom: 1px solid gray;
    font-size: 20px;
}

.poppy-table {
    border-bottom: 1px solid gray;
    font-family: "Kiwi Maru", serif;
    font-weight: normal;
    width: 90%;
    margin: 0 auto;
    border-collapse: collapse;
}

.poppy-table tr:first-child {
    border-top: 1px solid gray;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 90%;
    margin: 0 auto;
}

.gallery-card {
    background: #f5f5f5;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.gallery-card img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.gallery-card:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

@media screen and (min-width: 821px) and (max-width: 1024px) {
    .poppy-left {
        width: 40%;
    }

    .poppy-right {
        width: 60%;
    }

    .poppy-text{
        font-size: 15px;
    }

    .poppy-table{
        font-size: 15px;
    }
}

@media screen and (max-width: 820px) {
    .poppy-container{
        display: block;
    }
    .poppy-left {
        width: 80%;
        margin: 0 auto;
    }

    .poppy-right {
        width: 100%;
        margin-top: 15px;
    }

    .poppy-text {
        font-size: 15px;
    }

    .poppy-table {
        font-size: 15px;
    }
}

@media screen and (max-width: 480px) {
    .poppy-left{
        width:100%;
    }

    .poppy-text {
        font-size:13px;
    }

    .poppy-table th,
    .poppy-table td {
        font-size: 13px;
    }
}

@media screen and (max-width: 400px) {
    .poppy-left {
        width: 100%;
    }

    .poppy-text {
        font-size: 12px;
    }

    .poppy-table th,
    .poppy-table td {
        font-size: 12px;
    }
}

.copyright {
    color: gray;
    font-size: 15px;
    display: block;
    text-align: center;
    padding-top: 20px;

}

.footer {
    height: 50px;
}


