/* デザートプレート専用CSS（競合回避版） */

/* デザートプレート全体のコンテナ */
.dessert_plate_container {
    text-align: center;
}
.section-wrap .content-area .dessert_plate_container h3{
	text-align: center;
}
.dessert_plate_container h3 img{
	max-width: 402px;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
}
/* デザートプレートのタイトル */
.dessert_plate_title {
    text-align: center;
    color: #58351b;
    font-size: 28px;
    padding: 15px 0 0;
    font-weight: bold;
    font-family: serif;
    line-height: 1.2;
}

/* デザートプレートの説明テキスト部分 */
.dessert_plate_description {
    font-size: 14px;
}

.dessert_plate_description h4 {
    margin-top: 15px;
    margin-bottom: 10px;
    text-align: center;
    color: #58351b;
    font-size: 20px;
    font-weight: bold;
    font-family: serif;
    line-height: 1.2;
}

/* デザートメニューのコンテナ */
.dessert_menu_wrapper {
    max-width: 1060px;
    margin: 0 auto;
    padding: 0px;
    font-family: "游明朝", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
    line-height: 1.6;
    color: #333;
}

/* デザートメニューのグリッド */
.dessert_menu_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 45px;
    margin: 30px auto 0;
}

/* デザートメニューの各アイテム */
.dessert_menu_item {
    background: #fff;
    width: 100%;
    margin-bottom: 15px;
}

.dessert_menu_item p.dessert_attention {
	text-align: left;
	font-family: sans-serif;
	margin-top: -8px;
}

/* デザートメニューアイテムのコンテンツ */
.dessert_item_content {
    display: flex;
    flex-direction: row;
    align-items: start;
    height: 100%;
}

/* デザートの画像部分 */
.dessert_image {
    width: 230px;
    height: 225px;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.dessert_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.dessert_image img:hover {
    transform: scale(1.05);
}

/* デザート情報の下部分 */
.dessert_info_bottom {
    display: block;
    width: 100%;
}

/* デザートタイトル部分 */
.dessert_title_section {
    padding: 0 10px;
    flex-grow: 1;
    align-items: start;
}

.dessert_title_english {
    font-size: 11px;
    color: #92582d;
	text-align: left;
    opacity: 90%;
    margin-bottom: 0px;
    line-height: 1.1;
}

.dessert_title_japanese {
    margin-top: 3px;
    font-size: 15px;
    font-weight: bold;
    color: #222;
    line-height: 1.3;
	text-align: left;
}

/* デザート価格部分 */
.dessert_price {
    padding: 10px 0 20px;
    font-size: 15px;
    font-weight: bold;
    color: #222;
    text-align: right;
    min-width: 130px;
    white-space: nowrap;
    line-height: 1.3;
    align-self: flex-end;
    margin-bottom: -1px;
}

.dessert_price .tax_note {
    font-size: 13px;
    color: #666;
    font-weight: normal;
}

/* ランチ注釈 */
.dessert_lunchtime {
    padding: 10px;
    font-size: 13px;
    color: #222;
    text-align: left;
    min-width: 130px;
    line-height: 1.3;
	font-weight: bold;
}


/* 注意書き */
.dessert_attention {
    font-size: 12px;
    color: #666;
    text-align: center;
	margin-top: 20px;
}

/* フォントサイズ用クラス */
.dessert_fs12 {
    font-size: 12px;
}

.dessert_fs10 {
    font-size: 10px;
}

/* タブレット表示（768px〜1024px） */
@media screen and (max-width: 1024px) {
    .dessert_menu_wrapper {
        padding: 0 15px;
        width: 100%;
    }
    
    .dessert_menu_grid {
        gap: 15px;
    }
    
    .dessert_title_section {
        padding: 10px 15px;
    }
    
    .dessert_title_english {
        font-size: 10px;
    }
    
    .dessert_title_japanese {
        font-size: 13px;
    }
    
    .dessert_price {
        padding: 10px 15px;
        min-width: 100px;
        font-size: 15px;
    }
}

/* スマートフォン表示（767px以下） */
@media screen and (max-width: 767px) {
.dessert_plate_container {
    width: 100%;
    background:none;
}

/* デザートプレートのタイトル */
.dessert_plate_title {
    background: none;
}
.dessert_plate_title img{
	width: 90%;
}

.dessert_image {
    width: 100%;
    height: 300px;
    
}

	/* 1列表示に変更 */
    .dessert_menu_grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 30px;
        margin-top: 30px;
    }
    
    .dessert_menu_wrapper {
        padding: 0 10px;
        width: 90%;
    }
    
    /* メニューアイテムのレイアウト */
    .dessert_item_content {
        flex-direction: column;
        align-items: stretch;
    }
    
    /* info_bottomを横並びに */
    .dessert_info_bottom {
        display: flex;
	    flex-wrap: wrap;

		padding: 6px 0px 15px;
		margin-top: 10px;
    }
    
    /* タイトル部分の調整 */
    .dessert_title_section {
        flex: 1;
        padding: 0;
        padding-right: 10px;
		text-align: left;
		white-space: nowrap;
    }
    
    /* 価格の調整 */
    .dessert_price {
        padding: 0;
        font-size: 16px;
        border: none;
        text-align: right;
        white-space: nowrap;
        flex-shrink: 0;
        line-height: 1.2;
        align-self: flex-end;
    }
    
    /* タイトルのフォントサイズ調整 */
    .dessert_title_english {
        font-size: 11px;
        margin-bottom: 3px;
        line-height: 1.1;
    }
    
    .dessert_title_japanese {
        font-size: 16px;
        margin-top: 0;
        line-height: 1.2;
    }
    
    .dessert_price .tax_note {
        font-size: 12px;
    }
}

/* 小さいスマートフォン（375px以下） */
@media screen and (max-width: 375px) {
    .dessert_title_section {
        padding: 15px;
    }
    
    .dessert_title_japanese {
        font-size: 13px;
    }
    
    .dessert_price {
        font-size: 15px;
    }
}