@charset "utf-8";
/* カフェ紹介セクション */
.content-section {
	padding: 0 3rem 3rem;
	max-width: 1300px;
	margin: 0 auto;
	line-height: 1.5;
    margin-top: 80px;
}
.cafe-intro {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 50px;
    background-color: #f9f9f9;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.cafe-image {
    flex: 1 1 400px;
}

.cafe-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cafe-description {
    flex: 1 1 400px;
    padding: 30px;
}

.cafe-description h2 {
    color: #7d9682;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.cafe-description p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.cafe-info {
    display: flex;
    flex-wrap: wrap;
    margin-top: 30px;
    background-color: #e0f0e0;
    padding: 15px;
    border-radius: 5px;
}

.info-item {
    flex: 1 1 200px;
    margin: 10px;
}

.info-item h3 {
    font-size: 1.1rem;
    color: #7d9682;
    margin-bottom: 8px;
    border-bottom: 1px solid #e6735c;
    padding-bottom: 5px;
}

/* メニューセクション */
.menu-section {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.menu-section h2 {
    color: #7d9682;
    margin-bottom: 30px;
    font-size: 1.8rem;
    text-align: center;
    border-bottom: 2px solid #e6735c;
    padding-bottom: 10px;
}

.menu-category {
    margin-bottom: 40px;
}

.menu-category h3 {
    background-color: #7d9682;
    color: white;
    padding: 10px 20px;
    display: inline-block;
    border-radius: 20px;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

/* おすすめメニュー */
.menu-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.menu-item {
    flex: 0 0 calc(50% - 15px);
    margin-bottom: 30px;
    display: flex;
    background-color: #f9f9f9;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.menu-item:hover {
    transform: translateY(-5px);
}

.menu-image {
    flex: 0 0 150px;
}

.menu-image img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.menu-details {
    flex: 1;
    padding: 15px;
}

.menu-details h4 {
    color: #7d9682;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.menu-details p {
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.price {
    font-weight: bold;
    color: #666;
    font-size: 1.1rem !important;
}

/* グランドメニュー */
.menu-list {
    display: flex;
    flex-wrap: wrap;
}

.menu-column {
    flex: 1 1 300px;
    margin: 0 10px;
}

.menu-list-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px dashed #e6735c;
}

.menu-name {
    flex: 1;
}

.menu-price {
    font-weight: bold;
    color: #666;
    margin-left: 10px;
}

/* レスポンシブ対応 */
@media (max-width: 960px) {
    .menu-item {
        flex: 0 0 100%;
    }

    .cafe-intro {
        flex-direction: column;
    }

    .cafe-image {
        height: 250px;
    }
}
@media (max-width: 768px) { 
    .content-section{
        padding: 0.5rem;
    }
    .cafe-description {
        padding:1rem;
    }
}
@media (max-width: 500px) {
    .menu-details h4 {
        font-size: 1rem;
    }
    
    .menu-details p {
        font-size: 0.8rem;
    }

    .info-item {
        flex: 0 0 100%;
    }
    .menu-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .menu-image {
        margin-bottom: 10px;
    }
    .menu-section{
        padding:1rem;
    }
}
