@charset "utf-8";
/* CSS Document */
/*============================================
	* header *
========================*/
#header{
	background: #fff;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 90px;
	padding: 10px 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	z-index: 99;
}
#header:before {
    background: #0f4da0;
    bottom: -2vw;
    -webkit-clip-path: polygon(100% 0, 0 0, 0 100%);
    clip-path: polygon(100% 0, 0 0, 0 100%);
    content: "";
    display: block;
    height: 2vw;
    position: absolute;
    width: 20vw;
	left: 0;
}
#header:after {
    background: #fff;
    bottom: -1.99vw;
    -webkit-clip-path: polygon(100% 100%, 100% 0, 0 0);
    clip-path: polygon(100% 100%, 100% 0, 0 0);
    content: "";
    display: block;
    height: 2vw;
    position: absolute;
    right: 0;
    width: 80vw;
	z-index: 77;
}

.hlogo{
	height: 100%;
	max-width:370px; 
}
.hlogo img{
	height: 100%;
	width: 100%;
	object-fit: contain;
}


.m1{
	display: flex;
	justify-content: flex-end;
	height: 100%;
	align-items: center;
}
.gnav ul{
	display: flex;
	justify-content: flex-end;
	align-items: center;	
}

.gnav li{
	padding-right: 25px;
	text-align: center;
}
.gnav li a span{
	display: block;
	font-size: 13px;
	color: #999999;
}
.gnav li a{
	line-height: 1.2;
}
.gnav li a:hover{	
	color: #0f4da0;
}

.top_cta{
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.top_mail,.top_tel{
	height: 50%;
	display: flex;
}
.top_mail a,.top_tel a{
	display: flex;
	width: 200px;
	padding-left: 3.5rem;
	height: 100%;
	background: #0f4da0;
	color: #fff;	
	align-items: center;
	position: relative;
	font-size: 20px;
}
.top_tel a{
	background: #e58a16;
}
.top_mail a::before,.top_tel a::before{
	position: absolute;
	top: 50%;
	left: 1rem;
	font-size: 18px;
	transform: translateY(-50%);
	font-family: "Font Awesome 6 Free";
	content: '\f0e0';
	font-weight: 600;
}
.top_tel a::before{
	content: '\f2a0';	
}

@media(max-width:1070px){
	#header{
		height: 60px;
		padding: 5px 20px;
	}	
	.m1{
		display: none;
	}
}

/*============================================
	* Mobile *
========================*/
@media(min-width:1071px){
	.openbtn{
		display: none;
	}
}
.openbtn{
	position: relative;
	top:0;
	right: 0;
	cursor: pointer;
    width: 50px;
    height:50px;
	background: #0f4da0;
	border-radius: 10px;
}
	
/*×に変化*/	
.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 25%;
    height: 3px;
    border-radius: 2px;
	background-color: #fff;
  	width: 50%;
  }

.openbtn span:nth-of-type(1) {
	top:15px;	
}

.openbtn span:nth-of-type(2) {
	top:23px;
}

.openbtn span:nth-of-type(3) {
	top:31px;
}

.openbtn.active span:nth-of-type(1) {
    top: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 50%;
}

.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}

.openbtn.active span:nth-of-type(3){
    top: 30px;
    transform: translateY(-6px) rotate(45deg);
    width: 50%;
}


#g-nav{
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position:fixed;
    z-index: 88;
	top:-200%;
    left:0;
	width:100%;
	background:rgba(255,255,255,.8);
	transition: all 0.6s;
	padding: 80px 0 30px;
	text-align: center;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive{
    top: 0;
}
/*ナビゲーション*/
#g-nav ul {
	width: 90%;
	max-width: 600px;
	margin: 0 auto 20px;
}

/*リストのレイアウト設定*/

#g-nav li{
	list-style: none;
    text-align:center;
	border-bottom: 1px dotted #333;
}

#g-nav li a{
	color: #333;
	text-decoration: none;
	padding:10px;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}


.sp_mail a,.sp_tel a{
	display: flex;
	width: 300px;
	padding: .5rem 0;
	padding-left: 6rem;
	height: 100%;
	background: #0f4da0;
	color: #fff;	
	align-items: center;
	position: relative;
	font-size: 20px;
	margin: 0 auto 15px;
	text-align: center;
	border: 2px solid #0f4da0;
}
.sp_tel a{
	background: #e58a16;
	border-color: #e58a16;
}
.sp_mail a::before,.sp_tel a::before{
	position: absolute;
	top: 50%;
	left: 3rem;
	font-size: 18px;
	transform: translateY(-50%);
	font-family: "Font Awesome 6 Free";
	content: '\f0e0';
	font-weight: 600;
}
.sp_tel a::before{
	content: '\f2a0';	
}
.sp_mail a:hover{
	background: #fff;
	color: #0f4da0;
}
.sp_tel a:hover{
	background: #fff;
	color: #e58a16;
}
.link a{
	display: inline-block;
	width: 300px;
	background: #fff;
	border: 2px solid #0f4da0;
	color: #0F4DA0;
	padding: .5rem 0;
}
.link a:hover{
	background:#0f4da0;
	color: #fff;
}

/*============================================
	*　Footer *
========================*/
.foote-top{
	background: url("../img/contact_bg.jpg")no-repeat center/cover;
	z-index: 0;
	color: #fff;
	text-align: center;
}
.foote-top::before{
	position: absolute;
	content: '';
	width: 100%;
	height: 100%;
	background: #333;
	opacity: .4;
	top: 0;
	left: 0;
	z-index: -1;
}
.f_con_wrap{
	display: flex;
	justify-content: center;
}
.f_tel_wrap{
	width: 360px;
	background: #fff;
	padding: 1.5rem 0;
	color: #333;
}
.f_tel_wrap a{
	font-size: 2rem;
	transform: .4s;
}
.f_tel_wrap a span{
	font-size: 18px;
}
.f_mail_wrap{
	width: 360px;
	background: #0f4da0;
	padding: 1.5rem 0;	
}
.f_mail_wrap a{
	color: #fff;
	padding: .5rem 1.5rem;
	border: 1px solid #fff;
	transform: .4s;
}
.f_tel_wrap a:hover{
	color: #0f4da0;
}
.f_mail_wrap a:hover{
	background: rgba(255,255,255,.3);
	transform: .4s;
}

@media(max-width:550px){
	.f_con_wrap{
		flex-direction: column;
		align-items: center;
	}
	.f_tel_wrap, .f_mail_wrap{
		width: 90%;
		max-width: 360px;
	}	
}


footer{
	background-image: linear-gradient(120deg,#0f4da0, #2ab3fc 90%); 
	padding: 40px 0 15px;
	color: #fff;
}


.f_info,.f_nav{
	width: 45%;
}
.flogo{
	width: 80%;
	max-width: 400px;
	margin: 0 auto 15px;
}
.f_info p{
	font-size: 15px;
	text-align: center;
}
.f_nav{
	display: flex;
	justify-content: flex-end;
}
.f_nav ul{
	padding: 0 15px;
}
.f_nav li{
	padding-left: 30px;
	position: relative;
}
.f_nav li::before{
	position: absolute;
	content: '';
	width: 20px;
	height: 1px;
	left: 0;
	top: 50%;
	background: #fff;
}
.f_nav a{
	color: #fff;
}
.f_nav a:hover{
	color: #0f4da0;
}

.copy{
	text-align: center;
	font-size: 15px;
	padding: 30px 0 15px;
	color: #999;
}

@media(max-width:768px){
	.f_nav{
		display: none;
	}
	.f_info{
		width: 100%;
		text-align: center;
	}
	.flogo{
		margin: 0 auto 20px;
	}	
}
/*============================================
	* FV *
========================*/
.fv{
	width: 100%;
	aspect-ratio: 4 / 3;
	max-height: 85vh;
	min-height: 60vh;
	overflow: hidden;
	position: relative;
	z-index: 0;
}
.catch{
	position: absolute;
	right: 2vw;
	top: 45%;
	z-index: 2;
	font-size: clamp(20px, 3.2vw, 45px);
	color:#fff;
}
.catch h2{
	line-height: 1.2
}
.loop-text{
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 1;
	width: 100%;
}
.loop-text::before,
.loop-text::after{
	display: block;
	position: absolute;
	bottom: 0;
	content: "AIXS Co.,Ltd.";
	width: 100%;
	height: auto;
	line-height: 1;
	text-align: center;
	white-space: nowrap;
	color: #000;
	mix-blend-mode: overlay;
	z-index: -10;
	font-family: "Cantata One", serif;
	font-weight: 600;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	opacity: 0.3;
	font-size: clamp(30px,8vw,130px)
}
.loop-text::after{
	content: "Demolition work";
}
.loop-text::before{
	left: 0;
	animation: loop-text 30s linear infinite;
}
.loop-text::after{
	left: 1400px;
	animation: loop-text 30s linear infinite;
}
@keyframes loop-text{
	0% {
		transform: translateX(70%);
	}
	100% {
		transform: translateX(-100%);
	}
}
@media(max-width:1200px){
	.loop-text::before{
		animation: loop-text 24s linear infinite;
	}
	.loop-text::after{
		left: 1100px;
		animation: loop-text 24s linear infinite;
	}
}
@media(max-width:768px){
	.loop-text::before{
		animation: loop-text 18s linear infinite;
	}
	.loop-text::after{
		left: 750px;
		animation: loop-text 18s linear infinite;
	}
}
@media(max-width:500px){
	.loop-text::before{
		animation: loop-text 15s linear infinite;
	}
	.loop-text::after{
		left: 350px;
		animation: loop-text 15s linear infinite;
	}
}
.slider {
  position:relative;
	z-index: 1;
	width: 100%;
	aspect-ratio: 4 / 3;
	max-height: 85vh;
	min-height: 60vh;
}
/*　背景画像設定　*/

.slider-item01 {
    background:url(../img/slide01.jpg);
    background-position: right center;/*背景画像の位置を中央に*/
}

.slider-item02 {
    background:url(../img/slide02.jpg);
    background-position: center;/*背景画像の位置を中央に*/
}

.slider-item03 {
    background:url(../img/slide03.jpg);
    background-position: center;/*背景画像の位置を中央に*/
}

.slider-item {
    width: 100%;
	aspect-ratio: 4 / 3;
	max-height: 85vh;
	min-height: 60vh;
    background-repeat: no-repeat;/*背景画像をリピートしない*/
    background-size: cover;/*背景画像が.slider-item全体を覆い表示*/
}




/*============================================
	* index *
========================*/
.g_title{
	background: #0e78c4;
	background: -webkit-gradient(linear, left bottom, left top, from(#04c2bf), color-stop(60%, #0e78c4));
	background: -webkit-linear-gradient(bottom, #04c2bf 0%, #0e78c4 60%);
	background: linear-gradient(0deg, #04c2bf 0%, #0e78c4 60%);
	letter-spacing: 0.05em;
	line-height: 1.2;
	color: transparent;
	-webkit-background-clip: text;
	margin: 2rem auto 3rem;
	text-align: center;
	font-size: clamp(1.5rem, 1.129rem + 1.56vw, 2.3rem);
	font-weight: bold;
}
.g_txt{
	padding: 0 3rem;
}

.point ul{
	display: flex;
	justify-content: space-between;
	gap: 15px;
}
.point li{
	width: 32%;
}
.point figure{
}
.point figure img{
	
	aspect-ratio: 4 / 3;
	border-radius: 20px;
}
.point h3{
	color: #0e78c4;
	text-align: center;
}
@media(max-width:550px){
	.point ul{
		flex-direction: column;
		align-items: center;
	}	
	.point li{
		width: 100%;
	}	
	.point figure{
		width: 80%;
		margin: 0 auto 10px;
	}		
}


@media(max-width:500px){
	.g_txt{
		padding: 0 .5rem;
	}

}


.t_service{
	z-index: 2;
}
.service_box{
	background: rgba(255,255,255,.6);
	max-width: 1000px;
	margin: 0 auto;
	padding: 2rem;
}
.t_service_txt{
	text-align: center;
	color: #000;
	margin-bottom: 30px;
}
.servce_list{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.servce_list img{
	width: 20%;
	margin: auto;
}
@media(max-width:600px){
.servce_list img{
	width: 45%;
	margin:0 auto 15px;
	
}	
}

.t_works {
    padding: 120px 0 200px;
    padding: 7.5rem 0 120px;
    padding-left: max(6%, 50vw - 600px);
    padding-left: max(6%, 50vw - 37.5rem);
    position: relative;
}
.t_works::after {
    background: #e6e6e6;
    bottom: 80px;
    content: "";
    display: block;
    height: 320px;
    height: 20rem;
    position: absolute;
    right: 0;
    width: 80%;
    z-index: -1;
}
.works_flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.top-works_title{
    width: 320px;
}

.section-title {
	font-family: "Oswald", "Noto Sans JP", serif;
	font-size: 48px;
	font-size: 3rem;
	line-height: 1.35;
	margin-bottom: 8vh;
}

.section-title span {
	display: block;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 16px;
	font-size: 1rem;
}


.top-works_items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    width: calc(100% - 330px);
	justify-content: space-between;
}
.item{
	width: 32%;
}
.item img{
	aspect-ratio: 4 / 3;
}

@media(max-width:1023px){
.t_works {
    padding-right: max(6%, 50vw - 37.5rem);
}	
	.works_flex {
		flex-direction: column;
	}
	.top-works_title{
		width: 100%;
		margin-bottom: 30px;
		display: flex;
		justify-content: space-between;
		align-items: center;
	}	
	.top-works_items {
		width: 100%;
		justify-content: space-between;
	}	
}
@media(max-width:550px){
	.top-works_title{
		align-items: flex-start;
		flex-direction: column;
	}	
	.top-works_items {
		flex-direction: column;
		align-items: center;
	}	
	.item{
		width: 80%;
	}
}

/*============================================
	* Pagetitle *
========================*/
.kfv{
	margin-top: 60px;
	background: url("../img/kfv_bg.jpg")no-repeat;
	background-size: cover;
	background-position: center 55%;
	color: #fff;
	text-shadow: 0 0 3px #333;
}
.pagetitle{
	margin-top: 20px;
	font-size: 2.3rem;
	line-height: 1.4;	
}
.pagetitle span{
	display: block;
	font-size: 1.5rem;
}


/*パンくず*/
.breadcrumb{
	display: flex;
	font-size: 14px;
	letter-spacing: 0.05em;
	padding: 5px 0;
}
.breadcrumb li {
	display: inline;
	list-style: none;
}
.breadcrumb li::after {
	content: '>';
	padding: 0 0.2em;
	vertical-align: top;
}
.breadcrumb li:last-child::after {
	content: '';
}
.breadcrumb li a {
	text-decoration: none;
	color: #0F4DA0;
	font-weight: 500;
}
.breadcrumb li:first-child a::before{
	font-family: "Font Awesome 5 Free";
	content: '\f015';
	font-weight: bold;
}
.breadcrumb li a:hover{
	opacity: 0.7;
}

/*============================================
	* service *
========================*/
.service_toptxt {
	text-align: center;
	margin-bottom: 30px;
}
@media screen and (max-width:500px) {
	.service_toptxt {
		text-align: left;
	}	
}
.service-contents{
    position: relative;
    padding: 60px 0 180px;
}
.service-txt{
    padding: 60px 50px 50px 60px;
    background: #E5F0FF;
    width: 50%;
    max-width: 700px;
    margin: 0 auto 0 0;
    position: relative;
    z-index: 50;
}
.service-txt p{
	font-size: 16px;	
	letter-spacing: 0;
}
.service-contents.contents02 .service-txt{
    margin: 0 0 0 auto;
}
.service-img{
    width: 58.3%;
    max-width: 700px;
    position: absolute;
    top: 0;
    right: 0;
}
.service-contents.contents02 .service-img{
    top: 0;
    left: 0;
}
@media screen and (max-width:1023px) {
    .service-contents{
        padding: 50px 0 80px;
    }
    .service-txt{
        padding: 30px;
    }
}
@media screen and (max-width:767px) {
    .service-img{
        width: 100%;
        position: relative;
        margin: 0 auto;
    }
    .service-txt{
        width: 100%;
        margin: 0 auto;
        padding: 30px 15px;
    }
    .service-contents {
        padding: 0 0 40px;
    }
}



/*---　WORKS　------------------*/
.gallery{
	display: flex;
	flex-wrap: wrap;
	gap:2%;
}
.gallery li{
	width: 32%;
	margin-bottom: 2%;
}
.gallery li img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

@media screen and (max-width:600px) {
.gallery li{
	width: 48%;
	margin-bottom: 2%;
}	
}

/*============================================
	* about *
========================*/
/*---　COMPANY　---------------*/
.mission{
	font-size: clamp(2rem, 1.537rem + 1.95vw, 3rem);
	font-family:"Yuji Boku", serif;
	text-align: center;
}

.infotale th{
	width: 20%;
	text-align: end;
	padding: 1rem 2rem;
	border-bottom: 1px solid #aaa;
} 
.infotale td{
	padding: 1rem 2rem;
	border-bottom: 1px solid #aaa;
}

@media (max-width: 750px){
	.infotale th{
		display: block;
		width: 100%;
		text-align: left;
		color: #0f4da0;
		padding:1rem .8rem 0;
		border-bottom: none;
	}	
	.infotale td{
		display: block;
		width: 100%;
		padding-top: .5rem;
	}
}


.map{
	width: 100%;
	height: 45vh;
}


/*---　CONTACT　---------------*/
.contact{
	background:#E5F0FF;
}

.contact::before {
	background:#E5F0FF;
	-webkit-clip-path: polygon(0 0, 0 100%, 100% 100%);
	clip-path: polygon(0 0, 0 100%, 100% 100%);
	content: "";
	display: block;
	height: 6vw;
	left: 0;
	position: absolute;
	top: -5.99vw;
	width: 100%;
}

.contact::after {
	background: #0f4da0;
	-webkit-clip-path: polygon(100% 0, 0 50%, 100% 100%);
	clip-path: polygon(100% 0, 0 50%, 100% 100%);
	content: "";
	display: block;
	height: 2vw;
	position: absolute;
	right: 0;
	top: -1.99vw;
	width: 20vw;
}

.contact .tel_contact{
	text-align: center;
	border-top: 3px double #0f4da0;
	border-bottom: 3px double #0f4da0;
	padding: 15px 0;
	margin: 0 auto;
	width: 94%;
	max-width: 600px;
}
.contact .tel_contact a{
	display: inline-block;
	font-size: 2.4rem;
	font-weight: 500;
	white-space: nowrap;
	letter-spacing: 0.08em;
	line-height: 1.7;
}
.contact .tel_contact a:hover{
	opacity: 0.6;
}
.contact .tel_contact p{
	font-size: 1rem;
	font-weight: 500;
	letter-spacing: 0.2em;
}
@media (max-width: 750px){
	.contact .tel_contact{
		padding: 20px 0;
	}
	.contact .tel_contact a{
		font-size: 2rem;
	}
}
@media (max-width: 450px){
	.contact .tel_contact a{
		font-size: 1.6rem;
	}
}


/*メールフォーム*/
.etitle {
    font-weight: 600;
    background: #fff;
    border-radius: 5px;
    position: relative;
    box-sizing: border-box;
    padding: 12px 10px 10px 25px;
    margin-bottom: 30px;
    box-shadow: 0px 3px 0 0 #6382AB;
}
.etitle:before {
    position: absolute;
    top: 25%;
    left: 10px;
    width: 6px;
    height: 50%;
    content: '';
    border-radius: 3px;
    background:#0f4da0;
}


.mailform{
	margin: 0 auto;
	width: 94%;
	max-width: 960px;
}
.mailform .row{
	padding: 20px 0;
	display: flex;
	justify-content: space-between;
}
.mailform .row:not(.last){
	border-bottom: 1px dotted #cccccc;
}
.mailform .row div:nth-child(1){
	width: 28%;
	font-weight: 500;
	letter-spacing: 0.08em;
	font-size: 0.9rem;
}
.mailform .row div:nth-child(2){
	width: 70%;
	line-height: 1.5;
}
.mailform .row span{
  	color: #fff;
  	background: #0f4da0;
  	padding: 5px;
  	margin-right: 5px;
  	font-size: 11px;
	border-radius: 2px;
	vertical-align: middle;
	font-weight: 500;
}
.mailform .row small{
	display: block;
	margin-top: 3px;
}
.mailform .box, .mailform textarea{
	border: 1px solid #ddd;
  	padding: 5px;
  	width: 100% !important;
  	border-radius: 0;
	-webkit-appearance: none;
	margin-bottom: 5px;
	background: #fff;
}
/*.mailform button{
	display: block;
	text-align: center;
	transition: .6s;
	font-size: 1rem;
	font-weight: 500;
	padding: 8px 5px;
	margin: 0 auto;
	width: 250px;
	background: #0f4da0;
	border: 1px solid #fff;
	color: #fff;
}
.mailform button:hover{
	background: #fff;
	border: 1px solid #0f4da0;	
	color:#0f4da0;
}
.mailform button::before{
	font-family: "Font Awesome 6 Free";
	content: "\f1d8";
	font-weight: 700;
	margin-right: 10px;
}*/

@media (max-width: 750px){
	.mailform .row{
		padding: 20px 0;
		flex-direction: column;
	}
	.mailform .row div:nth-child(1){
		width: 100%;
		margin-bottom: 20px;
	}
	.mailform .row div:nth-child(2){
		width: 100%;
	}
}

/*チェックボックス*/
input[type=checkbox] {
    display: none;
}
input[type=checkbox] + label{
    display: inline-block;
	padding-left: 20px;
	position:relative;
	margin-right: 20px;
	margin-bottom: 10px;
	cursor: pointer;
}
input[type=checkbox] + label::before{
    background: #fff;
    border: 1px solid #999;
    content: '';
    display: block;
	position: absolute;
	top: 55%;
	transform: translate(0,-50%);
  	left: 0;
    width: 15px;
  	height: 15px;
	border-radius: 3px;
}
input[type=checkbox] + label::after{
    border-right: 3px solid #0f4da0;
    border-bottom: 3px solid #0f4da0;
    content: '';
    display: block;
    height: 15px;
    left: 8px;
    margin-top: -7px;
    opacity: 0;
    position: absolute;
    top: 36%;
    width: 5px;
	transform: rotate(45deg) translate3d(0,2px,0) scale3d(.7,.7,1);
	transition: transform .2s ease-in-out, opacity .2s ease-in-out;
}
input[type=checkbox]:checked + label::after{
    opacity: 1;
	transform: rotate(45deg) scale3d(1,1,1);
}
@media (max-width: 750px){
	input[type=checkbox] + label{
		display: block;
	}
}

/*ラジオボタン*/
input[type=radio]{
	display: none;
}
input[type=radio] + label{
    display: inline-block;
	padding-left: 20px;
	position:relative;
	margin-right: 20px;
	margin-bottom: 10px;
	cursor: pointer;
}
input[type=radio] + label::before {
	content: "";
	display: block;
	position: absolute;
	top: 55%;
	transform: translate(0,-50%);
  	left: 0;
    width: 15px;
  	height: 15px;
	background: #f4f4f4;
	border-radius: 100%;
	border: 1px solid #b4b4b4;
	cursor: pointer;
	text-align: center;
	transition: all 250ms ease;
}
input[type=radio]:checked + label::before {
	background-color: #0f4da0;
	box-shadow: inset 0 0 0 2px #f4f4f4;
}
input[type=radio]:focus + label::before{
	outline: none;
	border-color: #0f4da0;
}
input[type=radio]:disabled + label::before {
	box-shadow: inset 0 0 0 2px #f4f4f4;
	border-color: #b4b4b4;
	background: #b4b4b4;
}
input[type=radio] + label:empty::before{
	margin-right: 0;
}
@media (max-width: 750px){
	input[type=radio] + label{
		display: block;
	}
}


.contact_info ul li{
	margin-bottom: 5px;
	text-align: center;
	font-size: 0.9rem;
}

/*アコーディオン*/
.privacy{
}
.privacy li{
}
.privacy li .privacy_wrap{
	border: 1px solid #ccc;
}
.privacy li .privacy_wrap .privacy_subject{
	cursor: pointer;
	transition: all .5s ease;
	padding: 15px 20px;
	padding-right: 30px;
	position: relative;
	color: #fff;
	background-color: #0f4da0;
}
.privacy li .privacy_wrap .privacy_subject.area_close{
}
.privacy li .privacy_wrap .privacy_subject h3{
	font-size: 1.1rem;
}
/*アイコンの＋と×*/
.privacy li .privacy_wrap .privacy_subject::before,
.privacy li .privacy_wrap .privacy_subject::after{
	position: absolute;
	top:48%;
	right: 15px;
	content:'';
	width: 15px;
	height: 2px;
	background-color: #fff;
}
.privacy li .privacy_wrap .privacy_subject::before{
	transform: rotate(0deg);
}
.privacy li .privacy_wrap .privacy_subject::after{
	transform: rotate(90deg);
}
/*area_closeクラスがついたら形状変化*/
.privacy li .privacy_wrap .privacy_subject.area_close::before{
transform: rotate(45deg);
}
.privacy li .privacy_wrap .privacy_subject.area_close::after{
transform: rotate(-45deg);
}
/*アコーディオンで現れるエリア*/
.privacy li .privacy_wrap .privacy_box{
	position: relative;
	display: none;/*はじめは非表示*/
	padding: 20px;
	background: #fff;
}

.privacy_flame{
	height: 250px;
	overflow-y: scroll;
}
.privacy_flame p{
	padding: 10px;
	font-size: 0.8rem;
}
.privacy_flame p span{
	display: block;
	color: #0f4da0;
	font-size: 0.95rem;
	font-weight: 500;
}
.privacy_flame p span::before{
	content: "■";
	display: inline-block;
	font-size: 0.6rem;
	margin-right: 0.5em;
	transform: translateY(-2.5px);
}
.privacy_flame ul li{
	font-size: 0.8rem;
}

/*スクロールバー*/
.privacy_flame::-webkit-scrollbar{
    overflow: hidden;
    width: 1px;
    background: #0f4da0;
}
.privacy_flame::-webkit-scrollbar-button {
    display: none;
}
.privacy_flame::-webkit-scrollbar-thumb, .privacy_flame::-webkit-scrollbar-corner {
    background: #fafafa;
}

