@charset "UTF-8";


/* ----------------------------------------------------------------


LAYOUT

----------------------------------------------------------------- */



/*content*/

#contentBodyWrapper{
	margin-top:100px;
}

@media (max-width: 767px) {
	#contentBodyWrapper{
		margin-top:70px;
	}
}

#contentBodyWrapper:has(#titleWrapper){
	padding:0 30px;
}

@media (max-width: 767px) {
	#contentBodyWrapper:has(#titleWrapper){
		padding:0;
	}
}


#contentBodymain{
	max-width: 1700px;
	width: 90%;
	margin:0 auto;
}

/* section

------------------------------------------------*/
section{
	padding-top:70px;
	padding-bottom: 70px;
	border-bottom:1px solid var(--border-gray-color);
}
@media screen and (max-width: 767px) {
	section{
		padding-top:0px;
		padding-bottom: 50px;
		margin-bottom: 50px;
	}
}
section:last-of-type{
	margin-bottom:0;
	border-bottom:none;
}

@media screen and (max-width: 767px) {
	section:last-of-type{
		padding-bottom: 100px;
	}
	section:first-of-type{
		margin-top:50px;
	}
}
section:has(.titleArea){
	display: flex;
}

@media (max-width: 1300px) {
	section:has(.titleArea){
		display: block;
	}
}

section:has(.titleArea) .titleArea{
	width: 25%;
	padding-right:20px;
}
@media (max-width: 767px) {
	section:has(.titleArea) .titleArea{
		padding-right:0;
	}
}
section:has(.titleArea) .contentArea{
	width: 75%;
}

@media (max-width: 767px) {
	section:has(.titleArea) .titleArea,section:has(.titleArea) .contentArea{
		width: 100%;
	}
}
@media (max-width: 1300px) {
	section:has(.titleArea) .titleArea,section:has(.titleArea) .contentArea{
		width: 100%;
	}
}

section.noTitle .contentArea{
	max-width: 1700px;
	width: 90%;
	margin: 0 auto;
}

/* ----------------------------------------------------------------

COMMON PARTS

----------------------------------------------------------------- */

/* h

----------------------------------------------------------------- */


/*MVなし*/
#titleWrapper{
	border-bottom:solid 1px var(--border-gray-color) ;
	margin-bottom:30px;
	padding-left:25px;

}

/*MVあり*/
#titleMvWrapper{
	width: 90%;
	margin:0 auto;
}
#titleMvWrapper .mainVisualArea{
	margin:0 auto;
	max-width: 1500px;
}

#titleMvWrapper .mainVisualArea img{
	height:500px;
	object-fit: cover;
	object-position: center top;
	border-radius:10px;
}
@media (max-width: 767px) {
	#titleMvWrapper .mainVisualArea img{
	height:100%;
	object-position:center center;
	}
}

#titleWrapper .mainTitle,
#titleMvWrapper .mainTitle{
	max-width: 1500px;
	margin: 0 auto;
	padding: 40px 0 40px 40px;
}
#titleMvWrapper .mainTitle h1.h1,
#titleWrapper .mainTitle h1.h1{
	position: relative;
	font-size:2em;
}
@media (max-width: 767px) {
	#titleWrapper .mainTitle,
	#titleMvWrapper .mainTitle{
	max-width: 1500px;
	margin: 0 auto;
	padding: 20px 0 20px 20px;
	}
	#titleMvWrapper .mainTitle h1.h1,
	#titleWrapper .mainTitle h1.h1{
		margin:0 auto;
		text-align: left;
		font-size:1.8em;
	}
}

#titleMvWrapper h1.h1:before,
#titleWrapper h1.h1:before{
	content: "";
	position: absolute;
	top:50%;
	transform: translateY(-50%);
	left:-1em;
	background-color:var(--main-blue-color);
	width: 20px;
	height: 3px; 
}

@media (max-width: 767px) {
	#titleMvWrapper h1.h1:before,
	#titleWrapper h1.h1:before{
		width: 15px;
		height: 2px; 
	}
}


#titleMvWrapper .mainTitle .engTitle,
#titleWrapper .mainTitle .engTitle{
	color:var(--main-blue-color) ;
}



h2.h2{
	position: relative;
	text-align: center;
	font-size:1.5em;
	margin-bottom:30px;
}
h2.long{
	font-size:1.3em;
}
@media (max-width: 767px) {
	h2.h2{
		margin:0 auto 50px auto;
		display: block; 
		text-align: center;
	}
	h2.long{
		font-size:1.5em;
	}
}

h2.h2::after{
	content: ""; 
	position: absolute;
	left: 50%; 
	bottom: -0.5em; 
	width: 2em; 
	height: 2px;
	transform: translateX(-50%); 
    background-color: var(--main-blue-color);
}

h3.h3{
	position: relative;
	font-size:1.5em;
	margin-bottom:30px;
	padding-left:0.8em;
	border-bottom:1px solid var(--border-gray-color);
}
@media (max-width: 767px) {
	h3.h3{
		font-size:1.3em;
	}
}
h3.h3::before{
	content: "";
	position: absolute;
	top:0;
	background-color:var(--border-gray-color) ;
	width:5px;
	height: 100%; 
	vertical-align: middle;
	left:0;
}


h3.h3:first-of-type {
	margin-top: 0;
}




h3.merit{
	font-size:1.5em;
	font-weight: 900;
	margin-bottom:20px;
	text-align: center;
	color: var(--main-ft-color);
	position: relative;
	padding-top: 1.5em;

}


h3.merit::before {
    position: absolute;
    top: 0;
    left: 50%;
	transform: translateX(-50%);
    z-index: 1;
    color: var(--main-blue-color);
    font-size: 1em;
    line-height: 1;
    content: attr(data-word);
    pointer-events: none;
}

h4.h4{
	margin-bottom:10px;
	font-size: 1.1em;
	display: inline-block;
	border-bottom: double 3px var(--border-gray-color);
}
@media (max-width: 767px) {
	h4.h4{
		font-size:1.2em;
	}
}


/*breadCrumb*/
#breadCrumb {
	width: 100%;
	padding: 10px 0;
	border-top: 1px solid var(--border-gray-color);
}

#breadCrumb a{
	color:var(--main-blue-color);
	font-weight: bold;
	text-decoration: none;
}

#breadCrumb a:hover,
#breadCrumb a:focus-visible{
	text-decoration: underline;
}
#breadCrumb ul{
	max-width: 1500px;
	margin: 0 auto;
}

#breadCrumb ul li{
	display:inline;
	position: relative;
	vertical-align: middle;
	display: inline-block;
	padding: 0 0 0 1.3em;
}

#breadCrumb ul li:before{
	content:"";
	position: absolute;
	width: 0.7em;
    height: 1px;
	left:0.2em;
	top:0.6em;
    background-color:var(--main-ft-color); 

}

#breadCrumb ul li:first-child:before{
	content:none;
	padding-right:0px;
	background:none;
}



/* em strong

----------------------------------------------------------------- */
em,strong{font-weight:600;}

strong.red,span.red,em.red{color:#b10707;}

strong.blue,span.blue,em.blue{color:var(--main-blue-color);}

strong.stroke,span.stroke,em.stroke{
	color:#fff;
	text-stroke: 1px var(--main-blue-color);
    -webkit-text-stroke: 1px var(--main-blue-color);
}
strong.line,span.line,em.line{
	background: linear-gradient(transparent 60%, rgb(247 247 123 / 80%) 60%);
}

/* A

----------------------------------------------------------------- */

a.linkEx:after,a.linkPdf:after,a.linkBlank:after,
a span.linkEx:after,a span.linkPdf:after,a span.linkBlank:after{
	content: "";
	width:1.3em;
	height:1.3em;
	background-size:contain;
	padding-left:2em;
	display:inline-block;
	vertical-align:top;
}

a.linkEx:after,
a span.linkEx:after
{
	background: transparent url(image/icon_ex.svg) no-repeat right center;
}

a.linkPdf:after,
a span.linkPdf:after{
	background: transparent url(image/icon_pdf.svg) no-repeat right center;
}


a.linkBlank:after,
a span.linkBlank:after{
	background: transparent url(image/icon_blank.svg) no-repeat right center;
}

a.linkExW:after,a.linkPdfW:after,a.linkBlankW:after,
a span.linkExW:after,a span.linkPdfW:after,a span.linkBlankW:after{
	content: "";
	width:1.3em;
	height:1.3em;
	background-size:contain;
	padding-left:2em;
	display:inline-block;
	vertical-align:top;
}


a.linkExW:after,
a span.linkExW:after
{
	background: transparent url(image/icon_ex_w.svg) no-repeat right center;
}

a.linkPdfW:after,
a span.linkPdfW:after{
	background: transparent url(image/icon_pdf_w.svg) no-repeat right center;
}


a.linkBlankW:after,
a span.linkBlankW:after{
	background: transparent url(image/icon_blank_w.svg) no-repeat right center;
}

/* A

----------------------------------------------------------------- */

.anchorLinkWrap{
	max-width: 1500px;
	margin:20px auto;
}
.anchorLink{
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 10px 0;
	padding-top:20px;
}
@media (max-width: 767px) {
	.anchorLink{
		justify-content: left;
		padding-top:0;
	}
}
.anchorLink li{
	display: inline-block;
	padding-left:3em;
}
@media (max-width: 767px) {
	.anchorLink li{
		padding-left:2em;
	}
}

.anchorLink li a{
	text-decoration:none;
	color: var(--main-ft-color);
	position: relative;
	font-size: 1.1em;
}

.anchorLink li a:hover{
	color: var(--main-blue-color);
	text-decoration: underline;
}

.anchorLink li a::before{
	content: "";
    position: absolute;
    top: 0.2em;
    left: -1em;
    width: 0.5em;
    height: 0.5em;
    border-top: 2px solid var(--main-blue-color) !important;
    border-right: 2px solid var(--main-blue-color) !important;
    transform: rotate(135deg);
}

/* float

----------------------------------------------------------------- */
#contentBodyWrapper .floatLost a{
	position: fixed;
	top:50%;
	transform: translateY(-50%);
	right: 0;
	background-color:var(--main-black-color);
	border: solid 1px #fff;
	color: #fff;
	padding: 15px;
	min-width: none;
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
	text-decoration: none;
	z-index: 8888;
	font-size:1em;
	white-space: nowrap;
	writing-mode: vertical-rl;
    text-orientation: upright;
}

@media screen and (max-width:767px){
	#contentBodyWrapper .floatLost a{
		display: none;
	}	
}

#contentBodyWrapper .floatLost span{
	padding:0.5em 0;
}

#contentBodyWrapper .floatLost img.iconAttention{
	width: 1.5em;
}
#contentBodyWrapper .floatLost img.iconEx{
	width: 1em;
}

#contentBodyWrapper .floatLost a:hover{
	opacity: 0.8;
}


/*category_box*/

.categoryBox,.categoryBox2{
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    position: relative;
    box-sizing: border-box;
}
.categoryBox .titleA,.categoryBox2 .titleA{
	font-size:1.2em;
	margin-bottom:20px;
	padding-bottom:10px ;
    border-bottom:1px solid var(--main-black-color) ;
}
.categoryBox .titleB,.categoryBox2 .titleB{
	position: relative;
	text-align: center;
	font-size:1.5em;
	margin-bottom:20px;
	padding-bottom:10px ;
}

.categoryBox .titleB::after,.categoryBox2 .titleB::after{
	position: absolute;
	content: "";
	left: 50%;
	transform: translateX(-50%);
	bottom: -0.5em;
	width:3em;
	height: 2px;
	background-color: var(--main-black-color);
}


.categoryBox > li,.categoryBox2 > li{
	width: calc(100% / 3 - 16px);
    min-width: 250px;
    text-align: center;
    margin: 8px;
	padding:25px;
	box-shadow: 0px 0px 10px 0px rgba(134,134,134,0.3);
	background-color: #fff;
}

.categoryBox > li,.categoryBox2 > li{
    min-width: 250px;
    text-align: center;
    margin: 8px;
	padding:25px;
	box-shadow: 0px 0px 10px 0px rgba(134,134,134,0.3);
}
.categoryBox > li{
	width: calc(100% / 3 - 16px);
}
.categoryBox2 > li{
	width: calc(100% / 2 - 16px);
}

.categoryBox > li p,.categoryBox2 > li p{
	text-align: left;
}


.categoryBox > li img,.categoryBox2 > li img{
	width:80%;
	margin-bottom: 15px;
}

.categoryBox > li .icon,.categoryBox2 > li .icon{
	width:10%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	min-width:30px ;
}

.categoryBox > .icon img,.categoryBox > .icon img {
	width: 100%;
}

@media (max-width: 767px) {
	.categoryBox,.categoryBox2{
		flex-flow: column;
	}
	.categoryBox > li,.categoryBox2 > li{
		width: 100%;
		margin: 10px 0;
	}
}

/*link_box*/
.linkBox2,.linkBox3{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	position: relative;
	box-sizing: border-box;
}
.linkBox2 > li,.linkBox3 > li{
	min-width:200px;
	text-align: center;
	margin: 8px;
}

.linkBox2 > li{
	width:calc(100% / 2 - 16px);
}
.linkBox3 > li{
	width:calc(100% / 3 - 16px);
}

.linkBox2 > li a,.linkBox3 > li a{
	position: relative;
	padding:25px 40px;
	box-sizing: border-box;
	text-decoration: none;
	display: block;
	color: #333;
	height: 100%;
	background-color: #fff;
	box-shadow: 0px 0px 10px 0px rgba(134,134,134,0.4);
	transition: 0.5s;
}

.linkBox2 > li a::before,.linkBox3 > li a::before{
	content: "";
    position: absolute;
    top: 50%;
	transform: translateY(-50%);
    left: 20px;
    width: 0.5em;
    height: 0.5em;
    border-top: 2px solid var(--main-blue-color) !important;
    border-right: 2px solid var(--main-blue-color) !important;
    transform: rotate(45deg);

}

.linkBox2 > li.linkEx a::after,.linkBox3 > li.linkEx a::after,
.linkBox2 > li.linkPdf a::after,.linkBox3 > li.linkPdf a::after,
.linkBox2 > li.linkBlank a::after,.linkBox3 > li.linkBlank a::after{
	content: "";
	position: absolute;
    top: 50%;
	transform: translateY(-50%);
    right: 20px;
	width:1.3em;
	height:1.3em;
	padding-left:2em;
}

.linkBox2 > li.linkEx a::after,.linkBox3 > li.linkEx a::after{
	background: url(image/icon_ex.svg) no-repeat right center;
}
.linkBox2 > li.linkPdf a::after,.linkBox3 > li.linkPdf a::after{
	background:  url(image/icon_pdf.svg) no-repeat right center;
}
.linkBox2 > li.linkBlank a::after,.linkBox3 > li.linkBlank a::after{
	background: url(image/icon_blank.svg) no-repeat right center;
}

.linkBox2 > li a:hover,
.linkBox2 > li a:focus-visible,
.linkBox3 > li a:hover,
.linkBox3 > li a:focus-visible{
	background-color: #f7f7f7;
	box-shadow: 0px 0px 30px 0px rgba(134,134,134,0.6);
	font-weight: 500;
}

.linkBox2 > li p,.linkBox3 > li p{
	text-align: left;
}
.linkBox2 > li h3,.linkBox3 > li h3{
	font-weight: bold;
	color:#333;
	position: relative;
	margin-bottom:30px;		
	font-size:min(1.3em , 2vw);
}
.linkBox2 > li h3,.linkBox3 > li h3{
	font-size:1.2em;
}

.linkBox2 > li h3:after,.linkBox3 > li h3:after{
	content: '';
	position: absolute;
	left: 50%;
	bottom: -10px;/*線の上下位置*/
	display: inline-block;
	width: 2em;/*線の長さ*/
	height: 1px;/*線の太さ*/
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);/*位置調整*/
	background-color: #333;
	border-radius: 2px;/*線の丸み*/
}

.linkBox2 > li img,.linkBox3 > li img{
	width:auto;
	max-width:100% ;
	margin-bottom: 15px;
}

.linkBox2 > li a:hover img,
.linkBox2 > li a:focus-visible img,
.linkBox3 > li a:hover img,
.linkBox3 > li a:focus-visible img{
	-webkit-transform:scale(1.1);
	transform:scale(1.1) 2s;
	transition: 0.5s;
}

@media (max-width: 767px) {
	.linkBox2 > li,.linkBox3 > li{
		width: 100%;
	}
	
}


/* UL

----------------------------------------------------------------- */

/*linkList*/
.linkList > li a{
	position:relative;
	margin-bottom:1em;
	padding-left: 1em;
	display: inline-block;
}

.linkList > li a:before{
	content:"";
	position:absolute;
	left:0;
	width: 0.5em;
	height: 0.5em;
	border-top: 2pt solid var(--main-blue-color);
	border-right: 2pt solid var(--main-blue-color);
	transform: rotate(45deg);
	top: 0.4em; 
}

/*linkListB*/

.linkListB > li a{
	position:relative;
	margin-bottom:1em;
	padding-left: 1em;
	display: inline-block;
}

.linkListB > li a:before{
	content:"";
	position:absolute;
	left:0;
	width: 0.5em;
	height: 0.5em;
	border-top: 2pt solid var(--main-blue-color);
	border-right: 2pt solid var(--main-blue-color);
	transform: rotate(45deg);
	top: 0.4em; 
}



.linkListB3,.linkListB4{
	width: 100%;
	margin:20px auto;
	display: flex;
	align-items: center;
	justify-content: left;
	flex-wrap: wrap;
}
.linkListB3 > li{
	width:33%;
}
.linkListB4 > li{
	width:25%;
}

.linkListB3 > li a,.linkListB4 > li a{
	position:relative;
	margin-bottom:1em;
	padding-left: 1em;
	display: inline-block;
}

.linkListB3 > li a:before,.linkListB4 > li a:before{
	content:"";
	position:absolute;
	left:0;
	width: 0.5em;
	height: 0.5em;
	border-top: 2pt solid var(--main-blue-color);
	border-right: 2pt solid var(--main-blue-color);
	transform: rotate(45deg);
	border-radius: 1px;
	top: 0.4em; 
}

@media (max-width: 767px) {
	.linkListB3 > li,.linkListB4 > li{
		width:100%;
	}
}



/*numberList*/

.numberList,
.numberList_p,
.numberList_b{
	list-style-type: decimal;
	margin-left:1.5em;
	margin-top:1em;
	margin-bottom:1em;
}

.numberList > li,
.numberList_p > li,
.numberList_b > li{
	padding-bottom:5px;
}

.numberList > span,
.numberList_b > span{
	display: block;
	font-size:1.2em;
	font-weight: 600;
	padding-bottom:0.5em;
	line-height:1.8;
}


.numberList_b > li::marker {
	font-weight: 600;
	font-size:1.3em;
	color:var(--main-blue-color);
	line-height:1;
}

.numberList_p > li::marker {
	content: "(" counter(list-item) ") "; 
	margin-right: 0.5em; 
}

.numberList_c{
	list-style-type: none; 
	counter-reset: list-item; 
	padding-left: 0;
}
  
.numberList_c > li {
	position: relative; 
	padding-bottom: 5px; 
	padding-left: 2em;
}
  
.numberList_c > li::before {
	content: counter(list-item); 
	position: absolute;
	left: 0;
	top: 0;
	width: 1.3em; 
	height: 1.3em;
	border-radius: 50%; 
	border: 1px solid var(--main-black-color);
	color: var(--main-black-color); 
	text-align: center; 
	line-height: 1.3em; 
}

/*attentionList*/
.attentionList{
	margin-top:1em;
	margin-bottom:1em;
}

.attentionList > li{
	position: relative;
	padding-bottom:5px;
	padding-left:1.6em;
}

.attentionList > span{
	display: block;
	font-size:1.1em;
	font-weight: 600;
	padding-bottom:5px;
}

.attentionList > li::before {
	content: "";
	position: absolute;
	top:1px;
	left:0;
	width:1.3em;
	height:1.3em;
	background: url("image/icon_attention_red.svg") center center no-repeat;
	background-size:contain;
}



/*attendList*/
.attendList,.attendList2,.attendList3,.attendList4,.attendList5{
	margin-top:1em;
	margin-bottom: 2em;
}

.attendList >li,.attendList2 > li,.attendList3 > li,.attendList4 > li,.attendList5  >li{
	position:relative;
}

.attendList > li > span,.attendList2 > li > span,.attendList3 > li > span,.attendList4 > li > span,.attendList5 > li > span{
	position:absolute;
	left:0;
	top:0;
}

.attendList > li{	
	padding:0 0 5px 1.1em;
}

.attendList2 > li{	
	padding:0 0 5px 2em;
}

.attendList3 > li{	
	padding:0 0 5px 3em;
}
.attendList4 > li{	
	padding:0 0 5px 4em;
}
.attendList5 > li{	
	padding:0 0 5px 5em;
}


ul.checkList > li{
	position: relative;
	padding-bottom:5px;
	padding-left:1.8em;
}

ul.checkList > li > span{
	display: block;
	font-size:1.1em;
	font-weight: 600;
	padding-bottom:5px;
}

ul.checkList > li::before {
	content: "";
	position: absolute;
	top:0;
	left:0;
	width:1.3em;
	height:1.3em;
	background: url("image/icon_problem_listmark.svg") center center no-repeat;
	background-size:contain;
}


/*logoList_inline*/
.logoList_inline{
	display: flex;
	justify-content:space-around;
	flex-wrap:wrap;
	margin:0 auto 30px auto;
}
@media (max-width: 767px) {
	.logoList_inline{
		justify-content:left;
	}
}
.logoList_inline li{
	text-align: center;
	word-break: keep-all;
	width: auto;
	margin: 10px 0;
}
@media (max-width: 767px) {
	.logoList_inline li{
		width: 50%;
	}
	.logoList_inline li img{
		width:auto;
	}
	
}

/*logoList2*/

.logoList2{
	display: flex;
	justify-content:left;
	flex-wrap:wrap;
	margin:0 auto 30px auto;
}

.logoList2 li{
	text-align: center;
	width: 50%;
	margin: 10px 0;
}

.logoList2 li img{
	width:auto;
	max-width: 100%;
}

@media (max-width: 767px) {
	.logoList2 li{
		width: 50%;
	}
	.logoList2 li img{
		width: 100%;
	}
}


/*logoList3*/

.logoList3{
	display: flex;
	justify-content:left;
	flex-wrap:wrap;
	margin:0 auto 30px auto;
}

.logoList3 li{
	text-align: center;
	width: 33%;
	margin: 10px 0;
}
@media (max-width: 767px) {
	.logoList3 li{
		width: 50%;
	}
	.logoList3 li img{
		width: 100%;
	}
}
.logoList3 li img{
	width:auto;
	max-width: 100%;
}

/*logoList4*/

.logoList4{
	display: flex;
	justify-content:left;
	flex-wrap:wrap;
	margin:0 auto 30px auto;
}

.logoList4 li{
	text-align: center;
	width: 25%;
	margin: 10px 0;
}
@media (max-width: 767px) {
	.logoList4 li{
		width: 50%;
	}
	.logoList4 li img{
		width: 100%;
	}
}
.logoList4 li img{
	width:auto;
	max-width: 100%;
}

/*logoList5*/

.logoList5{
	display: flex;
	justify-content:left;
	flex-wrap:wrap;
	margin:0 auto 30px auto;
}

.logoList5 li{
	text-align: center;
	width: 20%;
	margin: 10px 0;
}
@media (max-width: 767px) {
	.logoList5 li{
		width: 50%;
	}
	.logoList5 li img{
		width: 100%;
	}
}
.logoList5 li img{
	width:auto;
	max-width: 100%;
}

/*newsList*/

#newsWrap li,.newsWrap li{
	display: flex;
	justify-items: center;
	align-items: center;
	padding: 0 45px 0 30px;
	color:var(--main-ft-color);
	height: 100%;
}
#newsWrap li:not(:has(a)) ,.newsWrap li:not(:has(a)) {
	padding:20px 45px 20px 30px;
}

@media (max-width: 767px) {
	#newsWrap li:not(:has(a)) ,.newsWrap li:not(:has(a)) {
		padding: 15px 10px;
	}
	
}

#newsWrap .news a,.newsWrap .news a{
	position: relative;
	padding: 20px 40px 20px 0;
	display: block;
	width: 100%;
	text-decoration: none;
}

@media (max-width: 767px) {
	#newsWrap .news a,.newsWrap .news a{
		padding: 0 25px 0 0;
	}
}

@media (max-width: 767px) {
	#newsWrap li,.newsWrap li {
		display:block;
		padding:0 10px;
	}
}

#newsWrap .day,.newsWrap .day{
	font-weight: bold;
	padding-right: 20px;
	color:var(--main-blue-color);
}

@media (max-width: 767px) {
	#newsWrap .day,.newsWrap .day{
		padding-bottom: 10px;
	}
}

#newsWrap li,.newsWrap li{
	border-bottom:1px solid #f1efef;
}

@media (max-width: 767px) {
	#newsWrap li,.newsWrap li {
		padding: 15px 10px;
	}
}

#newsWrap li a:after,
.newsWrap li a:after {
    content: '';
    position: absolute;
    right: -1px;
    top: calc(60%);
    margin-right: 5px;
    transform: translateY(-50%);
    width: 30px;
    height: 1px;
    background-color:var(--main-blue-color);
}

@media (max-width: 767px) {
	#newsWrap li a:after,.newsWrap li a:after {
		width: 20px;
	}
}
#newsWrap li a:before,.newsWrap li a:before{
	content: '';
	position: absolute;
	top: calc(60% - 3px);
	right: 0;
	margin-right: 5px;
	transform: rotate(30deg);
	width: 10px;
	height: 1.4px;
	background-color:var(--main-blue-color);
}
@media (max-width: 767px) {
	#newsWrap li a:before,.newsWrap li a:before{
		width: 5px;
	}
}
#newsWrap li:hover:has(a) ,.newsWrap li:hover:has(a)  {
	box-shadow: 5px 5px 30px rgba(0, 0, 0, .16);
}


#newsWrap li a:hover::before,
#newsWrap li a:hover::after,
.newsWrap li a:hover::before,
.newsWrap li a:hover::after{
	opacity: 1;
	right:-0.3em;
	transition: 0.3s ease-in-out;

}

/*circleList*/

.circleList{
	margin-top:1em;
	margin-bottom: 1em;
}

.circleList > li{
	position: relative;
	padding-left:1.2em;
	padding-bottom:5px;
}
.circleList > li:before{
	content: "";
	left:0.3em;
	position: absolute;
	width: 0.45em;
	height: 0.45em;
	display:inline-block;
	background-color: var(--main-black-color);
	border-radius:50%; 
	line-height: 1em;
	top: 0.5em;
}
.circleList > span{
	display: block;
	font-weight: 600;
	padding-bottom:0.5em;
}


/* TABLE

----------------------------------------------------------------- */
/*tableA*/
.tableA{
	width:100%;
	margin-bottom:20px;
	border-collapse: collapse;	
}

.tableA th,
.tableA td{
	padding:13px;
	vertical-align: middle;
	border:1px solid var(--border-gray-color);
	border-spacing:5px;
	word-wrap:break-word;
	border-collapse:collapse;	
	background-color: #fff;
}

.tableA th,.tableA td.space{
	background-color:var(--main-gray-color);
	color:var(--main-ft-color);	
	border:1px solid var(--border-gray-color);
}

.tableA th.bgNone{
	background-color:inherit !important;	
	border: none;
	box-shadow: none;
}


.tableA .tableA{
	margin:10px 0;
}

.tableA .bgGray{background-color:#ecebeb;}

.tableA .tableA th,
.tableA .tableA td{
	padding:5px;
}

.tableA .noBorderL{border-left:none!important;}

.tableA .noBorderR{border-right:none!important;}

.tableA .noBorderT{border-top:none!important;}

.tableA .noBorderB{border-bottom:none!important;}

.tableA .borderDotL{border-left:1px dotted var(--main-black-color)!important;}

.tableA .borderDotR{border-right:1px dotted var(--main-black-color)!important;}

.tableA .borderDotT{border-top:1px dotted var(--main-black-color)!important;}

.tableA .borderDotB{border-bottom:1px dotted var(--main-black-color)!important;}

.tableA p,
.tableA ul,
.tableA ol{
	margin-bottom:0;
	padding-bottom:0;
}

/*tableB*/
.tableB{
	width:100%;
	margin-bottom:20px;
	border-collapse: separate;
	border-spacing: 3px;
	box-sizing: border-box;
}

.tableB th,
.tableB td{
	padding:20px;
	vertical-align: middle;
	word-wrap:break-word;
	box-sizing: border-box;
}
.tableB tr td{
	box-shadow: 0px 0px 5px 0px var(--border-gray-color);
	background-color: #fff;
}


.tableB th{
	background-color: var(--main-gray-color);
	box-sizing: border-box;	
}

.tableB th.bdBlack,
.tableB th.bgBlue{	
	color:#fff;
	border: none;
	border-radius: 10px 10px 0 0;
	text-align: center;
	font-size:1.2em;
}

.tableB th.bdBlack span,
.tableB th.bgBlue span{
	background-color: #fff;
	border-radius: 50px;
	display: inline-block;
	padding: 2px 20px;
	margin:0 auto 10px;
	font-size: 0.8em;
	min-width: 150px;
	box-sizing: border-box;
}

.tableB th.bdBlack span{
	color:var(--pale-black-color);
}

.tableB th.bgBlue span{
	color:var(--main-blue-color);
}

.tableB th.bdBlack{
	background-color :var(--pale-black-color);	
}

.tableB th.bgBlue{
	background-color:var(--main-blue-color);	
}

.tableB td.bgNone{
	background-color:inherit !important;	
	border: none;
	box-shadow: none;
}

.tableB tr:last-child{
	border-bottom:none;
}

.tableB .noBorderL{border-left:none;}

.tableB .noBorderR{border-right:none;}

.tableB .noBorderT{border-top:none;}

.tableB .noBorderB{border-bottom:none;}

.tableB .borderDotL{border-left:2px dotted #333;}

.tableB .borderDotR{border-right:2px dotted #333;}

.tableB .borderDotT{border-top:2px dotted #333;}

.tableB .borderDotB{border-bottom:2px dotted #333;}

.tableB p,
.tableB ul,
.tableB ol{
	margin-bottom:0;
	padding-bottom:0;
}

.tableB.sp_1col .title{
	display: none;
}
.scrollWrapTxt{
	display: none;
}
@media (max-width: 767px) {
	.scrollWrapTxt{
		display:flex;
		margin:0.5em 0; 
	}
	.scrollWrapTxt img{
		width:25px;
		height: auto;
		object-fit: contain;
		margin-right:2px;
	}
	.scrollWrap{
        overflow-x: auto;
        width: auto;
	}

	.scrollWrap .tableA{
		width:730px;
	}
	
	.tableB.sp_1col th,.tableB.sp_1col td{
		display: block;
		width: 100%;
	}
	
	.tableB.sp_1col .title{
		padding:5px 20px;
		border-radius: 5px;
		color: #fff;
		font-weight: bold;
		margin-bottom: 10px;
		text-align: left;
		display: block;
	}	
	.tableB.sp_1col .title.bdBlack{
		background-color:var(--pale-black-color);
		padding:3px 20px;
		border-radius: 50px;
	}
	
	.tableB.sp_1col .title.bdBlack span,
	.tableB.sp_1col .title.bdBlue span{
		color:#fff;
	}
	
	.tableB.sp_1col .title.bdBlue{
		background-color:var(--main-blue-color);
		padding:3px 20px;
		border-radius: 50px;
	}
}



/* 配置

----------------------------------------------------------------- */
/*column2*/

.column2{
	max-width: var(--width-inner);
	display: block;
	margin:0 auto ;
	display: flex;
	width:100%;
	align-items: stretch;
	flex-wrap: wrap;
}
	@media (max-width: 767px) {
		.column2{
			display: block;
		}
	}


.column2 > div{
	box-sizing: border-box;
	padding: 15px;
}

	@media (max-width: 767px) {
		.column2 > div{
			width:100%!important;
			display: block;
			padding:0;
		}	
	}

.column2.center{
	display: flex;
	justify-content:center;
}

.column2.vertical{
	display: flex;
	align-items:center;
}

.column2.border > div{
	border-right: 1px solid var(--border-gray-color);
}
.column2.border > div:last-child{
	border: none;
}

@media (max-width: 767px) {
	.column2{
		display: block;
	}
	.column2 > div{
		width:100%!important;
		display: block;
		padding:0;
	}
	.column2.border > div{
		border-right: none;
		border-bottom:  1px solid var(--border-gray-color);
		margin-bottom:30px;
	}

}

/*.column*/
ul.column{
	column-count: 2;
}


/* box

----------------------------------------------------------------- */
/*boxA*/

.boxA{
	padding:25px;
	box-sizing: border-box;
	box-shadow: 0px 0px 10px 0px rgba(134,134,134,0.3);
	margin: 50px 0;
	background-color: #fff;
}
.boxA .titleA{
	border-bottom:1px solid var(--border-gray-color) ;
	font-size: 1.2em;
	display: block;
	margin-bottom:25px;
	padding-bottom:20px;
}
.boxA .titleB{
	position: relative;
	text-align: center;
	font-size: 1.2em;
	margin-bottom:40px;

}
.boxA .titleB::after{
	position: absolute;
	content: "";
	left: 50%;
	transform: translateX(-50%);
	bottom: -0.5em;
	width:3em;
	height: 2px;
	background-color: var(--main-black-color);
}

.boxA.column2 div{
	padding: 1em;
}


/*boxB*/
.boxB {
	width: 100%;
    margin: 30px auto;
    border: 2px solid var(--main-blue-color);
    border-radius: 5px;
    color: var(--main-ft-color);
	background-color: #fff;
}

.boxB .title {
    display: inline-flex;
    align-items: center;
    column-gap: 4px;
    position: relative;
    top: -13px;
    left: 10px;
    margin: 0 7px;
    padding: 0 8px;
    background: #fff;
    color: var(--main-blue-color);
    font-weight: 600;
	font-size: 1.2em;
    vertical-align: top;
}

.boxB .title::before {
    width: 15px;
    height: 7.5px;
    border-bottom: 3px solid var(--main-blue-color);
    border-left: 3px solid var(--main-blue-color);
    transform: rotate(-45deg) translate(2px, -2px);
    content: '';
}

.boxB .content {
    margin: 0;
    padding: 0 1.5em 1em;
}

/*boxC*/

.boxC{
	padding:25px;
	box-sizing: border-box;
    margin: 30px auto;
	border: 2px solid var(--main-red-color);
	border-radius: 5px;
	background-color: #fff;
}

.boxC .title{
	position: relative;
	font-size: 1.2em;
	color: var(--main-red-color);
	display: block;
	margin-bottom:10px;
	padding-left:1.7em;
}

.boxC .title::before {
	content: "";
	position: absolute;
	top:50%;
	transform: translateY(-50%);
	left:0;
	width:1.3em;
	height:1.3em;
	background: url("image/icon_attention_red.svg") center center no-repeat;
	background-size:contain;
}


/*problem*/
.problemWrap{
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    margin:20px auto 50px auto;
}

@media (max-width: 767px) {
    .problemWrap {
        display: block;
    }
}

.problemWrap ul{
    margin-bottom: 0;
}

.problemWrap .beforeBox, .problemWrap .afterBox{
    width: calc(50% - 30px);
    border: 1px solid var(--border-gray-color);
    border-radius: 10px;
    position: relative;
}

.problemWrap .beforeBox{
    position: relative;
}

@media (max-width: 767px) {
    .problemWrap .beforeBox, .problemWrap .afterBox{
        width: 100%;
    }
    .problemWrap .beforeBox {
        margin-bottom: 50px;
    }
}

.problemWrap .beforeBox::after{
    content: "";
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translateY(-50%) translateX(10px);
    width: 45px;
    height: 45px;
    background-image: url('image/icon_problem_arrow.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
@media (max-width: 767px) {
	.problemWrap .beforeBox::after {
		top:auto;
		bottom:0;
		left: 50%;
		transform: translateY(40px) translateX(-50%) rotate(90deg);
		width: 30px;
		height: 30px;
	}
}
.problemWrap .beforeBox .beforeTitle, .problemWrap .afterBox .afterTitle{
    text-align: center;
    padding: 10px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom: 1px solid var(--border-gray-color);
    color: #fff;
}

.problemWrap .beforeBox .beforeTitle {
	background-color:var(--pale-black-color);
}

.problemWrap .afterBox .afterTitle {
	background-color:var(--main-blue-color);
}

.problemWrap .beforeBox .beforeContent, .problemWrap .afterBox .afterContent{
	padding: 10px;
}

/* step featuresBox*/

.featuresWrap,.stepWrap{
	background-color: var(--main-gray-color);
	padding: 25px;
	margin-bottom:30px;
}

@media (max-width: 767px) {
	.featuresWrap,.stepWrap{
		padding: 20px 15px;
	}
}

.stepWrap{
	background-color: var(--main-gray-color);
	padding-left: 50px;
}

.featuresWrap .features > li{
	background-color: #fff;
	padding: 25px;
	margin-bottom:30px;
}

.stepWrap .step > li{
	background-color: #fff;
	padding:25px 25px 25px 50px;
	margin-bottom:30px;
}

.stepWrap .step > li{
	position: relative;
}

.stepWrap .step > li::before {
	content: counter(step-counter, decimal-leading-zero) " "; 
	counter-increment: step-counter; 
	position:absolute;
	top:50%;
	transform: translateY(-50%);
	left:-25px;
	display: inline-block; 
	width: 50px; 
	height:50px;
	line-height: 50px; 
	text-align: center;
	border-radius: 50%; 
	background-color: var(--main-blue-color);
	color: #fff; 
	font-size: 1.5em; 
}
  
.stepWrap .step {
	counter-reset: step-counter; 
}

.featuresWrap .wrapTitle,.stepWrap .wrapTitle{
	text-align: center;
	margin-bottom:15px ;
}

.featuresWrap .wrapTitle .eng,.stepWrap .wrapTitle .eng{
	font-size: 2em;
	font-weight: 100;
	color: var(--main-blue-color);
}

.featuresWrap .wrapTitle .eng::after,.stepWrap .wrapTitle .eng::after{
	content: "";
    display: block; 
    width: 1em; 
    border-bottom: 2px solid var(--main-blue-color); 
    margin: 5px auto 0 auto; 
}

.featuresWrap .readTxt p,.stepWrap .readTxt p{
	padding-bottom: 0;
}

.featuresWrap .readTxt,.stepWrap .readTxt{
	display: flex;
	flex-wrap: wrap;
	justify-content: left;
	align-items: center;
}

.featuresWrap .readTxt.center,.stepWrap .readTxt.center{
	justify-content: center;
	margin-right:0 ;
}

.featuresWrap .readTxt img,.stepWrap .readTxt img{
	max-width:auto;
	margin-left: auto;
}

.featuresWrap .readTxt{
	margin-left:1em;
	margin-bottom:25px;
}

@media (max-width: 767px) {
	.featuresWrap .readTxt{
		margin-left:0;
	}
}

.featuresWrap .readTxt .title{
	color: var(--main-blue-color);
	font-size: 1.8em;
	position: relative;
	padding: 0 0.7em;
	margin-right:2em;
}
@media (max-width: 767px) {
	.featuresWrap .readTxt .title{
		font-size: 1.5em;
		padding: 0 0.8em;
		margin:0 0 10px 0;
		text-align: center;
	}
}

.featuresWrap .subTitle{
	font-size: 1.2em;
	border-bottom:1px solid var(--border-gray-color);
	margin-bottom: 20px;

}

.stepWrap .readTxt .title{
	color: var(--main-blue-color);
	font-size: 1.5em;
	margin-right:2em;
}

@media (max-width: 767px) {
	.featuresWrap .readTxt{
		justify-content: center;
		flex-direction: column;
	}
}

.featuresWrap .readTxt .title::before,
.featuresWrap .readTxt .title::after{
    position: absolute;
    bottom: 0.3em;
    height: 1em;
    content: '';	
}

@media (max-width: 767px) {
	.featuresWrap .readTxt .title::before,
	.featuresWrap .readTxt .title::after{
		height: 65%;
	}
}

.featuresWrap .readTxt .title::before {
    border-left: solid 1px var(--main-black-color);
    left: 0;
    transform: rotate(-30deg);
}

.featuresWrap .readTxt .title::after,.stepWrap .readTxt .title::after {
    border-right: solid 1px var(--main-black-color);
    right: 0;
    transform: rotate(30deg);
}

/* stepWrapB */

.stepWrapB {
	background-color: var(--main-gray-color);
	padding: 25px;
	margin-bottom: 30px;
  }
  
  .stepWrapB .step {
	display: flex;
	position: relative;
	justify-content: left;
	flex-wrap: wrap; 
  }
  
  .stepWrapB .step > li {
	margin: 2%; 
	width: 29%; 
	position: relative;
	padding: 20px;
	text-align: center; 
  }
  
  .stepWrapB .step > li h3 {
	margin: 0; 
	padding: 10px 0; 
	text-align: center; 
	flex-grow: 1; 
  }
  
  .stepWrapB .step > li:not(:last-child)::after {
	content: "";
	position: absolute;
	right: -15px; 
	bottom: 50%;
	transform: translateY(-50%);
	border-top: 15px solid transparent;
	border-bottom: 15px solid transparent;
	border-left: 15px solid #818181; 
  }
  .stepWrapB img{
	width: 50%;
	min-width:100px;
	}
  .stepWrapB .step > li:nth-child(3)::after,.stepWrapB .step > li:nth-child(9)::after,.stepWrapB .step > li:nth-child(12)::after {
	content: none;
  }

  @media (max-width: 767px) {
	.stepWrapB .step > li {
		width:45%;
	}
	.stepWrapB .step > li:nth-child(3)::after,.stepWrapB .step > li:nth-child(9)::after,.stepWrapB .step > li:nth-child(12)::after {
		content: "";
	  }
	
	.stepWrapB .step > li:nth-child(2)::after,.stepWrapB .step > li:nth-child(4)::after,.stepWrapB .step > li:nth-child(6)::after {
		content: none;
	}
	.stepWrapB img{
		width: 50%;
		max-width:180px;
	}
	
  }

/* inquiryArea

----------------------------------------------------------------- */

.inquiryArea{
	display: block;
	text-align: center;
	border-radius: 10px;
	border: 1px solid #333;
}

.inquiryArea .lead{
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	color: #FFFFFF;
	font-weight: 600;
	font-size:1.2em;
	padding:0.5em;
	background-color:var(--main-black-color);
}
.inquiryArea .contact{
	margin: 10px;
	display: flex;
	justify-content: space-between;
}
@media (max-width: 767px) {
	.inquiryArea .contact{
		display: block;
	}
}

.inquiryArea .contactL,
.inquiryArea .contactR{
	padding:20px 30px;
	width: 50%;
}
@media (max-width: 767px) {
	.inquiryArea .contactL,
	.inquiryArea .contactR{
		width: 100%;
		padding:20px 15px;
	}
}
.inquiryArea .contactL{
	margin: auto 0;
	border-right:1px solid var(--border-gray-color);
	font-size: 1.2em;
}
@media (max-width: 767px) {
	.inquiryArea .contactL{
		border:none;
		padding-bottom:0 ;
	}
}

.inquiryArea .number {
	font-size:1.5em;
	font-weight: 600;
	margin: 0 auto;
    display: block;
}

.inquiryArea .tel{ 
	font-size:1.3em;
	font-weight: 600;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}
@media (max-width: 767px) {
	.inquiryArea .tel{ 
		padding-bottom:10px ;
	}
}
.inquiryArea .cate{ 
    background-color: var(--main-ft-color);
    color: #fff;
    font-size: 0.5em;
    border-radius: 3em;
    font-weight: 500;
    display: inline-block;
	width: 10em;
    padding: 2px 10px;
    box-sizing: border-box;
    text-align: 21em;
    margin-right: 10px;
    text-align: center;
    display: block;
}

.inquiryArea .tel a{
	text-decoration: none;
	color:var(--main-ft-color);
}


.inquiryArea .address .tel{
	padding-right:1.5em
}

.inquiryArea .txt{
	margin-top: 20px;
	padding: 0;
	font-size:0.9em;
}

@media (max-width: 767px) {
	.inquiryArea .txt{
		margin-top: 10px;
	}
}

/* btn

----------------------------------------------------------------- */
.btnA,.btnB,.btnB_blank,.btnB_pdf,.btnB_ex{
	margin-bottom:10px;
}

.btnA a ,.btnB a,.btnB_blank a,.btnB_pdf a,.btnB_ex a{
	background: #fff;
	padding:10px 20px;
	box-sizing: border-box;
	position: relative;
	text-align: center;
	width:max-content;
	min-width: 200px;
	display:inline-block;
	padding: 10px 50px 10px 35px;
	color: var(--main-black-color);
	transition: 0.3s ease-in-out;
	font-weight: 600;
	text-decoration: none;
	text-align: center;
	font-size:1em;
}

.btnB a,.btnB_pdf a,.btnB_ex a,.btnB_blank a{
	background: var(--main-black-color);
	color: #fff;
}

.btnA a:hover,.btnA a:focus-visible,
.btnB a:hover,.btnB a:focus-visible,
.btnB_pdf a:hover,.btnB_pdf a:focus-visible,
.btnB_ex a:hover,.btnB_ex a:focus-visible,
.btnB_blank a:hover,.btnB_blank a:focus-visible{
	opacity: 0.8;
}

.btnA a span,.btnB a span,.btnB_pdf a span,.btnB_ex a span,.btnB_blank a span{
	display:inline-block;
}

.btnA a:before,.btnB a:before {
	content: '';
	position: absolute;
	top: calc(50% - 3px);
	right: 0;
	margin-right: 10px;
	transform: rotate(30deg);
	width: 10px;
	height: 1.4px;
	background-color: var(--main-black-color);
}

.btnB a:before {
	background-color: #fff;
}

.btnA a:after,.btnB a:after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    margin-right: 10px;
    transform: translateY(-50%);
    width: 25px;
    height: 1px;
    background-color: var(--main-black-color);
}

.btnB a:after {
    background-color: #fff;
}

.btnA a:hover:before, .btnA a:hover:after,
.btnA a:focus-visible:before, .btnA a:focus-visible:after,
.btnB a:hover:before, .btnB a:hover:after,
.btnB a:focus-visible:before, .btnB a:focus-visible:after{
	opacity: 1;
	right:-0.3em;
	transition: 0.3s ease-in-out;
}

.btnB_pdf a:hover:before, .btnB_pdf a:hover:after,
.btnB_pdf a:focus-visible:before, .btnB_pdf a:focus-visible:after,
.btnB_blank a:hover:before, .btnB_blank a:hover:after,
.btnB_blank a:focus-visible:before, .btnB_blank a:focus-visible:after,
.btnB_ex a:hover:before, .btnB_ex a:hover:after,
.btnB_ex a:focus-visible:before, .btnB_ex a:focus-visible:after{
	opacity: 1;
	right:12px;
	transition: 0.3s ease-in-out;
}


.btnB_pdf a::before{
	content: "";
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	width: 1.5em;
	height: 1.5em;
	background: url("image/icon_pdf_w.svg") center center no-repeat;
	background-size:contain;
}

.btnB_blank a::before{
	content: "";
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	width: 1.5em;
	height: 1.5em;
	background: url("image/icon_blank_w.svg") center center no-repeat;
	background-size:contain;
}


.btnB_ex a::before{
	content: "";
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	width: 1.5em;
	height: 1.5em;
	background: url("image/icon_ex_w.svg") center center no-repeat;
	background-size:contain;
}


@keyframes scale-up {
	from {
	  transform: scale(1);
	}
	to {
	  transform: scale(1.05);
	}
  }

.btn,.btn_pdf,.btn_blank,.btn_ex,.btn_down{
	margin-bottom:10px;
}

.btn a,.btn_pdf a,.btn_blank a,.btn_ex a,.btn_down a{ 
	background-color: #fff;
	padding:10px 3.2em 10px 20px;
	box-sizing: border-box;
	border-radius: 50px;
	border: 1px solid var(--main-blue-color);
	text-decoration: none;
	position: relative;
	width:max-content;
	display:inline-block;
	min-width: 200px;
	transition: 0.3s;
	font-weight: 600;
	text-align: center;
	font-size:1em;
}

.btn a:hover,.btn_pdf a:hover,.btn_blank a:hover,.btn_ex a:hover,.btn_down a:hover,
.btn a:focus-visible,.btn_pdf a:focus-visible,.btn_blank a:focus-visible, .btn_ex a:focus-visible,.btn_down a:focus-visible{
	background-color: var(--main-blue-color);
	color: #fff;
	animation: scale-up 0.5s forwards; 
}

.btn a::before{
	content:"";
	position: absolute;
	right: 20px;
	width: 0.5em;
	height: 0.5em;
	top: 0;
	bottom: 0;
	margin: auto;
	vertical-align: middle;
	border-top: 2px solid var(--main-blue-color);
	border-right: 2px solid var(--main-blue-color);
	transform: rotate(45deg);
}
.btn_down a::before{
	content:"";
	position: absolute;
	right: 20px;
	width: 0.5em;
	height: 0.5em;
	top: calc(50% - 2px);
	margin: auto;
	vertical-align: middle;
	border-top: 2px solid var(--main-blue-color);
	border-right: 2px solid var(--main-blue-color);
	transform: translateY(-50%) rotate(135deg)
}

.btn_pdf a::before{
	content: "";
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	width: 1.5em;
	height: 1.5em;
	background: url("image/icon_pdf.svg") center center no-repeat;
	background-size:contain;
}
.btn_pdf a:hover:before,
.btn_pdf a:focus-visible:before {
	background: url("image/icon_pdf_w.svg") center center no-repeat;
}

.btn_blank a::before{
	content: "";
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	width: 1.5em;
	height: 1.5em;
	background: url("image/icon_blank.svg") center center no-repeat;
	background-size:contain;
}
.btn_blank a:hover:before,
.btn_blank a:focus-visible:before {
	background: url("image/icon_blank_w.svg") center center no-repeat;
}

.btn_ex a::before{
	content: "";
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	width: 1.5em;
	height: 1.5em;
	background: url("image/icon_ex.svg") center center no-repeat;
	background-size:contain;
}
.btn_ex a:hover:before,
.btn_ex a:focus-visible:before {
	background: url("image/icon_ex_w.svg") center center no-repeat;
}

.btn a:hover:before,.btn_down a:hover:before,
.btn a:focus-visible:before,.btn_down a:focus-visible:before{
	  border-top: 2px solid #fff;
	  border-right: 2px solid #fff;
}



.btn.center a,.btn_blank.center a,.btn_ex.center a, .btn_pdf.center a,.btnA.center a,.btnB.center a,.btnB_blank.center a,.btnB_ex.center a,.btnB_pdf.center a{
	display: block;
	margin: 0 auto;
}

@media (max-width: 767px) {
	.btnA a,.btnB a,.btnB_blank a,.btnB_pdf a,.btnB_ex a,
	.btn a ,.btn_blank a,.btn_ex a ,.btn_pdf a{
		width:100% ;
		margin:0 auto;
	}
}

/* accordion

----------------------------------------------------------------- */
/*accordion*/

.accordionQ {
    margin-bottom: 7px;
    border: 1px solid var(--main-blue-color);
    border-radius: 5px;
}

.accordionQ summary {
    display: flex;
    align-items: center;
    position: relative;
    padding: 1em 2em;
    color: var(--main-blue-color);
    font-weight: 600;
    cursor: pointer;
}

.accordionQ summary::-webkit-details-marker {
    display: none;
}

.accordionQ summary::before {
	content: 'Q';
    margin-right: 10px; 
    font-size: 1.5em;
    font-weight: bold;
}

.accordionQ summary::after {
    content: '+';
    position: absolute;
    right: 20px; 
    font-size: 1.5em;
    transition: transform 0.5s; 
}

.accordionQ[open] summary::after {
    content: '−';
    transform: rotate(180deg); 
}

.accordionQ .accordionA {
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: 1em 2em;
    color: var(--main-ft-color);
    transition: transform .5s, opacity .5s;
    display: flex; 
	align-items: center;
}

.accordionQ[open] .accordionA {
    transform: none;
    opacity: 1;
}


.accordionQ .accordionA::before {
    content: 'A';
    margin-right: 10px; 
    font-size: 1.5em;
    font-weight: bold;
}




/* unique
----------------------------------------------------------------- */

/*business_credit*/

.business_lineup h3{
	font-size: 1.6em;
	color: var(--main-ft-color);
	text-align: center;
	padding: 0.5em 0;
	border-top: solid 1px var(--main-ft-color);
	border-bottom: solid 1px var(--main-ft-color);
	margin-bottom: 30px;
}

.business_lineup h4{
	font-size: 1.6em;
	display: block;
	border-bottom:none;
}

.business_lineup .column2{
	width: 80%;
	margin:0 auto;
}

.business_lineup .card_img{
	max-width: 350px;
	width:90%;
}

/*bizpurica*/
.laurelList {
	max-width: 1500px;
	display: flex; 
	justify-content: center; 
	align-items: stretch;
	flex-wrap: wrap;
	padding: 0;
	margin: 30px auto;
  }
  
  .laurelList > li {
	width: 30%;
	min-width: 400px;
	position: relative; 
	display: flex; 
	flex-direction: column;
	justify-content: center;
	padding: 10px 40px; 
	text-align: center;
	font-size: 1.2em;
	margin:20px
  }
  
  .laurelList > li::before,
  .laurelList > li::after {
	content: ''; 
	position: absolute; 
	top: 50%;
	transform: translateY(-50%); 
	width: 60px; 
	height: 6em; 
	background-image: url('image/img_laurel.png'); 
	background-size: contain; 
	background-repeat: no-repeat; 
  }
  
  .laurelList > li::before {
	left: 0; 
  }
  
  .laurelList > li::after {
	right: 0; 
	transform: translateY(-50%) scaleX(-1);
  }

@media (max-width: 767px) {
	.laurelList > li {
		min-width: auto;
		width: 100%;
	}
	.laurelList > li::before {
		left: 0; 
	}
	.laurelList > li::after {
		right:0; 
	}

 }


/*NoticeBox*/

.notice-box-wrapper {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding-top: 40px;
  padding-bottom: 30px;
  box-sizing: border-box;
}

.notice-box-img {
  height: 40px;
  width: auto;
  display: block;
  margin-bottom:5px; 
}

.notice-box-bg {
  background: #D21414;
  border: 1px solid #D21414;
  padding: 15px 30px;
  box-sizing: border-box;
  margin-top: 0; /* 念のため */
}

.notice-box-bg span {
  color: #fff;
  font-weight: bold;
  font-size: 1.5em; /* PC表示用 */
}

.notice-box-txt {
  border: 1px solid #D21414;
  font-size: 100%;
  padding: 20px 30px;
  box-sizing: border-box;
  margin-top: 0; 
  word-break: break-word;
}

@media (max-width: 600px) {
  .notice-box-wrapper {
    padding-left: 20px;
    padding-right: 20px;
    max-width: 100%;
  }

  .notice-box-bg span {
    font-size: 1.3em; /* スマホ表示用 */
  }

  .notice-box-bg,
  .notice-box-txt {
    padding-left: 15px;
    padding-right: 15px;
  }

  .notice-box-img {
    height: 30px;
    width: auto; /* 幅は高さに合わせて自動調整 */
  }
}

@media screen and (max-width: 950px) and (orientation: landscape) {
  .notice-box-wrapper {
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 60px;
  clear: both;
  position: relative;
  z-index: 1;
  margin-top: 20%; /* 任意 */
  }
}


/* Animartion
----------------------------------------------------------------- */
/*==================================================
ふわッ
===================================*/
.fadeIn,.fadeUp,.fadeRight,.fadeLeft{
	animation-duration:1.5s;
	animation-fill-mode:forwards;
	opacity:0;
}

.delay2{
	animation-delay: .5s;
	}
	
.delay3{
	animation-delay: 1s;
}


.fadeDown{
	animation-duration:1.5s;
	animation-fill-mode:forwards;
	opacity:0;
}

.fadeIn{
animation-name:fadeInAnime;
}

@keyframes fadeInAnime{
	from {
	opacity: 0;
	}

	to {
	opacity: 1;
	}
}

.fadeUp{
	animation-name:fadeUpAnime;
}

@keyframes fadeUpAnime{
	from {
	opacity: 0;
		transform: translateY(100px);
	}

	to {
	opacity: 1;
		transform: translateY(0);
	}
}

.fadeDown{
	animation-name:fadeDownAnime;
}

@keyframes fadeDownAnime{
	from {
	opacity: 0;
		transform: translateY(-100px);
	}

	to {
	opacity: 1;
		transform: translateY(0);
	}
}

.fadeRight{
animation-name:fadeRightAnime;
}

@keyframes fadeRightAnime{
	from {
	opacity: 0;
	transform: translateX(100px);
	}

	to {
	opacity: 1;
	transform: translateX(0);
	}
}

.fadeLeft{
animation-name:fadeLeftAnime;
}

@keyframes fadeLeftAnime{
	from {
		opacity: 0;
	transform: translateX(-100px);
	}

	to {
	opacity: 1;
		transform: translateX(0);
	}
}


/*==================================================
じわッ
===================================*/
.blur{
	animation-name:blurAnime;
	animation-duration:1.5s;
	animation-fill-mode:forwards;
}

@keyframes blurAnime{
	from {
	filter: blur(10px);
	transform: scale(1.00);
	opacity: 0;
	}

	to {
		filter: blur(0);
		transform: scale(1);
		opacity: 1;
	}
}
 
.blurTrigger{
	opacity: 0;
}

/*==================================================
くるッ
===================================*/
/* 左へ */
.flipLeft{
	animation-name:flipLeftAnime;
	animation-duration:0.8s;
	animation-fill-mode:forwards;
	perspective-origin:left center;
	opacity:0;
}

@keyframes flipLeftAnime{
	from {
	 transform: perspective(600px) translate3d(0, 0, 0) rotateY(30deg);
	opacity: 0;
	}

	to {
	transform: perspective(600px) translate3d(0, 0, 0) rotateY(0deg);
	opacity: 1;
	}
}
/* 右へ */
.flipRight{
	animation-name:flipRightAnime;
	animation-duration:0.8s;
	animation-fill-mode:forwards;
	perspective-origin:right center;
	opacity:0;
}

@keyframes flipRightAnime{
	from {
	 transform: perspective(600px) translate3d(0, 0, 0) rotateY(-30deg);
	opacity: 0;
	}

	to {
	transform: perspective(600px) translate3d(0, 0, 0) rotateY(0deg);
	opacity: 1;
	}
}
