@charset "utf-8";
/* CSS Document */




/*************************************

#mv

**************************************/

#inner_mv div img {
  width: 358px;
}

@media screen and (max-width: 768px) {
	#inner_mv div img {
		width: 286px;
		margin: 0 auto;
	}
}

@media screen and (max-width: 700px) {

}



/*************************************

#news

**************************************/

#news{margin-bottom: 120px;}

#news h3{
  text-align: center;
  background: url(../img/dot_line.png) left center / 9px repeat-x;
  font-size: 0;
  margin-bottom: 20px;
}
#news h3 img{width: 171px;}

#news .news_inner{margin-bottom: 60px;}
#news .news_inner li{
  border-bottom: 1px solid #f37e00;
  box-sizing: border-box;
  padding: 30px 40px;
  position: relative;
  font-weight: 500;
}
#news .news_inner li::after {
  content: "";
  display: inline-block;
  background: url(../img/arrow.png) top center / contain no-repeat;
  width: 8px;
  height: 18px;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}
#news .news_inner a{color: #000000;}
#news .news_inner a span {margin-right: 30px;}
#news .news_inner a em {
  color: #ffffff;
  font-weight: bold;
  background: #cf3810;
  border-radius: 5px;
  padding: 0 10px;
  margin-left: 10px;
  display: inline-block;
	font-size: 14px;
}

.page_okuri{
  display: flex;
  gap: 12px;
  justify-content: center;
}
.page_okuri li{
  border: 1px solid #f37e00;
  border-radius: 50px;
  box-sizing: border-box;
  color: #f37e00;
}
.page_okuri .active{
	background: #f37e00;
	color: #ffffff;
	
	width: 60px;
	height: 60px;
	border-radius: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.page_okuri a{
	width: 60px;
  height: 60px;
  border-radius: 50px;
  box-sizing: border-box;
  color: #f37e00;
	display: flex;         /* フレックスボックス化 */
  justify-content: center; /* 左右の中央揃え */
  align-items: center;
}

@media screen and (max-width: 1000px) {
	#news h3 img{width: 154px;}
}

@media screen and (max-width: 768px) {
	#news{margin-bottom: 80px;}
	#news h3{margin-bottom: 0px;}
	#news .news_inner{margin-bottom: 40px;}
	#news .news_inner li{padding: 20px 34px 20px 20px;}
	#news .news_inner li::after{right: 14px;}
	#news .news_inner a span{
		margin-right: 0;
		display: block;
	}
	
	.page_okuri a{
		width: 50px;
		height: 50px;
	}
	.page_okuri .active{
		width: 50px;
		height: 50px;
	}
}

/*************************************

#question

**************************************/


#question h3{
  text-align: center;
  background: url(../img/dot_line2.png) left center / 9px repeat-x;
  font-size: 0;
  margin-bottom: 20px;
}
#question h3 img{width: 265px;}

.q_box{
	background: #a1d7dd;
	border-radius: 20px;
	cursor: pointer;
	padding: 26px 40px 26px 100px;
	position: relative;
}
.q_box:hover{opacity: 0.7;}

.a_box{
	background: #faf6ea;
	border-radius: 20px;
	position: relative;
}

.faq-contents-item {margin-bottom: 14px;}

.faq-contents-item-label {
	display: flex;
	margin: 0;
}

.faq-contents-item-label-main {
  width: calc(100% - 2rem);
}

.faq-contents-item-icon {
  width: 2rem;
  position: relative;
}
.faq-contents-item-icon::before, .faq-contents-item-icon::after {
  content: "";
  width: 14px;
  height: 1px;
  background-color: #fff;
  top: 1rem;
  right: 0;
  position: absolute;
  display: block;
  transition: 0.3s;
}
.faq-contents-item-icon::before{
	transform: rotate(45deg);
	right: 10px;
}
.faq-contents-item-icon::after{transform: rotate(-45deg);}

.faq-contents-item-main {
  transition: 0.3s;
  overflow: hidden;
  height: 0;
  opacity: 0;
  visibility: hidden;
  padding-right: 1.4rem;
  padding-left: 1.4rem;
}

.faq-contents-item-input {display: none;}
.faq-contents-item-input:checked + .faq-contents-item-label .faq-contents-item-icon::before {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.faq-contents-item-input:checked + .faq-contents-item-label .faq-contents-item-icon::after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.faq-contents-item-input:checked + .faq-contents-item-label + .faq-contents-item-main {
	height: auto;
	opacity: 1;
	visibility: visible;
	margin-top: 10px;
	padding: 26px 40px 26px 100px;
}

#q1::before{
	content: "";
	width: 21px;
	height: 15px;
	left: 40px;
	background: url(../img/q1.svg) left center no-repeat;
	position: absolute;
	display: block;
	top: 50%;
	transform:translateY(-50%);
}
#q2::before{
	content: "";
	width: 24px;
	height: 16px;
	left: 40px;
	background: url(../img/q2.svg) left center no-repeat;
	position: absolute;
	display: block;
	top: 50%;
	transform:translateY(-50%);
}
#q3::before{
	content: "";
	width: 24px;
	height: 16px;
	left: 40px;
	background: url(../img/q3.svg) left center no-repeat;
	position: absolute;
	display: block;
	top: 50%;
	transform:translateY(-50%);
}
#q4::before{
	content: "";
	width: 24px;
	height: 16px;
	left: 40px;
	background: url(../img/q4.svg) left center no-repeat;
	position: absolute;
	display: block;
	top: 50%;
	transform:translateY(-50%);
}
#q5::before{
	content: "";
	width: 24px;
	height: 16px;
	left: 40px;
	background: url(../img/q5.svg) left center no-repeat;
	position: absolute;
	display: block;
	top: 50%;
	transform:translateY(-50%);
}
#q6::before{
	content: "";
	width: 24px;
	height: 16px;
	left: 40px;
	background: url(../img/q6.svg) left center no-repeat;
	position: absolute;
	display: block;
	top: 50%;
	transform:translateY(-50%);
}
#q7::before{
	content: "";
	width: 24px;
	height: 16px;
	left: 40px;
	background: url(../img/q7.svg) left center no-repeat;
	position: absolute;
	display: block;
	top: 50%;
	transform:translateY(-50%);
}

.a_box::before{
	content: "";
	width: 13px;
	height: 14px;
	left: 44px;
	background: url(../img/a.svg) left center no-repeat;
	position: absolute;
	display: block;
	top: 50%;
	transform:translateY(-50%);
}

@media screen and (max-width: 1000px) {
	#question h3 img{width: 195px;}
}

@media screen and (max-width: 768px) {
	.q_box{
		padding: 20px 20px 20px 56px;
		border-radius: 10px;
	}
	
	#q1::before,
	#q2::before,
	#q3::before,
	#q4::before,
	#q5::before{
		left: 20px;
	}
	.faq-contents-item-icon::before,
	.faq-contents-item-icon::after{
		width: 10px;
	}
	.faq-contents-item-icon::before{right: 7px;}

	.a_box{border-radius: 10px;}
	.faq-contents-item-input:checked + .faq-contents-item-label + .faq-contents-item-main{
		padding: 20px 20px 20px 56px;
	}
	.a_box::before{left: 26px;}
	
	.q_box:hover{opacity: 1;}
	
}

