.content-wrapper {

	font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
}
.section-wrap {
	padding: 40px 20px;
}
.section-wrap h3 {
	padding-left: 2.5em;
	padding-bottom: 12px;
}

.detail-content {
	text-align: left;
}

.lum-gallery-button {
	display: none;
}

h4 {
	margin-top: 20px;
}
/* 飲み放題ヘッダー（タイトルと値段を横並び） */
.nomihodai-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 20px;

	background-image: url(../takeout/images/bg_title.png);
    background-repeat: no-repeat;
    background-position: bottom center;
}

.nomihodai-header h3 {
    margin: 0;
    padding: 0 0 0 1em;
	background: none;
}

.nomihodai-header .price {
    margin: 0;
    white-space: nowrap;

	font-size: 24px;
    font-weight: bold;
    line-height: 1.7;
    font-family: serif;
    margin-top: 10px;
    padding-bottom: 4px;
}

/* drink_wrap 2カラムレイアウト用CSS */

.drink_wrap {
    width: 100%;
    max-width: 1000px;
    margin: 20px auto;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.drink_item {
    width: calc(50% - 10px); /* 2カラム、gap分を考慮 */
    font-family: serif;
    font-size: 16px;
    margin-bottom: 0; /* margin-bottomは不要（gapで調整） */
    color: #000;
    box-sizing: border-box;
    display: flex;
    align-items: flex-start; /* 上揃え */
}

.drink_item .name {
    flex: 1;
    font-weight: bold;
    line-height: 1.2;
    padding-right: 10px;
    box-sizing: border-box;
	font-size: 17px;
}

.drink_item .name .small,
.drink_item .name .en,
.drink_item .tax {
    font-size: 12px;
    font-weight: normal;
}

.drink_item .name .en {
    padding-left: 0.5em;
    padding-top: 0.5em;
    color: #666;
    display: inline-block;
}

.drink_item .text {
    font-size: 14px;
    font-weight: 500;
    padding-left: 0.8em;
    padding-top: 0;
    display: inline-block;
}

.drink_item .prices {
    flex-shrink: 0;
    font-weight: bold;
    line-height: 1.2;
    text-align: right;
    white-space: nowrap;
    min-width: 120px; /* 価格エリアの最小幅 */
	font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
}

/* clearfixクラスがある場合の対応 */
.drink_wrap.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

/* スマートフォン対応 */
@media screen and (max-width: 768px) {
	h3 img.aldr {
	max-width: 568px;
	width: 100%;
	}
	h3 img.nmh {
	max-width: 465px;
	width: 100%;
	}
	h3 img.spk {
	max-width: 439px;
	width: 100%;
	}
	h4 img.nalw {
	max-width: 339px;
	width: 100%;
	}

    .drink_wrap {
        width: 100%;
        padding: 0;
        margin: 20px 0;
        flex-direction: column; /* 縦並びに変更 */
        gap: 15px;
    }
    
    .drink_item {
        width: 100%;
        font-family: sans-serif;
        font-size: 15px;
        flex-direction: row; /* 縦並びに変更 */
        align-items: flex-start;
    }
    
    .drink_item .name {
        width: 100%;
        padding-right: 0;
        margin-bottom: 8px;
    }
    
    .drink_item .dotline {
        display: none; /* スマホでは点線を非表示 */
    }
    
    .drink_item .prices {
        /*width: 100%;*/
        text-align: left; /* 左寄せに変更 */
        min-width: auto;
    }
	
	/* スマホでは飲み放題ヘッダーを縦並びに */
    .nomihodai-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .nomihodai-header .price {
        font-size: 18px;
    }
}