@charset "utf-8";
/*------------------------------------------------
* Version       : 1.1
* Date          : 2025.12.14
* Description   : Cafe Sample Custom Styles
-------------------------------------------------*/

/* --- Menu Page --- */
.menu-category-title {
    border-bottom: 2px solid #ddd;
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-weight: bold;
    color: #333;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #eee;
}

.menu-name {
    font-weight: bold;
    font-size: 1.1rem;
}

.menu-price {
    font-family: 'Georgia', serif;
    font-size: 1.5rem;
    color: #434030;
}

.menu-desc {
    font-size: 0.95rem;
    color: #7b6e41;
    margin-top: 5px;
    display: block;
	font-weight: bold;
}

/* --- Gallery Page --- */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.gallery-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 4/3; /* 画像の比率を統一 */
}

/* --- Shop Page --- */
.shop-info-table th {
    background-color: #f9f9f9;
    width: 30%;
    padding: 15px;
    vertical-align: middle;
}
.shop-info-table td {
    padding: 15px;
    vertical-align: middle;
}

.map-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}
.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* --- Contact Page --- */
.contact-box {
    border: 2px solid #eee;
    padding: 40px;
    text-align: center;
    border-radius: 8px;
    background-color: #fff;
}
.phone-number {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
    margin: 20px 0;
    display: block;
}

/* --- Index Page & General --- */
.service-card {
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #eee;
    background: #fff;
}
.service-card:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}
.service-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}