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

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

:root {
  --font-color: #333;
  --font-color-white: #fff;
  --sub-color: #ff8f00;
  --cast-color: #ffde00;
  --bg-color: #141414;
  --border-color: #ddd;
  --accent-color: #0a2246;
  --heading-color: #2d4e80;
  --box-shadow: 0 0 10px rgba(229, 231, 239, 0.3);
  --font-base: Meiryo,'Hiragino Kaku Gothic ProN','Hiragino Sans',sans-serif;
  --color-1: #005ac2;
  --color-2: #ec4c7b;
  --color-3: #f66e24;
  --color-4: #12abd7;
}


/***************************************
AREA CONTENTS
****************************************/

/** reco **/

.reco{
	position: relative;
	background: #fff;
	box-shadow: var(--box-shadow);
	border-radius: 10px;
	margin: 0 0 30px 0;
	padding: 15px 20px 20px 20px;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}
.reco h3{
	font-family: "M PLUS Rounded 1c", sans-serif;
	font-weight: 500;
	font-style: normal;
	font-size: 22px;
	line-height: 30px;
	color: var(--heading-color);
	text-align: left;
	margin: 0 0 10px 0;
	padding: 5px 0 0 30px;
	background: url(/img/all/i_thum.webp) no-repeat 0 0; background-size: 24px auto;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}
.reco_all{
	display: inline-block;
	vertical-align: top;
	font-size: 14px;
	line-height: 20px;
	text-decoration: underline;
	position: absolute;
	top: 20px;
	right: 20px;
}
.reco_all:hover{	text-decoration: none;}
.reco_box{
	display: inline-block;
	vertical-align: top;
	width: calc(100% / 4 - 15px);
	color: var(--accent-color);
	background: #fff;
	box-shadow: 0 0 5px rgba(229, 231, 239, 1);
	border-radius: 5px;
	margin: 0 7.5px 5px 7.5px;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}
.reco_box:hover{
	text-decoration: none;
	color: #333;
}
.reco_box .img{
	position: relative;
	font-size: 0;
	line-height: 0;
}
.reco_box .img > img{
	width: 100%;
	height: auto;
	border-radius: 5px 5px 0 0;
}
.reco_box .icon_bg{
	display: inline-block;
	vertical-align: top;
	text-align: right;
	position: absolute;
	bottom: -7px;
	right: 10px;
}
.reco_box .cate,
.reco_box .wt{
	display: inline-block;
	vertical-align: top;
	font-size: 10px;
	line-height: 10px;
	padding: 2px 5px;
	border-radius: 2px;
	margin-left: 3px;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}
.reco_box .img .i_hot,
.reco_box .img .i_new{
	display: inline-block;
	vertical-align: top;
	position: absolute;
	top: -6px;
	left: -6px;
}
.reco_box .img .i_hot img,
.reco_box .img .i_new img{
	width: 30px;
	height: auto;
}
.reco_box .name{
	font-size: 13px;
	font-weight: bold;
	line-height: 16px;
	margin: 15px 0 5px 0;
	padding: 0 10px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}
.reco_box .info{
	font-size: 11px;
	line-height: 15px;
	color: var(--font-color);
	padding: 0 10px 10px 10px;
}
.reco .reco_slider .img > img{
	width: 100%;
	height: auto;
	margin: 0 auto;
}
.reco .slick-list{
	padding-top: 10px;
	margin: 0 30px;
}
.reco .slick-slide{
}
.reco .slick-prev,
.reco .slick-next{
	width: 30px;
	height: 30px;
	font-size: 0;
	line-height: 0;
	border: 0;
	outline: 0;
	position: absolute;
	top: calc(50% - 15px);
	z-index: 2;
	margin: 0;
	padding: 0;
	border-radius: 50%;
	background: var(--accent-color);
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}
.reco .slick-prev{
	left: 0 !important;
}
.reco .slick-prev:after{
	content: '';
	width: 8px;
	height: 8px;
	border-top: 1px solid #fff;
	border-left: 1px solid #fff;
	position: absolute;
	top: calc(50% - 4px);
	left: 13px;
	-webkit-transform: rotate(-45deg);
	   -moz-transform: rotate(-45deg);
	    -ms-transform: rotate(-45deg);
	     -o-transform: rotate(-45deg);
	        transform: rotate(-45deg);
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}
.reco .slick-next{
	right: 0 !important;
}
.reco .slick-next:after{
	content: '';
	width: 8px;
	height: 8px;
	border-right: 1px solid #fff;
	border-bottom: 1px solid #fff;
	position: absolute;
	top: calc(50% - 4px);
	right: 13px;
	-webkit-transform: rotate(-45deg);
	   -moz-transform: rotate(-45deg);
	    -ms-transform: rotate(-45deg);
	     -o-transform: rotate(-45deg);
	        transform: rotate(-45deg);
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}


@media screen and (max-width: 750px) {
	.reco{
		border-radius: 0;
		padding: 15px 7.5px 50px 7.5px;
	}
	.reco h3{
		margin: 0 7.5px 5px 7.5px;
	}
	.reco_all{
		font-size: 12px;
		top: 25px;
		right: 15px;
	}
	.reco .slick-list{
		margin: 0;
	}
	.reco .slick-prev,
	.reco .slick-next{
		top: auto;
		bottom: -35px;
	}
	.reco .slick-prev{
		left: 7.5px !important;
	}
	.reco .slick-next{
		right: 7.5px !important;
	}
}



/** mainlist **/

.titlebox{
	display: flex;
	align-items: flex-end;
	align-content: flex-end;
	justify-content: space-between;
	margin: 0 0 10px 0;
}
.titlebox h3{
	font-family: "M PLUS Rounded 1c", sans-serif;
	font-weight: 500;
	font-style: normal;
	font-size: 30px;
	line-height: 40px;
	color: var(--heading-color);
	text-align: left;
	padding: 0 0 0 30px;
	background: url(/img/all/i_search_navy.webp) no-repeat 0 8px;
	background-size: 25px auto;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}
.titlebox .count{
	font-size: 16px;
	line-height: 20px;
	text-align: right;
}
.titlebox .count em{	color: #ff0000;}

.mainlist{
	position: relative;
	background: #fff;
	box-shadow: var(--box-shadow);
	border-radius: 10px;
	font-size: 0;
	line-height: 0;
	margin: 0;
	padding: 20px;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}
.job_box{
	display:grid;
	align-items: start;
	justify-items: start;
	grid-template-rows: inherit;
	grid-template-columns: 280px 1fr;
	grid-template-areas:
		"photo title"
		"photo shop"
		"photo detail";
	gap:0 20px;
	color: #333;
	margin: 0 0 20px 0;
	padding: 0 0 20px 0;
	border-bottom: 1px dotted #ddd;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}
.job_box:hover{
	text-decoration: none;
	color: #333;
}
.job_box .job_title{
	grid-area:title;
	font-size: 20px;
	font-weight: bold;
	line-height: 25px;
	color: var(--accent-color);
	margin: 0;
	padding: 10px 0 0 0;
}
.job_box .shop_name{
	position: relative;
	grid-area:shop;
	font-size: 16px;
	font-weight: bold;
	line-height: 20px;
	background: none !important;
	margin: 0;
	padding: 0 0 0 20px;
}
.job_box .shop_name span{
	font-size: 18px;
	position: absolute;
	top: 0;
	left: 0;
}
.job_box .img{
	grid-area:photo;
	position: relative;
	width: 280px;
	font-size: 0;
	line-height: 0;
}
.job_box .img > img{
	width: 100%;
}
.job_box .img .i_hot,
.job_box .img .i_new{
	display: inline-block;
	vertical-align: top;
	position: absolute;
	top: -6px;
	left: -6px;
}
.job_box .img .i_hot img,
.job_box .img .i_new img{
	width: 30px;
	height: auto;
}
.job_box .detail{
	grid-area:detail;
}
.job_box .detail .icon_bg{
	margin: 0 0 5px 0;
}
.job_box .detail .cate{
	display: inline-block;
	vertical-align: top;
	font-size: 12px;
	line-height: 13px;
	padding: 2px 10px;
	border-radius: 2px;
}
.job_box .detail .salary{
	font-size: 16px;
	line-height: 20px;
	margin: 0 0 5px 0;
	padding: 0 0 0 25px;
	background: url(/img/all/i_yen.webp) no-repeat 0 0;
	background-size: 20px auto;
}
.job_box .detail .date{
	font-size: 10px;
	line-height: 13px;
	color: #999;
}


@media screen and (max-width: 750px) {
	.titlebox{
		display: block;
		margin: 0 0 10px 0;
		padding: 0 15px;
	}
	.titlebox h3{
		font-size: 22px;
		line-height: 26px;
		margin: 0 0 5px 0;
		padding: 0 0 0 25px;
		background: url(/img/all/i_search_navy.webp) no-repeat 0 3px;
		background-size: 22px auto;
		-webkit-box-sizing: border-box;
		   -moz-box-sizing: border-box;
		        box-sizing: border-box;
	}
	.titlebox .count{
		font-size: 12px;
		line-height: 15px;
		text-align: left;
	}
	.mainlist{
		border-radius: 0;
		margin: 0 0 20px 0;
		padding: 15px;
	}
	.job_box{
		grid-template-columns: 170px 1fr;
		grid-template-areas:
			"title title"
			"shop shop"
			"photo detail";
		gap: 0 10px;
		margin: 0 0 15px 0;
		padding: 0 0 15px 0;
	}
	.job_box .job_title{
		grid-area:title;
		font-size: 18px;
		line-height: 22px;
		margin: 0;
		padding: 0;
	}
	.job_box .shop_name{
		font-size: 14px;
		line-height: 20px;
		background: none !important;
		margin: 0 0 5px 0;
		padding: 0 0 0 20px;
	}
	.job_box .shop_name span{
		font-size: 18px;
		position: absolute;
		top: 0;
		left: 0;
	}
	.job_box .img{
		width: 170px;
	}
	.job_box .detail .icon_bg{
		margin: 0 0 5px 0;
	}
	.job_box .detail .salary{
		margin: 0 0 5px 0;
	}
	.job_box .detail .salary span{	display: none;}
	.job_box .detail .date{
		font-size: 10px;
		line-height: 12px;
	}
}





/***************************************
CATE WT
****************************************/

.cate{	color: #fff;}
.cate1{	background: var(--color-1);}
.cate2{	background: var(--color-2);}
.cate3{	background: var(--color-3);}
.cate4{	background: var(--color-4);}
.shop_name.cate1{	color: var(--color-1);}
.shop_name.cate2{	color: var(--color-2);}
.shop_name.cate3{	color: var(--color-3);}
.shop_name.cate4{	color: var(--color-4);}
.wt{
	color: var(--accent-color);
	background: #dfe5ff;
}





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




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

.next{
	font-size: 0;
	line-height: 0;
	text-align: center;
	padding: 0 0 5px 0;
}
.next a,
.next span{
	display: inline-flex;
	align-items: center;
	align-content: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	font-size: 14px;
	line-height: 1;
	margin: 0 2.5px;
}
.next a{
	color: #333;
	background: #fff;
	border: 1px solid #ddd;
}
.next a:hover{
	text-decoration: none;
	border-color: var(--accent-color);
}
.next span{
	color: #fff;
	background: var(--accent-color);
	border: 1px solid var(--accent-color);
}







/***************************************
FORM
****************************************/

.form{
	max-width: 820px;
	padding: 0 30px 30px 30px;
	margin: 0 auto;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}
.form dl{
	display: table;
	width: 100%;
	font-size: 0;
	line-height: 0;
	padding: 20px 0;
	border-bottom: 1px dotted #ddd;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}

.form dt,
.form dd{
	display: table-cell;
	vertical-align: middle;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}
.form dt{
	position: relative;
	width: 240px;
	font-size: 14px;
	font-weight: bold;
	line-height: 20px;
	color: var(--accent-color);
	padding-left: 15px;
}
.form dt i{
	display: inline-block;
	vertical-align: top;
	font-size: 12px;
	position: absolute;
	top: calc(50% - 7px);
	left: 0;
}
.form dt .hissu{
	position: relative;
	bottom: -1px;
	display: inline-block;
	vertical-align: top;
	font-size: 10px;
	font-weight: normal;
	line-height: 16px;
	color: #fff;
	background: #ff3333;
	margin: 0 0 0 10px;
	padding: 0 3px;
	border-radius: 2px;
}
.form dt.sub i{
	top: calc(50% - 14px);
}
.form dt.sub p:nth-of-type(2){
	font-size: 11px;
	font-weight: normal;
	line-height: 15px;
	color: #333;
}
.form dt.sub p:nth-of-type(2) span{	color: #ff0000;}


.form dd{
	font-size: 14px;
	line-height: 22px;
}

.form dd ul{
	font-size: 0;
	line-height: 0;
	margin: 0 0 10px 0;
}
.form dd ul:last-child{	margin-bottom: 0;}
.form dd h4{
	font-size: 14px;
	font-weight: bold;
	line-height: 20px;
	margin: 0 0 5px 0;
}
.form dd li{
	display: inline-block;
	vertical-align: top;
	font-size: 14px;
	line-height: 20px;
	margin: 0 0 5px 0;
}
.form dd .li4 li{	width: calc(100% / 4);}
.form dd .li3 li{	width: calc(100% / 3);}
.form dd .li2 li{	width: calc(100% / 2);}
@media screen and (max-width: 750px) {
	.sp3 li{	width: calc(100% / 3) !important;}
}

.form dd li input[type="checkbox"]{
	position: relative;
	bottom: -1px;
	margin-right: 2px;
	cursor: pointer;
}
.form dd li label{	cursor: pointer;}

.submit{	text-align: center;}
.submit p{
	font-size: 14px;
	line-height: 22px;
	text-align: center;
	margin: 30px 0;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}
.submit p br{	display: none;}
.bt_bg{	text-align: center;}

.w1{	width		: 220px;}
.s1{	width		: 220px;}
.w2{	width		: 100%;}
.w3{	width		: 120px;}
.select{	width	: 170px;}
/*
.co_url_text{
	font-size: 14px;
	line-height: 20px;
	width: 50px;
}
*/
input[name="co_url"].w2{
	/*width: calc(100% - 50px);*/
	margin-top: 10px;
}

.form textarea{
	width: 100%;
	height: 150px;
	font-size: 14px;
	line-height: 20px;
	padding			: 7px;
	font-family		: Meiryo,'Hiragino Kaku Gothic ProN','Hiragino Sans',sans-serif;
    vertical-align	: middle;
	border: 1px solid #ccc;
	background: #fff;
	border-radius	: 3px;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}
.form textarea#rec_catch{
	height: 56px;
}

.form input[type="text"],
.form input[type="email"],
.form input[type="tel"],
.form input[type="url"],
.form input[type="password"]{
	padding			: 7px;
	font-size: 14px;
	line-height: 20px;
	font-family		: Meiryo,'Hiragino Kaku Gothic ProN','Hiragino Sans',sans-serif;
	border: 1px solid #ccc;
	background: #fff;
	border-radius	: 3px;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}
.form input::placeholder,
.form textarea::placeholder{	color: #bbb;}
.form input:-ms-input-placeholder,
.form textarea:-ms-input-placeholder{	color: #bbb;}
.form input::-ms-input-placeholder,
.form textarea::-ms-input-placeholder{	color: #bbb;}

.form input[type="file"]{
	display: block;
	margin: 0 0 10px 0;
}
.form input[type="file"]:last-of-type{	margin-bottom: 0;}

.form select{
	font-size: 14px;
	line-height: 20px;
	padding: 7px 27px 7px 7px;
	border: 1px solid #ccc;
	border-radius: 3px;
	font-family: Meiryo,'Hiragino Kaku Gothic ProN','Hiragino Sans',sans-serif;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
			box-sizing: border-box;
}
.form .select_bg{
	position: relative;
	display: inline-block;
}
.form .select_bg:before{
	content: '';
	display: inline-block;
	width: 20px;
	height: 34px;
	background: #666;
	border-radius: 0 3px 3px 0;
	position: absolute;
	top: 1px;
	right: 1px;
}
.form .select_bg:after{
	content: '';
	display: inline-block;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 8px 4px 0 4px;
	border-color: #fff transparent transparent transparent;
	position: absolute;
	top: calc(50% - 4px);
	right: 7px;
}
.form input,
.form textarea,
.form select {
  scroll-margin-top: 100px;
}
.chk_bar{
	font-size: 0;
	line-height: 0;
}
.chk_bar li{
	display: inline-block;
	vertical-align: top;
	width: 120px;
	margin-right: 10px;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}
.chk_bar li:last-of-type{	margin-right: 0;}

.chk_bar input[type="checkbox"],
.chk_bar input[type="radio"]{	display: none;}

.chk_bar input[type="checkbox"] + label,
.chk_bar input[type="radio"] + label{
	display: inline-flex;
	align-items: center;
	align-content: center;
	justify-content: center;
	width: 100%;
	height: 40px;
	font-size: 14px;
	line-height: 16px;
	text-align: center;
	color: #333;
	background: #fff;
	border: none;
	cursor: pointer;
	border: 1px solid #ddd;
	border-radius: 3px;
	padding: 0 3px;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}

.chk_bar input[type="checkbox"]:checked + label,
.chk_bar input[type="radio"]:checked + label{
	color: #fff;
	background: #5bb82d;
	border-color: #5bb82d;
	box-shadow:none;
	-moz-box-shadow:none;
	-webkit-box-shadow:none;
}

.error,
.over{
	margin: 0;
	text-align: center;
	font-size: 14px;
	line-height: 25px;
}
.over{	padding-bottom: 50px;}

.error span{
	display: inline-block;
	font-size: 20px;
	font-weight: bold;
	line-height: 30px;
	color: #ff0000;
	padding: 80px 0;
}
.over div{
	display: inline-block;
	font-size: 20px;
	font-weight: bold;
	line-height: 25px;
	padding: 80px 0 0 0;
}
.over div span{
	font-size: 34px;
	line-height: 1;
}
.over div em{
	display: block;
	margin-bottom: 30px;
}

.error_text{
    display: block;
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 30px;
    color: #ff0000;
    font-weight: bold;
}

.error_text:empty{ display: block;}

.error_block h4{
	color: #ff0000 !important;
	animation-name: indfade !important;
	animation-duration: 2.0s;
	animation-timing-function: ease-out;
	animation-delay: 0.0s;
	animation-iteration-count: infinite;
	animation-fill-mode: backwards;
}
@keyframes indfade {
	0%{
		opacity: 1.0;
		filter: alpha(opacity=100);
	}
	80% {
		opacity: 1.0;
		filter: alpha(opacity=100);
	}
	85% {
		opacity: 0.3;
		filter: alpha(opacity=30);
	}
	90% {
		opacity: 1.0;
		filter: alpha(opacity=100);
	}
	95% {
		opacity: 0.3;
		filter: alpha(opacity=30);
	}
	100%{
		opacity: 1.0;
		filter: alpha(opacity=100);
	}
}

.error_block input[type="text"],
.error_block input[type="email"],
.error_block input[type="tel"],
.error_block input[type="url"],
.error_block input[type="password"],
.error_block textarea{
    border-color: #ff0000 !important;
    background: #fff5f5 !important;
}

.capt_bg{
	border-bottom: 1px dotted #ddd;
	margin: 0 0 20px 0;
	padding: 0 0 20px 0;
}

.capt{
	width: 280px;
	margin: 20px auto 20px auto;
	padding: 0 10px;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}

.capt div{
	width: 100%;
	display: flex;
	align-items: center;
	align-content: center;
	justify-content: space-between;
	margin: 0 0 10px 0;
}

.capt div span{
	font-size: 34px;
	line-height: 40px;
	color: var(--accent-color);
}

.capt div input[type="text"]{
	width: 110px;
	padding: 7px;
	font-size		: 16px;
	line-height: 20px;
	font-family: Meiryo,'Hiragino Kaku Gothic ProN','Hiragino Sans',sans-serif;
	border-radius: 3px;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}

.capt p{
	font-size: 11px;
	line-height: 16px;
	text-align: left;
	padding: 0 0;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}
.capt p em{	color: #ff0000;}



@media screen and (max-width: 750px) {
	.form{
		padding: 0 0 15px 0;
		-webkit-box-sizing: border-box;
		   -moz-box-sizing: border-box;
		        box-sizing: border-box;
	}
	.form dl{
		display: block;
		padding: 15px 0;
		border-bottom: 1px dotted #ddd;
	}
	.form dt,
	.form dd{
		display: block;
		width: auto;
	}
	.form dt{
		margin: 0 0 10px 0;
	}
	.submit p br{	display: inline;}
}




/** form_caution **/

.form_caution{
	width: 100%;
	text-align: left;
	max-width: 600px;
	height: 80px;
	margin: 0 auto 30px auto;
	padding: 10px;
	border: 1px solid #ccc;
	border-radius: 3px;
	overflow-y		: auto;
	overflow-scrolling: touch;
	-webkit-overflow-scrolling: touch;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}
.form_caution h4{
	font-size: 12px;
	font-weight: bold;
	line-height: 20px;
	margin: 0 0 5px 0;
}
.form_caution ul{
	font-size: 0;
	line-height: 0;
}
.form_caution li{
	position: relative;
	font-size: 10px;
	line-height: 14px;
	margin: 0 0 5px 0;
	padding: 0 0 0 12px;
}
.form_caution li:last-of-type{	margin-bottom: 0;}
.form_caution li span{
	font-weight: bold;
	color: #ccc;
	position: absolute;
	top: 0;
	left: 0;
}







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

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

.sat{	color	: #0099ff;}
.sun{	color	: #ff0000;}
.tel, .tel a{	color: #b38600 !important;}
.mail, .mail a{	color: #ff0099;}

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


/***** buttun *****/
.bt_main,
input.bt_main{
	display: inline-flex;
	align-items: center;
	align-content: center;
	justify-content: center;
	width: 240px;
	height: 50px;
	font-family: "M PLUS Rounded 1c", sans-serif;
	font-weight: 500;
	font-style: normal;
	font-size: 16px;
	line-height: 26px;
	text-align: center;
	color: #fff;
	border: none;
	background: #0042a5;
	border-radius: 5px;
	-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;
}

.form input.bt_main{
	-webkit-appearance: none;
}

.bt_main:hover{
	text-decoration: none;
	color: #fff;
	opacity: 0.7;
	filter: alpha(opacity=70);
}

/***** slider *****/
.slick-prev, .slick-next , ul#slideIcon li,
#newface .bx-wrapper .bx-controls-direction a{	color: #ffffff;}
.slick-prev, .slick-next , ul#slideIcon li,
#newface .bx-wrapper .bx-controls-direction a{	background-color: rgba(255, 155, 212, 0.9);}
.bx-wrapper .bx-pager.bx-default-pager a{	background-color: #ccc;}
.bx-wrapper .bx-pager.bx-default-pager a.active{	background-color: #ff3399;}



/***************************************
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);
}



/***************************************
ANIMATION
****************************************/

.i_hot,
.i_new{
	-webkit-animation: heartbeat 1.5s ease-in-out infinite both;
	animation: heartbeat 1.5s ease-in-out infinite both;
}
@-webkit-keyframes heartbeat{
	from{
		-webkit-transform: scale(1);
		transform: scale(1);
		-webkit-transform-origin: center center;
		transform-origin: center center;
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out;
	}
	10%{
		-webkit-transform: scale(0.91);
		transform: scale(0.91);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}
	17%{
		-webkit-transform: scale(0.98);
		transform: scale(0.98);
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out;
	}
	33%{
		-webkit-transform: scale(0.87);
		transform: scale(0.87);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}
	45%{
		-webkit-transform: scale(1);
		transform: scale(1);
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out;
	}
}
@keyframes heartbeat{
	from{
		-webkit-transform: scale(1);
		transform: scale(1);
		-webkit-transform-origin: center center;
		transform-origin: center center;
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out;
	}
	10%{
		-webkit-transform: scale(0.91);
		transform: scale(0.91);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}
	17%{
		-webkit-transform: scale(0.98);
		transform: scale(0.98);
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out;
	}
	33%{
		-webkit-transform: scale(0.87);
		transform: scale(0.87);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}
	45%{
		-webkit-transform: scale(1);
		transform: scale(1);
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out;
	}
}



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

@font-face {
}

.pc_none{	display: none;}


/*=================================================
 * CSS for SP
 * ================================================= */

@media screen and (max-width: 750px) {

	.pc_none{	display: inline;}
	.sp_none{	display: none;}
	.anchor{
		display: block;
		padding-top: 70px;
		margin-top: -70px;
	}

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



	/***************************************
	CAST STYLE
	****************************************/





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


	/***************************************
	COMMON STYLE (SP ONLY)
	****************************************/

}


