/* drink.htmlで実際に使用されているクラスのみ */

.menu_itemContent {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start; /* 上揃えに統一 */
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
	padding-bottom: 5px;
	margin-bottom: 15px;
	border-bottom: 1px dotted #ccc;
}

.menu_item .lastnote {
	border: none;
	padding: 0;
	margin-bottom: 0;
}

.menu_wrap_contents {
    width: 100%;
    max-width: 1020px;
    margin: 0 auto;
    padding-left: 0;
    padding-right: 0;
    text-align: left;
    box-sizing: border-box;
}

.menu_container {
    margin: 30px 0 50px;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}

.menu_item {
    margin-bottom: 10px;
    font-family: serif;
    width: 100%;
    box-sizing: border-box;
}

.menu_title,
.menu_price {
    display: table-cell;
    white-space: nowrap;
    width: 1%;
    line-height: 16px;
    vertical-align: top; /* bottomからtopに変更 */
    clear: both;
}

/* menu_itemContentがflexの場合の調整 */
.menu_itemContent .menu_title {
    flex: 1;
    display: block;
    padding-right: 15px;
}

.menu_itemContent .menu_price {
    flex-shrink: 0;
    display: block;
    white-space: nowrap;
    min-width: 180px;
    align-self: flex-start; /* 上揃えに変更 */
	font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
}

/* フォントサイズ */
.menu_title {
    font-size: 17px;
    line-height: 1.5;
}

.menu_price {
    font-size: 16px;
    line-height: 1.2;
    text-align: right;
    font-weight: bold;
}

.menu_title_english {
    font-size: 12px;
    padding-left: 1em;
}

/* グラスボトルの価格表示用 */
.menu_price .price_table {
    width: 160px;
    margin-left: auto; /* 価格表を右寄せ */
	font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
}

.menu_price .price_table dt {
    font-size: 12px;
    float: left;
    width: 30%;
    text-align: left;
}

.menu_price .price_table dt:nth-child(2n) {
    clear: both;
}

.menu_price .price_table dd {
    font-size: 16px;
    float: left;
    width: 42%;
    text-align: right;
}

.menu_price .price_table dd.taxwrap {
    width: 28%;
    text-align: right;
}

.menu_price .tax {
    font-size: 12px;
}

.title {
    font-weight: bold;
    line-height: 1.2;
}

.title-min {
    margin-left: -0.5em;
    font-weight: bold;
}

.make {
    font-size: 14px;
    padding-left: 0.5em;
    color: #666;
}

.text {
    font-size: 14px;
    font-weight: 500;
    padding-left: 0.6em;
    padding-top: 0;
    display: inline-block;
	font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
}

/* flexが使われていない場合の従来のスタイル */
.menu_title:not(.menu_itemContent .menu_title), 
.menu_price:not(.menu_itemContent .menu_price) {
    display: table-cell;
    padding-right: 5px;
}

.menu_price:not(.menu_itemContent .menu_price) {
    padding-left: 5px;
}

/* ギャラリーの矢印を消す */
.lum-previous-button,
.lum-next-button {
    display: none;
}

/* スマートフォン対応 */
@media screen and (max-width: 768px) {
    .menu_wrap_contents {
        width: 100%;
        padding: 0;
        margin: 0;
    }
    
    .menu_container {
        margin: 20px 0;
        overflow: hidden;
    }
    
    .menu_item {
        width: 100%;
        float: none;
        margin-bottom: 16px;
    }
    
    /* スマホでは縦並びに変更 */
    .menu_itemContent {
        display: block !important;
        width: 100%;
    }
    
    .menu_itemContent .menu_title,
    .menu_itemContent .menu_price {
        display: block;
        width: 100%;
        text-align: left;
        padding: 0;
        margin-bottom: 10px;
    }
	.menu_itemContent .menu_price{
	text-align: right;
	}
    
    .menu_title,
    .menu_price {
        font-size: 15px;
        line-height: 1.5;
        white-space: nowrap;
        font-family: sans-serif;
        padding: 3px 0;
    }
    
    .menu_title,
    .menu_price,
    .title {
        display: block;
        white-space: normal;
        width: 100%;
        text-align: left;
    }
    
    .make, 
    .text {
        padding: 0;
    }
}