@charset "utf-8";
/* 標準可変メディア
   メモ : 可変メディアでは、HTML からメディアの高さおよび幅の属性を削除する必要がある
   http://www.alistapart.com/articles/fluid-images/ 
*/
img, object, embed, video {
	max-width: 100%;
}
/* IE 6 では最大幅がサポートされていないため、デフォルトで幅 100% に設定される */
.ie6 img {
	width:100%;
}

/*
	Dreamweaver 可変グリッドプロパティ
	----------------------------------
	dw-num-cols-mobile:		5;
	dw-num-cols-tablet:		8;
	dw-num-cols-desktop:	10;
	dw-gutter-percentage:	25;
	
	以下からヒントを入手 : Ethan Marcotte 氏の「レスポンシブ Web デザイン」 
	http://www.alistapart.com/articles/responsive-web-design
	
	および Joni Korpi 氏の「Golden Grid System」
	http://goldengridsystem.com/ 
*/

/* モバイルレイアウト : 480 px およびそれ以下. */
header{
    background-image: url("images/index00-1.png");
    height: calc((100vw * 0.667) - 30px);
}
h2{
    color: #00341C;
    text-align: center;
}
.businessHours table{
    font-family: 'Noto Sans JP', sans-serif;
    margin: 0 auto;
    border-spacing: 4px 0;
    border-collapse: separate;
}
.businessHours thead th{
    background-color: #808080;
}
.businessHours tbody th{
    padding: 0 2em;
    border-top: none;
    border-left: solid 1px #808080 ;
    border-bottom: solid 1px #808080 ;
    border-right: solid 1px #808080 ;
}
.businessHours tbody td{
    width: 3em;
    border-top: none;
    border-left: solid 1px #808080 ;
    border-bottom: solid 1px #808080 ;
    border-right: solid 1px #808080 ;
}
.businessHours th{
    padding: 0.5em 0;
    font-size: 18px;
    font-weight: normal;
    white-space: nowrap;
}
.businessHours td{
    padding: 0.5em;
    font-size: 20px;
    text-align: center;
    white-space: nowrap;
}
.businessHours td span{
    color: #CC0033;
}
.businessHours .dummy{
    background: none;
    border: none;
    width: 1px;
    padding: 0;
}
.itemList .item > div{
    display: inline-block;
    vertical-align: top;
}
.itemList .item .imageBox{
    width: 100%;
    text-align: center;
    margin-right: 0;
}
.itemList .item .textBox{
    width: 100%;
}
.measures{
    background-color: #E6E6E6;
    padding: 10px;
}
.measures > div{
    border: solid 1px #fff;
    text-align: center;
    padding: 20px 0;
}
.measures p{
    color:#000;
    font-size: 16px;
    text-align: center;
    margin: 0;
}
.measures ul{
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 15px;
    display: inline-block;
    text-align: left;
    margin: 0;
    padding: 0;
}
.scrollArea{
    overflow: auto;
}
/* タブレットレイアウト : 481 px ～ 768 px。モバイルレイアウトからスタイルを継承。 */

@media only screen and (min-width: 481px) {
}

/* デスクトップレイアウト : 769 px ～最大 1232 px。モバイルレイアウトとタブレットレイアウトからスタイルを継承。 */

@media only screen and (min-width: 768px) {
header{
    height: calc((100vw * 0.667) - 83px);
}
.businessHours th{
    font-size: 22px;
}
.businessHours td{
    font-size: 25px;
}
.itemList .item .imageBox{
    width: 50%;
    margin-right: 5%;
}
.itemList .item .textBox{
    width: 45%;
}
}