@charset "utf-8";

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝　初期設定　＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */

*{
	margin: 0px;
	padding: 0px;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
	font-family: "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

img{
	max-width:100%;
	height:auto;
	vertical-align: middle;
}


/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝　Body　＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */

body{
	width:100%;
	-webkit-text-size-adjust:100%;
	text-align: center;
	background-image:url("../common/bg.gif");
	
}
@media only screen and (min-width:1024px) {
	body{
		padding: 0px 0px;
		margin: 0px auto;
		
	}
}




/* ＝＝＝＝＝＝＝＝＝＝＝＝＝　ヘッダー　＝＝＝＝＝＝＝＝＝＝＝＝＝ */

header{
	margin-top:1px;
}

#header-img{
	width:100%;
	height:358px;
	background-size:cover;
	background-position:bottom;
}


@media only screen and (min-width:1024px) {
#header-img{
	width:100%;
	height:560px;
	background-position:no-repeat;
	background-color:#F00;
}
}




/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝　メニュー＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */

#sp-menu{
	z-index:9999;
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100%;
	background: #333;
	color: #FFF;
	font-weight: bold;
	font-size: 16px;
	padding-left: 15px;
	line-height: 45px;
}
@media only screen and (min-width:1024px) {
	#sp-menu{
		display: none;
		position: static;
	}
}

#sp-menu img{
	height: 30px;
	padding-bottom: 4px;
	margin-right: 8px;
}


@media only screen and (min-width:1024px) {
	#nav-bg{
		background-color:#FFF;
		opacity:0.95;
	}
}

nav ul{
		background-color:#fff;
	z-index:999;
	list-style-type: none;
	display: none;
	position: fixed;
	top: 45px;
	left: 0px;
	width: 100%;
}
@media only screen and (min-width:1024px) {
	nav ul{
		display: block;
		position: static;
	width: 1000px;
			margin:0 auto;
}
}

nav li{
	width: 50%;
	float: left;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #999;
}
@media only screen and (min-width:1024px) {
	nav li{
		width: 14.2857142%;
		height:90px;
			border-bottom-width: none;
	border-bottom-style: none;
	border-bottom-color: none;

		}
	nav li:last-child{
		border-right: none;

	}
}

nav a{
	display: block;
	background-color:#fff;
	background:url(../common/bg_menu.png);
	color: #000;
	font-weight: bold;
	font-size: 13px;
	line-height: 45px;
	padding-left: 15px;
	text-decoration: none;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
@media only screen and (min-width:1024px) {
	nav a{
		line-height: 90px;
		text-align: center;
		padding-left: 0;
	}
}

nav a:hover{
	background: #eee;
	color:black;
	

}
@media only screen and (min-width:1024px) {
nav a:hover{
	background: #eee;
	color:black;
	transition: 1.0s ;/* マウスをのせた時の速度調整 */	
}
}

nav ul:after{
	display: table;
	content: "";
	clear: both;
}




/* ＝＝＝＝＝＝＝＝＝＝＝＝＝　調整　＝＝＝＝＝＝＝＝＝＝＝＝＝ */
.height-space{
	height:0px;
	margin-bottom:40px;
}
.height-space-L{
	height:0px;
	margin-bottom:80px;
}
.height-space-LL{
	height:0px;
	margin-bottom:120px;
}

.height-space-S{
	height:0px;
	margin-bottom:20px;
}
.width-full{
	max-width:100%;;
}


.width-1200 {
	width: 90%;
	margin:0 auto;
}
.width-1000 {
	width: 90%;
	margin:0 auto;
}
.width-800 {
	width: 90%;
	margin:0 auto;
}

@media only screen and (min-width:1024px) {
	.width-1200 {
		width: 1200px;
		margin:0 auto;
	}
	.width-1000 {
		width: 1000px;
		margin:0 auto;
	}
	.width-800 {
		width: 800px;
		margin:0 auto;
	}
}


.align-left{
	text-align:left;
}
.align-right{
	text-align:right;
}
.align-center{
	text-align:center;
}


/* ＝＝＝＝＝＝＝＝＝＝＝＝＝　文字の設定　＝＝＝＝＝＝＝＝＝＝＝＝＝ */
h1{
	text-align: center;
	color: #222;
	font-size: 12px;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

@media only screen and (min-width:1024px) {
	h1{
	font-size: 12px;
	}
}


h2{
	padding: 10px;
	box-shadow: 1px 1px 0.5px #ddd;
	background: linear-gradient(-135deg,white, #F9F9F9);
text-align: center;
	color: #222;
	font-size: 18px;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

@media only screen and (min-width:1024px) {
	h2{
	text-align: center;
	font-size: 22px;
	}
}



h3{
	text-align: center;
	color: #222;
	font-size: 16px;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

@media only screen and (min-width:1024px) {
	h3{
		text-align:center;
	font-size: 20px;
	}
}


h4{
	text-align: left;
	color: #FFF;
	text-shadow: 1px 1px 1px #222;
	font-size: 16px;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
h5{
	text-align: left;
	color: #FFF;
	text-shadow: 1px 1px 3px #000;
	font-size: 14px;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

li{
	color:#333;
}


p{
	line-height:25px;
	font-size:16px;
	text-align:left;
	color: #333;
}
@media only screen and (min-width:1024px) {
	p{
		text-align:center;
	}
}

p a{
	line-height:25px;
	font-size:16px;
	text-align:left;
	color: #333;
}
@media only screen and (min-width:1024px) {
	p a{
		text-align:center;
	}
}







.text-left{
	text-align: left;
	font-size: 16px;
	border-left-width: 8px;
	border-left-style: solid;
	border-left-color: #903;
	line-height: 20px;
	border-bottom-width: 2px;
	border-bottom-color: #903;
	border-bottom-style: solid;
	vertical-align: middle;
	padding-left: 10px;
	color: #FFF;
	text-shadow: 1px 1px 3px #000;  
}

@media only screen and (min-width:1024px) {
	.text-left{
		font-size: 18px;
		height: 30px;
		}
}
.text-left2{
text-align: left;
color: #FFF;
font-size: 16px;
font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
font-weight: bold;
}
.text-right2{
	text-align: right;
	color: #FFF;
	font-size: 16px;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}




/* ＝＝＝＝＝＝＝＝＝＝＝＝＝　コンテンツ　＝＝＝＝＝＝＝＝＝＝＝＝＝ */
#contents {
	width: 100%;
	margin:0px auto;
}
















/* ＝＝＝＝＝＝＝＝＝＝＝＝＝　フッターUl　＝＝＝＝＝＝＝＝＝＝＝＝＝ */
footer{
	background-color:#F0F0E1;
	padding:20px 0;
}

@media only screen and (min-width:1024px) {
	.ft_logo{
		text-align:left;
	}
}

footer ul{
	width: 100%;
	list-style-type: none;
	line-height:45px;
}
@media only screen and (min-width:1024px) {
}

footer li{
	width: 25%;
	float: left;
	text-align:left;
}
@media only screen and (min-width:1024px) {
	footer li{
	width: 100%;
	}
}

footer li a{
	display: block;
	color: #000;
	font-size: 12px;
	line-height: 30px;
	padding-left: 10px;
	text-decoration: none; 
}
@media only screen and (min-width:1024px) {
footer li a{
		line-height: 20px;
		padding-left: 0px;
	}
}

footer li a:hover{
	color: rgba(0,0,0,.80);
	text-decoration: underline;
	transition: 1.0s;/* マウスをのせた時の速度調整 */
}

footer ul:after{
	display: table;
	content: "";
	clear: both;
}


address{
	text-decoration: none;
	color:#222;
}
@media only screen and (min-width:1024px) {
	address{
		text-align:left;
		padding-left:10px;
	}
}
address a{
	text-decoration:none;
	color:#222;
}

.ft_copyright{
	font-size:11px;
	color:#222;
	text-align:center;
	}
.ft_copyright a{
	font-size: 11px;
	text-decoration: none;
	color:#222;
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝　フッター調整　＝＝＝＝＝＝＝＝＝＝＝＝＝ */






/* ＝＝＝＝＝＝＝＝＝＝＝＝＝　グリッドシステム　＝＝＝＝＝＝＝＝＝＝＝＝＝ */


.row{
	margin: 10px -15px;
}




.row:after{
	display: table;
	content: "";
	clear: both;
}

.sm-1-div, .sm-2-div, .sm-3-div, .sm-4-div, .sm-5-div, .sm-6-div, .sm-7-div, .sm-8-div, .sm-9-div, .sm-10-div, .sm-11-div, .sm-12-div{
	display: block;
	float: left;
	padding: 0px 15px;
}
.sm-btm-pad{
	padding-bottom:30px;
}

@media only screen and (min-width:1024px) {
	.sm-btm-pad{
		padding-bottom:0px;
	}
}
	
.sm-1-div{width: 8.3%;}
.sm-2-div{width:  16.66666667%;}
.sm-3-div{width:  25%;}
.sm-4-div{width:  33.33333333%;}
.sm-5-div{width: 41.66666667%;}
.sm-6-div{width:  50%;}
.sm-7-div{width:  58.33333333%;}
.sm-8-div{width:  66.66666667%;}
.sm-9-div{width: 75%;}
.sm-10-div{width:  83.33333333%;}
.sm-11-div{width:  91.66666667%;}
.sm-12-div{width:  100%;}

@media only screen and (min-width:1024px) {
.bg-1-div{width: 8.3%;}
.bg-2-div{width:  16.66666667%;}
.bg-3-div{width:  25%;}
.bg-4-div{width:  33.33333333%;}
.bg-5-div{width: 41.66666667%;}
.bg-6-div{width:  50%;}
.bg-7-div{width:  58.33333333%;}
.bg-8-div{width:  66.66666667%;}
.bg-9-div{width: 75%;}
.bg-10-div{width:  83.33333333%;}
.bg-11-div{width:  91.66666667%;}
.bg-12-div{width:  100%;}
.bg-20p-div{width:  20%;}

}

.width-full{
	width:100%;
}

.padding0{
	padding:0px 15px;
}
@media only screen and (min-width:1024px) {
	.padding0{
		padding:0px;}
}
	
	
/* ＝＝＝＝＝＝＝＝＝＝＝＝＝　前ページ共通設定　＝＝＝＝＝＝＝＝＝＝＝＝＝ */	

.title{
	padding: 10px;
	box-shadow: 1px 1px 0.5px #ddd;
	background: linear-gradient(-135deg,white, #F9F9F9);
}

.title_bg_bk{
	padding: 20px;
	background-color:#222;
	color:white;
}





/* ＝＝＝＝＝＝＝＝＝＝＝＝＝　commonページ設定　＝＝＝＝＝＝＝＝＝＝＝＝＝ */	

@media only screen and (min-width:1024px) {
	.bg_ft1{
		padding: 50px;
		background-image:url(../common/img_ft1.jpg);
		height:500px;
	}
}




/* ＝＝＝＝＝＝＝＝＝＝＝＝＝　その他　＝＝＝＝＝＝＝＝＝＝＝＝＝ */

.red{
	color:red; !important
}
.white{
	color:white; !important
}
.b{
	font-weight:bold;
}
.333{
	color:#333;
}


.margin_auto{
	margin:0 auto;
}

.margin-top-10{
	margin-top:10px;
}
.times{
	font-family: "Times New Roman", Meiryo, sans-serif;
}


@media only screen and (min-width:1024px) {
.display_sp_true
{
	display:none;

}
}

@media only screen and (max-width:1024px) {
.display_pc_true{
	display:none;

}
}