@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 およびそれ以下. */
h1 img{
    width: 50%;
}
h2{
    background: none;
    text-align: center;
}
.topHeaderBlock{
    background-image: none;
    height: calc(100vw * 0.56);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center ;
    padding: 0 0 0 0;
}
.topHeaderBlock > div{
    height: 100%;
    background: linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 15%, rgba(255,255,255,0) 80%);
}
.topHeaderBlock h1{
    margin: 0 0 0 0;
}
h2{
    color:#E2BDAC;
}
.menuList{
    margin: 50px 0 25px 0;
}
.menuList .item{
    display: inline-block;
    vertical-align: top;
    margin: 1% ;
    width: calc((100% / 3) - 2%) ;
}
.menuList h3{
    text-align: center;
    font-size: 14px;
    font-weight: normal;
    margin: 20px 0 ;
}
.menuList .imageBox{
    text-align: center;
}
.favorBlock{
    background-color: #E6E6E6;
    padding: 8px;
    margin: 100px 0 ;
}
.favorBlock > div{
    border: solid 1px #fff;
}
.favorBlock h4{
    font-size: 16px;
    text-align: center;
    font-weight: normal;
    margin: 35px 0 0 0;
    line-height: 180%;
}
.favorBlock .ulBlock {
	text-align: center;
	padding: 0 10px;
}
.favorBlock ul {
	display: inline-block;
	list-style-type: none;
	text-align: left;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 15px;
	line-height: 180%;
	margin: 0 0 50px 0;
	padding: 0 0 0 1em;
	text-indent: -1em;
}
.mapBlock{
    margin: 100px 0 0 0 ;
}
/* タブレットレイアウト : 481 px ～ 768 px。モバイルレイアウトからスタイルを継承。 */

@media only screen and (min-width: 481px) {
h1 img{
    width: auto;
}
.topHeaderBlock h1{
    margin: calc(100vw * 0.08) 0 0 0;
}
}

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

@media only screen and (min-width: 768px) {
.topHeaderBlock{
    padding: calc(100vw * 0.08) 0 0 0;
}
.contents{
    width: 78%;
}
}
