@charset "utf-8";
.only-pc{
	display: block;
}
.only-sp{
	display: none;
}
button {
   background: none;
   border: none;
   outline: none;
   appearance: none;
   padding: 0;
   cursor: pointer;
   text-align: left;
   color: inherit;
}
body{
	position:relative;
}
/*20241115_ローディング画面用のスタイル↓*/
.wrap{
    opacity: 0; /*ローディングが完了するまでは、見えなくするために0に設定*/
}
.wrap.on{
    opacity: 1;
    transition: 0.2s; /*0.2秒かけてコンテンツ部分が表示*/
}

.loading{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
}/*20241115_ローディング画面用のスタイル↑*/

#Main{
	min-width: 1200px;
	background: none;
}
#Dirpath {
	background-color: #f0f0f0;
	padding-bottom: 7px;
}
.Main_fr{
	width: 100%;
	margin: 0 auto;
}
.Main_fr *{
	color: #464646!important;
}
.Main_fr a:hover{
	color: #222222!important;
	opacity: 1!important;
	text-decoration: underline!important;
    text-underline-offset: 5px!important;
}
.Main_fr .content1{
	width: 100%;
	height: 500px;
	background: url(../images/content1_bg.jpg) no-repeat center center;
	background-size: cover;
	margin: 0;
	position: relative;
}
.Main_fr .content1 .content-inner{
	width: 950px;
	margin: 0 auto;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}
.Main_fr .content1 .content-inner img{
	width: 100%;
	vertical-align: bottom;
}
.Main_fr .content1 .content-inner p{
	width: 100%;
	font-size: 18px;
	color: #fff!important;
	text-align: left;
	margin: 8px 0 0 0;
	font-family: 'Hiragino Kaku Gothic Pro'!important;
}
.Main_fr .content2{
	width: 100%;
	height: 270px;
	background: url(../images/content2_bg.jpg) no-repeat center center;
	background-size: cover;
}
.Main_fr .content2 .content-inner{
	width: 950px;
	height: 100%;
	margin: 0 auto;
	position: relative;
}
.Main_fr .content2 .content-inner .titletxt{
	position: absolute;
	top: 30px;
	left: 200px;
}
.Main_fr .content2 .content-inner .titletxt h3{
	font-size: 24px;
	margin: 0 0 5px 0;
}
.Main_fr .content2 .content-inner .titletxt a{
	display: inline-block;
	margin: 5px 0 0 0;
	padding: 0 36px 0 4px;
	font-size: 14px;
	text-decoration: none;
	position: relative;
	font-weight: bold;
}
.Main_fr .content2 .content-inner .titletxt a span.arrow{
	display: inline-block;
	position: absolute;
	width: 20px;
	margin: 10px;
	top: 1px;
	right: 0;
}
.Main_fr .content2 .content-inner .titletxt a span.arrow::after{
	display: block;
	content: " ";
	height: 2px;
	background-color: #000;
	transition: background-color 0.2s;
}
.Main_fr .content2 .content-inner .titletxt a span.arrow::before{
	display: block;
	content: " ";
	position: absolute;
	top: 0;
	right: 2px;
	transform-origin: right bottom;
	width: 10px;
	height: 2px;
	background-color: #000;
	transform: rotate(45deg);
	transition: background-color 0.2s;
}
.Main_fr .content2 .content-inner .titletxt a:hover span.arrow::after{
	background-color: #12ab89;
}
.Main_fr .content2 .content-inner .titletxt a:hover span.arrow::before{
	background-color: #12ab89;
}
.Main_fr .content3{
	width: 100%;
	height: 270px;
	font-size: 0;
	position: relative;
}
.Main_fr .content3::after{
	display: block;
	content: " ";
	position: absolute;
	width: 50%;
	height: 100%;
	top:0;
	left: 0;
	background: url(../images/content3_bg1.jpg) no-repeat center center;
	background-size: cover;
	z-index: 1;
}
.Main_fr .content3::before{
	display: block;
	content: " ";
	position: absolute;
	width: 50%;
	height: 100%;
	top:0;
	right: 0;
	background: url(../images/content3_bg2.jpg) no-repeat center center;
	background-size: cover;
	z-index: 1;
}
.Main_fr .content3 .content-inner{
	width: 950px;
	height: 100%;
	margin: 0 auto;
	position: relative;
	z-index: 500;
}
.Main_fr .content3 .content-inner .content3-left{
	display: inline-block;
	width: 50%;
	height: 100%;
	position: relative;
}
.Main_fr .content3 .content-inner .content3-right{
	display: inline-block;
	width: 50%;
	height: 100%;
	position: relative;
}
.Main_fr .content3 .content-inner .titletxt{
	position: absolute;
	top: 30px;
	left: 0;
}
.Main_fr .content3 .content-inner .content3-right .titletxt{
	left: 80px;
}
.Main_fr .content3 .content-inner .titletxt h3{
	font-size: 24px;
	margin: 0 0 0 0;
}
.Main_fr .content3 .content-inner .titletxt a{
	display: inline-block;
	margin: 5px 0 0 0;
	padding: 0 36px 0 0;
	font-size: 14px;
	text-decoration: none;
	position: relative;
	font-weight: bold;
}
.Main_fr .content3 .content-inner .titletxt a span.arrow{
	display: inline-block;
	position: absolute;
	width: 20px;
	margin: 10px;
	top: 1px;
	right: 0;
}
.Main_fr .content3 .content-inner .titletxt a span.arrow::after{
	display: block;
	content: " ";
	height: 2px;
	background-color: #000;
	transition: background-color 0.2s;
}
.Main_fr .content3 .content-inner .titletxt a span.arrow::before{
	display: block;
	content: " ";
	position: absolute;
	top: 0;
	right: 2px;
	transform-origin: right bottom;
	width: 10px;
	height: 2px;
	background-color: #000;
	transform: rotate(45deg);
	transition: background-color 0.2s;
}
.Main_fr .content3 .content-inner .titletxt a:hover span.arrow::after{
	background-color: #12ab89;
}
.Main_fr .content3 .content-inner .titletxt a:hover span.arrow::before{
	background-color: #12ab89;
}
.Main_fr .content4{
	width: 100%;
	margin: 160px 0 0 0;
}
.Main_fr .content4 .content-inner{
	width: 950px;
	margin: 0 auto;
}
.Main_fr .content4 .content-inner h4{
	text-align: center;
	margin: 0 0 30px 0;
}
.Main_fr .content4 .content-inner h4 img{
	margin: 0 auto;
}
.Main_fr .content4 .content-inner ul{
	width: 700px;
	list-style: none;
	font-size: 0;
	display: table;
	table-layout: fixed;
	border-collapse: collapse;
	margin: 60px auto 0 auto;
}
.Main_fr .content4 .content-inner ul:nth-child(1){
	margin-top: 0;
}
.Main_fr .content4 .content-inner ul li:nth-child(1){
	width: 182px;
	display: table-cell;
	vertical-align: top;
	border-right: solid 1px #12ab89;
	box-sizing: border-box;
}
.Main_fr .content4 .content-inner ul li:nth-child(1) img{
    width: 183px;
    height: 90px;
}
.Main_fr .content4 .content-inner ul li:nth-child(2){
	width: 516px;
	display: table-cell;
	vertical-align: middle;
	font-size: 0;
}
.Main_fr .content4 .content-inner ul.col1 li:nth-child(2) .col{
	width: 100%;
	display: inline-block;
	padding: 0;
	vertical-align: top;
}
.Main_fr .content4 .content-inner ul.col1 li:nth-child(2) .colfr{
	display: inline-block;
	width: 258px;
	vertical-align: top;
}
.Main_fr .content4 .content-inner ul.col1 li:nth-child(2) .colfr.long{
	width: 516px;
}
.Main_fr .content4 .content-inner ul.col1 li:nth-child(2) .colfr-a-c{
	width: 258px;
	overflow: hidden;
	display: none;
}
.Main_fr .content4 .content-inner ul.col1 li:nth-child(2) .colfr-a{
	display: block;
	margin: 5px 0 5px 0;
	padding: 0 20px 0 32px;
	font-size: 14px;
	text-decoration: none;
	position: relative;
	line-height: 1.4em;
	font-weight: bold;
	overflow: visible;
	width: 258px;
	color: #787878!important;
	cursor: pointer;
}
.Main_fr .content4 .content-inner ul.col1 li:nth-child(2) a{
	display: block;
	margin: 5px 0 5px 0;
	padding: 0 20px 0 32px;
	font-size: 14px;
	text-decoration: none;
	position: relative;
	line-height: 1.4em;
	font-weight: bold;
}
/*
.Main_fr .content4 .content-inner ul.col1 li:nth-child(2) .colfr-a-c a{
	display:none;
}
.Main_fr .content4 .content-inner ul.col1 li:nth-child(2) .colfr-a-c.active a {
    display: block;
}
*/
.Main_fr .content4 .content-inner ul.col1 li:nth-child(2) .pdfbtn::after{
	margin-left: 5px;
    width: 16px;
    content: "";
    height: 17px;
    position: absolute;
    background-image: url(../images/icon_pdf.png);
}
.Main_fr .content4 .content-inner ul li:nth-child(2) a span.arrow{
	display: inline-block;
	position: absolute;
	width: 5px;
	margin: 10px 0 0 16px;
	vertical-align: top;
	top: -1px;
	right: 12px;
}
.Main_fr .content4 .content-inner ul li:nth-child(2) a span.arrow::after{
	display: block;
	content: " ";
	position: absolute;
	top: 0;
	right: 2px;
	transform-origin: right bottom;
	width: 7px;
	height: 2px;
	background-color: #000;
	transform: rotate(-45deg);
	transition: background-color 0.2s;
}
.Main_fr .content4 .content-inner ul li:nth-child(2) a span.arrow::before{
	display: block;
	content: " ";
	position: absolute;
	top: 0;
	right: 2px;
	transform-origin: right bottom;
	width: 9px;
	height: 2px;
	background-color: #000;
	transform: rotate(45deg);
	transition: background-color 0.2s;
}
.Main_fr .content4 .content-inner ul li:nth-child(2) a:hover span.arrow::after{
	background-color: #12ab89;
}
.Main_fr .content4 .content-inner ul li:nth-child(2) a:hover span.arrow::before{
	background-color: #12ab89;
}
.Main_fr .content4 .content-inner ul li:nth-child(2) .colfr-a span.arrow{
	display: inline-block;
	position: absolute;
	width: 5px;
	margin: 10px 0 0 16px;
	vertical-align: top;
	top: -1px;
	right: 18px;
}
.Main_fr .content4 .content-inner ul li:nth-child(2) .colfr-a span.arrow::after{
	content: " ";
    position: absolute;
    top: 0;
    left: 0;
    width: 12px;
    height: 2px;
    background-color: #000;
    transition: all 0.2s;
	transform:rotate(90deg);
	transform-origin:center;
}
.Main_fr .content4 .content-inner ul li:nth-child(2) .colfr-a.active span.arrow::after{
	content: " ";
    position: absolute;
    top: 0;
    left: 0;
    width: 12px;
    height: 2px;
    background-color: #000;
    transform:rotate(0deg);
    transition: all 0.2s;
}
.Main_fr .content4 .content-inner ul li:nth-child(2) .colfr-a span.arrow::before{
	content: " ";
    position: absolute;
    top: 0;
    left: 0;
    width: 12px;
    height: 2px;
    background-color: #000;
    transform: unset;
    transition: background-color 0.2s;
}
.Main_fr .content4 .content-inner ul li:nth-child(2) .colfr-a:hover span.arrow::after{
	background-color: #12ab89;
}
.Main_fr .content4 .content-inner ul li:nth-child(2) .colfr-a:hover span.arrow::before{
	background-color: #12ab89;
}
.Main_fr .content5{
	width: 100%;
	margin: 90px 0 120px 0;
	padding: 20px 0 20px 0;
}
.Main_fr .content5 .content-inner{
	width: 950px;
	margin: 0 auto;
	position: relative;
}
.Main_fr .content5 .content-inner .content-link{
	width: 620px;
	margin: 0 auto;
	position: relative;
	font-size: 0;
	text-align: center;
}
.Main_fr .content5 .content-inner .content-link .table{
	width: 620px;
	display:table;
	margin-top:50px;
}
.Main_fr .content5 .content-inner .content-link .table:first-child{
	margin-top:0px;
}
.Main_fr .content5 .content-inner .content-link .table .cell{
	width: 280px;
	display:table-cell;
	margin-bottom:10px;
}
.Main_fr .content5 .content-inner .content-link .table .cell .line{
	width: 100%;
	border-top: solid 1px #969696;
	border-bottom: solid 1px #969696;
}
.Main_fr .content5 .content-inner .content-link .table .cell:nth-child(2n){
	padding-left:60px;
}
.Main_fr .content5 .content-inner .content-link .table .cell img{
	width: 100%;
}
.Main_fr .content5 .content-inner .content-link .table .cell a{
	display: inline-block;
	width: 280px;
	height: 40px;
	position: relative;
	margin:25px 0 20px 0;
}
.Main_fr .content5 .content-inner .content-link .table .cell a::after{
	display: block;
	content: " ";
	width: 100%;
	height: 2px;
	background-color: #12ab89;
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 1;
	transition: height 0.2s;
}
.Main_fr .content5 .content-inner .content-link .table .cell a:hover::after{
	height: 100%;
}
.Main_fr .content5 .content-inner .content-link .table .cell a span{
	width: 100%;
	display: inline-block;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	font-size: 12px;
	font-weight: bold;
	line-height: 1.4em;
	color: #000;
	text-align: center;
	z-index: 500;
	transition: color 0.2s;
}
.Main_fr .content5 .content-inner .content-link .table .cell a .pdfbtn::after {
	margin-left: 5px;
	width: 16px;
	content: "";
	height: 17px;
	position: absolute;
	background-image: url(../images/icon_pdf.png);
}
.Main_fr .content5 .content-inner .content-link .table .cell a:hover span{
	color: #fff!important;
}
.Main_fr .content5 .content-inner .content-link .table .cell p{
	text-align: left;
	width: 100%;
	display: inline-block;
	font-size: 14px;
	line-height: 1.6;
	color:#464646;
	padding-bottom:25px;
}
.Main_fr .content6{
	width: 100%;
    margin: 100px 0 0 0;
    padding-bottom: 120px;
}
.Main_fr .content6 .content-inner{
	width: 950px;
	margin: 0 auto;
}
.Main_fr .content6 .content-inner h5{
	font-size: 28px;
    font-weight: 400;
	text-align: center;
	margin: 0 0 30px 0;
}
.Main_fr .content6 .content-inner ul{
	width: 100%;
	list-style: none;
	font-size: 0;
	border-top: solid 1px #f0f0f0;
}
.Main_fr .content6 .content-inner ul:first-of-type{
	border: none;
}
.Main_fr .content6 .content-inner ul li:nth-child(1){
	width: 220px;
	display: inline-block;
	vertical-align: middle;
	padding: 14px 0 14px 0;
}
.Main_fr .content6 .content-inner ul li:nth-child(1) img{
	margin: 0 auto;
}
.Main_fr .content6 .content-inner ul li:nth-child(2){
	width: 730px;
	display: inline-block;
	vertical-align: middle;
	padding: 18px 0 18px 0;
}
.Main_fr .content6 .content-inner ul li:nth-child(2) h6{
	font-size: 14px;
	font-weight: bold;
	color: #464646;
}
.Main_fr .content6 .content-inner ul li:nth-child(2) h6 sup{
    font-size: 8px;
    vertical-align: top;
	position: relative;
	top: 0;
}
/* 20221117追加↓ */
.Main_fr .content6 .content-inner ul li:nth-child(1) p{
	font-size: 8px;
	text-align: center;
}
.Main_fr .content6 .content-inner ul li:nth-child(2) dl{
	font-size: 14px;
	font-weight: 500;
	color: #464646;
	padding: 0;
	position: relative;
	margin: 8px 0 0 0;
}
.Main_fr .content6 .content-inner ul li:nth-child(2) dt{
	float: left;
	width: 2.5em;
}
.Main_fr .content6 .content-inner ul li:nth-child(2) dd{
	padding-left: 2.5em;
}
/* 20221117追加↑ */
/*動画popup追加　20240228*/
.popup{
	display:none;
}
.popup .popcon{
	display:none;  
}
.popup .popcon iframe{
	display:none;    
}
.popup .popcon a{
	display:none;  
}
.popup.active{
	display:block;
	width: 100vw;
    height: calc(100vh + 150px);
    background-color: rgba(0,0,0,0.5);
    z-index: 600;
    position: absolute;
    position: fixed;
}
.popup.active .popcon{
	display:block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50%;
    transform: translate(-50% , -50%);
}
.popup.active .popcon iframe{
	display:block;
    height:28.1vw;
}
.popup.active .popcon a{
    display:block;
	padding:10px 20px;
	background-color: #fff;
	margin-top:30px;
	color:#000;
	font-size:16px;
	font-weight:700;
	text-decoration: none;
	text-align: center;
}
/* 20240228追加↑ */
@media screen and (max-width: 667px) {
	.only-pc{
		display: none;
	}
	.only-sp{
		display: block;
	}
	#Main{
		min-width: 100%;
	}
	#Main, #Dirpath {
		background: none;
	}
	.Main_fr{
		width: 100%;
		margin: 0 auto;
	}
	.Main_fr *{
		color: #464646!important;
	}
	.Main_fr a:hover{
		opacity: 1!important;
	}
	.Main_fr .content1{
		width: 100%;
		height: 80vw;
		background: url(../images/content1_bg_sp.jpg) no-repeat center center;
		background-size: cover;
		margin: 18vw 0 0 0;
		position: relative;
	}
	.Main_fr .content1 .content-inner{
		width: 100%;
		margin: 0 auto;
		position: absolute;
		top: 30vw;
		left: 50%;
		transform: translateX(-50%);
	}
	.Main_fr .content1 .content-inner img{
		width: 90%;
		vertical-align: bottom;
		margin: 0 auto;
	}
	.Main_fr .content1 .content-inner p{
		width: 100%;
		font-size: 18px;
		color: #fff!important;
		text-align: center;
		margin: 10px 0 0 0;
	font-family: 'Hiragino Kaku Gothic Pro'!important;
	}
	
	.Main_fr .content2{
		width: 100%;
		height: 94vw;
		background: url(../images/content2_bg_sp.jpg) no-repeat center center;
		background-size: cover;
	}
	.Main_fr .content2 .content-inner{
		width: 100%;
		height: 100%;
		margin: 0 auto;
		position: relative;
	}
	.Main_fr .content2 .content-inner .titletxt{
		width: 90%;
		margin: 0 auto 0 auto;
		position: relative;
		top: 10vw;
		left: 0;
		transform: none;
	}
	.Main_fr .content2 .content-inner .titletxt h3{
		font-size: 22px;
		line-height: 1.4em;
		margin: 0 0 22px 0;
	}
	.Main_fr .content2 .content-inner .titletxt a{
		display: inline-block;
		margin: 5px 0 0 0;
		padding: 0 50px 0 4px;
		font-size: 15px;
		text-decoration: none;
		position: relative;
		font-weight: bold;
	}
	.Main_fr .content2 .content-inner .titletxt a span.arrow{
		display: inline-block;
		position: absolute;
		width: 26px;
		margin: 10px;
		top: 6px;
		right: 0;
	}
	.Main_fr .content2 .content-inner .titletxt a span.arrow::after{
		display: block;
		content: " ";
		height: 2px;
		background-color: #000;
		transition: background-color 0.2s;
	}
	.Main_fr .content2 .content-inner .titletxt a span.arrow::before{
		display: block;
		content: " ";
		position: absolute;
		top: 0;
		right: 2px;
		transform-origin: right bottom;
		width: 16px;
		height: 2px;
		background-color: #000;
		transform: rotate(45deg);
		transition: background-color 0.2s;
	}
	.Main_fr .content2 .content-inner .titletxt a:hover span.arrow::after{
		background-color: #12ab89;
	}
	.Main_fr .content2 .content-inner .titletxt a:hover span.arrow::before{
		background-color: #12ab89;
	}
	.Main_fr .content3{
		width: 100%;
		height: inherit;
		font-size: 0;
		position: relative;
	}
	.Main_fr .content3::after{
		display: none;
	}
	.Main_fr .content3::before{
		display: none;
	}
	.Main_fr .content3 .content-inner{
		width: 100%;
		height: inherit;
		margin: 0 auto;
		position: relative;
		z-index:inherit;
	}
	.Main_fr .content3 .content-inner .content3-left{
		display: inline-block;
		width: 100%;
		height: 94vw;
		background: url(../images/content3_bg1_sp.jpg) no-repeat center center;
		background-size: cover;
		position: relative;
	}
	.Main_fr .content3 .content-inner .content3-right{
		display: inline-block;
		width: 100%;
		height: 94vw;
		background: url(../images/content3_bg2_sp.jpg) no-repeat center center;
		background-size: cover;
		position: relative;
	}
	.Main_fr .content3 .content-inner .titletxt{
		width: 90%;
		margin: 0 auto 0 auto;
		position: relative;
		top: 10vw;
		left: 0;
		transform: none;
	}
	.Main_fr .content3 .content-inner .content3-right .titletxt{
		left: inherit;
	}
	.Main_fr .content3 .content-inner .titletxt h3{
		font-size: 22px;
		line-height: 1.4em;
		margin: 0 0 22px 0;
	}
	.Main_fr .content3 .content-inner .titletxt a{
		display: inline-block;
		margin: 5px 0 0 0;
		padding: 0 50px 0 0;
		font-size: 15px;
		text-decoration: none;
		position: relative;
		font-weight: bold;
	}
	.Main_fr .content3 .content-inner .titletxt a span.arrow{
		display: inline-block;
		position: absolute;
		width: 26px;
		margin: 10px;
		top: 6px;
		right: 0;
	}
	.Main_fr .content3 .content-inner .titletxt a span.arrow::after{
		display: block;
		content: " ";
		height: 2px;
		background-color: #000;
		transition: background-color 0.2s;
	}
	.Main_fr .content3 .content-inner .titletxt a span.arrow::before{
		display: block;
		content: " ";
		position: absolute;
		top: 0;
		right: 2px;
		transform-origin: right bottom;
		width: 16px;
		height: 2px;
		background-color: #000;
		transform: rotate(45deg);
		transition: background-color 0.2s;
	}
	.Main_fr .content3 .content-inner .titletxt a:hover span.arrow::after{
		background-color: #12ab89;
	}
	.Main_fr .content3 .content-inner .titletxt a:hover span.arrow::before{
		background-color: #12ab89;
	}
	.Main_fr .content4{
		width: 100%;
		margin: 64px 0 0 0;
	}
	.Main_fr .content4 .content-inner{
		width: 90%;
		margin: 0 auto;
	}
	.Main_fr .content4 .content-inner h4{
		text-align: center;
		margin: 0 0 60px 0;
	}
	.Main_fr .content4 .content-inner h4 img{
		margin: 0 auto;
	}
	.Main_fr .content4 .content-inner ul{
		width: 100%;
		list-style: none;
		font-size: 0;
	}
	.Main_fr .content4 .content-inner ul li:nth-child(1){
		width: 100%;
		display: inline-block;
		vertical-align: top;
		border:none;
	}
	.Main_fr .content4 .content-inner ul li:nth-child(1) img{
		margin: 0 auto;
		width: inherit;
		height: inherit;
	}
	.Main_fr .content4 .content-inner ul li:nth-child(2){
		width: 100%;
		display: inline-block;
		vertical-align: top;
		font-size: 0;
		margin: 10px 0 0 0;
	}
	.Main_fr .content4 .content-inner ul.col1 li:nth-child(2) .col{
		width: 100%;
		display: inline-block;
		border-left: none;
		padding: 0;
		vertical-align: top;
		text-align: center;
	}
	.Main_fr .content4 .content-inner ul.col1 li:nth-child(2) .colfr{
		display: inline-block;
		width: 100%;
	}
	.Main_fr .content4 .content-inner ul.col1 li:nth-child(2) .colfr-a{
		cursor: pointer;
		overflow: visible;
		display: inline-block;
		margin: 20px auto 0 auto;
		padding: 0 30px 0 0;
		font-size: 16px;
		text-decoration: none;
		position: relative;
		line-height: 1.4em;
		font-weight: bold;
		width: auto;
		
	}
	.Main_fr .content4 .content-inner ul.col1 li:nth-child(2) .colfr-a.active{
		overflow: visible;
		width: auto;
	}
	.Main_fr .content4 .content-inner ul.col1 li:nth-child(2) .colfr-a-c{
		margin:0 auto;
	}
	.Main_fr .content4 .content-inner ul.col1 li:nth-child(2) .colfr-a-c.active {
		overflow: visible;
	}
	.Main_fr .content4 .content-inner ul.col1 li:nth-child(2) .colfr-a-c.active a {
		display: block;
	}
	.Main_fr .content4 .content-inner ul li:nth-child(2) .colfr-a span.arrow{
		display: inline-block;
		position: absolute;
		width: 15px;
		height: 22px;
		margin: 10px 0 10px 16px;
		top: 50%;
		right: 0;
		transform: translateY(-50%);
	}
	.Main_fr .content4 .content-inner ul li:nth-child(2) .colfr-a span.arrow::before {
		content: " ";
		position: absolute;
		top: 0;
		left: 0;
		width: 18px;
		height: 2px;
		background-color: #000;
		transform: unset;
		transition: background-color 0.2s;
	}
	.Main_fr .content4 .content-inner ul li:nth-child(2) .colfr-a span.arrow::after {
		content: " ";
		position: absolute;
		top: 0;
		left: 0;
		width: 18px;
		height: 2px;
		background-color: #000;
		transition: all 0.2s;
		transform: rotate(90deg);
		transform-origin: center;
	}
	.Main_fr .content4 .content-inner ul.col1 li:nth-child(2) .colfr-n{
		display: none;
	}
	.Main_fr .content4 .content-inner ul.col1 li:nth-child(2) .colfr-n.active{
		display: inline-block;
		width: 100%;
	}
	.Main_fr .content4 .content-inner ul.col1 li:nth-child(2) .colfr-n{
		display: inline-block;
		width: 100%;
	}
	.Main_fr .content4 .content-inner ul.col1 li:nth-child(2) .colfr.long{
		width: 100%;
	}
	.Main_fr .content4 .content-inner ul.col1 li:nth-child(2) a{
		display: inline-block;
		margin: 20px 0 0 0;
		padding: 0 30px 0 0;
		font-size: 16px;
		text-decoration: none;
		position: relative;
		line-height: 1.4em;
		font-weight: bold;
	}
	.Main_fr .content4 .content-inner ul.col1 li:nth-child(2) .pdfbtn{
		padding: 0 45px 0 0;
	}
	.Main_fr .content4 .content-inner ul.col1 li:nth-child(2) .pdfbtn::after{
		margin-left: 5px;
		margin-right: 10px;
	}
	.Main_fr .content4 .content-inner ul li:nth-child(2) a span.arrow{
		display: inline-block;
		position: absolute;
		width: 15px;
		height: 22px;
		margin: 10px 0 10px 16px;
		top: 50%;
		right: 0;
		transform: translateY(-50%);
	}
	.Main_fr .content4 .content-inner ul li:nth-child(2) .pdfbtn span.arrow{
		margin: 10px 0 10px 25px;
	}
	.Main_fr .content4 .content-inner ul li:nth-child(2) a span.arrow::after{
		display: block;
		content: " ";
		position: absolute;
		top: 0;
		right: 2px;
		transform-origin: right bottom;
		width: 12px;
		height: 2px;
		background-color: #000;
		transform: rotate(-45deg);
		transition: background-color 0.2s;
	}
	.Main_fr .content4 .content-inner ul li:nth-child(2) a span.arrow::before{
		display: block;
		content: " ";
		position: absolute;
		top: 0;
		right: 2px;
		transform-origin: right bottom;
		width: 14px;
		height: 2px;
		background-color: #000;
		transform: rotate(45deg);
		transition: background-color 0.2s;
	}
	.Main_fr .content4 .content-inner ul li:nth-child(2) a:hover span.arrow::after{
		background-color: #12ab89;
	}
	.Main_fr .content4 .content-inner ul li:nth-child(2) a:hover span.arrow::before{
		background-color: #12ab89;
	}
	.Main_fr .content5{
		width: 100%;
		margin: 70px 0 70px 0;
		padding: 30px 0 30px 0;
	}
	.Main_fr .content5 .content-inner{
		width: 90%;
		margin: 0 auto;
		position: relative;
	}
	.Main_fr .content5 .content-inner .content-link{
		width: 100%;
		margin: 0 auto;
		position: relative;
		font-size: 0;
	}
	.Main_fr .content5 .content-inner .content-link .table{
		display:block;
		width:100%;
	}
	.Main_fr .content5 .content-inner .content-link .table .cell{
		display:block;
		width:100%;
		margin-bottom: 50px;
	}
	.Main_fr .content5 .content-inner .content-link .table .cell p {
		padding: 0 0 30px 0;
	}
	.Main_fr .content5 .content-inner .content-link .table .cell:nth-child(2n){
		padding:0;
	}
	.Main_fr .content5 .content-inner .content-link .table .cell a{
		display: inline-block;
		width: 100%;
		height: inherit;
		position: relative;
		margin: 30px 0;
	    padding: 10px 0;
	}
	.Main_fr .content5 .content-inner .content-link .table .cell a::after{
		display: block;
		content: " ";
		width: 100%;
		height: 2px;
		background-color: #12ab89;
		position: absolute;
		left: 0;
		bottom: 0;
		z-index: 1;
		transition: height 0.2s;
	}
	.Main_fr .content5 .content-inner .content-link .table .cell a:hover::after{
		height: 100%;
	}
	.Main_fr .content5 .content-inner .content-link .table .cell a span{
		width: 100%;
		display: inline-block;
		position: relative;
		top: 0;
		left: 0;
		transform: none;
		font-size: 16px;
		font-weight: bold;
		line-height: 1.4em;
		color: #000;
		text-align: center;
		z-index: 500;
		transition: color 0.2s;
	}
	.Main_fr .content5 .content-inner .content-link .table .cell a:hover span{
		color: #fff!important;
	}
	.Main_fr .content6{
		width: 100%;
		margin: 100px 0 0 0;
		padding-bottom: 36px;
	}
	.Main_fr .content6 .content-inner{
		width: 90%;
		margin: 0 auto;
	}
	.Main_fr .content6 .content-inner h5{
		font-size: 22px;
		font-weight: 400;
		text-align: center;
		margin: 0 0 30px 0;
		line-height: 1.4em;
	}
	.Main_fr .content6 .content-inner ul{
		width: 100%;
		list-style: none;
		font-size: 0;
		border-top: solid 1px #f0f0f0;
	}
	.Main_fr .content6 .content-inner ul:nth-of-type(1){
		border: none!important;
	}
	.Main_fr .content6 .content-inner ul li:nth-child(1){
		width: 100%;
		display: inline-block;
		vertical-align: middle;
		padding: 28px 0 28px 0;
	}
	.Main_fr .content6 .content-inner ul li:nth-child(1) img{
		margin: 0 auto;
	}
	.Main_fr .content6 .content-inner ul li:nth-child(2){
		width: 100%;
		display: inline-block;
		vertical-align: middle;
		padding: 0 0 28px 0;
	}
	.Main_fr .content6 .content-inner ul li:nth-child(2) h6{
		font-size: 18px;
		font-weight: bold;
		color: #464646;
		text-align: center;
		line-height: 1.4em;
	}
	.Main_fr .content6 .content-inner ul li:nth-child(2) h6 sup{
		font-size: 8px;
		vertical-align: top;
		position: relative;
		top: -4px;
	}
	/* 20240228追加 動画popup追加*/
	.popup.active {
		display:block;
		height: calc(100vh - 18vw);
	}
	.popup.active .popcon {
		display:block;
		width:90%;
	}
	.popup.active .popcon iframe{
		display:block;
		height:51vw!important;
	}
	/*↑ 動画popup追加*/
}

/* 202205追加*/
.sup {
	vertical-align: super !important;
	font-size: 75.5% !important;
}