@charset "UTF-8";
body{
	min-width: 1200px;
}
@media only screen and (max-width: 768px) {
	body{
	min-width: auto;
}	
	}
/*
header
_________________________________________________________*/

.header{
	width: 100%;
	margin: 0 auto;
	height: 130px;
	background: #FFF;
	min-width: 1200px;
}
.header-contents{
	overflow: hidden;
}
.header h1{
	width: 300px;
	float: left;
	padding-top: 46px;
	margin-left: 20px;
}
.header .header-contents__contact{
	width: 720px;
	height:52px;
	margin-top: 14px;
	float: right;
	position: relative;
}

.header .contact-tel{
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	font-size: 2.76rem;
	letter-spacing: 0.02em;
	line-height: 1;
	background: url(../img/icon_tel.png) no-repeat left center;
	background-size: 25px;
	padding-left: 35px;
	position: absolute;
	top: 0;
	left: 250px;
}
.header .contact-time{
	font-size: 1.3rem;
	line-height: 1;
	margin-top: 5px;
	position: absolute;
	top: 26px;
	left: 250px;
}
.header .contact-time span{
	font-size: 1.5rem;
	font-weight: bold;
}
.header .contact-link{
	width: 220px;
	margin:0 auto 0 auto;
	position: absolute;
	top:0px;
	left: 490px;
}
.header .link-policy{
	width: 220px;
	position: absolute;
	top: 15px;
	left: 0px;
	text-align: right;
	font-size: 1.3rem;
}
.header .contact-link a{
	display: block;
	width: 220px;
	color: #FFF;
	background: #000066 url(../img/icon_mail.png) no-repeat 38px center;
	background-size: 15px;
	padding: 13px 0;
	line-height: 1;
	text-decoration: none;
	font-size: 1.4rem;
	letter-spacing: 0.01em;
	border: 2px solid #000066;
	border-radius: 100px;
	-webkit-transition: 0.2s;
	transition: 0.2s;
	text-align: center;
	box-sizing: border-box;
}
.header .contact-link a:hover{
	background: #FFF url(../img/icon_mail.png) no-repeat 38px center;
	background-size: 15x;
	color: #000066;
}
/*
header
_________________________________________________________*/
@media only screen and (max-width: 768px) {
	.header {
		height: 60px;
		background: rgba(255,255,255,1);
		left: 0;
		min-width: auto;
		padding-left: 0;
		position: fixed;
		right: 0;
		top: 0;
		z-index: 100;
		overflow:all;
		padding: 0;
		box-shadow: 2px 2px 2px  rgba(0,0,0,0.1); 
	}
	.header h1{
		width: 54%;
		float: left;
		padding: 0;
		margin:18px 0 0 10px;
	}
	.header .menu,.header .header-contents__contact{
		display: none;
	}

}


/*
common
_________________________________________________________*/

.content-title{
	font-size: 3.2rem;
	font-weight: bold;
	margin-bottom: 20px;
	background: url(../img/icon_l.png) no-repeat left center;
	background-size: 28px;
	padding-left: 40px;
	line-height: 1;
}

.content-subtitle{
	font-size: 2rem;
	font-weight: bold;
	background:#001b88 url(../img/construction/line.png) no-repeat left center;
	background-size: 20px;
	padding:14px 0 14px 30px;
	line-height: 1;
	border-radius: 4px;
	margin-top: 40px;
	color: #FFF;
}
.content-subtitle2{
	font-size: 2rem;
	font-weight: bold;
	background: url(../img/icon_s.png) no-repeat left 2px;
	background-size: 24px;
	padding:0 0 10px 34px;
	line-height: 1.4;
	border-bottom: 1px dashed #333;
	margin-top: 40px;
}
.content-read{
	font-size: 2rem;
	font-weight: bold;
	line-height: 1.7;
}

.content-row{
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.content-2column{
	width: 48%;
}


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

	.content-row{
		display: block;

	}

	.content-2column{
		width: 100%;
	}
	

}


.photo-2{
	overflow: hidden;
}
.photo-2 li{
	width: 370px;
	float: left;
}
.photo-2 li:nth-child(2){
	margin: 0 0 0 20px;
}
.photo-3{
	overflow: hidden;
}
.photo-3 li{
	width: 245px;
	float: left;
}
.photo-3 li:nth-child(2){
	margin: 0 12px;
}
.photo-w80{
	width: 80%;
	margin: 20px auto 0 auto;
}

#content{
	width: 1200px;
	margin: 0 auto;
	padding: 20px 0 40px 0;
}
#content .content-body{
	overflow: hidden;
	padding-top: 30px;
}
#content .content-body__main{
	width: 910px;
	float: right;
}
body#contact #content .content-body__main{
	width: 100%;
	float: none;
}
.link-back{
	width: 280px;
	margin: 50px auto 0 auto;

}
.link-back a{
	display: block;
	box-sizing: border-box;
	width: 280px;
	color: #FFF;
	background: #001b88 url(../img/icon_arrow_circle.png) no-repeat 93% center;
	background-size: 22px;
	padding: 16px 0;
	line-height: 1;
	text-align: center;
	text-decoration: none;
	font-size: 1.6rem;
	letter-spacing: 0.01em;
	border: 2px solid #001b88;
	border-radius: 100px;
	-webkit-transition: 0.2s;
	transition: 0.2s;

}
.link-back a:hover{
	background: #FFF url(../img/icon_arrow_circle.png) no-repeat 94% center;
	background-size: 22px;
	color: #001b88;
}

@media only screen and (max-width: 768px) {
	.content-sp{ padding: 0 5px; }
	.content-title{
		font-size: 2.2rem;
		font-weight: bold;
		margin-bottom: 10px;
		background: url(../img/icon_l.png) no-repeat left 5px;
		background-size: 24px;
		padding-left: 28px;
		line-height: 1.4;
	}

	.content-subtitle{
		font-size: 1.6rem;
		background:#001b88 url(../img/construction/line.png) no-repeat left center;
		background-size: 14px;
		padding:12px 20px 12px 20px;
		line-height: 1.4;
		border-radius: 4px;
		color: #FFF;
		margin-top: 25px;
	}
	.content-subtitle2{
		font-size: 1.6rem;

		background: url(../img/icon_s.png) no-repeat left 2px;
		background-size: 24px;
		padding:0 0 10px 34px;
		line-height: 1.4;
		border-bottom: 1px dashed #333;
		margin-top: 30px;
	}
	.content-read{
		font-size: 1.6rem;
		font-weight: bold;
		line-height: 1.7;
	}
	.content-read br{
		display: none;
	}
	.photo-2{
		overflow: hidden;
	}
	.photo-2 li{
		width: 100%;
		float: none;
	}
	.photo-2 li:nth-child(2){
		margin: 0 0 0 0;
	}
	.photo-3{
		overflow: hidden;
	}
	.photo-3 li{
		width: 100%;
		float: none;
	}
	.photo-3 li:nth-child(2){
		margin: 0 0;
	}
	#content{
		width: 94%;
		margin: 0 auto;
		padding: 60px 0 30px 0;
	}
	#content .content-body{
		overflow: hidden;
		padding-top: 25px;
	}
	#content .content-body__main{
		width: 100%;
		float: none;
	}

	.link-back{
		width: 100%;
		margin: 30px auto 0 auto;

	}
	.link-back a{
		display: block;
		box-sizing: border-box;
		width: 100%;
		color: #FFF;
		background: #001b88 url(../img/arrow.png) no-repeat 94% center;
		background-size: 7px;
		padding: 16px 0;
		line-height: 1;
		text-align: center;
		text-decoration: none;
		font-size: 1.4rem;
		letter-spacing: 0.01em;
		border: 2px solid #001b88;
		border-radius: 100px;
		-webkit-transition: 0.2s;
		transition: 0.2s;

	}
	.link-back a:hover{
		background: #FFF url(../img/arrow_ov_blue.png) no-repeat 95% center;
		background-size: 7px;
		color: #001b88;
	}

}

/*
heading
_________________________________________________________*/

.content-body__main .heading{
	/*margin-top: -120px;
	height: 280px;*/
	position: relative;
	padding-top: 15px;
}
.content-body__main .heading-s{
	margin-top: -120px;
	height: 250px;
	position: relative;

}
.content-body__main .heading-ss{
	margin-top: -120px;
	height: 220px;
	position: relative;

}
.content-body__main .heading-m{
	margin-top: -120px;
	height: 310px;
	position: relative;

}
.content-body__main .heading-l{
	margin-top: -120px;
	height: 340px;
	position: relative;
}
.content-body__main .heading__text{
	/*position: absolute;
	top: 140px;
	left:0;*/
}

.content-body__main .heading__read{
	font-size: 2.8rem;
	font-weight: bold;
	line-height: 1.5;
	color: #001b88;
}
.content-body__main .heading__text p{
	line-height: 1.8;
	margin-top: 10px;
}
.content-body__main .heading__point{
	position: absolute;
	top: -120px;
	right: 0;
	width: 229px;
}
@media only screen and (max-width: 768px) {
	.content-body__main .heading{
		margin-top: 0;
		height: auto;
		position: relative;
		padding-top: 10px;
	
	}
	.content-body__main .heading-s,.content-body__main .heading-ss{
		margin-top: 0;
		height: auto;
		position: relative;
		padding-top: 10px;
	}
	.content-body__main .heading-m{
		margin-top: 0;
		height: auto;
		position: relative;
		padding-top: 10px;
	}
	.content-body__main .heading-l{
		margin-top: 0;
		height: auto;
		position: relative;
		padding-top: 10px;
	}
	.content-body__main .heading__text{
		position: relative;
		top: auto;
		left:auto;
		width: 100%;
		overflow: hidden;
		padding: 0 5px;
	}
	.content-body__main .heading__text p{
		font-size: 1.5rem;
		line-height: 1.7;
		padding-bottom: 0;
	}
	.content-body__main .heading__read{
		font-size: 2rem;
		font-weight: bold;
		line-height: 1.4;
		color: #001b88;
		margin-top: 5px;

	}
	.content-body__main .heading__read br{
		display: none;
	}
	.content-body__main .heading__text p{
		line-height: 1.8;
		margin-top: 10px;

	}
	.content-body__main .heading__text p br{
		display: none;
	}
	.content-body__main .heading__point{
		position: relative;
		top: auto;
		left:auto;
		width: 120px;
		height: auto;
		margin-top: -125px;
		float: right;
	}
}

#construction-list ul{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding-bottom: 40px;
}
#construction-list li{
	width: 290px;
	margin: 0 0 40px 0;
	padding-bottom: 30px;
	border-radius: 0 0 20px 0;
	background: #f4f3ef url(../img/icon_arrow_circle_bl.png) no-repeat right 10px bottom 10px;
	background-size: 22px;
	display: flex;
	transition: all .3s linear;
}
#construction-list li:hover {
	background-position: right 5px bottom 10px;
}
#construction-list   li a{
	width: 100%;
	display: block;
	position: relative;
	-webkit-transition: 0.2s;
	transition: 0.2s;
	padding-bottom: 15px;
}
#construction-list li a .icon{
	font-family: 'Barlow Semi Condensed', sans-serif;
	font-weight: 400;
	color: #ffe837;
	font-size: 2.2rem;
	position: relative;
	display: block;
	width: 45px;
	height: 45px;
	margin: -23px auto 0 auto;
	background: url(../img/top/construction_no.png) no-repeat;
	background-size: 45px;
	text-align: center;
	padding-top: 2px;
	z-index: 10;
	letter-spacing: 0.1em;
}

#construction-list li figure{
	-webkit-transition: 0.2s;
	transition: 0.2s;
}
#construction-list li a:hover figure{
	opacity: 0.6;
}
#construction-list li a:hover dt{
	text-decoration: underline;
}
#construction-list li a dl{
	padding: 25px 25px 0 25px;
}
#construction-list li a dt{
	font-size: 1.9rem;
	font-weight: bold;
	line-height: 1;
	margin-bottom: 23px;
}
#construction-list li a dd{

	line-height: 1.5;
	font-size: 1.5rem;
	margin-top: 0;
}

/* 2021.06 add */
.construction-yellowtitle{
	background: url(../img/construction/bg_check_yellow.png) repeat left center;
	border:1px solid #ffe837;
	position: relative;
    padding: 20px;
	font-weight: bold;
	text-align: center;
	font-size: 1.8rem;

}



@media only screen and (max-width: 768px) {
	#construction-list{
		display: flex;
		flex-wrap: wrap;
	}
	#construction-list li{
		width: 48%;
		margin: 0 1% 10px 1%!important;
		box-sizing: border-box;
		box-shadow: 1px 1px 1px #ebebe3;
	}
	#construction-list li:nth-child(odd){
		margin: 10px 2% 0 3%;
	}
	#construction-list li a{
		display: block;
		position: relative;
		-webkit-transition: 0.2s;
		transition: 0.2s;
		padding-bottom: 15px;
	}
	#construction-list li a .icon{
		font-family: 'Barlow Semi Condensed', sans-serif;
		font-weight: 400;
		color: #ffe837;
		font-size: 2rem;
		position: relative;
		display: block;
		width: 40px;
		height: 40px;
		margin: -20px auto 0 auto;
		background: url(../img/top/construction_no.png) no-repeat;
		background-size: 40px;
		text-align: center;
		padding-top: 2px;
		z-index: 10;
		letter-spacing: 0.1em;
	}

	#construction-list li figure{
		-webkit-transition: 0.2s;
		transition: 0.2s;
	}
	#construction-list li a:hover figure{
		opacity: 0.6;
	}
	#construction-list li a:hover dt{
		text-decoration: underline;
	}
	#construction-list li a dl{
		padding: 0 10px;
	}
	#construction-list li a dt{
		font-size: 1.6rem;
		font-weight: bold;
		line-height: 1.5;
		text-align: center;
		margin-top: 5px;

	}
	#construction-list li a dd{
		line-height: 1.5;
		font-size: 1.3rem;
		margin-top: 5px;
	}
}
/*
NEWS
_________________________________________________________*/
.news li{
	margin: 20px 0 0 0;
}
.news li a{
	display: block;

}
.news li a{
	background: #FFF url(../img/icon_arrow_circle_bl.png) no-repeat 97% center;
	background-size: 22px;
	-webkit-transition: 0.2s;
	transition: 0.2s;
}
.news li a:hover{
	background-position: 98% center;
	text-decoration: underline;
}
.news ul li {
	padding: 27px 0 37px 0;
	border-bottom: 1px solid #d8d2bc;
}
.news ul li .meta {
	margin-bottom: 15px;
}
.news ul li .meta time {
	font-family: "Poppins", sans-serif;
	font-weight: 600;
	color: #000066;
}
.news ul li .meta .category {
	padding: 3px 15px;
	margin-left: 10px;
	border-radius: 10px;
	background: #f4f3ef;	
	font-size: 0.8em;
}


.news .pager {
	overflow: hidden;
	margin-top: 50px;
}

.news .pager ul {
	list-style: none;
	position: relative;
	left: 50%;
	float: left;
}

.news .pager ul li {
	margin: 0 1px;
	position: relative;
	left: -50%;
	float: left;
	line-height: 1.4;
	font-family: 'Barlow Semi Condensed', sans-serif;
	font-weight: 400;
}

.news .pager ul li span,
.news .pager ul li a {
	display: block;
	font-size: 1.5rem;
	padding: 0.6em 1em;

}
.news .pager ul li a {
	background: #EEE;
	border: 1px solid #EEE;
	text-decoration: none;
	-webkit-transition: 0.2s;
	transition: 0.2s;
}
.news .pager ul li a:hover {
	background: #001b88;
	color: #FFF;
}
.news-article{
	padding: 20px 0 40px 0;

}
.news-article__title{
	margin-bottom: 30px;
}
.news-article__title dl{
	padding: 0 0 10px 0;
	border-bottom: 1px dashed #333;
}
.news-article__title dt{
	padding:6px 16px 4px 0;
	display: inline-block;
	font-weight: 400;
	font-size: 1.6rem;
	line-height: 1;
}
.news-article__title .meta time {
	font-family: "Poppins", sans-serif;
	font-weight: 600;
	color: #000066;
}
.news-article__title .meta .category {
	padding: 3px 15px;
	margin-left: 10px;
	border-radius: 10px;
	background: #f4f3ef;	
	font-size: 0.8em;
}

.news-article__title dd{
	line-height: 1.6;
	margin-top: 8px;
	font-size: 2.8rem;
	font-weight: bold;
}
.news-article__text p{
	margin-top: 30px;
}

.news-article__link {
	width: 100%;
	margin:30px auto 0 auto!important;
	overflow: hidden;
}
.news-article__link .prev,.news-article__link .next {
	line-height:1.6;
	font-size:1.4rem;
}

.news-article__link .prev a,.news-article__link .next a {
	padding-bottom:1px;
	border-bottom:1px solid #000;
	-webkit-transition: 0.2s;
	transition: 0.2s;
}
.news-article__link a:hover{
	opacity: 0.5;
}
.news-article__link .prev {
	width:48%;
	float:left;
}
.news-article__link .prev a:before {
	content:'\03c';
	display: inline-block;
	padding-right: 10px;

}
.news-article__link .next {
	width:48%;
	float:right;
	text-align:right;
}

.news-article__link .next a:after {
	content:'\03e';
	display: inline-block;
	padding-left: 10px;
}


@media only screen and (max-width: 768px) {
	.news li{
		margin: 10px 0 0 0;
	}
	.news li a dt{
		font-size: 1.3rem;
	}
	.news li a dd{
		font-weight: normal;
		padding: 5px 25px 0 15px;
	}
	.news .pager {
		overflow: hidden;
		margin-top: 40px;
	}
	.news .pager ul li span,
	.news .pager ul li a {
		display: block;
		font-size: 1.3rem;
		padding: 0.6em 1em;
	}
	.news-article{
		padding: 10px 0 30px 0;
	}
	.news-article__title{
		margin-bottom: 20px;
	}
	.news-article__title dl{
		padding: 0 0 10px 0;
		border-bottom: 1px dashed #333;
	}
	.news-article__title dt{
		padding:6px 12px 4px 12px;
		display: inline-block;
		font-size: 1.3rem;
	}
	.news-article__title dd{
		margin-top: 10px;
		font-size: 2rem;
		font-weight: bold;
	}
	.news-article__text p{
		margin-top: 20px;
	}
	.news-article__link {
		margin:20px auto 0 auto!important;
	}
}
/*
point
_________________________________________________________*/


#construction .construction-point ul,#construction .construction-point__col2 ul,#construction .construction-point__photo ul{
	display: flex;
	flex-wrap: wrap;
	padding: 40px 0 0 0;
}
#construction .construction-point__photo3 ul{
	display: flex;
	flex-wrap: wrap;
	padding: 10px 0 0 0;
}
#construction .construction-point__photo2 ul{
	display: flex;
	flex-wrap: wrap;
	padding: 10px 0 0 0;
}
#construction .construction-point__row2 ul{
	display: flex;
	flex-wrap: wrap;
	padding: 20px 0 0 0;

}
#construction .construction-point li{
	width: 32%;
	background: url(../img/construction/bg_check_yellow.png) repeat left center;
	background-size: 8px;
	border: 1px solid #ffe837;
	position: relative;
	padding: 0 20px 20px 20px;

}
#construction .construction-point__photo li{
	width: 32%;
	background: url(../img/construction/bg_check_yellow.png) repeat left center;
	background-size: 8px;
	border: 1px solid #ffe837;
	position: relative;
	padding: 0 0 20px 0;

}
#construction .construction-point__photo li p{
	padding: 15px 10px 0 10px;
	line-height: 1.6;
}
#construction .construction-point__photo2 li{
	width: 48%;
	background: url(../img/construction/bg_check_yellow.png) repeat left center;
	background-size: 8px;
	border: 1px solid #ffe837;
	position: relative;
	padding: 0 0 20px 0;
	margin-top: 15px;

}
	#construction .deliverylocker .construction-point__photo2 li{
padding-bottom: 10px!important;

	}
	#construction .deliverylocker .construction-point__photo2 li p{
		padding: 10px 10px 0 10px;
	}

#construction .construction-point__col2 li{
	width: 48%;
	background: url(../img/construction/bg_check_yellow.png) repeat left center;
	background-size: 8px;
	border: 1px solid #ffe837;
	position: relative;
	padding: 0 20px 16px 20px;

}
#construction .construction-point__row2 li{
	width: 32%;
	background: url(../img/construction/bg_check_yellow.png) repeat left center;
	background-size: 8px;
	border: 1px solid #ffe837;
	position: relative;
	padding: 10px 20px 20px 20px;
	margin-bottom: 10px;
}
#construction .construction-point__photo3 li{
	width: 32%;
	background: url(../img/construction/bg_check_yellow.png) repeat left center;
	background-size: 8px;
	border: 1px solid #ffe837;
	position: relative;
	padding: 0;
	margin-bottom: 12px;
}

#construction .construction-point li:nth-child(2),#construction .construction-point__photo li:nth-child(2){
	margin: 0 12px 0 12px;
}
.construction-point__photo2 li:nth-child(2),.construction-point__photo2 li:nth-child(4){
	margin-left: 20px;
}
.construction-point__photo2 li:nth-child(1),.construction-point__photo2 li:nth-child(2){
	margin-bottom: 0;
}
#construction .construction-point__col2 li:nth-child(2),#construction .construction-point__col2 li:nth-child(4){
	margin: 0 0 0 20px;
}
#construction .construction-point__col2 li:nth-child(3),#construction .construction-point__col2 li:nth-child(4){
	margin-top: 40px;
}

#construction .construction-point__row2 li:nth-child(2),#construction .construction-point__photo3 li:nth-child(3n+2){
	margin: 0 12px 12px 12px;
}
#construction .construction-point__row2 li:nth-child(5){
	margin: 0 12px 0 12px;

}
#construction .construction-point__row2 li:nth-child(4),#construction .construction-point__row2 li:nth-child(6){
	margin-bottom: 0;
}
#construction .construction-point li:nth-child(4),#construction .construction-point li:nth-child(6){
	margin-bottom: 0;
}
#construction .construction-point li .icon,#construction .construction-point__col2 li .icon{
	text-align: center;
	background: url(../img/construction/point_no.png) no-repeat left center;
	background-size: 55px;
	margin: -23px auto 0 auto;
	width: 55px;
	height: 55px;
	font-family: 'Barlow Semi Condensed', sans-serif;
	font-weight: 400;
	color: #001b88;
	font-size: 2.8rem;

	display: block;
	line-height:0.8;
	padding-top: 10px;

}
#construction .construction-point li .icon:before,#construction .construction-point__col2 li .icon:before{
	content: "POINT";
	display: block;
	line-height:1;
	font-family: 'Josefin Sans', sans-serif;
	font-weight: 400;
	font-size: 1rem;
	letter-spacing: 0;
}


#construction .construction-point li dt,#construction .construction-point__row2 li dt{
	font-size: 2rem;
	text-align: center;
	font-weight: bold;
	line-height: 1.5;
	padding: 10px 0;
	border-bottom: 1px dashed #333;
}
#construction .construction-point__row2 li p{
	font-size: 2rem;
	text-align: center;
	font-weight: bold;
	line-height: 1.5;
	

}
#construction .construction-point__photo3 li p{
	line-height: 1.3;
	font-size: 1.3rem;
	padding: 8px 6px 6px 6px;
}

#construction-manshon li{
	padding: 30px 0!important;
}
#construction .construction-point__photo dl,#construction .construction-point__photo2 dl{
	padding: 10px 20px 0 20px;
}
#construction .construction-point__col2 li dt{
	font-size: 2rem;
	text-align: center;
	font-weight: bold;
	line-height: 1.5;
	padding: 6px 0;
	border-bottom: 1px dashed #333;
}
#construction .construction-point__photo2 li dt{
	font-size: 1.8rem;

	font-weight: bold;
	line-height: 1.5;
	margin-top: 5px;

	background: url(../img/icon_s.png) no-repeat left 2px;
	background-size: 24px;
	padding:0 0 10px 34px;
	border-bottom: 1px dashed #333;
}
#construction .construction-point li dt em{
	font-size: 1.5rem;
}
#construction .construction-point__photo li dt{
	font-size: 2rem;
	text-align: center;
	font-weight: bold;
	line-height: 1.5;
	padding: 0 0 6px 0;
	border-bottom: 1px dashed #333;
}

#construction .construction-point li dd,#construction .construction-point__col2 li dd,#construction .construction-point__row2 li dd,#construction .construction-point__photo li dd,#construction .construction-point__photo2 li dd{

	line-height: 1.6;
	letter-spacing: -0.04em;
	margin-top: 10px;
}

@media only screen and (max-width: 768px) {
	#construction .construction-point ul,#construction .construction-point__col2 ul,#construction .construction-point__photo ul{
		display: block;
		flex-wrap: inherit;
		padding: 10px 0 0 0;
		width: 96%;
		margin: 0 auto;
	}
	#construction .construction-point__photo2 ul{
		display: block;
		flex-wrap: inherit;
		padding: 0 0 0 0!important;
		width: 96%;
		margin: 0 auto;

	}
	#construction .construction-point__photo3 ul{
			display: flex;
	flex-wrap: wrap;
		padding: 0 0 0 0!important;
		width: 100%;
		margin: 10px auto 0 auto;


	}
	#construction .construction-point__row2 ul{
		display: block;
		flex-wrap: inherit;
		padding: 10px 0 0 0;
		width: 96%;
		margin: 0 auto;

	}
	#construction .construction-point li{
		width: 100%;
		background: url(../img/construction/bg_check_yellow.png) repeat left center;
		background-size: 8px;
		border: 1px solid #ffe837;
		position: relative;
		padding: 0 15px 20px 15px;
		margin-top: 15px;

	}
	#construction .construction-point__photo li{
		width: 100%;
		background: url(../img/construction/bg_check_yellow.png) repeat left center;
		background-size: 8px;
		border: 1px solid #ffe837;
		position: relative;
		padding: 0 0 20px 0;
		margin-top: 15px;


	}
	#construction .construction-point__photo2 li{
		width: 100%;
		background: url(../img/construction/bg_check_yellow.png) repeat left center;
		background-size: 8px;
		border: 1px solid #ffe837;
		position: relative;
		padding: 0 0 15px 0;
		margin-bottom: 15px;

	}

	#construction .construction-point__photo3 li{
		width: 48%;
		background: url(../img/construction/bg_check_yellow.png) repeat left center;
		background-size: 8px;
		border: 1px solid #ffe837;
		position: relative;
		padding: 0 0 0 0;
	
		margin: 0 1%;
		margin-bottom: 10px;

	}
	#construction .construction-point__col2 li{
		width: 100%;
		background: url(../img/construction/bg_check_yellow.png) repeat left center;
		background-size: 8px;
		border: 1px solid #ffe837;
		position: relative;
		padding: 0 15px 20px 15px;
		margin-top: 15px;

	}

	#construction .construction-point__row2 li{
		width: 100%;
		background: url(../img/construction/bg_check_yellow.png) repeat left center;
		background-size: 8px;
		border: 1px solid #ffe837;
		position: relative;
		padding: 10px 20px 20px 20px;
		margin-bottom: 10px;

	}

	#construction .construction-point li:nth-child(2),#construction .construction-point__photo li:nth-child(2){
		margin: 15px 0 0 0 ;
	}
	.construction-point__photo2 li:nth-child(2),.construction-point__photo2 li:nth-child(4){
		margin-left: 0;
	}
	.construction-point__photo2 li:nth-child(1),.construction-point__photo2 li:nth-child(2){
		margin-bottom: 0;
	}
	#construction .construction-point__photo3 li:nth-child(3n+2){
		margin: 0 1%;
		margin-bottom: 10px;

}
	#construction .construction-point__col2 li:nth-child(2),#construction .construction-point__col2 li:nth-child(3),#construction .construction-point__col2 li:nth-child(4){
		margin: 15px 0 0 0;
	}

	#construction .construction-point__row2 li:nth-child(2){
		margin: 0 0 10px 0;
	}
	#construction .construction-point__row2 li:nth-child(5){
		margin: 0 0 10px 0;

	}
	#construction .construction-point__row2 li:nth-child(4),#construction .construction-point__row2 li:nth-child(6){
		margin-bottom: 10px;
	}
	#construction .construction-point li:nth-child(4),#construction .construction-point li:nth-child(6){
		margin-bottom: 0;
	}
	#construction .construction-point li .icon,#construction .construction-point__col2 li .icon{
		text-align: center;
		background: url(../img/construction/point_no.png) no-repeat left center;
		background-size: 40px;
		margin: -12px auto 0 auto;
		width: 40px;
		height: 40px;
		font-family: 'Barlow Semi Condensed', sans-serif;
		font-weight: 400;
		color: #001b88;
		font-size: 2.2rem;
		display: block;
		line-height:0.8;
		padding-top: 8px;

	}
	#construction .construction-point li .icon:before,#construction .construction-point__col2 li .icon:before{
		content: "POINT";
		display: block;
		line-height:1;
		font-family: 'Josefin Sans', sans-serif;
		font-weight: 400;
		font-size: 0.9rem;
		letter-spacing: 0;
	}


	#construction .construction-point li dt,#construction .construction-point__row2 li dt{
		font-size: 1.6rem;
		text-align: center;
		font-weight: bold;
		line-height: 1.5;
		padding: 6px 0;
		border-bottom: 1px dashed #333;
	}
    #construction .construction-point__row2 li p{
		font-size: 1.6rem;
		text-align: center;
		font-weight: bold;
		line-height: 1.5;
		padding: 6px 0 0 0;
		
	}
	#construction-manshon li{
	padding: 4px 0 10px 0!important;
}
	#construction .construction-point li dt br,#construction .construction-point__row2 li dt br{
		display: none;
	}
	#construction .construction-point__photo dl,#construction .construction-point__photo2 dl{
		padding: 10px 15px 0 15px;
	}
	#construction .construction-point__col2 li dt{
		font-size: 1.6rem;
		text-align: center;
		font-weight: bold;
		line-height: 1.5;
		padding: 6px 0;
		border-bottom: 1px dashed #333;
	}
	#construction .construction-point__photo2 li dt{
		font-size: 1.6rem;
		font-weight: bold;
		line-height: 1.5;
		margin-top: 5px;

		background: url(../img/icon_s.png) no-repeat left 2px;
		background-size: 20px;
		padding:0 0 10px 30px;
		border-bottom: 1px dashed #333;
	}
	#construction .construction-point__photo2 li dt br{
		display: none;
	}
	#construction .construction-point li dt em{
		font-size: 1.5rem;
	}
	#construction .construction-point__photo li dt{
		font-size: 2rem;
		text-align: center;
		font-weight: bold;
		line-height: 1.5;
		padding: 0 0 6px 0;
		border-bottom: 1px dashed #333;
	}

	#construction .construction-point li dd,#construction .construction-point__col2 li dd,#construction .construction-point__row2 li dd,#construction .construction-point__photo li dd,#construction .construction-point__photo2 li dd{
		line-height: 1.6;
		letter-spacing: -0.04em;
		margin-top: 10px;
	}
}
/*
chronology
_________________________________________________________*/

.chronology{
	margin-top: 20px;
	background: url(../img/construction/bg_check_yellow.png) repeat left center;
	background-size: 8px;
	border: 1px solid #ffe837;
	padding: 15px 40px 30px 40px;

}
.chronology li{
	padding: 15px 0;
	border-bottom:1px dashed #333;
}
.chronology li:last-child{
	border: none;
}
.chronology-date{
	background: #ffe837;
	display: inline-block;
	font-size: 1.4rem;
	padding: 4px 12px;
	line-height: 1;
	border-radius: 30px;

}
.chronology dt{
	font-size: 1.8rem;
	margin-top: 10px;
	font-weight: bold;
	background: url(../img/icon_s.png) no-repeat left 2px;
	background-size: 24px;
	padding:0 0 4px 30px;
	line-height: 1.4;

}
@media only screen and (max-width: 768px) {
	.chronology{
		margin-top: 20px;
		background: url(../img/construction/bg_check_yellow.png) repeat left center;
		background-size: 8px;
		border: 1px solid #ffe837;
		padding: 0 20px 20px 20px;

	}
	.chronology li{
		padding: 15px 0;
		border-bottom:1px dashed #333;
	}
	.chronology li:last-child{
		border: none;
	}
	.chronology-date{
		background: #ffe837;
		display: inline-block;
		font-size: 1.3rem;
		padding: 4px 12px;
		line-height: 1;
		border-radius: 30px;

	}
	.chronology dt{
		font-size: 1.6rem;
		margin-top: 10px;
		font-weight: bold;
		background: url(../img/icon_s.png) no-repeat left 2px;
		background-size: 24px;
		padding:0 0 4px 30px;
		line-height: 1.4;

	}
}

/*
contact
_________________________________________________________*/

#construction .contact-s{
	width: 100%;
	background: url(../img/construction/bg_contact.png) repeat left center;
	background-size: 7px;
	text-align: center;
	margin-top: 30px;
	border: 4px solid #ff6600;
}
#construction .contact-s__inner{
	background-image: url(../img/construction/contact_photo01.png),url(../img/construction/contact_photo02.png);
	background-repeat: no-repeat,no-repeat;
	background-position: left top,right top;
	background-size: 240px, 240px;
	padding: 20px 0;
}
#construction .contact-s .contact-lead{
	font-weight: bold;
	font-size: 1.6rem;
	line-height: 1.5;
}
#construction .contact-s .contact-tel{
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	font-size: 4.5rem;
	letter-spacing: 0.02em;
	line-height: 1;
	width: 390px;
	margin: 0 auto;
	background: url(../img/icon_tel.png) no-repeat left 14px;
	background-size: 46px;
	padding-left: 54px;
}
#construction .contact-s .contact-time{
	font-size: 1.4rem;
	margin-top: 4px;
}
#construction .contact-s .contact-time span{
	font-size: 1.8rem;
	font-weight: bold;

}
#construction .contact-s .contact-link{
	width: 360px;
	margin:10px auto 0 auto; 

}
#construction .contact-s .contact-link a{
	display: block;
	width: 354px;
	color: #FFF;
	background: #ff6600 url(../img/arrow.png) no-repeat 95% center;
	background-size: 7px;
	padding: 16px 0;
	line-height: 1;
	text-decoration: none;
	font-size: 1.6rem;
	letter-spacing: 0.01em;
	border: 3px solid #ff6600;
	border-radius: 100px;
	-webkit-transition: 0.2s;
	transition: 0.2s;
	font-weight: bold;
}
#construction .contact-s .contact-link a:hover{
	background: #FFF url(../img/arrow_ov.png) no-repeat 96% center;
	background-size: 7px;
	color: #ff6600;
}
@media only screen and (max-width: 768px) {
	#construction .contact-s{
		width: 100%;
		background: url(../img/construction/bg_contact.png) repeat left center;
		background-size: 7px;
		text-align: center;
		margin-top: 30px;
		padding: 0 0 0 0; 
		border: 4px solid #ff6600;
	}
	#construction .contact-s__inner{
		background-image: url(../img/construction/sp_photo.png);
		background-repeat: no-repeat;
		background-position: center bottom;
		background-size:100%;
		padding: 16px 0 40% 0;
	}
	#construction .contact-s .contact-lead{
		font-weight: normal;
		font-size: 1.4rem;
		line-height: 1.3;
	}
	#construction .contact-s .contact-tel{
		font-family: 'Barlow Semi Condensed', sans-serif;
		font-weight: 400;
		font-size: 4.6rem;
		letter-spacing: 0.01em;
		line-height: 1;
		width: 100%;
		background:none;
		padding-left: 0;
	}
	#construction .contact-s .contact-tel:before{
		content: "";
		width: 30px;
		height: 26px;
		margin-right: 10px;
		background: url(../img/icon_tel.png) no-repeat 0 3px;
		background-size: 30px;
		display: inline-block;
	}
	#construction .contact-s .contact-time{
		font-size: 1.4rem;
		margin-top: 0;
	}
	#construction .contact-s .contact-time span{
		font-size: 1.4rem;

	}
	#construction .contact-s .contact-link{
		width: 94%;
		margin:6px auto 0 auto; 

	}
	#construction .contact-s .contact-link a{
		display: block;
		width: 100%;
		color: #FFF;
		box-sizing: border-box;
		background: #ff6600 url(../img/arrow.png) no-repeat 95% center;
		background-size: 7px;
		padding: 16px 0;
		line-height: 1;
		text-decoration: none;
		font-size: 1.4rem;
		letter-spacing: 0.01em;
		border: 3px solid #ff6600;
		border-radius: 100px;
		-webkit-transition: 0.2s;
		transition: 0.2s;
		font-weight: bold;
	}
	#construction .contact-s .contact-link a:hover{
		background: #FFF url(../img/arrow_ov.png) no-repeat 96% center;
		background-size: 7px;
		color: #ff6600;
	}
}
/*
guide
_________________________________________________________*/

#construction .guide ul{
	border-top:1px solid #bbebfa;
	border-bottom:1px solid #bbebfa;
	margin-top: 20px;
}
#construction .guide li{
	background: url(../img/construction/bg_guide.png) repeat-y left top;
	background-size: 50px;
	margin-bottom: 3px;
	overflow: hidden;
	padding: 12px 0;
}
#construction .guide li:last-child{
	margin-bottom: 0;
}
#construction .guide li .no{
	width: 50px;
	margin-right: 20px;
	display: inline-block;
	text-align: center;
	font-family: 'Barlow Semi Condensed', sans-serif;
	font-weight: 400;
	font-size: 2.6rem;
	color: #FFF;
	line-height: 1;
	float: left;
}
#construction .guide li dl{
	overflow: hidden;
	width: 840px;
	float: right;
	line-height: 1.6;
}
#construction .guide li p{
	font-weight: bold;
	width: 690px;
	float: right;
	text-align: left;

}
#construction .guide li:nth-child(odd){
	background-color: #e6f6fb;
}
#construction .guide li dt{
	width: 220px;
	font-size: 1.7rem;
	float: left;
	font-weight: bold;
}
#construction .guide li dt span{
	font-weight: normal;
	font-size: 1.3rem;
	display: block;
	line-height: 1.4;

}
#construction .guide li dd{
	width: 470px;
	float: right;
	padding: 0 20px;

}
@media only screen and (max-width: 768px) {
	#construction .guide ul{
		border-top:1px solid #bbebfa;
		border-bottom:1px solid #bbebfa;

		margin: 15px 5px 0 5px;
	}
	#construction .guide li{
		background: url(../img/construction/bg_guide.png) repeat-y left top;
		background-size: 10%;

		margin-bottom: 3px;
		overflow: hidden;
		padding: 12px 0;
	}
	#construction .guide li:last-child{
		margin-bottom: 0;
	}
	#construction .guide li .no{
		width: 10%;

		margin-right: 0;
		display: block;
		text-align: center;
		font-family: 'Barlow Semi Condensed', sans-serif;
		font-weight: 400;
		font-size: 1.8rem;
		color: #FFF;
		line-height: 1;
		float: left;
	}
	#construction .guide li dl{
		overflow: hidden;

		float: right;
		line-height: 1.6;
		width: 90%;
		padding: 0 10px;
	}
	#construction .guide li p{
		width: 90%;
		float: right;
		padding-left: 20px;


}
	#construction .guide li:nth-child(odd){
		background-color: #e6f6fb;
	}
	#construction .guide li dt{
		width: auto;
		font-size: 1.5rem;
		float: none;
		font-weight: bold;
	}
	#construction .guide li dt span{
		font-weight: normal;
		font-size: 1.3rem;
		display: block;
		line-height: 1.4;

	}
	#construction .guide li dd{
		width:auto;
		float: none;
		padding: 0 0;

	}
}
/*
attention
_________________________________________________________*/

#construction .attention{
	margin-top: 20px;
}
#construction .attention-box{
	margin-top: 20px;
	background: #fff1e8;
	padding: 20px;
}
#construction .attention li,#construction .attention-box li{
	background: url(../img/construction/icon_check.png) no-repeat 4px 6px;
	background-size: 16px;
	padding: 0 0 0 30px;

	margin: 0 0 6px 0;
}

/*products*/
#construction .products ul{
	display: flex;
	flex-wrap: wrap;
	padding: 0 0 0 0;

}
#construction .products ul li{
	width: 380px;

	padding: 20px;

}
#construction .products ul li:last-child{
	padding-bottom: 0;
}
#construction .products ul li h4{
	font-size: 2rem;
	font-weight: bold;
	background: url(../img/icon_s.png) no-repeat left 2px;
	background-size: 24px;
	padding:0 0 10px 34px;
	line-height: 1.4;
	border-bottom: 1px dashed #333;
}
#construction .products ul li dt{
	width: 50%;
	margin: 0 auto;
	padding-top: 10px;
}
#construction .products ul li dd{
	margin-top: 10px;
}

#construction .construction-point__photo2 .attention li{
	border: none;
}

@media only screen and (max-width: 768px) {
	#construction .attention{
		margin-top: 15px;
	}
	#construction .attention-box{
		margin-top: 10px;
		background: #fff1e8;
		padding: 10px;
	}
	#construction .attention li,#construction .attention-box li{
		background: url(../img/construction/icon_check.png) no-repeat 4px 6px;
		background-size: 14px;
		padding: 0 0 0 24px;

		margin: 0 0 6px 0;
	}

	/*products*/
	#construction .products ul{
		display: block;
		flex-wrap: inherit;
		padding: 0 0 0 0;

	}
	#construction .products ul li{
		width: 100%;

		padding: 0 10px 25px 10px;

	}
	#construction .products ul li:last-child{
		padding-bottom: 0;
	}
	#construction .products ul li h4{
		font-size: 1.6rem;

		background: url(../img/icon_s.png) no-repeat left 2px;
		background-size: 18px;
		padding:0 0 10px 26px;
		line-height: 1.2;
		border-bottom: 1px dashed #333;
	}
	#construction .products ul li dt{
		width: 46%;
		margin: 0 auto;
		padding-top: 10px;
	}
	#construction .products ul li dd{
		margin-top: 10px;
	}

}

/*ranking
_________________________________________________________*/

.ranking table{
	width: 100%;
	border-collapse: collapse; 
	margin-top: 30px;
	font-size: 1.5rem;
}

.ranking th,.ranking td {
	border:  1px solid #a1e0d2;  
	padding: 8px;     
}

.ranking .head1{
	background: #31c1a4;
	color: #FFF;
	padding: 16px 0;
	font-weight: bold;
}
.ranking .head2{
	background: #31c1a4;
	color: #FFF;
	padding: 16px 0;
	border-left: 1px solid #FFF;
	font-weight: bold;
}
.ranking .rank{
	width: 80px;
	background: #31c1a4;
	color: #FFF;
	font-weight: bold;
}
.ranking tr:nth-child(odd){
	background-color: #e0f7f2;
}
.ranking tr:nth-child(odd) td{

}
.ranking thead tr{
	background: #FFF!important;
}
.ranking td{
	text-align: center;
}
.ranking thead th{
	border: none;
}
.construction-item{
	overflow: hidden;
	padding-top: 20px;
}
.construction-item p{
	width: 540px;
	float: left;
}
.construction-item figure,
.construction-item .construction-item__right
{
	width: 290px;
	float: right;
	margin-top: 10px;
}
.construction-item figcaption{
	font-size: 1.3rem;
	padding-top: 10px;
}
.construction-item figcaption a{
	text-decoration: underline;
}

.construction-item2{
	overflow: hidden;
	padding-top: 20px;
}
.construction-item2 li{
	overflow: hidden;
	background: url(../img/construction/arrow.png) no-repeat center center;
	background-size: 40px;
	margin-bottom: 20px;
}
.construction-item2 li:last-child{
	margin-bottom: 0;
}
.construction-item2 p{
	width: 390px;
	padding: 20px;
	font-size: 1.5rem;

}
.construction-item2 li p:first-child{
	float: left;
	background: #fff1e8;
	border: 1px solid #ff6600;
}
.construction-item2 li p:last-child{
	float: right;
	background: #def6ff;
	border: 1px solid #0098d2;
}

.construction-breaker-table{
	border-collapse:  collapse;
	margin-bottom: 10px;
	border: 2px solid #14b7ed;
	width: 100%;

}

.construction-breaker-table th,td{
	border: 1px solid #14b7ed;
	padding: 10px 5px;
}

.construction-breaker-table th{
	background:  #14b7ed;
	color: #fff;
	font-weight: bold;
	line-height: 1.2;
	font-size: 14px;
	width: 40%;
}


.construction-breaker-table td{
	text-align: center;
	font-size: 14px;
	width: 30%;
	line-height: 1.2;
}


@media only screen and (max-width: 768px) {
	.ranking table{
		width: 100%;
		border-collapse: collapse; 
		margin-top: 20px;
		font-size: 1.3rem;
		text-align: left;

	}

	.ranking th,.ranking td {
		border:  1px solid #a1e0d2;  
		padding: 6px;     
	}

	.ranking .head1{
		background: #31c1a4;
		color: #FFF;
		padding: 10px 10px;
		font-weight: normal;
	}
	.ranking .head2{
		background: #31c1a4;
		color: #FFF;
		padding: 10px 10px;
		border-left: 1px solid #FFF;
		font-weight: normal;
	}
	.ranking .rank{
		width: 50px;
		background: #31c1a4;
		color: #FFF;
		font-weight: bold;
	}
	.ranking tr:nth-child(odd){
		background-color: #e0f7f2;
	}
	.ranking tr:nth-child(odd) td{

	}
	.ranking thead tr{
		background: #FFF!important;
	}
	.ranking td{
		text-align: left;
	}
	.ranking thead th{
		border: none;
	}
	.construction-item{
		overflow: hidden;
		padding-top: 15px;
	}
	.construction-item p{
		width: 100%;
		float: none;
	}
	.construction-item figure,
	.construction-item .construction-item__right{
		width: 100%;
		float: none;
		margin-top: 20px;
	}
	.construction-item figcaption{
		font-size: 1.3rem;
		padding-top: 10px;
	}
	.construction-item figcaption a{
		text-decoration: underline;
	}

	.construction-item2{
		overflow: hidden;
		padding-top: 20px;
	}
	.construction-item2 li{
		overflow: hidden;
		background: url(../img/construction/arrow.png) no-repeat center center;
		background-size: 30px;
		margin-bottom: 20px;
	}
	.construction-item2 li:last-child{
		margin-bottom: 0;
	}
	.construction-item2 p{
		width: 44%;
		padding: 15px;
		font-size: 1.4rem;

	}
	.construction-item2 li p:first-child{
		float: left;
		background: #fff1e8;
		border: 1px solid #ff6600;
	}
	.construction-item2 li p:last-child{
		float: right;
		background: #def6ff;
		border: 1px solid #0098d2;
	}

}

/*FAQ
_________________________________________________________*/


dl.faq-txt {
	border: 1px solid #d8d2bc;
	padding: 0;
	margin: 10px 0 0 0;
	border-radius: 0 0 20px 0;
}

dl.faq-txt dt {
	background-image:  url(../img/faq/open.png),url(../img/faq/faq_q.png);
	background-repeat: no-repeat,no-repeat;
	background-position: 99% center,12px 14px;
	background-size: 30px,35px;
	padding: 16px 60px 16px 64px;
	color: #333;
	font-weight: bold;
	cursor: pointer;
	-webkit-transition: 0.2s;
	transition: 0.2s;
}
dl.faq-txt dt:hover{
	text-decoration: underline;
}
dl.faq-txt dt.open {
	background-image:  url(../img/faq/close.png),url(../img/faq/faq_q.png);
	background-repeat: no-repeat,no-repeat;
	background-position: 99% center,12px 14px;
	background-size: 30px,35px;
	padding: 16px 60px 16px 64px;
	color: #333;
}
dl.faq-txt dd {
	display: none;
	padding: 16px 20px 16px 64px;
	line-height: 1.9;
}
@media only screen and (max-width: 768px) {
	dl.faq-txt dt {
		background-image:  url(../img/faq/open.png),url(../img/faq/faq_q.png);
		background-repeat: no-repeat,no-repeat;
		background-position: 99% center,12px 14px;
		background-size: 30px,26px;
		padding: 16px 40px 16px 48px;
		color: #333;
		font-weight: normal;
		cursor: pointer;
		-webkit-transition: 0.2s;
		transition: 0.2s;
	}
	dl.faq-txt dt.open {
		background-image:  url(../img/faq/close.png),url(../img/faq/faq_q.png);
		background-repeat: no-repeat,no-repeat;
		background-position: 99% center,12px 14px;
		background-size: 30px,26px;
		padding: 16px 40px 16px 48px;
		color: #333;
	}
	dl.faq-txt dd {
		display: none;
		padding: 16px 20px 16px 20px;
		line-height: 1.9;
	}

}
/*policy
_________________________________________________________*/

#policy ul{
	background: #f4f4f4;
	padding: 20px;
	margin-top: 20px;
}
#policy li{
	font-size: 1.5rem;
	list-style: disc;
	padding: 2px 0;
	margin-left: 20px;
}
@media only screen and (max-width: 768px) {
	#policy p{
		padding: 0 10px;
		line-height: 1.8;
	}
	#policy ul{
		padding: 10px;
	}
	#policy li{
		font-size: 1.4rem;
		list-style: disc;
		padding: 2px 0;
		margin-left: 20px;
	}
}

/*
company
_________________________________________________________*/
.company h3 {
	font-size: 2rem;
	font-weight: bold;
	background:#001b88 url(../img/construction/line.png) no-repeat left center;
	background-size: 20px;
	padding:14px 0 14px 30px;
	line-height: 1;
	border-radius: 4px;
	margin-top: 40px;
	color: #FFF;	
}
.company p {
	margin-top: 20px;
}
.company-message{
	margin-top: 30px;
}
.company-message li{
	font-weight: bold;
	font-size: 2.8rem;
	line-height: 1.5;
	margin-top: 10px;
	font-family: serif;
}
.company-message li:before{
	content: "・ ";
	color: #0098d2;
}
.greeting-name{
	text-align: right;
	font-weight: bold;
	margin-top: 20px;
}
.company .company-list {
	border-top:1px solid #DDD;
	border-bottom:1px solid #DDD;
	margin-top: 30px;
}
.company .company-list li{
	overflow: hidden;
	padding: 12px 0;
}
.company .company-list li:last-child{
	margin-bottom: 0;
}
.company .company-list li dl{
	overflow: hidden;
	width: 760px;
	line-height: 1.6;
}
.company .company-list li:nth-child(odd){
	background-color: #f4f4f4;
}
.company .company-list li dt{
	width: 240px;
	float: left;
	font-weight: bold;
	padding-left: 20px;
}
.company .company-list li dd{
	width: 520px;
	float: right;
	padding: 0 30px 0 0;
}
.company .map{
	overflow: hidden;
	line-height: 1;
	margin-top: 20px;
}
.company .map iframe{
	width: 760px;
	height: 400px;
}
.company .company-list2 table{
	width: 100%;
	border-collapse: collapse; 
	margin-top: 30px;
	font-size: 1.5rem;
}
.company .company-list2 td {
	border:  1px solid #DDD;  
	padding: 8px;     
}
.company .company-list2 td{
	text-align: center;
}
.company .company-list2 .bg1{
	background: #f4f4f4;
}

@media only screen and (max-width: 768px) {
	.company-message{
		margin-top: 20px;
	}
	.company-message li{
		font-weight: bold;
		font-size: 2rem;
		line-height: 1.5;
		margin-top: 5px;
		font-family: sans-serif;
	}
	.company .company-list ul{
		margin-top: 20px;
	}
	.company .company-list li{
		overflow: hidden;
		padding: 0 0;

	}
	.greeting-name{
		margin-top: 10px;
	}
	.company .company-list li dl{
		overflow: hidden;
		width: 100%;
		padding:16px 20px;
	}
	.company .company-list li:nth-child(odd){
		background-color: #f4f4f4;
	}
	.company .company-list li dt{
		width: 100%;
		float: none;
		font-weight: bold;
		padding-left: 0;
	}
	.company .company-list li dd{
		width: 100%;
		float: none;
		padding: 0 0 0 0;
	}
	.company .map{
		overflow: hidden;
		line-height: 1;
		margin-top: 20px;
	}
	.company .map iframe{
		width: 100%;
		height: 400px;
	}

	.company .company-list2 table{
		width: 100%;
		border-collapse: collapse; 
		margin-top: 30px;
		font-size: 1.3rem;
	}
	.company .company-list2 td {
		border:  1px solid #DDD;  
		padding: 8px;     
	}
	.company .company-list2 td{
		text-align: center;
	}
	.company .company-list2 .bg1{
		background: #f4f4f4;
	}
}

/*
article-list
_________________________________________________________*/
.article-list{
	display: flex;
	flex-wrap: wrap;
	padding: 0 2px;

}
.article-list li{
	width: 32%;
	margin: 6px;
	display: flex;
}
.article-list li a{
	width: 100%;
	display: block;
	-webkit-transition: 0.2s;
	transition: 0.2s;
	padding-bottom: 15px;
}
.article-list li dl{
	padding: 0 16px;
}
.article-list li dt{
	padding-top: 15px;
	font-family: 'Poppins', sans-serif;
	font-weight: 400;
	font-size: 1.5rem;
	line-height: 1;

}
.article-list li dt span{
	font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
	background: #000066;
	color: #fff;
	display: inline-block;
	font-size: 1.1rem;
	padding: 4px 8px;
	font-weight: normal;
	margin-left: 5px;
	border-radius: 30px;

}
.article-list li dd{
	line-height: 1.6;
	margin-top: 8px;
	font-weight: bold;
}
.article-list li a figure{
	width: 100%;
	-webkit-transition: 0.2s;
	transition: 0.2s;
	text-align: center;
}
.article-list li a figure img {
	/*min-width: 50%;
	width: auto;
	height: 133px;
	object-fit: cover;*/
	object-fit: cover;
	height: 216px;
	width: auto;
}
.article-list li a:hover figure{
	opacity: 0.6;
}
.article-list li a:hover dd{
	text-decoration: underline;
}
.article-body{
	padding: 20px 40px 40px 40px;
}
.article-body__title{
	margin-bottom: 30px;
}
.article-body__title dl{
	padding: 0 0 10px 0;
}
.article-body__title dt{
	padding-top: 15px;
	font-family: 'Poppins', sans-serif;
	font-weight: 400;
	font-size: 1.6rem;
	line-height: 1;
}
.article-body__title dt span{
	font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
	background: #000066;
	color: #fff;
	display: inline-block;
	font-size: 1.4rem;
	padding: 4px 14px;
	font-weight: normal;
	margin-left: 10px;
	border-radius: 30px;

}
.article-body__title dd{
	line-height: 1.6;
	margin-top: 8px;
	font-size: 2.8rem;
	font-weight: bold;
}
.article-body__text p{
	margin-top: 30px;
}
.article-body__link {
	width: 100%;
	margin:30px auto 0 auto!important;
	overflow: hidden;
}
.article-body__link .prev,.article-body__link .next {
	line-height:1.6;
	font-size:1.4rem;
}
.article-body__link .prev a,.article-body__link .next a {
	padding-bottom:1px;
	border-bottom:1px solid #000;
	-webkit-transition: 0.2s;
	transition: 0.2s;
}
.article-body__link a:hover{
	opacity: 0.5;
}
.article-body__link .prev {
	width:48%;
	float:left;
}
.article-body__link .prev a:before {
	content:'\03c';
	display: inline-block;
	padding-right: 10px;
}
.article-body__link .next {
	width:48%;
	float:right;
	text-align:right;
}

.article-body__link .next a:after {
	content:'\03e';
	display: inline-block;
	padding-left: 10px;
}

@media only screen and (max-width: 768px) {
	
	.article-list{
		display: flex;
		flex-wrap: wrap;
		padding: 0 2px;
	}
	.article-list li{
		width: 48%;
		margin: 1%;
		
	}
	.article-list li a{
		display: block;
		width: 100%;
		padding-bottom: 15px;
	}
	.article-list li dl{
		padding: 0 8px;
	}
	.article-list li dt{
		padding-top: 10px;
		font-size: 1.4rem;
	}
	.article-list li dt span{
		display: block;
		font-size: 1.1rem;
		padding: 4px 8px;
		font-weight: normal;
		margin-left: 0;
		margin-top: 5px;
	}
	.article-list li dd{
		line-height: 1.5;
		margin-top: 8px;
	}
	.article-body{
		padding: 10px 15px 30px 15px;
	}
	.article-body__title{
		margin-bottom: 20px;
	}
	.article-body__title dl{
		padding: 0 0 10px 0;

	}
	.article-body__title dt{
		padding-top: 10px;
		font-size: 1.4rem;
		line-height: 1;
	}
	.article-body__title dt span{
		font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
		background: #ffe837;
		display: inline-block;
		font-size: 1.2rem;
		padding: 2px 10px;
		font-weight: normal;
		margin-left: 10px;
		border-radius: 30px;
	}
	.article-body__title dd{
		line-height: 1.6;
		margin-top: 8px;
		font-size: 2rem;
		font-weight: bold;
	}
	.article-body__text p{
		margin-top: 20px;
	}
	.article-body__link{
		width: 100%;
		margin:30px auto 0 auto!important;
	}
	.article-body__link .prev,.article-body__link .next {
		line-height:1.6;
		font-size:1.4rem;
	}
	.article-body__link .prev a,.article-body__link .next a {
		padding-bottom:1px;
		border-bottom:1px solid #000;
		-webkit-transition: 0.2s;
		transition: 0.2s;
	}
	.article-body__link a:hover{
		opacity: 0.5;
	}
	.article-body__link .prev {
		width:48%;
		float:left;
	}
	.article-body__link .prev a:before {
		content:'\03c';
		display: inline-block;
		padding-right: 10px;
	}
	.article-body__link .next {
		width:48%;
		float:right;
		text-align:right;
	}

	.article-body__link .next a:after {
		content:'\03e';
		display: inline-block;
		padding-left: 10px;
	}
	}
/*
performance
_________________________________________________________*/
.performance .wp-block-columns {
	margin-bottom: 28px;
}
.performance .content-body{
	width: 100%;
	margin: 0 auto;
	overflow: hidden;
	padding: 0!important;

}
.performance .article-list li{
	background: #f4f3ef url(../img/performance/bg.png) repeat left center;
	background-size: 8px;
	border-radius: 0 0 20px 0;
}
.performance .article-body{
	padding: 0 0 30px 0;
	border-bottom: 1px solid #d8d2bc;
}
.performance .article-body .article-body__title dl{
	border-bottom: 1px solid #ddd;
}
.performance .pager {
	overflow: hidden;
	margin-top: 50px;
}
.performance .pager ul {
	list-style: none;
	position: relative;
	left: 50%;
	float: left;
}
.performance .pager ul li {
	margin: 0 1px;
	position: relative;
	left: -50%;
	float: left;
	line-height: 1.4;
	font-family: 'Barlow Semi Condensed', sans-serif;
	font-weight: 400;
}
.performance .pager ul li span,
.performance .pager ul li a {
	display: block;
	font-size: 1.5rem;
	padding: 0.6em 1em;

}
.performance .pager ul li a {
	background: #EEE;
	border: 1px solid #EEE;

	text-decoration: none;
	-webkit-transition: 0.2s;
	transition: 0.2s;
}
.performance .pager ul li a:hover {
	background: #ffe837;

}


@media only screen and (max-width: 768px) {
	.performance .content-body{
		width: 100%;
		margin: 0 auto;
		overflow: hidden;
		padding: 0!important;

	}
	.performance .pager {
		overflow: hidden;
		margin-top: 40px;
	}
	.performance .pager ul li span,
	.performance .pager ul li a {
		display: block;
		font-size: 1.3rem;
		padding: 0.6em 1em;
	}
	
}
/*
column
_________________________________________________________*/
body#column{
	background: #fffce2;
}
.column-heading{
	margin-bottom: 20px;	
}
.column .content-body{
	width: 100%;
	margin: 0 auto;
	overflow: hidden;
	padding: 0!important;
}
.column .article-list li{
	border: 1px solid #ffe837;
	background: url(../img/column/bg.png) repeat left center;
	background-size: 8px;
}
body#column .performance .article-body{
	border: 1px solid #ffe837;
	background: url(../img/column/bg.png) repeat left center;
	background-size: 8px;
}
.column .article-body .article-body__title dl{
	border-bottom: 1px solid #ffe837;
}
.column .pager {
	overflow: hidden;
	margin-top: 50px;
}
.column .pager ul {
	list-style: none;
	position: relative;
	left: 50%;
	float: left;
}
.column .pager ul li {
	margin: 0 1px;
	position: relative;
	left: -50%;
	float: left;
	line-height: 1.4;
	font-family: 'Barlow Semi Condensed', sans-serif;
	font-weight: 400;
}
.column .pager ul li span,
.column .pager ul li a {
	display: block;
	font-size: 1.5rem;
	padding: 0.6em 1em;
}
.column .pager ul li a {
	background: #fffce2;
	border: 1px solid #999;
	text-decoration: none;
	-webkit-transition: 0.2s;
	transition: 0.2s;
}
.column .pager ul li a:hover {
	background: #ffe837;
}


@media only screen and (max-width: 768px) {
	.column .content-body{
		width: 100%;
		margin: 0 auto;
		overflow: hidden;
		padding: 0!important;
	}
	
	.column .pager {
		overflow: hidden;
		margin-top: 40px;
	}
	.column .pager ul li span,
	.column .pager ul li a {
		display: block;
		font-size: 1.3rem;
		padding: 0.6em 1em;
	}
}

/*sub
_________________________________________________________*/

.construction-sub{
	width: 250px;
	float:left;
}
.construction-sub__title{
	padding-bottom: 10px;
}
.construction-sub__title dt{
	font-weight: bold;
	font-size: 2rem;
	line-height: 1;
}
.construction-sub__title dd{
	font-family: 'Josefin Sans', sans-serif;
	font-weight: 400;
	font-size: 1.2rem;
	margin-top: 5px;
	color: #0098d2;
}

.construction-sub__list{
	border-top: 1px solid #CCC;	
}
.construction-sub__list li a{
	font-size: 1.5rem;
	display: block;
	font-weight: bold;
	padding: 12px 0;
	border-bottom: 1px solid #CCC;	
}
/*
.construction01 .construction-sub__list li:first-child a,
.construction02 .construction-sub__list li:nth-child(2) a,
.construction03 .construction-sub__list li:nth-child(3) a,
.construction04 .construction-sub__list li:nth-child(4) a,
.construction05 .construction-sub__list li:nth-child(5) a,
.construction06 .construction-sub__list li:nth-child(6) a,
.construction07 .construction-sub__list li:nth-child(7) a,
.construction08 .construction-sub__list li:nth-child(8) a,
.construction09 .construction-sub__list li:nth-child(9) a,
.construction10 .construction-sub__list li:nth-child(10) a,
.construction11 .construction-sub__list li:nth-child(11) a,
.construction12 .construction-sub__list li:nth-child(12) a,
.construction15 .construction-sub__list li:nth-child(13) a{
	color: #0098d2;
}*/
.construction-sub__list li a:hover{
	color: #0098d2;
}
.construction-sub__banner{
	margin-top: 20px;
}
.construction-sub__banner li{
	margin-top: 10px;
}
@media only screen and (max-width: 768px) {
	.construction-sub{
		float: none;
		width: 100%;
	}
	.construction-sub__title,.construction-sub__list{
		display: none;
	}
	.construction-sub__banner{
		margin-top: 40px;
		padding-top: 20px;
		border-top: 1px solid #CCC;
	}
	.construction-sub__banner ul{
		overflow: hidden;
		width: 100%;
	}
	.construction-sub__banner li{
		margin: 10px 1% 0 1%;
		width: 48%;
		float: left;

	}
}

/*
contact
_________________________________________________________*/

.contact-form{
	position: relative;
	overflow: hidden;
}
textarea:focus, input:focus {
	background:#fff;
}
.text,.text-s,textarea,.dropdown {
	border:1px solid #ccc;
	padding: 2px;
	color: #333;
	background: #FFF;
	font-size: 1.6rem;
	line-height: 1.8em;
	font-family: sans-serif;
	text-align: left;

}
.text{
	width: 400px;
}
select{
	background: #FFF;
	padding: 10px;
	font-size: 1.4rem;
	border:1px solid #ccc;
	min-width: 200px;
}
.contact-form textarea{
	height: 140px;
	width: 460px;
}

.contact-form dl:nth-child(odd){
	background: #e6f6fb;
}
.contact-form dl:first-child{
	border-top:1px solid #bbebfa;

}
.contact-form dl:nth-child(10){
	border-bottom:1px solid #bbebfa;
}
.contact-form dl{ overflow:hidden; padding:25px 0 25px 25px;}
.contact-form dl:last-child{border-bottom: none; display: table;}
.contact-form dt{ 
	font-size: 1.6rem;
	line-height: 1.5;
	text-align: left;
	font-weight: bold;
	display: table-cell;
	width: 210px;
	vertical-align: middle;

}
.contact-form dt span{
	display: inline-block;
	padding: 6px 10px;
	background: #0098d2;
	color: #FFF;
	font-size: 1.3rem;
	line-height: 1;
	margin-left: 15px;
	font-weight: normal;
	border-radius: 30px;
}
.contact-form dd{ width:520px; display: table-cell; vertical-align: middle; text-align: left;}
.contact-form .link-submit{
	width: 280px;
	margin: 30px auto 0 auto;
}
.contact-form .link-submit input{
	display: block;
	box-sizing: border-box;
	width: 280px;
	color: #FFF;
	background: #001b88 url(../img/arrow.png) no-repeat 94% center;
	background-size: 7px;
	padding: 16px 0;
	line-height: 1;
	text-align: center;
	text-decoration: none;
	font-size: 1.6rem;
	letter-spacing: 0.01em;
	border: 2px solid #001b88;
	border-radius: 100px;
	-webkit-transition: 0.2s;
	transition: 0.2s;
}
.contact-form .link-submit input:hover{
	background: #FFF url(../img/arrow_ov_blue.png) no-repeat 95% center;
	background-size: 7px;
	color: #001b88;
}


@media only screen and (max-width: 768px) {
	.contact-form{
		position: relative;
		overflow: hidden;
	}
	textarea:focus, input:focus {
		background:#fff;
	}
	.text,textarea,.dropdown {
		padding: 5px 2px;
		font-size: 1.4rem;
		line-height: 1.8;
	}
	.text{
		width: 90%;
	}
	select{
		font-size: 1.4rem;
		min-width:auto;
	}
	.contact-form textarea{
		height: 140px;
		width: 90%;
	}
	.contact-form dl{ overflow:hidden; padding:20px 14px;}
	.contact-form dl:last-child{border-bottom: none; display: block;}
	.contact-form dt{ 
		font-size: 1.4rem;
		line-height: 1.5;
		width: 100%;
		padding-bottom: 5px;
	}
	.contact-form dt span{
		display: inline-block;
		padding: 4px 10px;
		background: #0098d2;
		color: #FFF;
		font-size: 1.1rem;
		line-height: 1;
		margin-left: 10px;
	}
	.contact-form dd{width: 100%; display:block; padding-top: 5px; }
	.contact-form .link-submit{
		width: 100%;
		margin: 30px auto 0 auto;
	}
	.contact-form .link-submit input{
		display: block;
		box-sizing: border-box;
		width: 100%;
		color: #FFF;
		background: #001b88 url(../img/arrow.png) no-repeat 94% center;
		background-size: 7px;
		padding: 16px 0;
		line-height: 1;
		text-align: center;
		text-decoration: none;
		font-size: 1.4rem;
		letter-spacing: 0.01em;
		border: 2px solid #001b88;
		border-radius: 100px;
		-webkit-transition: 0.2s;
		transition: 0.2s;
	}
	.contact-form .link-submit input:hover{
		background: #FFF url(../img/arrow_ov_blue.png) no-repeat 95% center;
		background-size: 7px;
		color: #001b88;
	}
	

}

.wp-pagenavi {
	margin-top: 50px;
	text-align: center;
}
.wp-pagenavi span,
.wp-pagenavi a {
	display: inline-block;
	margin-right: 0.2em;
	padding: 0.6em 1em;
	font-size: 1.5rem;
	font-family: 'Poppins', sans-serif;
	font-weight: 400;
	line-height: 1.4;
	transition: 0.2s;
}
.wp-pagenavi a {
	background: #eee;
	border: 1px solid #eee;
	text-decoration: none;
}
.wp-pagenavi a:hover {
	background: #001b88;
	color: #fff;
}


.intercom-attention{
	background:#fffce3; padding:20px;border:1px solid #ffe837;
}
.intercom-attention a{
	text-decoration: underline;
	font-weight: bold;
	color:#ff6600;
}
.intercom-attention__title{
	 padding:14px 20px; background:#ffe837; border-radius:.5rem;
	 
}
.intercom-attention__title h2{
color:#ff6600; font-size:130%;font-weight:bold;
}
.intercom-attention__title p{
font-weight:bold;
}
@media only screen and (max-width: 768px) {
	.intercom-attention{
	padding:15px;
}
}

.deliverylocker-link p{
	border: 1px solid #ccc;
	padding: 10px 20px;
	border-left: 6px solid #001b88;
	text-decoration: underline;
}
.info-Pabbit{
	width: 100%;
	margin-top: 40px;
}
.info-Pabbit a{
	display: block;
	border: 6px solid #00a8c0;
	background: #FFF url(../img/construction/02_construction_link.png) no-repeat right bottom;
	background-size: 16px;
	box-sizing: border-box;
	padding: 20px 30px;
	-webkit-transition: 0.2s;
	transition: 0.2s;
}
.info-Pabbit a:hover{
	background-color: #e9fcff;
}
.info-Pabbit a dl{
	display: flex;
	flex-wrap: wrap;
}
.info-Pabbit a dt{
	box-sizing: border-box;
	width: 35%;
	padding-right: 5%;
	 display: flex;
  justify-content: center;
  align-items: center;
}
.info-Pabbit a dd{
	width: 65%;
	line-height: 1.8;
}
.info-Pabbit a dd span{
	font-size: 20px;
	color: #00a8c0;
	display: block;
	font-weight: bold;
	line-height: 1.6;
	padding-bottom: 6px;
}
@media only screen and (max-width: 768px) {
	.info-Pabbit{
	width: 100%;
	margin-top: 30px;
}
.info-Pabbit a{
	display: block;
	border: 4px solid #00a8c0;
	padding: 20px;
}

.info-Pabbit a dl{
	display: block;
}
.info-Pabbit a dt{
	box-sizing: border-box;
	width: 100%;
	display: block;
	padding: 0;
}
.info-Pabbit a dt img{
	width: 40%;
	display: block;
	margin: 0 auto;
}
.info-Pabbit a dd{
	width: 100%;
	line-height: 1.6;
	padding-top:20px;
}
.info-Pabbit a dd span{
	font-size: 16px;
	line-height: 1.6;
	padding-bottom: 6px;
}}

.faq-list .faq-item {
	padding: 1em 0;
	border-bottom: 1px dotted #000B75;
	cursor: pointer;
}
.faq-list .faq-item:hover summary {
	color: #0098d2;
}
.faq-list summary::marker {
  display: none;
  content:"";
}
.faq-list summary::-webkit-details-marker {
  display: none;
  content:"";
}
.faq-list summary {
	display: flex;
	justify-content: flex-start;
	gap: 10px;
}
.faq-list summary span {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 1.5em;
	height: 1.5em;
	border-radius: 50%;
	background: #000B75;
	color: #fff;
	flex-shrink: 0;
	flex-grow: 0;
}
.faq-list .faq-item[open] summary {
	color: #000B75;
	font-weight:bold;
}
.faq-list .faq-item[open] summary span {
	font-weight: normal;
}
.faq-list .faq-answer-content p {
	display: flex;
	justify-content: flex-start;
	gap: 10px;
	margin-top: 10px;
}
.faq-list .faq-answer-content p span {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 1.5em;
	height: 1.5em;
	border-radius: 50%;
	background: #1BA7E8;
	color: #fff;
	flex-shrink: 0;
	flex-grow: 0;
}
