@charset "UTF-8";
/* CSS基本設定 */

/* 一括初期化
＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿*/

/*マージン及びパディング*/
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,blockquote,table,th,td{
	margin: 0;
	padding: 0;
}

/*テーブル*/
table{
	border-collapse: collapse;
	border-spacing: 0;
}

/*イメージ設定*/
img{
	border: 0;
	height: auto;
}

/*ヘッディング*/
h1,h2,h3,h4{
	font-style: normal;
	font-weight: normal;
}

/*パラグラフ*/
p{
	margin: 0;
	padding: 0 0 1em 0;
}

/*　水平線　*/
hr{
	clear: both;
	border-width: 1px 0 0 0;
	border-style: dotted;
	border-color: #ccc;
	height: 1px;
	margin: 20px 0 30px 0;
}

.imgLeft{
	float: left;
	width: auto;
	padding: 0 1em 1em 0;
}

/* ボディ設定
＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿*/

html{
	font-size: 100%;
}
body{
	font-family: "メイリオ", sans-serif;
	font-family: 'Chivo', sans-serif;
	line-height: 145%;
	color: #333;
	background: #8cc63f;
	margin: 0 auto;
}

a:link{
	text-decoration: none;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
	color: #c0392b;
}
a:visited{
	color: #297fb8;
}
a:hover{
	opacity: .6;
}

/* ページ設定
＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿*/

#container{
	width: auto;
	background: #fff;
}
#container:after{
	content: ".";  /* 新しい要素を作る */
	display: block;  /* ブロックレベル要素に */
	clear: both;
	height: 0;
	visibility: hidden;
}

h1{
	width: auto;
	text-align: center;
	line-height: 0;
	padding: 2% 0;
}

h2{
	clear: both;
	text-align: center;
	font-size: 1.1em;
	font-weight: bold;
	background-image: url(../ap/images/common/back_h2.png);
	padding: .3em;
}

/* フッター用
＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿*/

footer{
	clear: both;
	font-size: .8em;
	text-align: center;
	background-image: url(../ap/images/common/back_footer.png);
	background-position: bottom;
	background-repeat: repeat-x;
	padding: 0 0 5em;
}


/* 回り込み解除
＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿*/

.clearfix:after{
	content: ".";  /* 新しい要素を作る */
	display: block;  /* ブロックレベル要素に */
	clear: both;
	height: 0;
	visibility: hidden;
}
.clearfix {
	min-height: 1px;
}
.clearBoth{
	clear: both;
}

/*　レスポンシブ対応（ブレークポイント 640px）
＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿*/
@media screen and (max-width: 640px) {

html{
	font-size: 120%;
	width: auto;
	background-image: none;
	background: #fff;
}
.topInfo{
	padding: 0 10px;
}
.section{
	width: auto;
}
footer{
	background: none;
	padding: 0;
}
.topInfo h2{
	width: auto;
}
#sticker{
	display: flex;
	justify-content: space-between;
	text-align: center;
	list-style: none;
	padding: 1em 0;
}

}
/*　ここまで　*/