@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;
	border-radius:5px;
}

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

body{
	width:100%;
	-webkit-text-size-adjust:100%;
	text-align: center;
	
}
@media only screen and (min-width:640px) {
	body{
		padding: 0px 0px;
		margin: 0px auto;
		background-color: #FFF4DB;
	}
}
header{
	padding-top:30px;
	margin-top:50px;
	background-color:rgba(255,255,255,0.95);
}
@media only screen and (min-width:640px) {
	header{
		padding:10px;
		margin-top:0px;
	}
}



/* ＝＝＝＝＝＝＝＝＝＝＝＝＝　primary　＝＝＝＝＝＝＝＝＝＝＝＝＝ */
.primary{
	display:none;
}

@media only screen and (min-width:640px) {
	.primary{
		display:block;
		position:fixed;
		top:20px;
		right:20px;
	}
	.primary ul{
		display: block;
		position: static;
	
	}
	.primary li{
		float: left;
	}
	
	.primary .beauty{
		margin-left:5px;
	}
	
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝　右側のメニュー640以上1399と1400以上　＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */

#right_memu ul{
	margin:30px auto;
}
#right_memu li{
	margin:20px auto;
}
#right_memu img{
	text-align:center;
	max-width:auto;
	height:30px;
}

@media only screen and (min-width:640px) {
	#right_memu{
		width:100px;
		position:fixed;
		top:120px;
		right:10px;	
		background-color:#fff;
		padding:5px;
		padding-bottom:0px;
		padding-top:0px;
		box-shadow: 0 5px 5px #666666;
		border:1px #eee solid;
	}
	#right_memu ul{
		margin:0px auto;
	}
	#right_memu li{
		margin:10px auto;
		border:1px dotted rgba(255,99,71,1);
		border-radius:5px;
		padding:10px;
	}
		#right_memu li a{
		text-decoration:none;
		font-size:14px;
		color:#5b3175;
		}
}

@media only screen and (min-width:1400px) {
	#right_memu{
		width:150px;
		top:120px;
		right:15px;	
	}
	#right_memu li{
		margin:10px auto;
	}
	#right_memu img{
		height:40px;
	}
}

@media only screen and (min-width:1601px) {
	#right_memu{
		width:200px;
		top:150px;
		right:15px;	
	}
}



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

#sp-menu{
	z-index:9999;
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100%;
	background-color: rgba(255,255,255,1); 
	color: rgba(255,99,71,1);
	font-weight: bold;
	font-size: 16px;
	padding-left: 15px;
	line-height: 50px;
}
@media only screen and (min-width:640px) {
	#sp-menu{
		display: none;
		position: static;
	}
}

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


@media only screen and (min-width:640px) {
	#nav-bg{
	background-color: rgba(255,255,255,1);
	border-bottom:3px solid rgba(255,99,71,1);
	}
}

nav ul.main{
	z-index:999;
	list-style-type: none;
	display: none;
	position: fixed;
	top: 45px;
	left: 0px;
	width: 100%;
}
@media only screen and (min-width:640px) {
	nav ul.main{
		display: block;
		position: static;
		width: 1200px;
		margin:0 auto;
	}
}

nav ul.main li{
	width: 50%;
	float: left;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #999;
}
@media only screen and (min-width:640px) {
	nav ul.main li{
		width: auto;
		border-bottom: none;
		padding:0 20px;
		}
	nav ul.main li:first-child{

	}
}

nav ul.main a{	
	background-color:rgba(255,255,255,1);
	line-height: 60px;
	display: block;
	color: #000;
	font-size: 16px;
	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:640px) {
	nav ul.main a{
		line-height: 40px;
		text-align: center;
		padding-left: 0;
		}
}
@media only screen and (min-width:1601px) {
	nav ul.main a{
		line-height: 40px;
		}
}
nav ul.main a:hover{
	background-color:rgba(249,214,155,1);
	color:#b4b8b6;
	}
@media only screen and (min-width:1601px) {
	nav ul.main a:hover{
		background-color:rgba(249,214,155,0.1);
		}
}

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


nav ul.subs{
	position:absolute;
	top:100%;
	width:500px;
	background-color:#fff;
}

nav ul.subs li a{
	display:block;
	height:40px;
	font-size:12pt;
	line-height:40px;
	text-indent:22px;
}





/* ＝＝＝＝＝＝＝＝＝＝＝＝＝　調整　＝＝＝＝＝＝＝＝＝＝＝＝＝ */
.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:640px) {
	.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;
}


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

@media only screen and (min-width:640px) {
	h1{
	font-size: 14px;
	padding:10px;
	}
}


h2{
	padding:8px;
	text-align: center;
	background-image: url();
	background-color:#AF011C;
	color: #fff;
	font-size: 16px;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	background-repeat: repeat-x;
}

@media only screen and (min-width:640px) {
	h2{
	text-align: left;
	font-size: 16px;
	text-indent:5px;
	}
}



h3{
	text-indent:5px;
	text-align:left;
	color: #222;
	font-size: 18px;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	border-left-width: 2px;
	border-left-style: solid;
	border-left-color: rgba(82,125,203,1);	
}

@media only screen and (min-width:640px) {
	h3{
	text-align: left;
	font-size: 16px;
	border-left-width: 2px;
	border-left-style: solid;
	border-left-color: rgba(255,99,71,1);
	}
}


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: #222;
}
@media only screen and (min-width:640px) {
	p{
		line-height:20px;
		font-size:13px;
		text-align:left;
		padding-left:10px;
	}
}

.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:640px) {
	.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;
}



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

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

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

footer li{
	width: 25%;
	float: left;
	text-align:left;
}
@media only screen and (min-width:640px) {
	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:640px) {
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:640px) {
	address{
		text-align:center;
		padding-left:10px;
	}
}

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

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


.row{
	margin: 0px -15px;
}
@media only screen and (min-width:640px) {
	.row{
		margin: 0px -15px;
	}
}

.row:after{
	display: table;
	content: "";
	clear: both;
}
.row2{
	margin: 0px 0px;
}
@media only screen and (min-width:640px) {
	.row2{
		margin: 10px 0px;
	}
}

.row2: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:640px) {
	.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:640px) {
.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:640px) {
	.padding0{
		padding:0px;}
}
	
	
/* ＝＝＝＝＝＝＝＝＝＝＝＝＝　前ページ共通設定　＝＝＝＝＝＝＝＝＝＝＝＝＝ */	

.title{
	padding: 10px;
	background-image:url(images/img_kote.png);
	background-repeat:no-repeat;
	background-position:right;
	background-color: #FFF;
	box-shadow: 1px 1px 0.5px #ddd;
	background: linear-gradient(-135deg,white, #F9F9F9);
}

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

img.img_wrap{
	border: 5px #333 solid;
}




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

@media only screen and (min-width:640px) {
	.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;
}
.waku{
	background-color:#FFF;
	padding:10px;
}

.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:640px) {
.display_sp_true
{
	display:none;

}
}

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

}
}


/* ＝＝＝＝＝＝＝＝＝＝＝＝＝　よくある質問　＝＝＝＝＝＝＝＝＝＝＝＝＝ */

.Qa-Box {
  width: 80%;
  margin: 0 auto;
}

.Qa-Box .Qa {
  padding: 20px 0;
  border-bottom: 1px solid #c8c8c8;
}

.Qa-Box .Qa dt,
.Qa-Box .Qa dd {
  display: flex;
  align-items: baseline;
  margin: 15px 0;
}

.Qa-Box .Qa dt p {
  margin: 0;
  padding-left: 15px;
  font-weight: bold;
  width: 100%;
}

.Qa-Box .Qa dd p {
  margin: 0;
  padding-left: 15px;
  width: 100%;
}

.Qa-Box .Qa:last-of-type {
  border-bottom: none;
}

.Qa-Box .Qa dt::before {
  content: "Q";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background: #6699b7;
  width: 2em;
  height: 2em;
}

.Qa-Box .Qa dd::before {
  content: "A";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background: #d65556;
  width: 2em;
  height: 2em;
}

@media screen and (max-width: 960px) {
  .Qa-Box {
    width: 95%;
  }
}