
/*店舗ページ共通===============================================*/

.pc_only{display: block;}
.sp_only{display: none;}

/*基本----------------------------------------------------*/
.main-content{font-size: 14px}

h2 {font-size: 1.5em}
h3 {font-size: 1.3em}

.static-shop-content p{
margin: 1em auto!important;
line-height: 1.5}

.txt_s {font-size: 0.9em}
.txt_l {font-size: 1.15em}

/*赤*/
.txt_red {color:#ff0000!important}
/*黄*/       
.txt_yellow {color:#ffff00!important}
/*オレンジ*/  
.txt_orange {color:#ff8c00!important}
/*緑*/
.txt_green {color:#008000!important}
/*青*/       
.txt_blue {color:#0070C0!important}
/*水色*/     
.txt_sky {color:#00bfff!important}
/*紫*/       
.txt_purple {color:#9400d3!important}
/*ピンク*/    
.txt_pink {color:#ff69b4!important}
/*茶色*/    
.txt_brown {color:#BE5014!important}

.nowrap {white-space: nowrap;}

.static-shop-information .static-shop-content .shop-info-title:first-child {
    margin: 15px 0 20px;
}

/*店内外画像 横2分割----------------------------------------*/
.shop_img {
    display: -webkit-box;
    display: flex;
	flex-direction: row;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    justify-content: space-between;	
    width: 100%;
    margin-bottom: 1em;
}

.shop_img .contents {width: calc(100% / 2);}
.shop_img .contents_lf {width: calc(100% / 2 - 0.25em);}

.shop_img .contents:nth-child(odd){padding-right: 0.25em;}
.shop_img .contents:nth-child(even){padding-left: 0.25em;}

.shop_img img{
    width: 100%;
    display: block;
	margin-bottom: 0.5em;
}	

/*店内外画像 1枚-------------------------------------------*/
.shop_img_solo{
   width: 100%;
   margin-bottom: 1em;
}

.shop_img_solo img{width: 100%}

/*商品紹介---------------------------------------------*/
.shop_item {display: table;}

.shop_item .item_line {
width: 100%;
margin: 2em 0;
}

.shop_item .item_img, .shop_item .item_txt {
display: table-cell;
}
.shop_item .item_img {
width: 30%;
max-width: 180px;
margin: 0 auto;
vertical-align: middle;
}
.shop_item .item_img img {vertical-align: middle;}

.shop_item .item_txt {
border-top:none;
border-left: solid 3px #333;
padding: 1em;
align-content: space-evenly;
}

.shop_item .item_txt .pank {
display: inline-block;
margin: 0.25em;
color: #fff;
background-color: var(--clr-prime);;
padding: 0em 0.5em;
font-weight: bold;
}

.shop_item .item_txt .pank span{
	display: inline-block;
	margin: 0.25em;
	color: #ffff00;
}


/*SP====================================================================================*/
@media screen and (max-width: 480px){ 
	
.sp_only{display: block;}
.pc_only{display: none;}
	
/*基本----------------------------------------------------*/
.main-content{font-size: 12.5px}
	
/*商品紹介---------------------------------------------*/
.shop_item {display: table;}

.shop_item .item_line {
width: 100%;
margin: 2em 0;
}

.shop_item .item_img, .shop_item .item_txt {
display: block;
vertical-align:middle;
padding: 1em;
}

.shop_item .item_img {
width: 100%;
max-width: 180px;
margin: 0 auto;
}

.shop_item .item_txt {
border-top: solid 3px #555;
border-left: none;
padding: 1em;
text-align: left;
line-height: 1.4;
}
   
}



