@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 およびそれ以下. */
.topBlock{
    background-position: top center!important;
    background-repeat: no-repeat!important;
    background-size: cover!important;
    height: calc(100vw * 0.9) ;
    position: relative;
}
h1{
	font-size: 24px;
    color: #fff;
    text-align: center;
}
h1 span{
    font-size: 11px;
}
.topBlock > div{
    background: rgba(0,0,0,0.35) ;
    padding: 15px 0 ;
    position: absolute;
    bottom: 8%;
    left: 0;
    width: 100%;
}
.topBlock p{
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 11px;
    color:#fff;
    width: 30em;
    line-height: 180%;
    margin: 1.5em auto;
}
.linkList{
    text-align: center;
    padding: 0;
}
.linkList li{
    display: inline-block;
    width: calc(94% / 3) ;
    margin: 1%;
    background: #F3C300;
    position: relative;
    min-width: 216px;
}
.linkList li div{
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 11px;
    font-weight: bold;
    text-align: left;
    line-height: 200%;
    padding: 1em;
    
}
.linkList li div span{
    font-size: 27px;
}
.linkList li div .small{
    font-size: 21px;
}
.linkList li a{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.linkButton1{
    display: inline-block;
    border-radius: 2px;
    box-shadow: 2px 4px 8px 2px rgba(0, 0, 0, 0.65);
    width: 100%;
}
/* タブレットレイアウト : 481 px ～ 768 px。モバイルレイアウトからスタイルを継承。 */

@media only screen and (min-width: 481px) {
.topBlock p{
    width: 36em;
}
.linkButton1{
    width: 50%;
}
}

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

@media only screen and (min-width: 768px) {
.topBlock{
    height: calc(100vw * 0.36) ;
}
}