
/*=================================================
 * CSS for PC
 * ================================================= */

/***************************************
ROOT
****************************************/

:root {
  --font-color: #000;
  --font-color-white: #fff;
  --sub-color: #ff8f00;
  --cast-color: #ffde00;
  --bg-color: #f9f9f9;
  --border-color: #ddd;
  --accent-color: #e63946;
  --font-base: Meiryo,'Hiragino Kaku Gothic ProN','Hiragino Sans',sans-serif;
}


/***************************************
TITLE
****************************************/

.s_title{
	position: relative;
	text-align: center;
	padding: 60px 0 40px 0;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
			box-sizing: border-box;
}
.s_title span{
	display: block;
	font-family: "FontA";
	font-size: 62px;
	line-height: 70px;
	margin: 0 0 20px 0;
}

.s_title em{
	position: relative;
	display: block;
	font-family: "Rounded Mplus 1c";
	font-weight: 400;
	font-size: 20px;
	line-height: 26px;
}
.s_title em:after{
	content: '';
	width: 100px;
	height: 2px;
	background: currentColor;
	position: absolute;
	top: -13px;
	left: calc(50% - 50px);
}


/** .img_slide **/

.img_slide{
	position: relative;
	width: 100%;
	text-align: center;
	margin: 0;
	padding-bottom: 40px;
}
.img_slide{
	width: 100%;
	margin: 0 auto;
}
.img_slide > li{
	background: #fff;
}


.img_slide_bg{
	font-size: 0;
	line-height: 0;
	text-align: center;
}
.img_slide_bg img{
	width: 100%;
	height: auto;
	margin: 0 auto;
}

.slick-slide:focus{	outline: none;}

.img_slide .slick-dots{
	width: 100%;
	font-size: 0;
	line-height: 0;
	text-align: center;
	position: absolute;
	bottom: 0;
	left: 0;
}
.img_slide .slick-dots li{
	display: inline-block;
	vertical-align: top;
	margin: 0 5px;
}
.img_slide .slick-dots li button{
	width: 12px;
	height: 12px;
	border: none;
	outline: none;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.3);
	border-radius: 50%;
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}
.img_slide .slick-dots li.slick-active button{	background: #fff;}

.slick-prev,
.slick-next{
	width: 30px;
	height: 30px;
	font-size: 0;
	line-height: 0;
	border: 0;
	outline: 0;
	border-radius: 50%;
	background: #fff;
	position: absolute;
	z-index: 2;
	bottom: -10px;
}

.slick-prev{	left: 10px;}
.slick-prev:after{
	content: '';
	width: 6px;
	height: 6px;
	border-top: 1px solid #fff;
	border-left: 1px solid #fff;
	position: absolute;
	top: calc(50% - 4px);
	right: calc(50% - 4px);
	-webkit-transform: rotate(-45deg);
	   -moz-transform: rotate(-45deg);
		-ms-transform: rotate(-45deg);
		 -o-transform: rotate(-45deg);
			transform: rotate(-45deg);
}
.slick-next{	right: 10px;}
.slick-next:after{
	content: '';
	width: 6px;
	height: 6px;
	border-bottom: 1px solid #fff;
	border-right: 1px solid #fff;
	position: absolute;
	top: calc(50% - 4px);
	left: calc(50% - 5px);
	-webkit-transform: rotate(-45deg);
	   -moz-transform: rotate(-45deg);
		-ms-transform: rotate(-45deg);
		 -o-transform: rotate(-45deg);
			transform: rotate(-45deg);
}

@media screen and (max-width: 650px) {
	.img_slide .slick-dots li{
		display: inline-block;
		vertical-align: top;
		margin: 0 1vw;
	}
	.img_slide .slick-dots li button{
		width: 10px;
		height: 10px;
	}
}


/***************************************
MAIN CONTENTS
****************************************/

.main{
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
			box-sizing: border-box;
}


/***************************************
COMMON STYLE
****************************************/

/***** font color *****/
a, a:hover, .tx_a, .tx_a:hover{	color: #dfc15f;}
body, .tx0, .tx0:hover{	color: #333;}

.sat{	color	: #0099ff;}
.sun{	color	: #ff3333;}
.tel, .tel a{	color: #00a8ff !important;}
.mail, .mail a{	color: #ff3333;}

.red{	color: #ff0000;}


/***** area *****/

.area{
	font-family: 'Noto Serif JP', serif;
	font-weight: 400;
	color: #fff;
}
.a1{	background: #f4831e !important;}
.a2{	background: #367fed !important;}
.a3{	background: #46a134 !important;}
.a4{	background: #ad75dd !important;}
.a5{	background: #b85e4c !important;}




/***** buttun *****/

.bt_bg{
	padding: 0 10px;
	text-align: center;
}

.bt_main, .bt_main:hover{
	position: relative;
	display: flex;
	align-items: center;
	align-content: center;
	justify-content: center;
	width: 410px;
	height: 90px;
	font-family: "Rounded Mplus 1c";
	font-weight: 400;
	font-size: 20px;
	line-height: 22px;
	text-align: center;
	text-decoration: none;
	color: #fff;
	border: none;
	border-radius: 5px;
	margin: 0 auto;
	box-shadow: 5px 5px 5px 0px rgba(0, 0, 0, 0.25);
	-webkit-transition	: 0.2s ease-in-out;
	-moz-transition	: 0.2s ease-in-out;
	-o-transition	: 0.2s ease-in-out;
	transition		: 0.2s ease-in-out;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
			box-sizing: border-box;
}
.bt_main:before{
	content: "";
	width: 50px;
	border-bottom: 1px solid #fff;
	position: absolute;
	bottom: 15px;
	right: 15px;
}
.bt_main:after{
	content: "";
	width: 10px;
	border-bottom: 1px solid #fff;
	position: absolute;
	bottom: 19px;
	right: 15px;
	-webkit-transform: rotate(45deg);
	   -moz-transform: rotate(45deg);
	    -ms-transform: rotate(45deg);
	     -o-transform: rotate(45deg);
	        transform: rotate(45deg);
}

a.bt_main,
input.bt_main{
	-webkit-appearance: none;
}

a.bt_main:hover,
input.bt_main:hover{
	cursor			: pointer;
	text-decoration: none;
	opacity: 0.7;
	filter: alpha(opacity=70);
}

@media screen and (max-width: 750px) {
	.bt_main, .bt_main:hover{
		width: 280px;
	}
}



/***** slider *****/
.slick-prev, .slick-next , ul#slideIcon li,
#newface .bx-wrapper .bx-controls-direction a{	color: #ffffff;}
.bx-wrapper .bx-pager.bx-default-pager a{	background-color: #949494;}
.bx-wrapper .bx-pager.bx-default-pager a.active{	background-color: #fff;}



/***************************************
ROLLOVER
****************************************/

.fade{
	display: inline-block;
	padding: 0;
}

.fade,
.up a{
	-webkit-transition	: 0.2s ease-in-out;
	-moz-transition	: 0.2s ease-in-out;
	-o-transition	: 0.2s ease-in-out;
	transition		: 0.2s ease-in-out;
}

.fade:hover,
.fade:hover{
	opacity: 0.8;
	filter: alpha(opacity=80);
}


/***************************************
GOOGLE FONT
****************************************/

@font-face {
	font-family: FontA;
	src: url('../font/FjallaOne-Regular.ttf') format("truetype");
}



/***** font *****/


.font1{
	font-family: FontA;
}

.anchor{
	display: block;
	padding-top: 0px;
	margin-top: 0px;
}
