@charset "utf-8";
/*-------------------------------------*/
/*	トップページ	*/
/*-------------------------------------*/

/*メインビジュアル*/
.mv{
	width: 100%;
	height: 100vh;
	background: #000;
	position: fixed;
	z-index: -1;
}
.mv{
background-image: url(../images/index/main.png);
background-size: cover;
}
.mv video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
	z-index: 1;
}
.main_area{
	width: 100%;
	height: calc( 100vh - 80px );
	position: relative;
	padding: 0 15px;
	display: flex;
	align-items: center;
}
.main_sld{
	max-width: 630px;
	width: 40%;
	margin: 0 auto 0 5%;
	opacity: 0;
  transition: opacity .3s linear;
}
.main_sld.slick-initialized{
  opacity: 1;
}
@media screen and (max-width:1150px) {
.main_area{
	height: calc( 100vh - 70px );
}
}
@media screen and (max-width: 768px){
	.main_sld{
	width: 60%;
	margin: 0 auto 0 0;
}
}
@media screen and (max-width: 550px){
		.main_sld{
	width: 70%;
	margin: 0 auto 0 0;
}
}
/* トップ　whatsnew */
#whatsnew{
	background-color: #ffbe28;
	background-image: url('../images/index/news_ttl.svg');
	background-position: left top;
	background-repeat: no-repeat;
}
#whatsnew h2{
	padding: 50px 0;
	text-align: center;
	font-size: 6.0rem;
	color: #FFFFFF;
}
#whatsnew .whatsnew_box{
	background-color: #FFFFFF;
	max-width: 550px;
	padding: 30px;
	display: block;
	margin: 0 auto;
}
#whatsnew .whatsnew_box span{
	padding: 15px 0;
	display: block;
}
#whatsnew .whatsnew_box h3{
	font-size: 2.4rem;
	line-height: 1.5;
	font-weight: 500;
	margin-bottom: 15px;
}
#whatsnew .whatsnew_box p{
	font-size: 1.4rem;
	line-height: 1.5;
}

@media screen and (max-width: 768px){
#whatsnew h2{
	padding: 50px 0;
	text-align: center;
	font-size: 3.0rem;
	color: #FFFFFF;
}
#whatsnew .whatsnew_box{
	padding: 20px;
}
#whatsnew .whatsnew_box span{
	padding: 15px 0;
	display: block;
}
#whatsnew .whatsnew_box h3{
	font-size: 2.0rem;
}
#whatsnew .whatsnew_box p{
	font-size: 1.4rem;
	line-height: 1.5;
}
}
@media screen and (max-width: 550px){

}
/*-------------------------------------*/
/*	トップ　about	*/
/*-------------------------------------*/
#about {
	background-color: #ff7f2d;
}
#about h2.caption{
	font-size: 3.0rem;
	color: #FFFFFF;
	font-weight: 500;
	text-align: center;
	padding: 70px 0;
	line-height: 2;
}
#about .about_ttl{
	max-width: 500px;
	border-top: 1px solid #FFFFFF;
	border-bottom: 1px solid #FFFFFF;
	text-align: center;
	margin: 0 auto 70px auto;
	color: #FFFFFF;
	font-size: 3.6rem;
	padding: 20px 0;
	line-height: 1;
}
.brand_list{
	display: flex;
	justify-content: space-between;
	max-width: 1000px;
	margin: 0 auto;
}
.brand_list .brand_box{
	max-width: 400px;
	width: 45%;
	color: #FFFFFF;
	position: relative;
}
.brand_list .brand_box h3{
font-size: 2.4rem;
font-weight: 500;
text-align: center;
padding: 40px 0;
}
.brand_list .brand_box p{
	line-height: 2.5;
	margin-bottom: 60px;
}
.brand_list .brand_box .brand_logo{
	text-align: center;
}
/* 慣性スクロール */

.luxy-img01 {
  margin-inline: auto;
  width: 30%;
}
.fuwafuwa {
  animation: fuwafuwa 1s ease-in-out infinite alternate-reverse;
}
@keyframes fuwafuwa {
  0% {
    transform: translateY(-5%);
  }
  100% {
    transform: translateY(5%);
  }
}
@media screen and (max-width: 768px){
#about h2.caption{
	font-size: 2.0rem;
	padding: 40px 0;
}
#about .about_ttl{
	margin: 0 auto 40px auto;
	font-size: 2.8rem;
}
.brand_list{
	flex-direction: column;
}
.brand_list .brand_box{
	max-width: 400px;
	width: 100%;
	margin: 0 auto 100px auto;
}
.brand_list .brand_box:last-of-type{
	margin: 0 auto ;
}
.brand_list .brand_box p{
	line-height: 2.5;
	margin-bottom: 20px;
}
}
@media screen and (max-width: 550px){
	
}

/*-------------------------------------*/
/*	top company	*/
/*-------------------------------------*/
#company{
	background-color: #FFFFFF;
	position: relative;
	padding-top: 400px;
}
.company_ttl{
	width: 100%;
	height: 400px;
	background-image: url("../images/index/bg_company.svg");
	background-position: top center;
	background-repeat: repeat-x;
transition-duration: .6s;
}
.company_ttl .ttl{
	color: #FFFFFF;
	padding-top: 50px;
}
.fixttl{
	position: absolute;
	left: 0;
	top: 0;
	transition-duration: .6s;
}
.fixttl.fixed{
	position: fixed;
	left: 0;
	top: 80px;
	transition-duration: .6s;
}
.company_ttl.fixed.none{
	opacity: 0;
}
#company .gaiyo{
font-size: 1.4rem;
}
.blank{
	height: 400px;
	background-color: #FFFFFF;
	width: 100%;
}
@media screen and (max-width:1150px) {
.fixttl.fixed{
	top: 70px;
}
}
@media screen and (max-width: 991px) {
}
@media screen and (max-width: 768px) {
	#company{
		padding-top: 200px;
	}
.company_ttl{
	height: 200px;
	background-image: url("../images/index/bg_company.svg");
	background-position: top center;
	background-repeat: repeat-x;
	background-size: 200%;
}
.company_ttl .ttl{
	color: #FFFFFF;
	padding-top: 20px;
}
.blank{
	height: 270px;
}
}
@media screen and (max-width: 550px) {
}
/*-------------------------------------*/
/*	service	*/
/*-------------------------------------*/
#service{
	background-color: #fffcd2;
}
#service h3{
	line-height: 1.5;
	font-size: 6.0rem;
	font-weight: 500;
	text-align: center;
	margin-bottom: 20px;
}
#service h3:first-of-type{
	color: #ff7f2d;
}
#service h3:nth-of-type(2){
	color: #c07944;
}
#service p{
	line-height: 2;
}
@media screen and (max-width: 991px) {
	#service h3{
	font-size: 4.0rem;
}
}
@media screen and (max-width: 768px) {
		#service h3{
	font-size: 2.4rem;
}
}
@media screen and (max-width: 550px) {
}
/*-------------------------------------*/
/*	full page	*/
/*-------------------------------------*/
/*トップ　バリシールドの特長*/
.feat_wrap{
	position: relative;
}
.feat_wrap .feat_inner{
	position: relative;
}
ul.feat_nav{
	width: 60px;
	position: absolute;
	left: 0;
	top: 0;
}
ul.feat_nav li{
	margin-bottom: 40px;
	font-family: "Oswald", sans-serif;
	font-size: 2.0rem;
	font-weight: 500;
	position: relative;
	padding-left: 40px;
}
ul.feat_nav li a{
	color: #ff7f2d;
	/* text-decoration-color: transparent!important; */
}
ul.feat_nav li a::before{
	content: "";
	background: #ff7f2d;
	width: 10px;
	height: 10px;
	border-radius: 50px;
	position: absolute;
	left: 0;
	top: 0.4em;
}
ul.feat_nav li a,ul.feat_nav li a:hover{
	pointer-events: none;
}
/*ul.feat_nav li a:hover,*/ul.feat_nav li a.nav_active{
	color: #ff7f2d;
}
/*ul.feat_nav li a:hover::before{
	background:#FFFFFF;
}*/
ul.feat_nav li a::after{
	transition:1s all;
	content: "";
	background:rgba(255, 125, 45, 0.5);
	width: 10px;
	height: 10px;
	border-radius: 50px;
	position: absolute;
	left: 0;
	top: 0.4em;
}
/*ul.feat_nav li a:hover::after,*/ul.feat_nav li a.nav_active::after{
	transform:scale(3,3);
	transition:1s all;
}

ul.feat_nav li a,
ul.feat_nav li a:hover,
ul.feat_nav li a:active,
ul.feat_nav li a:focus,
ul.feat_nav li a:visited {
	text-decoration: none;
}

.feat_active{
	z-index: 10;
}
.feat_box{
	max-width: 530px;
	margin: 0 60px 0 auto;
}
.feat_img{
	margin-bottom: 20px;
}
.feat_img a{
	display: block;
}
.feat_img img{
	box-shadow: 5px 5px 10px 0 rgba(0, 0, 0, 0.2);
}
.feat_txt span.no{
	color: #ff7f2d;
	font-size: 7.0rem;
	font-weight: 300;
	font-family: "Oswald", sans-serif;
	margin-bottom: 30px;
	display: block;
	line-height: 1;
	position: absolute;
	left: 0;
}
.feat_txt{
	position: relative;
	padding-left: 5em;
}
.feat_txt p{
	font-size: 2.0rem;
	font-weight: 500;
	line-height: 1.5!important;
}
@media screen and (max-width: 1200px) {	
}
@media screen and (max-width: 991px) {	
.feat_box{
	max-width:600px;
	margin-right: 0;
}	
}
@media screen and (max-width: 768px) {
ul.feat_nav{
	width: 60px;
	position: absolute;
	left:20px;
	top: 0;
}		
.feat_box{
	width:50%;
	margin: 0 20px 0 auto;
}
.feat_img,.feat_txt{
		width: 100%;
	margin-bottom: 10px;
}
.feat_txt span.no{
	margin-bottom: 20px;
	font-size: 4rem;
}	
.feat_txt{
	position: relative;
	padding-left: 3em;
}
.feat_txt p{
	font-size: 1.6rem;
}
}
@media screen and (max-width: 550px) {
ul.feat_nav li{
	padding-left: 29px;
}		
}


/* ############################## 
 * 2021/07/25 追記　FEATURESセクションにScrollMagic/Timelinemax導入
############################## */
	#fullpage {
		width: 100%;
		height: 100vh;
		background-image: url(../images/index/product_mark.svg);
		background-position: 10% 90%;
		background-repeat: no-repeat;
	}
	
	.feat_section{
		position: absolute;
		top: 0;
		left: 0;
		/* z-index: 0; */
	}
	
	.features-wrap {
		position: relative;
	}
	
	.features-wrap  > section {
		width: 100%;
		height: 100vh;
		/* background: #D4B1A4; */
	}
	
	ul.feat_nav {
		z-index: 10;
		width: 70px;
		left: 150px;
		top: 240px;
	}
	
	.features-fixed-area {
		width: 100%;
		position: absolute;
		top: 0;
		left: 0;
	}
	
	.feat_img,
	.feat_txt {
		backface-visibility: hidden;
	}
	.feat_img {
		opacity: 0;
		z-index: 1;
		-ms-filter: blur(10px);
		filter: blur(10px);
		transition-property: all;
		transition-delay: 100ms;
		transition-duration: 1s;
		will-change: transition, blur;
	
	}
	.feat_section.feat_active .feat_img {
		opacity: 1;
		z-index: 10;
		-ms-filter: blur(0px);
		filter: blur(0px);
	}
	
	.feat_txt {
		opacity: 0;
		z-index: 1;
		margin-top: 200px;
		transition-property: all;
		/* transition-property: opacity, margin-top; */
		transition-delay: 200ms;
		transition-duration: .8s;
		will-change: opacity, margin-top;
	
	}
	
	.feat_section.feat_active .feat_txt {
		opacity: 1;
		margin-top: 0;
		z-index: 10;
	}
	
	.feat_line {
		width: 1px;
		height: 0px;
		background: #ff7f2d;
		position: absolute;
		top: 252px;
		left: 155px;
		z-index: 9;
	
	}
	@media screen and (max-width: 991px) {
			.feat_line {
		top: 252px;
		left: 85px;
		z-index: 9;
	
	}
		ul.feat_nav {
		z-index: 10;
		width: 70px;
		left: 80px;
		top: 240px;
	}
}
	@media screen and (max-width: 768px) {
	#fullpage {
		background-image: url(../images/index/product_mark.svg);
		background-position: 10% 90%;
		background-repeat: no-repeat;
		background-size: 30%;
	}
}
	@media screen and (max-width: 550px) {
		ul.feat_nav {
			left: 19px;
			top: 200px;
		}
	
		.feat_line {
			top: 208px;
			left: 23px;
			z-index: 9;
		}
		.feat_box {
			width: 70%;
		}
	
		.feat_wrap .feat_inner {
			margin-top: 60px;
		}
	}
	@media screen and (max-height: 640px) {

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

}
/* オリジナルガチャ */
#event{
			background-image: url(../images/index/event_mark.svg);
		background-position: 10% 90%;
		background-repeat: no-repeat;
}
.event_sld{
	max-width: 530px;
	margin: 0 60px 60px auto;
	position: relative;
}
.event_gacha{
	max-width: 530px;
	margin: 0 auto;
}
.event_gacha img{
	margin-bottom: 20px;
		box-shadow: 5px 5px 10px 0 rgba(0, 0, 0, 0.2);
}
.event_gacha h4{
	position: relative;
	padding-left: 5em;
		font-size: 2.0rem;
	font-weight: 500;
	line-height: 1.5;
}
.event_gacha h4 span.no{
	color: #c07944;
	font-size: 7.0rem;
	font-weight: 300;
	font-family: "Oswald", sans-serif;
	margin-bottom: 30px;
	display: block;
	line-height: 1;
	position: absolute;
	left: 0;
}
.event_sld .slick-slide {
margin: 0 15px;	
height : auto;
}

.event_sld .slick-prev {
    left: 0;
}
.event_sld .slick-next {
    right: 0;
}
.event_sld .slick-dots {
    position: absolute;
    bottom: -50px;
    display: block;
    width: 80%;
	max-width: 500px;
    padding: 0 ;
    margin: 0;
    list-style: none;
    text-align: center;
	 left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}
.event_sld .slick-dots li button:before {
    color: #666; 
	opacity: 0.7;
}
.event_sld .slick-dots li.slick-active button:before {
    opacity: 1;
    color: #c07944;
}
.event_sld .slick-prev:before, .event_sld .slick-next:before {
    font-family: 'FontAwesome';
    font-size: 40px;
    line-height: 1;
    opacity: 1;
    color: #c07944;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.event_sld .slick-prev:before {
    content: '\f104';

}
.event_sld .slick-next:before {
    content: '\f105';
}
.event_sld .slick-prev, .event_sld .slick-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: auto;
	bottom: -80px;
    display: block;
    width: 40px;
    height: 40px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
    background: transparent;
}
@media screen and (max-width: 991px) {
}
@media screen and (max-width: 768px) {
#event {
		background-position: 10% 90%;
		background-repeat: no-repeat;
		background-size: 30%;
	}
	.event_sld{
	max-width: 530px;
	margin: 0 0 auto auto;
	position: relative;
	width: 70%;
}
.event_gacha h4 span.no{
	color: #c07944;
	font-size: 4.0rem;
}
.event_gacha h4{
	position: relative;
	padding-left: 3em;
		font-size: 1.6rem;
	font-weight: 500;
	line-height: 1.5;
}
}
@media screen and (max-width: 550px) {
}
/*-------------------------------------*/
/*	f_contact	*/
/*-------------------------------------*/
.bt_list{
	max-width: 440px;
}
.bt_list li{
	margin-bottom: 30px;
}
.bt_list li:last-child{
	margin-bottom: 0;
}
@media screen and (max-width: 768px) {
	.bt_list{
	margin: 0 auto;
}
}
/*-------------------------------------*/
/*	link	*/
/*-------------------------------------*/
#link{
	background-color: rgba(0, 0, 0, 0.6);
	padding: 0 0 100px 0;

}
#link h2{
	text-align: center;
	margin-bottom: 100px;
}
#link .link_list{
	text-align: center;
}
#link .link_list li{
	display: inline-block;
	margin-right: 10px;
	position: relative;
}
#link .link_list li::after{
content: "／";
color: #FFFFFF;
    position: absolute;
    top: 50%;
    right: -1em;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}
#link .link_list li:last-child:after{
content: none;
}
#link .link_list li a{
	color: #FFFFFF;
	display: block;
	padding: 0.5em;

}
/*-------------------------------------*/
/*	共通	*/
/*-------------------------------------*/
.ttl{
	text-align: center;
	color: #FFFFFF;
	font-weight: 500;
	font-size: 6.0rem;
	margin-bottom: 60px;
}
.ttl span{
	font-family: "Oswald", sans-serif;
	font-weight: 500;
	display: block;
	margin-top: 10px;
	font-size: 3.6rem;
}
.ttl02{
	text-align: center;
	color: #c07944;
	font-weight: 500;
	font-size: 3.6rem;
	margin-bottom: 50px;
}
a .img_wrap {
overflow: hidden;
width: 100%;
}
a:hover .img_wrap img{
	transform: scale(1.1);
transition-duration: 0.5s;
	opacity: 1!important;
}
@media screen and (max-width: 991px) {
}
@media screen and (max-width: 768px) {
	.ttl{
	font-size: 3.0rem;
	margin-bottom: 40px;
}
.ttl span{
	margin-top: 10px;
	font-size: 2.4rem;
}
.ttl02{
	font-size: 2.4rem;
	margin-bottom: 40px;
}
}
@media screen and (max-width: 550px) {
}
/*-------------------------------------*/
/*	下層ページ関連	*/
/*-------------------------------------*/

#subimg{
	width: 100%;
	background-size:cover;
	position: relative;
	background-position: center center;
	height: 980px;
	padding: 0 20px;
}
#subimg::before{
	content: "";
	width: 100%;
	height: 200px;
	background-image: url("../images/round_w.svg");
	background-position: center top;
	background-repeat: no-repeat;
	position: absolute;
	bottom: 0;
	left: 0;
}
#subimg.subimg_news::before,
#subimg.subimg_product::before
{background-image: url("../images/round_y.svg");}


#subimg.subimg_news{background-image: url("../images/page/subimg_news.jpg");}
#subimg.subimg_product{background-image: url("../images/page/subimg_products.png");}
#subimg.subimg_business{background-image: url("../images/page/subimg_business.jpg");}
#subimg.subimg_partner{background-image: url("../images/page/subimg_partner.jpg");}
#subimg.subimg_policy{background-image: url("../images/page/subimg_policy.jpg");}
#subimg.subimg_contact{background-image: url("../images/page/subimg_contact.jpg");}

#subimg h2{
	font-size: 7.2rem;
	text-align: center;
	color: #FFF;
		position: absolute;
    top: calc( 50% - 100px);
    left: 50%;
		font-weight: 500;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
		 text-shadow: 4px 4px 5px rgba(0, 0, 0, 0.7);
		 width: 100%;

}
#subimg h2 span{
font-family: "Oswald", sans-serif;
display: block;
margin-top: 20px;
font-size: 6.0rem;
}
.single_wrap{
	display: flex;
	justify-content: space-between;
	max-width: 1080px;
	margin: 0 auto;
}
.single_wrap #side{
	max-width: 250px;
	width: 100%;
}
.single_wrap .entry{
	max-width: 760px;
	padding-left: 30px;
	width: 100%;
}
.subimg02{
	position: relative;
	padding-bottom: 500px;
}
.subimg02::after{
content:"";
height: 400px;
width: 100%;
background-position: center top;
background-repeat: repeat-x;
position: absolute;
left: 0;
bottom: 0;
background-size: contain;
}
.subimg02_policy::after{
background-image: url("../images/page/subimg_policy02.png");
}
.subimg02_news::after{
background-image: url("../images/page/subimg_news02.png");
}
.subimg02_product::after{
background-image: url("../images/page/subimg_products02.png");
}
.subimg02_contact::after{
background-image: url("../images/page/subimg_contact02.png");
}
.subimg02_business::after{
background-image: url("../images/page/subimg_business02.png");
}
.subimg02_partner::after{
background-image: url("../images/page/subimg_partner02.png");
}
@media screen and (max-width: 1300px){
.subimg02{
	padding-bottom: 400px;
}
.subimg02::after{
content:"";
height: 350px;
width: 100%;
background-position: center top;
background-size: cover;
}
}
@media screen and (max-width: 991px){
.single_wrap{
	flex-direction: column;
}
.single_wrap #side{
	max-width: 500px;
	width: 100%;
	margin-bottom: 40px;
}
.single_wrap .entry{
	max-width: 1000px;
	padding-left: 0;
	width: 100%;
}
}
@media screen and (max-width: 768px){
#subimg{
	height: 400px;
}
#subimg::before{
	content: "";
	width: 100%;
	height: 100px;
	background-image: url("../images/round_w.svg");
	background-size: 200%;
	position: absolute;
	bottom: 0;
	left: 0;
}
#subimg.subimg_news::before,
#subimg.subimg_product::before
{background-image: url("../images/round_y.svg");}

#subimg h2{
	font-size: 3rem;
	top: calc( 50% - 50px);
}
#subimg h2 span{
	font-size: 2rem;

}
			
}		
@media screen and (max-width: 550px){
	
}	
/*-------------------------------------*/
/*	partner　*/
/*-------------------------------------*/
.partner_list {
	display: flex;
	flex-wrap: wrap;
	 gap: 20px 20px;
	justify-content: space-between;
	
}
.partner_list::after{
  content:"";
  display: block;
  width: calc(100% / 3 - 20px);
	max-width: 320px;
}
.partner_list li{
	 width: calc(100% / 3 - 20px);
	 margin-bottom: 40px;
	 max-width: 320px;
}
.partner_list li p{
	font-size: 1.6rem;
	margin-bottom: 10px;
		line-height: 1.5!important;
}
.partner_list li p::before{
	content: "■";
	color: #c07944;
}
.slid_wrap{
	margin-bottom: 100px;
	position: relative;
    position: relative;
		width: 100%;
		max-width: 1500px;
		margin: 0 auto;
}
.news_slid{
	width: 100%;
	position: relative;
}

.news_slid .slick-slide {
margin: 0 15px;	
height : auto;
}

.news_slid .slick-prev {
    left: 25%;
}
.news_slid .slick-next {
    right: 25%;
}
.news_slid .slick-dots {
    position: absolute;
    bottom: -50px;
    display: block;
    width: 80%;
	max-width: 500px;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
	 left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}
.news_slid .slick-dots li button:before {
    color: #666; 
	opacity: 0.7;
}
.news_slid .slick-dots li.slick-active button:before {
    opacity: 1;
    color: #c07944;
}
.news_slid .slick-prev:before, .news_slid .slick-next:before {
    font-family: 'FontAwesome';
    font-size: 40px;
    line-height: 1;
    opacity: 1;
    color: #c07944;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.news_slid .slick-prev:before {
    content: '\f104';

}
.news_slid .slick-next:before {
    content: '\f105';
}
.news_slid .slick-prev, .news_slid .slick-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: auto;
	bottom: -80px;
    display: block;
    width: 40px;
    height: 40px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
    background: transparent;
}
.item_box{
	max-width: 346px;
	border: 1px solid #c07944;
	padding: 10px;
	text-align: center;
	margin: 0 auto;
}
.item_box h3{
	padding-top: 10px;
	font-size: 2.2rem;
	line-height: 1.5;
}
.item_box p{
	font-size: 1.8rem;
	padding: 5px 0;
}
@media screen and (max-width: 991px) {
}
@media screen and (max-width: 768px) {
	.slid_wrap{
	margin-bottom: 100px;
}
	.item_box{
	max-width: 300px;
}	
.item_box h3{
	font-size: 2rem;
}
.item_box p{
	font-size: 1.4rem;
}
.news_slid .slick-prev {
    left: 10%;
}
.news_slid .slick-next {
    right: 10%;
}
.partner_list li p{
	font-size: 1.4rem;
}
}
@media screen and (max-width: 550px) {
		.news_slid .slick-prev {
    left: 10px;
}
.news_slid .slick-next {
    right: 10px;
}
.partner_list::after{
  content:"";
  display: block;
  width: calc(100% / 2 - 20px);
	max-width: 320px;
}
.partner_list li{
	 width: calc(100% / 2 - 20px);
	 margin-bottom: 40px;
	 max-width: 320px;
}
}
/*-------------------------------------*/
/*	policy　*/
/*-------------------------------------*/

.policy_box h3{
	line-height: 1.5;
	font-size: 2.4rem;
	margin-bottom: 10px;
	color: #c07944;
	font-weight: 500;
}
.policy_box p{
	font-size: 1.6rem;
	margin-bottom: 40px;
}
.add{
	max-width: 440px;
	margin: 60px auto 0 auto;
}
.add dt{
	font-weight: normal;
}
@media screen and (max-width: 768px){
#policy .caption{
	font-size: 1.4rem;
}	
.policy_box h2{
	font-size: 1.8rem;

}
.policy_box h3{
	font-size: 1.8rem;
}
.policy_box p{
	font-size: 1.4rem;
}
.add{
	font-size: 1.6rem;
	margin-bottom: 60px;
	flex-direction:column;
}
.add dt{
	width: 100%;
}
}
/*-------------------------------------*/
/*	business　*/
/*-------------------------------------*/
.bg_business{
	background-image: url("../images/page/bg_business.png");
	background-size: cover;
	padding-top: 100px;
	margin-bottom: 150px;
}
.bg_business img{
margin-bottom: -80px;
}
.bg_service{
	background-image: url("../images/page/bg_service.svg");
	background-position:90% top;
	background-repeat: no-repeat;
}
.bg_service dl{
	display: flex;
	justify-content: space-between;
	max-width: 700px;
	margin-bottom: 100px;
}
.bg_service dl dt{
	max-width: 200px;
	padding-right: 10px;
}
.bg_service dl dd{
	width: 100%;
	padding-left: 95px;
	border-left: 1px solid #ff7f2d;
}
.bg_service dl dd h3{
	font-weight: 500;
	font-size: 3.6rem;
	color: #c07944;
	line-height: 1.5;
	margin-bottom: 20px;
	position: relative;
}
.bg_service dl dd h3 span{
	font-weight: 500;
	font-size: 7.0rem;
	color: #ff7f2d;
	font-family: "Oswald", sans-serif;
	line-height: 1;
	position: absolute;
	left: -1.2em;
	top: 0;
}
.bg_service dl dd h4{

	margin-bottom: 20px;
}

.bg_service dl dd ul li{
	font-size: 2.0rem;
	margin-bottom: 20px;
	line-height: 1.7;
	padding-left: 1.2em;
	position: relative;
}
.bg_service dl dd ul li:last-child{
	margin-bottom: 0;
}
.bg_service dl dd ul li::before{
	content: "●";
	color: #ff7f2d;
	position: absolute;
	left: 0;
}


.contact_box{
	max-width: 550px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.contact_box div:first-of-type{
	max-width: 150px;
	text-align: center;
	padding-right: 40px;
}
.contact_box div:last-of-type{
	width: 80%;
	text-align: center;
}
@media screen and (max-width: 991px) {
	.bg_service{
	background-image: url("../images/page/bg_service_sp.svg");
	background-position:bottom center;
	background-repeat: no-repeat;
}
.bg_business{
	background-image: url("../images/page/bg_business.png");
	padding-top: 80px;
	margin-bottom: 130px;
}
.bg_business img{
margin-bottom: -40px;
}
}
@media screen and (max-width: 768px) {
	.contact_box{
	flex-direction: column;
}
.contact_box div:first-of-type{
	max-width: 150px;
	margin-bottom: 20px;
	padding-right: 0;
}
.contact_box div:last-of-type{
	width: 100%;
	text-align: center;
}
	.bg_service{
	background-size: 100%;
	background-position:center 90%;
}
}
@media screen and (max-width: 550px) {
	.bg_service dl{
	flex-direction: column;
	margin-bottom: 100px;
	border-left: 1px solid #ff7f2d;
}
.bg_service dl dt{
	max-width: 200px;
	padding-right: 0;
	margin: 0 auto 20px auto;

}
.bg_service dl dd{
	width: 100%;
	padding-left: 40px;
	border: none;
	
}
.bg_service dl dd h3{
	font-size: 2.4rem;
}
.bg_service dl dd h3 span{
	margin-right: 10px;
	font-size: 4.0rem;
	position: relative;
	left: auto;
	top: auto;
}
.bg_service dl dd h4{
	margin-bottom: 20px;
}

.bg_service dl dd ul li{
	font-size: 1.6rem;
	margin-bottom: 20px;
	line-height: 1.7;
	padding-left: 1.2em;
	position: relative;
}
}
/*-------------------------------------*/
/*	news　product */
/*-------------------------------------*/
#news{
	background: #fffcd2;
}
#product{
	background: #fffcd2;
}
.single_wrap article{
	background: #FFFFFF;
	padding: 50px 50px;
	margin-bottom: 60px;
	border: 1px solid #ff7f2d;
}
article  .meta_entry{
	border-left: 3px solid #ff7f2d;
	padding-left: 15px;
	margin-bottom: 40px;
}
article  .meta_entry p{
	margin-bottom: 10px;
	font-size: 1.4rem;
}
article .meta_entry .date{
	margin-right: 15px;
	border-right: 1px solid #000;
	padding-right: 15px;
}
article .meta_entry .cat:hover{
	color: #ff7f2d;
}
article .meta_entry h3{
	font-size: 2.4rem;
	line-height: 1.5;
	font-weight: 700;
}
.thumb{
	text-align: center;
	margin-bottom: 40px;
}
#side .cat_ttl{
	color: #ff7f2d;
	font-weight: 500;
	padding-left: 1em;
	margin-bottom: 0.5em;
	font-size: 1.8rem;
	
}
#side ul{
	border-top: 1px dotted #000000;
}
#side ul li{
	border-bottom: 1px dotted #000000;
}
#side ul li a{
	padding: 0.7em 1em;
	display: block;
	font-size: 1.4rem;
}
#side ul li a:hover{
	color: #ff7f2d;
}
/*	ページナビ関連	*/
.wp-pagenavi {
	clear: both;
	margin: 0 auto 40px auto;
	text-align: center;
	font-size: 2.2rem;
	font-weight: 500;
}
.wp-pagenavi a{
	text-decoration: none!important;
	padding: 0.5em 0.8em!important;
	margin: 3px;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
	display: inline-block;
	color:#838383!important;
	border: none!important;
	background:none!important;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-ms-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
.wp-pagenavi span{
	color:#838383;
		font-weight: 500;
}
.wp-pagenavi span.current {
	text-decoration: none!important;
	padding: 0.5em 0.8em;
	margin: 3px;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
	display: inline-block;
	color:#ff7f2d;
	border: none;
	background:none;
}
.wp-pagenavi a:hover, .wp-pagenavi span.current {
    border-color: none!important;
}
.wp-pagenavi a:hover{
	border: none!important;
	background: none;
	color: #ff7f2d!important;
	text-decoration: none!important;
}
.wp-pagenavi a:hover span{
	color:#ff7f2d;
}
.wp-pagenavi span {
    text-decoration: none;
    border: none!important;
}
@media screen and (max-width: 991px){
.single_wrap article{
	padding: 40px 40px;
	margin-bottom: 40px;
}
}
@media screen and (max-width: 768px){
.single_wrap article{
	padding: 20px 20px;
	margin-bottom: 40px;
}	
article .meta_entry h3{
	font-size: 2.0rem;
}	
}

/*-------------------------------------*/
/*	フォーム	*/
/*-------------------------------------*/
.contact_ttl{
	background-color: #c07944;
	padding: 0.5em;
	text-align: center;
	font-size: 2.4rem;
	line-height: 1;
	color: #FFFFFF;
}
.form_area h4 {
  margin-top: 40px !important;
	margin-bottom: 10px;
  position: relative;
  font-size: 1.8rem;
	line-height: 1.5;
	font-weight: 700;
}
.form_area h4 span{
	color: #c07944;

}
.submit_btn_wrap {
  position: relative;
  width: 220px;
  margin: 0 auto;
}
ul.submit2_btn_wrap {
  position: relative;
  width: 50%;
  margin: 0 auto;
  text-align: center;
}
ul.submit2_btn_wrap li {
  display: inline-block;
  width: 200px;
  margin-left: 5px;
}
.submit_btn {
  width: 100%;
  padding: 1em 1.5em;
  display: inline-block;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  font-size: 2rem;
  line-height: 1;
  font-weight: 600;
  text-align: center;
  border: 2px solid #c07944;
  background: #c07944;
  border-radius: 10px;
  color: #FFFFFF;
}
.submit_btn:hover {
  background: #FFFFFF;
  text-decoration: none;
  color: #c07944;
}
.back_btn {
  width: 100%;
  padding: 1em 1.5em;
  display: inline-block;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  font-size: 2rem;
  line-height: 1;
  font-weight: 600;
  text-align: center;
  border: 2px solid #929292;
  background: #929292;
  border-radius: 10px;
  color: #FFFFFF;
}
.back_btn:hover {
  color: #929292;
  background: #FFFFFF;
}
/*-------------------------------------*/
/*	フォーム関連	*/
input::-webkit-input-placeholder {
  color: #989898;
}
input:-ms-input-placeholder {
  color: #989898;
}
input::-ms-input-placeholder {
  color: #989898;
}
input::placeholder {
  color: #989898;
}

.privacy_box {
  margin-bottom: 20px;
  border-radius: 10px;
  font-size: 1.4rem;
  background-color: #FFFFFF;
}
.privacy_inner {
  width: auto;
  height: 200px;
  overflow-y: scroll;
  padding: 22px;
  font-size: 1.4rem;
  line-height: 1.5;
}
.consent_check_wrap {
  padding: 20px;
  text-align: center;
  background: #FFFFFF;
  border-radius: 10px;
}
.form_area .consent_check_wrap label{
  margin-bottom: 0;

}
.consent_check_wrap p a {
  text-decoration: underline;
	color:  #0071bc;
}
.form_area :focus {
  outline: solid 2px #3e4f69;
}
.form_area input[type="text"], .form_area input[type="email"], .form_area input[type="tel"], .form_area textarea, .form_area radio, .form_area select {
  border: 1px solid #c07944;
  font-family: inherit;
  font-size: 1.6rem;
  padding: 1em 1em;
  margin: 0;
  background-color: #FFF;
  border-radius: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  max-width: 100%;
}
.form_area input[type="text"], .form_area input[type="email"], .form_area input[type="tel"], .form_area textarea, .form_area radio, .form_area select {
  margin-bottom: 0;
}
.form_area input[type="text"].text_fomr_01, .form_area input[type="email"].text_fomr_01, .form_area input[type="tel"].text_fomr_01 {
  width: 70%;
}
.form_area input[type="text"].text_fomr_02, .form_area input[type="email"].text_fomr_02, .form_area input[type="tel"].text_fomr_02 {
  width: 50%;
}
.form_area input[type="text"].text_fomr_03, .form_area input[type="email"].text_fomr_03, .form_area input[type="tel"].text_fomr_03 {
  width: 40%;
  margin: 0
}
.form_area input[type="text"].text_fomr_04, .form_area input[type="email"].text_fomr_04, .form_area input[type="tel"].text_fomr_04 {
  width: 100%;
}
.form_area textarea.form_txtarea_01 {
  width: 100%;
}
.form_area input[type="checkbox"] {
  height: 15px;
  width: 15px;
  margin: 5px;
  vertical-align: middle;
}
.form_area input[type="radio"] {
  vertical-align: middle;
  margin: 0 3px 0 0;
}
.form_area label {
  margin-right: 20px;
	margin-bottom: 10px;
  font-weight: normal !important;
  font-size: 100%;
  font-weight: 500;
  padding: 5px;
	display: inline-block;
}
span.wpcf7-list-item {
  margin: 0 0 0 0.5em !important;
}
@media screen and (max-width: 768px) {
.contact_ttl{
	font-size: 1.6rem;
}
  .privacy_inner {
    padding: 10px;
  }
  .privacy_inner p {
  }
  .submit_btn_wrap {
    width: 80%;
    margin: 0 auto;
  }
  .submit_btn {
    width: 100%;
  }
  ul.submit2_btn_wrap li {
    margin-bottom: 20px;
  }
  input[type="text"].text_fomr_01, input[type="email"].text_fomr_01, input[type="tel"].text_fomr_01 {
    width: 100% !important;
  }
  input[type="text"].text_fomr_02, input[type="email"].text_fomr_02, input[type="tel"].text_fomr_02 {
    width: 100% !important;
  }
  input[type="text"].text_fomr_03, input[type="email"].text_fomr_03, input[type="tel"].text_fomr_03 {
    width: 100% !important;
  }
  ul.input_list li {
    margin-bottom: 20px;
  }
  ul.input_list li:last-child {
    margin-bottom: 0;
  }
  label {
    font-size: 1.6rem;
  }
}