.content-wrapper {
	font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
}

.section-wrap {
	padding: 20px 40px;
}
.content-wrapper .pd20 {
	padding: 20px;
}

.cafes {
	color: #453022;
}

.serif{
	font-family: serif;
}

h4.drinks {
	font-family: serif;
	font-weight: bold;
	font-size: 18px;
	margin-top: 30px;
}

/* カフェタイトル - 中央寄せ版 */
.cafe-title {
    position: relative;
    text-align: center;
    margin: 20px 0;
}

.cafe-title img {
    height: auto;
    max-width: 100%;
}

.cafe-title .time {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-5%);
    font-size: 16px;
    color: #666;
    white-space: nowrap;
}

/* カフェタイトル - 左寄せ版 */
.cafe-title-left {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin: 20px 0;
}

.cafe-title-left img {
    height: auto;
    max-width: 50%;
    flex-shrink: 0;
    margin-bottom: 13px;
}

.cafe-title-left .time {
    font-size: 16px;
    color: #666;
    white-space: nowrap;
    margin-left: 20px;
}

/* ドルチェセット全体 */
.dolceset_wrap {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	gap: 25px;
	margin: 20px auto;
}

.set_wraps {
	flex: 1;
}

.set_wraps .titles {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	margin-bottom: 10px;
}

.price {
	text-align: right;
	font-weight: bold;
	font-size: 20px;
}

/* ===== ドリンクメニュー用（2カラム） ===== */
.drink_menu_container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 0 auto;
}

.drink_wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    background: #fff;
}

.drink_name {
    flex: 1;
    margin-right: 20px;
    line-height: 1.4;
    font-size: 14px;
}

.drink_wrap .price {
    flex-shrink: 0;
    text-align: right;
    font-weight: bold;
    min-width: 120px;
    font-size: 14px;
}

/* ===== デザートメニュー用（3カラム） ===== */
.dessert_menu_container {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.dessert_menu_container .menu_item_photo {
    margin: 10px 0 20px;
    width: 31.5%;
}

.dessert_menu_container .menu_item_photo:last-child {
    margin-right: 0;
}

.dessert_menu_container .menu_item_photo img {
    width: 85%;
    display: block;
    margin: 0 auto;
}

.item_text {
    margin: 10px auto;
}

.item_text dt {
    font-family: serif;
    font-weight: bold;
    font-size: 108%;
    display: flex;
    justify-content: space-between;
}

.item_text .menutitle {
    line-height: 1.1;
}

.item_text .lineheight11 {
    line-height: 1.2;
    display: block;
    padding: 1px 0 0 0.5em;
    margin: 0;
}

.item_text .price {
    font-family: serif;
    font-weight: bold;
}

.item_text dd {
    font-size: 12px;
    padding: 5px 0;
	line-height: 1.3;
}

.item_text dd span.pt5{
	padding-top: 5px;
	display: inline-block;
}

.item_text dd.attention_d {
    font-size: 12px;
    color: #999;
}

.menutitle .fs12 {
    color: #666;
    padding-left: 0.5em;
}

/* 共通スタイル */
.fs12 {
    font-size: 12px;
}

.en {
    font-style: italic;
    color: #888;
}

.jp_pl {
    margin: 8px 0 0 0;
    padding-left: 10px;
    color: #666;
}

.line11 {
    /* 必要に応じてスタイルを追加 */
}

.deserts {
    margin: 20px auto;
}

.deserts .info_text {
    margin: 10px auto;
    line-height: 1.3;
}

.deserts .info_text .en-text {
    font-size: 14px;
    padding-left: 0.5em;
}

/* ===== レスポンシブ対応 ===== */

/* タブレット対応 */
@media (max-width: 768px) {
	/* ドルチェセット全体 */
.dolceset_wrap {
	flex-direction: column;
	justify-content: space-between;
	gap: 25px;
	margin: 20px auto;
}
.dolceset_wrap .photo {
	display: none;
}
.cafes {
	background-image:  url("../images/cafe/bg_cafetime.png");
	background-repeat: no-repeat;
	background-position:  bottom right;
}


    /* ドリンクメニュー */
	.drink_wrap {
	background: none;
	}
    .drink_menu_container {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 15px;
    }
	.drink_wrap .price {
	background: #fff;
	}
    
    /* デザートメニュー */
    .dessert_menu_container {
        display: block;
        width: 90%;
        margin: 10px auto;
    }
    
    .dessert_menu_container .menu_item_photo {
        margin: 20px auto;
        width: 100%;
    }
    
    .drink_wrap {
        padding: 12px;
    }
}

/* スマートフォン対応 */
@media (max-width: 600px) {
    .cafe-title .time {
        position: static;
        transform: none;
        display: block;
        text-align: center;
        margin-top: 10px;
    }
    
    .cafe-title-left {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .cafe-title-left .time {
        margin-left: 0;
        margin-top: 10px;
    }
}

@media (max-width: 480px) {
    .drink_menu_container {
        padding: 10px;
        gap: 10px;
    }
    
    .drink_wrap {
        flex-direction: column;
        align-items: stretch;
        padding: 15px;
    }
    
    .drink_name {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .drink_wrap .price {
        text-align: left;
        min-width: auto;
        border-top: 1px solid #eee;
        padding-top: 10px;
    }
}

@media (max-width: 400px) {
    .cafe-title-left img {
        max-width: 70%;
    }
}

@media (max-width: 360px) {
    .drink_menu_container {
        padding: 5px;
    }
    
    .drink_wrap {
        padding: 10px;
    }
}