/*-----
* basic-style.css ver1.0.0
-----*/
/***** variable *****/
:root{
	--basic-font-size:16px;
	--sans-font:"Noto Sans JP", sans-serif;
	--serif-font:"Noto Serif JP", serif;
	--key-color:#464646;
	--key-color-2:#e99a43;
	--key-color-3:#585253;
	--key-color-4:#080808;
	--key-color-5:#f6921e;
	--key-color-6:#484243;
	--key-color-7:#F59220;
	--border-color:#707070;
	--clr-bg-brown4: #f6f5f3;
}
/***** common *****/
html,body{
	font-size:var(--basic-font-size, 16px);
	font-family:var(--serif-font);
	font-style: normal;
	color:#000;
}
body{
	background-color: unset;
}
img{
	max-width: 100%;
}
h1,
h2,
h3,
h4,
h5,
h6{
	margin: 0;
}
h4,
h5,
h6{
	font: inherit;
}
ul,
ol{
	margin: 0;
	padding: 0;
	list-style: none;
}
.basic-box p,
.basic-box h1,
.basic-box h2,
.basic-box h3,
.basic-box h4,
.basic-box h5,
.basic-box h6{
	margin:0;
}
.icon-size img{
	width:calc(var(--basic-font-size) * 1.5);
}
.basic-box.bg-color-w{
	background-color: #fff;
}
.mt1,
.basic-box .mt1{
	margin-top:1rem;
}
.mt2,
.basic-box .mt2{
	margin-top:2rem;
}
.mt3,
.basic-box .mt3{
	margin-top:3rem;
}
.mt4,
.basic-box .mt4{
	margin-top:4rem;
}
.mb1,
.basic-box .mb1{
	margin-bottom:1rem;
}
.mb2,
.basic-box .mb2{
	margin-bottom:2rem;
}
.mb3,
.basic-box .mb3{
	margin-bottom:3rem;
}
.mb4,
.basic-box .mb4{
	margin-bottom:4rem;
}
.pt2,
.basic-box .pt2{
	padding-top:2rem;
}
.pt3,
.basic-box .pt3{
	padding-top:3rem;
}
.pt4,
.basic-box .pt4{
	padding-top:4rem;
}
.pb2,
.basic-box .pb2{
	padding-bottom:2rem;
}
.pb3,
.basic-box .pb3{
	padding-bottom:3rem;
}
.pb4,
.basic-box .pb4{
	padding-bottom:4rem;
}
.pc-br{
	display:block;
}
.sp-br{
	display:none;
}
@media screen and (min-width:769px) and ( max-width:1100px){
	
}
@media screen and (max-width:768px){
	.pc-br{
		display:none;
	}
	.sp-br{
		display:block;
	}
}
/***** header *****/
.header-main{
	width: 100%;
	position: fixed;
	z-index: 5;
	padding: 10px 0;
}
.header-main.under-bg{
	background-color: var(--key-color-3);
}
.header-main>.inner{
	width: 100%;
	max-width: 1200px;
	margin: auto;
}
.header-main .header-box>.inner-wrap>.logo{
	width: 30%;
	max-width: 250px;
	min-height: 45px;
	display: flex;
	align-items: center;
	padding-left: 10px;
}
.header-main .header-box>.inner-wrap>.logo>a>img{
	display: block;
	height: 100%;
	object-fit: contain;
}
@media screen and (max-width:768px){
	.header-main{
		padding: 5px 0;
	}
	.header-main .header-box>.inner-wrap>.logo{
		width: 50%;
		max-width: none;
	}
	.header-main .header-box>.inner-wrap>.logo>a>img {
		height: 45px;
	}
}
/***** humbrger *****/
.humbrger{
	position: fixed;
	width: 30px;
	height: 30px;
	top: 10px;
	right: calc((100vw - 1200px) / 2);
	z-index: 6;
	cursor: pointer;
}
.humbrger>div{
	width: 100%;
	height: 100%;
}
.humbrger>div>span{
	display: block;
	width: 100%;
	position: absolute;
	height: 3px;
	background-color: var(--key-color-2);
	transition: all 200ms 0s ease;
}
.humbrger>div>span:nth-of-type(1){
	top: 0;
	left: 0;
	transform-origin: top left;
	transform: rotateZ(0deg);
}
.humbrger.humbrger-open>div>span:nth-of-type(1){
	width: 135%;
	transform: rotateZ(45deg);
}
.humbrger>div>span:nth-of-type(2){
	top: 0;
	bottom: 0;
	margin: auto;
	opacity:1;
	background-color: var(--border-color);
}
.humbrger.humbrger-open>div>span:nth-of-type(2){
	opacity:0;
}
.humbrger>div>span:nth-of-type(3){
	bottom: 0;
	left: 0;
	transform-origin: bottom left;
	transform: rotateZ(360deg);
}
.humbrger.humbrger-open>div>span:nth-of-type(3){
	width: 135%;
	transform: rotateZ(315deg);
}
@media screen and (min-width:769px) and ( max-width:1200px){
	.humbrger{
		right: 10px;
	}
}
@media screen and (max-width:768px){
	.humbrger{
		right: 10px;
	}
}
/***** gmenu *****/
.gmenu{
	display:none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--key-color-3);
	z-index: 5;
	opacity:0;
	transition: all 500ms 0s ease;
}
.gmenu.gmenu-active{
	opacity:1;
}
.gmenu>.inner{
	width: 100%;
	overflow-y: scroll;
	height: 100%;
}
.gmenu .menu-box{
	width: 100%;
	height: 100%;
	max-width: 1200px;
	margin: auto;
}
.gmenu .menu-box>.title{
	padding-top: 10px;
	margin-bottom: 1rem;
}
.gmenu .menu-box>.title>.logo{
	width: 30%;
	max-width: 250px;
	min-height: 45px;
	display: flex;
	align-items: center;
	padding-left: 10px;
	margin-bottom: 1rem;
}
.gmenu .menu-box>.title>.logo>a>img{
	display: block;
	height: 100%;
}
.gmenu .menu-box>.title>.sns>ul{
	width: 100%;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: center;
}
.gmenu .menu-box>.title>.sns>ul>li{
	margin: 0 0.8rem;
}
.gmenu .menu-box>.title>.sns>ul>li>a{
	display: block;
	transition: opacity 200ms 0s ease;
}
.gmenu .menu-box>.title>.sns>ul>li>a:hover{
	opacity:0.5;
}
.gmenu .menu-box>.title>.sns>ul>li>a>svg{
	display: block;
	width: 25px;
}
.gmenu .menu-box>.title>.sns>ul>li>a>svg path{
	fill: #fff;
}
.gmenu .menu-box>.head-menu{
	
}
.gmenu .menu-box>.head-menu>.navi{
	font-family: var(--sans-font);
}
.gmenu .menu-box>.head-menu>.navi>ul{
	width: 100%;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: space-between;
}
.gmenu .menu-box>.head-menu>.navi>ul>li>div>.block:not(:last-child){
	margin-bottom: 1rem;
}
.gmenu .menu-box>.head-menu>.navi>ul>li>div>.block>.t-1{
	font-size: 1rem;
	color: #fff;
	margin: 0 0 0.5rem;
}
.gmenu .menu-box>.head-menu>.navi>ul>li>div>.block>.t-2>ul{
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	padding-left: 8px;
}
.gmenu .menu-box>.head-menu>.navi>ul>li>div>.block>.t-2>ul>li{
	margin-bottom: 0.6rem;
}
.gmenu .menu-box>.head-menu>.navi>ul>li>div>.block>.t-2>ul>li>a{
	font-size: 0.9rem;
	font-weight: 300;
	color: #fff;
	transition: color 300ms 0s ease;
}
.gmenu .menu-box>.head-menu>.navi>ul>li>div>.block>.t-2>ul>li>a:hover{
	color: var(--key-color-2);
}
@media screen and (max-width:768px){
	.gmenu .menu-box>.title>.logo{
		width: 50%;
		max-width: none;
	}
	.gmenu .menu-box>.title>.logo>a>img{
		object-fit: contain;
	}
	.gmenu .menu-box>.head-menu{
		padding: 0 5%;
	}
	.gmenu .menu-box>.head-menu>.navi>ul{
		flex-wrap: wrap;
	}
	.gmenu .menu-box>.head-menu>.navi>ul>li{
		width: 50%;
	}
}
/***** footer *****/
.footer-main{
	background-color: #484243;
}
.footer-main>.inner{
	width: 100%;
	max-width: 1200px;
	margin: auto;
	padding-top: 3rem;
}
.footer-main .title{
	
}
.footer-main .title>img{
	display: block;
	width: auto;
	height: 6rem;
	object-fit: contain;
	margin: 0 auto;
}

.footer-main .foot-menu>.navi{
	font-family: var(--sans-font);
}
.footer-main .foot-menu>.navi>ul{
	width: 100%;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: space-between;
}
.footer-main .foot-menu>.navi>ul>li{
	margin: 0;
}
.footer-main .foot-menu>.navi>ul>li>div>.block:not(:last-child){
	margin-bottom: 1rem;
}
.footer-main .foot-menu>.navi>ul>li>div>.block>.t-1{
	font-size: 1rem;
	color: #fff;
	margin: 0 0 0.5rem;
}
.footer-main .foot-menu>.navi>ul>li>div>.block>.t-2>ul{
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	padding-left: 8px;
}
.footer-main .foot-menu>.navi>ul>li>div>.block>.t-2>ul>li{
	margin-bottom: 0.6rem;
}
.footer-main .foot-menu>.navi>ul>li>div>.block>.t-2>ul>li>a{
	font-size: 0.9rem;
	font-weight: 300;
	color: #fff;
	transition: color 300ms 0s ease;
}
.footer-main .foot-menu>.navi>ul>li>div>.block>.t-2>ul>li>a:hover{
	color: var(--key-color-2);
}
.footer-main .logo>img{
	display: block;
	width: auto;
	height: 4rem;
	margin: 0 auto;
}
.footer-main .sns>ul{
	width: 100%;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
}
.footer-main .sns>ul>li{
	margin: 0 0.8rem;
}
.footer-main .sns>ul>li>a{
	display: block;
	transition: opacity 200ms 0s ease;
}
.footer-main .sns>ul>li>a:hover{
	opacity:0.5;
}
.footer-main .sns>ul>li>a>svg{
	display: block;
	width: 30px;
}
.footer-main .sns>ul>li>a>svg path{
	fill: #fff;
}
.footer-main .policy,
.footer-main .copylight{
	text-align: center;
}
.footer-main .policy>a{
	display: inline-block;
	font-size: 0.9rem;
	color: #fff;
	font-family: var(--sans-font);
	transition: opacity 200ms 0s ease;
}
.footer-main .policy>a:hover{
	opacity:0.5;
}
.footer-main .copylight>p{
	font-size: 0.8rem;
	color: #fff;
	font-family: var(--sans-font);
	margin: 0;
}
@media screen and (max-width:768px){
	.side-banner-space{
		margin-bottom: 5rem;
		padding-bottom: 1.5rem;
	}
	.footer-main>.inner{
		padding: 3rem 5% 0;
	}
	.footer-main .title>img{
		height: 3rem;
	}
	.footer-main .foot-menu>.navi>ul{
		flex-wrap: wrap;
	}
	.footer-main .foot-menu>.navi>ul>li{
		width: 50%;
	}
	.footer-main .logo>img{
		height: 3rem;
	}
}
/***** side-banner *****/
.side-banner{
	position: fixed;
	right: 0;
	bottom: 15vh;
	z-index: 4;
	opacity:0;
	transition: all 300ms 0s ease;
}
.side-banner.open{
	opacity:1;
}
.side-banner>.wrap{
	transform: translateX(100%);
	transition: all 300ms 0s ease;
}
.side-banner.open>.wrap{
	transform: translateX(0%);
}
.side-banner>.wrap>ul{
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
}
.side-banner>.wrap>ul>li{
	margin: 0 0 0.5rem;
}
.side-banner>.wrap>ul>li.co1>div,
.side-banner>.wrap>ul>li.co3>div{
	background-color: var(--key-color);
}
.side-banner>.wrap>ul>li.co2>div,
.side-banner>.wrap>ul>li.co4>div,
.side-banner>.wrap>ul>li.co5>div{
	background-color: var(--key-color-2);
}
.side-banner>.wrap>ul>li>div>a{
	font-size: 0.9rem;
	line-height: 1em;
	color: #fff;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: flex-end;
	justify-content: space-between;
	text-decoration: none;
	box-shadow: 0 0 1px #fff;
	padding: 1.5rem 1.5rem;
}
.side-banner>.wrap>ul>li>div>a>p{
	font-size: 0.9rem;
	line-height: 1em;
	margin: 0;
}
.side-banner>.wrap>ul>li>div>a>div{
	width: 2rem;
}
.side-banner>.wrap>ul>li>div>a>div>span{
	display: flex;
	width: 85%;
	height: 100%;
	border-bottom: 1px solid #fff;
	position: relative;
	margin-left: 10px;
	justify-content: flex-end;
	align-items: flex-end;
	transition: width 200ms 0s ease;
}
.side-banner>.wrap>ul>li>div>a:hover>div>span{
	width: 100%;
}
.side-banner>.wrap>ul>li>div>a>div>span::after{
	content:"";
	display: block;
	height: 1px;
	width: 1rem;
	background-color: #fff;
	transform: rotateZ(45deg) translateY(1px);
	transform-origin: right bottom;
	transition: all 200ms 0s ease;
}
.side-banner>.wrap>ul>li>div>a:hover>div>span::after{
	 width: 1.3rem;
}
@media screen and (max-width:768px){
	.side-banner{
		bottom: -7rem;
		opacity: 0;
	}
	.side-banner.open{
		bottom: 0rem;
	}
	.side-banner>.wrap{
		background-color: var(--key-color);
		transform: translate(0, 100%);
	}
	.side-banner.open>.wrap{
		transform: translate(0, 0%);
	}
	.side-banner>.wrap>ul{
		flex-direction: row;
		flex-wrap: wrap;
	}
	.side-banner>.wrap>ul>li{
		margin: 0;
		height: 48px;
	}
	.side-banner>.wrap>ul>li.co4{
		margin: 0;
	}
	.side-banner>.wrap>ul>li.co1,
	.side-banner>.wrap>ul>li.co2,
	.side-banner>.wrap>ul>li.co3,
	.side-banner>.wrap>ul>li.co4,
	.side-banner>.wrap>ul>li.co5{
		width: 50%;
	}
	.side-banner>.wrap>ul>li.sp-co3>div{
		background-color: var(--key-color-2);
	}
	.side-banner>.wrap>ul>li.sp-co4>div{
		background-color: var(--key-color);
	}
	.side-banner>.wrap>ul>li>div>a{
		justify-content: center;
		padding: 1rem 1rem;
		box-shadow: none;
	}
	.side-banner>.wrap>ul>li>div>a>div{
		width: 0;
	}
	.side-banner>.wrap>ul>li>div>a>p{
		height: 1rem;
	}
}
/***** first view *****/
.head-title-box{
	position: relative;
	width: 100%;
	height: 100%;
}
.head-title-box>.top-bg-image{
	width: 100%;
	height: 100vh;
	min-height: 500px;
}
.head-title-box>.top-bg-image>.movie-box{
	width: 100%;
	height: 100vh;
	position: fixed;
	left: 0;
	top: 0;
	z-index: -1;
	overflow: hidden;
}
.head-title-box>.top-bg-image>.movie-box::after{
	content:"";
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgb(0 0 0 / 0%);
	transition: background-color 300ms 0s ease;
}
.head-title-box.scl-active>.top-bg-image>.movie-box::after{
	background-color: rgb(0 0 0 / 50%);
	transition: background-color 600ms 0s ease;
}
.head-title-box>.top-bg-image>.movie-box>video{
	min-width: 100%;
	min-height: 100vh;
	position: absolute;
	bottom: 50%;
	right: 50%;
	transform: translateY(50%) translateX(50%);
}
.head-title-box>.title-box{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	min-height: 500px;
	z-index: 1;
}
.head-title-box>.title-box>.wrap{
	width: 100%;
	max-width: 1200px;
	height: 100%;
	margin: auto;
	position: relative;
}
.head-title-box>.title-box>.wrap>.image>div{
	width: 80%;
	padding-top: 6vh;
}
.head-title-box>.title-box>.wrap>.image>div>img{
	max-width: none;
	width: 100%;
	display: block;
}
.head-title-box>.title-box>.wrap>.text{
	position: absolute;
	top: auto;
	bottom: 10vh;
	left: 0;
}
.head-title-box>.title-box>.wrap>.text>.t-1{
	font-size: 1.8rem;
	color: #fff;
}
.head-title-box>.top-bg-image>.movie-box>video{
	min-width: 100%;
	min-height: 100vh;
	position: absolute;
	bottom: 50%;
	right: 50%;
	transform: translateY(50%) translateX(50%);
}
.head-title-box>.top-bg-image>.movie-box>video.pc-video{
	display: block;
}
.head-title-box>.top-bg-image>.movie-box>video.sp-video{
	display: none;
}
.head-title-box>.scroll-anim{
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	display: flex;
	justify-content: center;
}
.head-title-box>.scroll-anim>.wrap{
	display: inline-flex;
	position: relative;
	flex-direction: column;
	flex-wrap: nowrap;
	align-items: center;
}
.head-title-box>.scroll-anim>.wrap>.t-1{
	font-size: 20px;
	font-weight: 700;
	font-family: var(--sans-font);
	color: #fff;
	line-height: 1em;
	margin: 0;
}
.head-title-box>.scroll-anim>.wrap>.t-2{
	position: relative;
	top: 0.5rem;
	width: 100%;
	height: 2rem;
	display: flex;
	justify-content: center;
	z-index: 1;
}
.head-title-box>.scroll-anim>.wrap>.t-2>span{
	display: block;
	width: 2px;
	height: 2.5rem;
	background-color: #fff;
	transform: scaleY(0);
	opacity:0;
	transform-origin: top;
	animation-name:top-scroll-anim;
	animation-duration: 2000ms;
	animation-delay: 0ms;
	animation-timing-function: ease;
	animation-fill-mode: backwards;
	animation-iteration-count: infinite;
}
@keyframes top-scroll-anim{
	0%{
		transform: scaleY(0);
		opacity:0;
	}
	10%{
		transform: scaleY(0);
		opacity:1;
	}
	70%{
		transform: scaleY(1);
		opacity:1;
	}
	100%{
		transform: scaleY(1);
		opacity:0;
	}
}
@media screen and (max-width:768px){
	.head-title-box>.title-box{
		height: 87vh;
	}
	.head-title-box>.title-box>.wrap{
		padding: 0 5%;
	}
	.head-title-box>.title-box>.wrap>.image>div{
		width: 90%;
		padding-top: 45vh;
		margin: auto;
	}
	.head-title-box>.title-box>.wrap>.text>.t-1{
		font-size: 1.6rem;
		text-align: center;
	}
	.head-title-box>.title-box>.wrap>.text{
		right: 0;
		bottom: 10vh;
		margin: auto;
	}
	.head-title-box>.scroll-anim{
		bottom: 13vh;
	}
	.head-title-box>.scroll-anim>.wrap>.t-2>span{
		height: 5rem;
	}
	.head-title-box>.top-bg-image>.movie-box>video.pc-video{
		display: none;
	}
	.head-title-box>.top-bg-image>.movie-box>video.sp-video{
		display: block;
	}
}
/***** underlayer view *****/
.head-title-under{
	width: 100%;
	padding-top: 65px;/*header menu height(padding含む)*/
}
.head-title-under>.inner{
	width: 100%;
	background-color: var(--key-color-3);
}
.head-title-under>.inner>.title{
	width: 100%;
	max-width: 1200px;
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	align-items: center;
	position: relative;
	padding: 50px 0;
	justify-content: center;
	margin: auto;
}
.head-title-under>.inner>.title>.t-1{
	font-size: 2.5rem;
	color: #fff;
	font-weight: 700;
	text-align: center;
	line-height: 1.4em;
	margin-bottom: 1.6rem;
}
.head-title-under>.inner>.title>.t-2{
	font-size: 1.3rem;
	color: #fff;
	font-weight: 700;
	margin: 0;
}
.head-title-under>.image{
	position: relative;
	width: 100%;
}
.head-title-under>.image>.bg{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 50%;
	background-color: var(--key-color-3);
}
.head-title-under>.image>.bg.space{
	height: 40%;
}
.head-title-under>.image>.wrap{
	position: relative;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
}
.head-title-under>.image>.wrap>div{
	width: 80%;
	margin: auto;
}
.head-title-under>.image.type-single>.wrap>div{
	width: 50%
}
.head-title-under>.image>.wrap>div>img{
	display: block;
	max-width: none;
	width: 100%;
	aspect-ratio: 2 / 1.2;
	object-fit: cover;
}
.head-title-under>.image.type-single>.wrap>div>img{
	aspect-ratio: 4 / 3;
}
.head-title-under .title2{
	width: 100%;
	max-width: 1200px;
	margin: auto;
	padding-top: 1rem;
}
.head-title-under .title2>div{
	width: 90%;
	height: 100%;
	margin: auto;
	position: relative;
}
.head-title-under .title2>div>img{
	display: block;
}
.head-title-under .title2>div>.text{
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	text-align: center;
}
.head-title-under .title2>div>.text>.t-1{
	font-size: 7rem;
	font-family: var(--sans-font);
	color: #fff;
	font-weight: 700;
	line-height: 0.8em;
	text-shadow: 3px 3px 6px rgb(0 0 0 / 15%);
	margin: 0;
}
.head-title-under .title2>div>.text>.img{
	
}
.head-title-under .title2>div>.text>.img>img{
	width: 70%;
	transform: translateY(12px);
	filter: drop-shadow(3px 3px 6px rgb(0 0 0 / 15%));
}
@media screen and (max-width:768px){
	.head-title-under{
		padding-top: 55px;
	}
	.head-title-under>.inner>.title{
		padding: 50px 5%;
	}
	.head-title-under>.inner>.title>.t-1{
		font-size: 1.6rem;
	}
	.head-title-under>.inner>.title>.t-2{
		font-size: 1.1rem;
	}
	.head-title-under>.image>.wrap>div{
		width: 90%;
	}.head-title-under>.image.type-single>.wrap>div{
		width: 80%;
	}
	.head-title-under>.image>.wrap>div>img{
		min-height: 200px;
	}
	.head-title-under>.image>.bg.space{
		height: 2rem;
	}
	.head-title-under .title2>div{
		width: 100%;
	}
	.head-title-under .title2>div>.text>.t-1{
		font-size: 2.2rem;
		line-height: 0.6em;
	}
}
/***** box-1 *****/
.box-1{
	position: relative;
}
.box-1 .bg-box{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-color: #fff;
	overflow: hidden;
}
.box-1 .bg-box>.wrap{
	width: 100%;
	height: 100%;
	max-width: 1400px;
	margin: auto;
}
.box-1 .bg-box>.wrap>div{
	width: 100%;
	height: 100%;
}
.box-1 .bg-box>.wrap>div>img{
	display: none;
	width: 100%;
	object-fit: cover;
	position: relative;
	top: 50%;
	height: 100%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.box-1>.inner{
	width: 100%;
	max-width: 1200px;
	position:relative;
	margin: auto;
	padding: 3rem 0;
}
.box-1 .list-box{
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: flex-end;
	width: 100%;
}
.box-1 .list-box.reversal{
	flex-direction: row-reverse;
}
.box-1 .list-box>.image{
	width: 55%;
	padding: 0 4rem 0 0;
	margin: auto;
}
.box-1 .list-box.reversal>.image{
	padding:0 0 0 4rem;
}
.box-1 .list-box>.image>.wrap{
	/*box-shadow: 0px 0px 5px var(--key-color);*/
}
.box-1 .list-box>.image>.wrap>.swiper1-thumb>.swiper-wrapper>.swiper-slide{
	
}
.box-1 .list-box>.image>.wrap>.swiper1-thumb>.swiper-wrapper>.swiper-slide>img,
.box-1 .list-box>.image>.wrap>.swiper2-thumb>.swiper-wrapper>.swiper-slide>img{
	width: 100%;
	max-width: none;
	height: auto;
	aspect-ratio: 2 / 1.2;
	object-fit: cover;
	object-position: 50% 50%;
}
.box-1 .list-box>.image>.wrap>.swiper1-thumb>.swiper-wrapper>.swiper-slide>img,
.box-1 .list-box>.image>.wrap>.swiper2-thumb>.swiper-wrapper>.swiper-slide>img{
	aspect-ratio: 4 / 3;
}
.box-1 .list-box>.image>.wrap>.swiper1-thumb>.swiper-wrapper>.swiper-slide>img,
.box-1 .list-box>.image>.wrap>.swiper2-thumb>.swiper-wrapper>.swiper-slide>img{
	cursor: pointer;
	transition: all 200ms 0s ease;
}
.box-1 .list-box>.image>.wrap>.swiper1-thumb>.swiper-wrapper>.swiper-slide>img:hover,
.box-1 .list-box>.image>.wrap>.swiper2-thumb>.swiper-wrapper>.swiper-slide>img:hover{
	filter: brightness(0.8);
}
.box-1 .list-box>.text-box{
	width: 45%;
}
.box-1 .list-box>.text-box>.title{
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: flex-end;
	color: var(--key-color);
	position: relative;
	padding-bottom: 1rem;
}
.box-1 .list-box.reversal>.text-box>.title{
	justify-content: flex-start;
}
.box-1 .list-box>.text-box>.title>.t-1{
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: center;
}
.box-1 .list-box>.text-box>.title>.t-1>p{
	font-size: 4rem;
	font-style: italic;
	margin: 0 10px 0 0;
	line-height: 1em;
}
.box-1 .list-box>.text-box>.title>.t-1>img{
	display: block;
	height: 3.7rem;
	padding-top: 0.7rem;
}
.box-1 .list-box>.text-box>.title>.t-2{
	font-family: var(--sans-font);
	padding-top: 0.7rem;
	margin-left: 10px;
}
.box-1 .list-box>.text-box>.title>.t-2>.t-2-1{
	font-size: 1.6rem;
	font-weight: 900;
	line-height: 1em;
	margin-bottom: 10px;
}
.box-1 .list-box>.text-box>.title>.t-2>.t-2-2{
	font-size: 1rem;
	font-weight: 900;
	line-height: 1em;
}
.box-1 .list-box>.text-box>.title>.bar{
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	z-index: 1;
}
.box-1 .list-box>.text-box>.title>.bar>span{
	display: block;
	width: 110%;
	transform: translateX(0%);
	height: 2px;
	background-color:var(--key-color-2);
}
.box-1 .list-box.reversal>.text-box>.title>.bar>span{
	transform: translateX(-5%);
}
.box-1 .list-box>.text-box>.list{
	width: 100%;
	padding-top: 2rem;
}
.box-1 .list-box>.text-box>.list>.swper-set{
	overflow:hidden;
}
.box-1 .list-box>.text-box>.list>.swper-set>.swiper-wrapper>.swiper-slide>a{
	width:85%;
	min-width: 300px;
	padding: 12px;
	transition: background-color 300ms 0s ease;
}
.box-1 .list-box>.text-box>.list>.swper-set>.swiper-wrapper>.swiper-slide>a:hover{
	background-color: rgb(0 0 0 / 20%);
}
.box-1 .list-box>.text-box>.list>.swper-set>.swiper-wrapper>.swiper-slide>a>p{
	color: var(--key-color);
	font-size: 1.3rem;
	line-height: 1.7em;
	font-weight: 500;
	transition: color 300ms 0s ease;
}
.box-1 .list-box>.text-box>.list>.swper-set>.swiper-wrapper>.swiper-slide>a:hover>p{
	color: #fff;
}
.box-1 .list-box>.text-box>.list>.swper-set>.navi-button{
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: center;
	font-family: var(--sans-font);
	margin-top: 2rem;
}
.box-1 .list-box>.text-box>.list>.swper-set>.navi-button>.navi-set{
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: flex-end;
	cursor: pointer;
}
.box-1 .list-box>.text-box>.list>.swper-set>.navi-button>.navi-prev{
	margin-right: 2rem;
}
.box-1 .list-box>.text-box>.list>.swper-set>.navi-button>.navi-next{
	margin-left: 2rem;
}
.box-1 .list-box>.text-box>.list>.swper-set>.navi-button>.navi-prev>div{
	margin-right: 5px;
}
.box-1 .list-box>.text-box>.list>.swper-set>.navi-button>.navi-next>div{
	margin-left: 5px;
}
.box-1 .list-box>.text-box>.list>.swper-set>.navi-button>.navi-set>div>span{
	display: block;
	width: 4rem;
	border-bottom: 2px solid var(--key-color-2);
	position: relative;
	transition: all 200ms 0s ease;
}
.box-1 .list-box>.text-box>.list>.swper-set>.navi-button>.navi-prev:hover>div>span,
.box-1 .list-box>.text-box>.list>.swper-set>.navi-button>.navi-next:hover>div>span{
	width: 5rem;
}
.box-1 .list-box>.text-box>.list>.swper-set>.navi-button>.navi-set>div>span::after{
	content:"";
	position: absolute;
	width: 1.5rem;
	height: 2px;
	background-color: var(--key-color-2);
	transition: all 220ms 0s ease;
}
.box-1 .list-box>.text-box>.list>.swper-set>.navi-button>.navi-prev:hover>div>span::after,
.box-1 .list-box>.text-box>.list>.swper-set>.navi-button>.navi-next:hover>div>span::after{
	width: 1.8rem;
}
.box-1 .list-box>.text-box>.list>.swper-set>.navi-button>.navi-prev>div>span::after{
	left:0;
	transform: rotateZ(315deg);
	transform-origin: left bottom;
}
.box-1 .list-box>.text-box>.list>.swper-set>.navi-button>.navi-next>div>span::after{
	right:0;
	transform: rotateZ(45deg);
	transform-origin: right bottom;
}
.box-1 .list-box>.text-box>.list>.swper-set>.navi-button>.navi-set>p{
	font-size: 1rem;
	line-height: 1em;
	font-weight: 700;
	color: var(--key-color-2);
	transition: color 300ms 0s ease;
}
.box-1 .list-box>.text-box>.list>.swper-set>.navi-button>.navi-set:hover>p{
	color:var(--key-color);
}
.box-1 .list-box>.text-box>.detail>div{
	display: flex;
	justify-content: center;
}
.box-1 .list-box>.text-box>.detail>div>a{
	display: inline-block;
	width: 50%;
	font-size: 0.8rem;
	font-family: var(--sans-font);
	background-color: var(--key-color-2);
	color: #fff;
	border: 1px solid var(--key-color-2);
	box-shadow: 0 0 3px rgb(0 0 0 / 30%);
	padding: 0.5rem 0;
	text-align: center;
	transition: all 300ms 0s ease;
}
.box-1 .list-box>.text-box>.detail>div>a:hover{
	background-color:#fff;
	color: var(--key-color-2);
}
@media screen and (max-width:768px){
	.box-1>.inner{
		padding: 3rem 2%;
	}
	.box-1 .bg-box>.wrap>div{
		position: relative;
	}
	.box-1 .bg-box>.wrap>div>span{
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background-color: rgb(255 255 255 / 70%);
	}
	.box-1 .list-box,
	.box-1 .list-box.reversal{
		flex-direction: column;
		align-items: center;
		position: relative;
		padding-top: 8rem;
	}
	.box-1 .list-box>.image,
	.box-1 .list-box.reversal>.image{
		width: 80%;
		padding: 0 0 1rem;
	}
	.box-1 .list-box>.text-box{
		width: 100%;
	}
	.box-1 .list-box>.text-box>.title{
		position: absolute;
		top: 0;
		justify-content: flex-start;
	}
	.box-1 .list-box>.text-box>.title>.bar>span,
	.box-1 .list-box.reversal>.text-box>.title>.bar>span{
		width: 110%;
		transform: translateX(0%);
	}
	.box-1 .list-box>.text-box>.list{
	    padding-top: 0rem;
	}
	.box-1 .list-box>.text-box>.list>.swper-set>.swiper-wrapper>.swiper-slide>a{
		width: 90%;
		min-width: auto;
	}
	.box-1 .list-box>.text-box>.list>.swper-set>.swiper-wrapper>.swiper-slide>a>p{
		font-size: 1.1rem;
		font-weight: 700;
	}
	.box-1 .list-box>.text-box>.list>.swper-set>.navi-button>.navi-set>p{
		font-weight: 900;
	}
	.box-1 .list-box>.text-box>.list>.swper-set>.navi-button>.navi-set>div>span{
		border-bottom: 3px solid var(--key-color-2);
	}
	.box-1 .list-box>.text-box>.list>.swper-set>.navi-button>.navi-set>div>span::after{
		height: 3px;
	}
}
/***** box-2 *****/
.box-2{
	position: relative;
}
.box-2 .bg-box{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-color: #fff;
	overflow: hidden;
}
.box-2 .bg-box>.wrap{
	width: 100%;
	height: 100%;
	max-width: 1400px;
	margin: auto;
}
.box-2 .bg-box>.wrap>div{
	width: 100%;
	height: 100%;
}
.box-2 .bg-box>.wrap>div>img{
	display: none;
	width: 100%;
	object-fit: cover;
	position: relative;
	top: 50%;
	height: 100%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.box-2>.inner{
	width: 100%;
	max-width: 1200px;
	position:relative;
	margin: auto;
	padding: 3rem 0;
}
.box-2.under-pd>.inner{
	padding: 0rem 0 3rem;
}
.box-2 .list-box{
	
}
.box-2 .list-box>.title{
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: flex-end;
	color: var(--key-color);
	position: relative;
	padding-bottom: 2rem;
}
.box-2 .list-box.reversal>.title,
.box-2 .list-box.under-type>.title{
	justify-content: flex-start;
}
.box-2 .list-box>.title>.t-1{
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: center;
}
.box-2 .list-box.under-type>.title>.t-1{
	display:none;
}
.box-2 .list-box>.title>.t-1>p{
	font-size: 4rem;
	font-style: italic;
	margin: 0 10px 0 0;
	line-height: 1em;
}
.box-2 .list-box>.title>.t-1>img{
	display: block;
	height: 3.7rem;
	padding-top: 0.7rem;
}
.box-2 .list-box>.title>.t-2{
	font-family: var(--sans-font);
	padding-top: 0.7rem;
	margin-left: 10px;
}
.box-2 .list-box>.title>.t-2>.t-2-1{
	font-size: 1.6rem;
	font-weight: 900;
	line-height: 1em;
	margin-bottom: 10px;
}
.box-2 .list-box>.title>.t-2>.t-2-2{
	font-size: 1rem;
	font-weight: 900;
	line-height: 1em;
}
.box-2 .list-box>.title>.bar{
	position: absolute;
	bottom: 0;
	width: 100%;
}
.box-2 .list-box>.title>.bar>span{
	display: block;
	width: 105%;
	transform: translateX(-5%);
	height: 2px;
	background-color:var(--key-color-2);
}
.box-2 .list-box.reversal>.title>.bar>span,
.box-2 .list-box.under-type>.title>.bar>span{
	transform: translateX(0);
}
.box-2 .list-box>.list{
	overflow: hidden;
}
.box-2 .list-box>.list>.swiper-set>.swiper-wrapper{
	transition-timing-function: linear;
}
.box-2 .list-box>.list>.swiper-set>.swiper-wrapper>.swiper-slide{
	padding: 2px;
}
.box-2 .list-box>.list>.swiper-set>.swiper-wrapper>.swiper-slide>a{
	position: relative;
	width: 100%;
	/*box-shadow: 0px 0px 2px var(--key-color);*/
}
.box-2 .list-box>.list>.swiper-set>.swiper-wrapper>.swiper-slide>a>.image{
	box-shadow: 0px 0px 2px var(--key-color);
	overflow: hidden;
}
.box-2 .list-box>.list>.swiper-set>.swiper-wrapper>.swiper-slide>a>.image>img{
	display:block;
	object-fit: cover;
	width: 100%;
	height: auto;
	aspect-ratio: 4 / 3;
	transform: scale(1);
	transform-origin: center;
	transition: all 300ms 0s ease;
}
.box-2 .list-box>.list>.swiper-set>.swiper-wrapper>.swiper-slide>a:hover>.image>img{
	transform: scale(1.05);
}
.box-2 .list-box>.list>.swiper-set>.swiper-wrapper>.swiper-slide>a>.image2{
	overflow: hidden;
	position: relative;
}
.box-2 .list-box>.list>.swiper-set>.swiper-wrapper>.swiper-slide>a>.image2>img{
	display:block;
	transform: scale(1);
	transform-origin: center;
	transition: all 300ms 0s ease;
}
.box-2 .list-box>.list>.swiper-set>.swiper-wrapper>.swiper-slide>a:hover>.image2>img{
	transform: scale(1.05);
}
.box-2 .list-box>.list>.swiper-set>.swiper-wrapper>.swiper-slide>a>.image2>span{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgb(0 0 0 / 30%);
	transition: all 300ms 0s ease;
}
.box-2 .list-box>.list>.swiper-set>.swiper-wrapper>.swiper-slide>a:hover>.image2>span{
	background-color: rgb(0 0 0 / 0%);
}
.box-2 .list-box>.list>.swiper-set>.swiper-wrapper>.swiper-slide>a>.text{
	width: 100%;
	position: relative;
	left: 0;
	bottom: 0;
	padding: 0.7rem 0.7rem;
}
.box-2 .list-box>.list>.swiper-set>.swiper-wrapper>.swiper-slide>a>.text.pt-2{
	padding: 0.5rem 0rem;
}
.box-2 .list-box>.list>.swiper-set>.swiper-wrapper>.swiper-slide>a>.text>.t-1{
	display: inline-block;
	font-size: 0.8rem;
	line-height: 1em;
	font-family: var(--sans-font);
	background-color: var(--key-color-2);
	color: #fff;
	padding: 0.5rem 1rem;
}
.box-2 .list-box>.list>.swiper-set>.swiper-wrapper>.swiper-slide>a>.text>.t-2{
	color: #fff;
	background-color: rgb(70 70 70 / 80%);
	border-radius: 0px 3px 3px 3px;
	padding: 0 6px 6px;
	transition: background-color 300ms 0s ease;
}
.box-2 .list-box>.list>.swiper-set>.swiper-wrapper>.swiper-slide>a:hover>.text>.t-2{
	background-color: rgb(70 70 70 / 100%);
}
.box-2 .list-box>.list>.swiper-set>.swiper-wrapper>.swiper-slide>a>.text>.t-2>.t-2-1{
	font-size: 0.9rem;
	font-family: var(--sans-font);
	font-weight: lighter;
}
.box-2 .list-box>.list>.swiper-set>.swiper-wrapper>.swiper-slide>a>.text>.t-2>.t-2-2{
	font-size: 0.9rem;
	line-height: 1.5em;
}
.box-2 .list-box>.list>.swiper-set>.swiper-wrapper>.swiper-slide>a>.text>.t-3{
	font-size: 0.9rem;
	background-color: rgb(70 70 70 / 40%);
	padding: 6px;
	color: #fff;
	transition: all 300ms 0s ease;
}
.box-2 .list-box>.list>.swiper-set>.swiper-wrapper>.swiper-slide>a:hover>.text>.t-3{
	background-color: rgb(70 70 70 / 80%);
}
.box-2 .list-box>.list>.swiper-set>.swiper-wrapper>.swiper-slide>a>.text>.t-4{
	display: inline-block;
	font-size: 0.8rem;
	line-height: 1em;
	background-color: var(--key-color-2);
	color: #fff;
	padding: 0.3rem 0.6rem;
	margin-bottom: 0.1rem;
}
.box-2 .list-box>.list>.swiper-set>.swiper-wrapper>.swiper-slide>a>.text>.t-4.co{
	background-color: var(--border-color);
}
.box-2 .list-box>.list>.swiper-set>.swiper-wrapper>.swiper-slide>a>.text>.t-5{
	
	padding: 0.3rem 0.5rem;
	transition: all 300ms 0s ease;
}
.box-2 .list-box>.list>.swiper-set>.swiper-wrapper>.swiper-slide>a>.text>.t-5>.t-5-1{
	font-size: 0.9rem;
	color: #000;
	line-height: 1.3em;
	margin-bottom: 0.3rem;
}
.box-2 .list-box>.list>.swiper-set>.swiper-wrapper>.swiper-slide>a>.text>.t-5>.t-5-2{
	font-size: 0.9rem;
	color: #000;
	line-height: 1.3em;
}
.box-2 .list-box>.list>.swiper-set>.swiper-wrapper>.swiper-slide>a>.text2{
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
}
.box-2 .list-box>.list>.swiper-set>.swiper-wrapper>.swiper-slide>a>.text2>.t-1{
	font-size: 1.6rem;
	font-weight: 700;
	color: #fff;
	text-align: center;
	line-height: 1.3em;
}
.box-2 .list-box>.list>.swiper-set>.swiper-wrapper>.swiper-slide>a>.text2>.t-2{
	font-size: 1rem;
	font-family: var(--sans-font);
	font-weight: 700;
	line-height: 1.5em;
	text-align: center;
	color: #fff;
}
.box-2 .list-box>.list>.swiper-set>.swiper-wrapper>.swiper-slide>a>.text2>.t-3{
	display: flex;
	justify-content: center;
	margin-bottom: 10px;
}
.box-2 .list-box>.list>.swiper-set>.swiper-wrapper>.swiper-slide>a>.text2>.t-3>img{
	width: 80%;
}
.box-2 .list-box>.list-2{
	
}
.box-2 .list-box>.list-2>.wrap{
	width: 100%;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}
.box-2 .list-box>.list-2>.wrap>.block1{
	width: 25%;
	padding: 0 15px;
	margin-bottom: 25px;
}
.box-2 .list-box>.list-2>.wrap>.block1>a{
	position: relative;
	display: block;
	width: 100%;
}
.box-2 .list-box>.list-2>.wrap>.block1>a>.image2{
	overflow: hidden;
	position: relative;
}
.box-2 .list-box>.list-2>.wrap>.block1>a>.image2>img{
	display:block;
	transform: scale(1);
	transform-origin: center;
	transition: all 300ms 0s ease;
}
.box-2 .list-box>.list-2>.wrap>.block1>a:hover>.image2>img{
	transform: scale(1.05);
}
.box-2 .list-box>.list-2>.wrap>.block1>a>.image2>span{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgb(0 0 0 / 30%);
	transition: all 300ms 0s ease;
}
.box-2 .list-box>.list-2>.wrap>.block1>a:hover>.image2>span{
	background-color: rgb(0 0 0 / 0%);
}
.box-2 .list-box>.list-2>.wrap>.block1>a>.text2{
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
}
.box-2 .list-box>.list-2>.wrap>.block1>a>.text2>.t-1{
	font-size: 1.6rem;
	font-weight: 700;
	color: #fff;
	text-align: center;
	line-height: 1.3em;
}
.box-2 .list-box>.list-2>.wrap>.block1>a>.text2>.t-2{
	font-size: 1rem;
	font-family: var(--sans-font);
	font-weight: 700;
	line-height: 1.5em;
	text-align: center;
	color: #fff;
}
.box-2 .list-box>.list-2>.wrap>.block1>a>.text2>.t-3{
	display: flex;
	justify-content: center;
	margin-bottom: 10px;
}
.box-2 .list-box>.list-2>.wrap>.block1>a>.text2>.t-3>img{
	width: 80%;
}
.box-2 .list-box{
	
}
.box-2 .list-box>.none-list{
	
}
.box-2 .list-box>.none-list>.wrap{
	
}
.box-2 .list-box>.none-list>.wrap>ul{
	    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
}
.box-2 .list-box>.none-list>.wrap>ul>li{
	width: 25%;
}
.box-2 .list-box>.none-list>.wrap>ul>li>div{
	padding: 2px;
}
.box-2 .list-box>.none-list>.wrap>ul>li>div>a{
	position: relative;
	width: 100%;
	text-decoration: none;
}
.box-2 .list-box>.none-list>.wrap>ul>li>div>a>.image{
	box-shadow: 0px 0px 2px var(--key-color);
	overflow: hidden;
}
.box-2 .list-box>.none-list>.wrap>ul>li>div>a>.image>img{
	display: block;
	object-fit: cover;
	width: 100%;
	height: auto;
	aspect-ratio: 4 / 3;
	transform: scale(1);
	transform-origin: center;
	transition: all 300ms 0s ease;
}
.box-2 .list-box>.none-list>.wrap>ul>li>div>a:hover>.image>img{
	transform: scale(1.05);
}
.box-2 .list-box>.none-list>.wrap>ul>li>div>a>.text{
	width: 100%;
	position: relative;
	left: 0;
	bottom: 0;
	padding: 0.7rem 0.7rem;
}
.box-2 .list-box>.none-list>.wrap>ul>li>div>a>.text>.t-4{
	display: inline-block;
	font-size: 0.8rem;
	line-height: 1em;
	background-color: var(--key-color-2);
	color: #fff;
	padding: 0.3rem 0.6rem;
	margin-bottom: 0.1rem;
}
.box-2 .list-box>.none-list>.wrap>ul>li>div>a>.text>.t-5{
	padding: 0.3rem 0.5rem;
	transition: all 300ms 0s ease;
}
.box-2 .list-box>.none-list>.wrap>ul>li>div>a>.text>.t-5>.t-5-1{
	font-size: 0.9rem;
	color: #000;
	line-height: 1.3em;
	margin-bottom: 0.3rem;
}
.box-2 .list-box>.none-list>.wrap>ul>li>div>a>.text>.t-5>.t-5-2{
	font-size: 0.9rem;
	color: #000;
	line-height: 1.3em;
}
.box-2 .list-box>.detail>div{
	display: flex;
	justify-content: center;
}
.box-2 .list-box>.detail>div>a{
	display: inline-block;
	font-size: 0.8rem;
	font-family: var(--sans-font);
	background-color: var(--key-color-2);
	color: #fff;
	border: 1px solid var(--key-color-2);
	box-shadow: 0 0 3px rgb(0 0 0 / 30%);
	padding: 0.5rem 3rem;
	text-align: center;
	transition: all 300ms 0s ease;
}
.box-2 .list-box>.detail>div>a:hover{
	background-color:#fff;
	color: var(--key-color-2);
}
@media screen and (max-width:768px){
	.box-2>.inner{
		min-height: 70vh;
		display: flex;
		flex-direction: column;
		flex-wrap: nowrap;
		justify-content: center;
	}
	.box-2 .bg-box>.wrap>div{
		position: relative;
	}
	.box-2 .bg-box>.wrap>div>span{
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background-color: rgb(255 255 255 / 50%);
	}
	.box-2 .list-box>.title{
		justify-content: flex-start;
		display: inline-flex;
	}
	.box-2 .list-box>.title>.bar>span{
		width: 110%;
		transform: translateX(0%);
	}
	.box-2 .list-box>.list>.swiper-set>.swiper-wrapper>.swiper-slide.swiper-slide-active>a>.image2>span{
		background-color: rgb(0 0 0 / 0%);
	}
	.box-2 .list-box>.list>.swiper-set>.swiper-wrapper>.swiper-slide>a>.text2>.t-1{
		font-size: 1.5rem;
	}
	.box-2 .list-box>.list-2>.wrap{
		justify-content: center;
	}
	.box-2 .list-box>.list-2>.wrap>.block1{
		width: 80%;
		margin-bottom: 30px;
	}
	.box-2 .list-box>.none-list>.wrap{
		padding: 0 5%;
	}
	.box-2 .list-box>.none-list>.wrap>ul{
		flex-direction: column;
	}
	.box-2 .list-box>.none-list>.wrap>ul>li{
		width: 100%;
	}
	.box-2 .list-box>.none-list>.wrap>ul>li>div>a>.image{
		width: 90%;
		margin: auto;
	}
	
}
/***** box-3 *****/
.box-3{
	
}
.box-3>.inner{
	
}
.box-3 .title{
	width: 100%;
	max-width: 1200px;
	position: relative;
	z-index: 1;
	margin: auto;
}
.box-3 .title.mb2{
	margin-bottom: 2rem;
}
.box-3 .title>.t-1{
	position: relative;
	display: inline-block;
	padding-bottom: 1rem;
}
.box-3 .title>.t-1>img{
	width: auto;
	height: 6rem;
	max-width: none;
}
.box-3 .title>.t-1>.bar{
	position: absolute;
	bottom: 0;
	width: 100%;
}
.box-3 .title>.t-1>.bar>span{
	display: block;
	width: 120%;
	transform: translateX(-5%);
	height: 2px;
	background-color: var(--key-color-2);
}
.box-3 .title>.t-2{
	padding-top: 1rem;
}
.box-3 .title>.t-2>.t-1{
	font-size: 1.2rem;
	font-weight: 500;
	display: inline;
}
.box-3 .item-box{
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
}
.box-3 .item-box>.text-box{
	position: relative;
}
.box-3 .item-box>.text-box>.image{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: space-between;
	padding-top: 8rem;
}
.box-3 .item-box>.text-box>.image>.image-set{
	height: 100%;
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: center;
	overflow: hidden;
}
.box-3.patt-2 .item-box>.text-box>.image>.image-set,
.box-3.patt-3 .item-box>.text-box>.image>.image-set{
	overflow: unset;
}
.box-3 .item-box>.text-box>.image>.image-set>.movie-set{
	display: flex;
	flex-wrap: nowrap;
	flex-direction: column;
	justify-content: center;
}
.box-3 .item-box>.text-box>.image>.image-set>.movie-set video,
.box-3 .item-box>.text-box>.image>.image-set>.movie-set img,
.box-3 .item-box>.text-box>.image>.image-set>.img-set img{
	transition: all 300ms 0s ease-out;
}
.box-3 .item-box>.text-box>.image>.image-set>.movie-set>video{
	display: block;
	object-fit: cover;
	border: 1px solid rgb(0 0 0 / 5%);/*境界確認用*/
}
.box-3 .item-box>.text-box>.image>.image-set>.img-set>img{
	display: block;
}
.box-3 .item-box>.text-box>.image>.left{
	width: 35%;
}
.box-3 .item-box>.text-box>.image>.left>.left-mo-1{
	height: 100%;
}
.box-3 .item-box>.text-box>.image>.left>.left-mo-1>video{
	object-position: 50% 50%;/*位置調整用*/
	width: 70%;
	height: 80%;
}
.box-3 .item-box>.text-box>.image>.left>.left-im-1-v2{
	height: 100%;
}
.box-3.patt-3 .item-box>.text-box>.image>.left>.left-im-1-v2{
	display: flex;
	justify-content: flex-end;
	height: 40%;
}
.box-3 .item-box>.text-box>.image>.left>.left-im-1-v2>img{
	object-position: 50% 50%;/*位置調整用*/
	width: 70%;
	height: 80%;
	object-fit: cover;
}
.box-3.patt-3 .item-box>.text-box>.image>.left>.left-im-1-v2>img{
	height: auto;
	object-fit: cover;
}
.box-3 .item-box>.text-box>.image>.right{
	width: 35%;
	min-width: 330px;
}
.box-3 .item-box>.text-box>.image>.right>.right-im-1{
	height: 40%;
	display: flex;
	justify-content: flex-end;
	align-items: flex-end;
}
.box-3.patt-2 .item-box>.text-box>.image>.right>.right-im-1{
	align-items: center;
}
.box-3.patt-3 .item-box>.text-box>.image>.right>.right-im-1{
	align-items: flex-end;
}
.box-3 .item-box>.text-box>.image>.right>.right-im-1>img{
	width: 80%;
	border: 1px solid rgb(0 0 0 / 5%);
}
.box-3.patt-2  .item-box>.text-box>.image>.right>.right-im-1>img{
	height: auto;
	object-fit: cover;
}
.box-3 .item-box>.text-box>.image>.right>.right-mo-1{
	height: 60%;
	align-items: flex-end;
}
.box-3 .item-box>.text-box>.image>.right>.right-mo-1>video{
	object-position: 50% 50%;
	width: 60%;
	height: 80%;
	position: relative;
	top: 80px;
}
.box-3 .item-box>.text-box>.text{
	position: relative;
	width: 50%;
	min-width: 470px;
	padding-bottom: 5rem;
	margin: 0 auto;
}
.box-3.patt-3 .item-box>.text-box>.text{
	min-height: 400px;
}
.box-3 .item-box>.text-box>.text>.t-1{
	font-size: 2.5rem;
	font-weight: 700;
	text-align: center;
	line-height: 1.6em;
	width: 100vw;
	margin: 0 calc(50% - 50vw);
}
.box-3 .item-box>.text-box>.text>.t-1>.co1{
	color: var(--key-color-2);
}
.box-3 .item-box>.text-box>.text>.t-2{
	width: 100%;
	display: flex;
	justify-content: center;
}
.box-3 .item-box>.text-box>.text>.t-2>.t-2-1{
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.7em;
}
.box-3 .item-box>.text-box>.text>.t-4{
	margin: 0 calc(50% - 50vw);
}
.box-3 .item-box>.text-box>.text>.t-4>h2{
	font-size: 2.5rem;
	font-weight: 700;
	text-align: center;
	line-height: 1.6em;
	width: 100vw;
}
.box-3 .item-box>.text-box>.text>.t-4>h2>.s-1{
	position: relative;
}
.box-3 .item-box>.text-box>.text>.t-4>h2>.s-1::after{
	content: "・";
	position: absolute;
	top: -2rem;
	left: 0;
	color: var(--key-color-2);
}
.box-3 .item-box>.image-box{
	width: 100%;
	max-width: 1200px;
	margin: auto;
}
.box-3 .item-box>.image-box>div{
	width: 100%;
}
.box-3 .item-box>.image-box>div>video{
	display: block;
	width: 100%;
	border: 1px solid rgb(0 0 0 / 5%);
}
.box-3 .item-box2{
	width: 100%;
	max-width: 1200px;
	margin: auto;
}
.box-3 .item-box2>.text-box{
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
}
.box-3 .item-box2>.text-box>.text{
	width: 60%;
}
.box-3 .item-box2>.text-box>.text>.wrap{
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	flex-direction: column;
	flex-wrap: nowrap;
}
.box-3 .item-box2>.text-box>.text>.wrap>div>.t-1{
	font-size: 1.2rem;
	font-weight: 500;
	margin-bottom: 1rem;
}
.box-3 .item-box2>.text-box>.text>.wrap>div>.t-2{
	font-size: 1.2rem;
	font-weight: 500;
	margin-bottom: 1rem;
}
.box-3 .item-box2>.text-box>.text>.wrap>div>.t-2>.t-2-1{
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.7em;
}
.box-3 .item-box2>.text-box>.text>.wrap>div>.t-2>.t-2-3{
	font-size: 2.5rem;
	font-weight: 700;
	line-height: 1.6em;
	margin-bottom: 1rem;
}
.box-3 .item-box2>.text-box>.text>.wrap>div>.t-2>.t-2-4{
	font-size: 1.7rem;
	font-weight: 700;
	line-height: 1.6em;
	margin-bottom: 2rem;
}
.box-3 .item-box2>.text-box>.text>.wrap>div>.detail>div>a{
	display: inline-block;
	font-size: 0.8rem;
	font-family: var(--sans-font);
	background-color: var(--key-color-2);
	color: #fff;
	border: 1px solid var(--key-color-2);
	box-shadow: 0 0 3px rgb(0 0 0 / 30%);
	padding: 0.5rem 3rem;
	text-align: center;
	transition: all 300ms 0s ease;
}
.box-3 .item-box2>.text-box>.text>.wrap>div>.detail>div>a:hover{
	background-color: #fff;
	color: var(--key-color-2);
}
.box-3 .item-box2>.text-box>.text>.wrap>.mo-0{
	width: 50%;
	height: 100%;
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: center;
	margin: 0 auto 0 2rem;
	align-items: flex-start;
}
.box-3 .item-box2>.text-box>.text>.wrap>.mo-0>video{
	width: 100%;
	height: 80%;
	object-fit: cover;
	object-position: 60% 50%;
	border: 1px solid rgb(0 0 0 / 5%);
}
.box-3 .item-box2>.text-box>.image{
	width: 40%;
}
.box-3 .item-box2>.text-box>.image>.image-set{
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	position: relative;
	top: -6rem;
}
.box-3 .item-box2>.text-box>.image>.image-set>.mo-1{
	width: 100%;
	height: 35%;
	display: flex;
	flex-wrap: nowrap;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding-bottom: 20px;
}
.box-3 .item-box2>.text-box>.text>.wrap>.mo-0>video,
.box-3 .item-box2>.text-box>.text>.wrap>.mo-0>img,
.box-3 .item-box2>.text-box>.image>.image-set video,
.box-3 .item-box2>.text-box>.image>.image-set img{
	transition: all 300ms 0s ease-out;
}
.box-3 .item-box2>.text-box>.image>.image-set>.mo-1>video{
	display: block;
	object-fit: cover;
	border: 1px solid rgb(0 0 0 / 5%);
	width: 70%;
	height: 100%;
	object-position: 50% 0%;
}
.box-3 .item-box2>.text-box>.image>.image-set>.im-1{
	width: 100%;
	height: 45%;
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
}
.box-3 .item-box2>.text-box>.image>.image-set>.im-1>.up{
	width: 100%;
	height: 65%;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	padding-bottom: 10px;
}
.box-3 .item-box2>.text-box>.image>.image-set>.im-1>.up>div>img,
.box-3 .item-box2>.text-box>.image>.image-set>.im-1>.low>img{
	display: block;
	max-width: none;
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.box-3 .item-box2>.text-box>.image>.image-set>.im-1>.up>.left{
	width: 50%;
}
.box-3 .item-box2>.text-box>.image>.image-set>.im-1>.up>.left>img{
	object-position: 50% 0;
}
.box-3 .item-box2>.text-box>.image>.image-set>.im-1>.up>.right{
	width: 50%;
	padding-left: 20px;
}
.box-3 .item-box2>.text-box>.image>.image-set>.im-1>.up>.right>img{
	object-position: 0 0;
	    position: relative;
    top: -70px;
}
.box-3 .item-box2>.text-box>.image>.image-set>.im-1>.low{
	width: 100%;
	height: 35%;
	padding-bottom: 20px;
}
.box-3 .item-box2>.text-box>.image>.image-set>.im-1>.low>img{
	display: block;
	width: 100%;
	max-width: none;
	object-fit: contain;
	object-position: 100% 50%;
}
.box-3 .item-box2>.text-box>.image>.image-set>.mo-2{
	width: 100%;
	height: 20%;
	display: flex;
	justify-content: center;
}
.box-3 .item-box2>.text-box>.image>.image-set>.mo-2>video{
	display: block;
	object-fit: cover;
	border: 1px solid rgb(0 0 0 / 5%);/*境界確認用*/
	object-position: 50% 50%;
	width: 90%;
	position: relative;
}
@media screen and (max-width:768px){
	.box-3 .title{
		padding: 0 5%;
	}
	.box-3 .title>.t-1{
		text-align: center;
	}
	.box-3 .title>.t-1>img{
		height: 3rem;
	}
	.box-3 .title>.t-1>.bar>span{
		width: 110%;
	}
	.box-3.patt-3 .item-box>.text-box>.text{
		min-height: auto;
	}
	.box-3 .item-box>.text-box>.text{
		position: relative;
		width: 100%;
		min-width: auto;
		padding: 0 5% 5rem;
	}
	.box-3 .item-box>.text-box>.text>.t-1{
		font-size: 1.4rem;
	}
	.box-3 .item-box>.text-box>.text>.t-4>h2{
		font-size: 1.4rem;
	}
	.box-3 .item-box>.text-box>.text>.t-4>h2>.s-1::after{
		top: -1.5rem;
	}
	.box-3 .item-box>.text-box>.image{
		padding-top: 0rem;
	}
	.box-3.patt-2 .item-box>.text-box>.image,
	.box-3.patt-3 .item-box>.text-box>.image{
		display: none;
	}
	.box-3 .item-box>.text-box>.image video,
	.box-3 .item-box>.text-box>.image img,
	.box-3 .item-box2>.text-box>.image>.image-set video,
	.box-3 .item-box2>.text-box>.image>.image-set img{
		opacity: 0.3;
	}
	.box-3 .item-box>.text-box>.image>.image-set{
		overflow: visible;
	}
	.box-3 .item-box>.text-box>.image>.left{
		width: 50%;
		padding-right: 10%;
	}
	.box-3 .item-box>.text-box>.image>.left>.left-mo-1{
		align-items: flex-end;
	}
	.box-3 .item-box>.text-box>.image>.left>.left-mo-1>video{
		width: 100%;
		height: 60%;
	}
	.box-3 .item-box>.text-box>.image>.left>.left-im-1-v2{
		height: 70%;
	}
	.box-3 .item-box>.text-box>.image>.left>.left-im-1-v2>img{
		width: 100%;
		height: 60%;
	}
	.box-3 .item-box>.text-box>.image>.right{
		width: 50%;
		min-width: auto;
		padding-left: 10%;
	}
	.box-3 .item-box>.text-box>.image>.right>.right-im-1>img{
		width: 110%;
		max-width: none;
	}
	.box-3 .item-box>.text-box>.image>.right>.right-mo-1{
		align-items: flex-start;
	}
	.box-3 .item-box>.text-box>.image>.right>.right-mo-1>video{
		width: 100%;
		height: 60%;
	}
	.box-3 .item-box2>.text-box>.image>.image-set>.im-1>.up>.right{
		display: none;
	}
	.box-3 .item-box2>.text-box{
	position: relative;
	}
	.box-3 .item-box2>.text-box>.text{
		width: 100%;
		position: relative;
		z-index: 1;
	}
	.box-3 .item-box2>.text-box>.text>.wrap>div>.t-2>.t-2-3{
		font-size: 1.4rem;
	}
	.box-3 .item-box2>.text-box>.text>.wrap>div>.t-2>.t-2-4{
		font-size: 1.2rem;
	}
	.box-3 .item-box2>.text-box>.text>.wrap>div>.detail{
		text-align: center;
	}
	.box-3 .item-box2>.text-box>.text>.wrap>.text{
		padding: 0 5%;
		margin-bottom: 2rem;
	}
	.box-3 .item-box2>.text-box>.text>.wrap>.mo-0{
		width: 100%;
		margin: 0 auto 0;
	}
	.box-3 .item-box2>.text-box>.image{
		width: 100%;
		height: 85%;
		position: absolute;
		top: 0;
		left: 0;
	}
	.box-3 .item-box2>.text-box>.image>.image-set>.im-1>.up{
		height: 60%;
	}
	.box-3 .item-box2>.text-box>.image>.image-set>.im-1>.low{
		height: 40%;
	}
	.box-3 .item-box2>.text-box>.image>.image-set>.mo-2>video{
		width: 70%;
	}
}
/***** box-4 *****/
.box-4{
	
}
.box-4>.inner{
	width: 100%;
	max-width: 1200px;
	margin: auto;
	overflow: hidden;
}
.box-4 .title{
	width: 100%;
	max-width: 1200px;
	margin: auto;
}
.box-4 .title.mb2{
	margin-bottom: 2rem;
}
.box-4 .title>.t-1{
	position: relative;
	display: inline-block;
	padding-bottom: 1rem;
}
.box-4 .title>.t-1>img{
	width: auto;
	height: 6rem;
	max-width: none;
}
.box-4 .title>.t-1>.bar{
	position: absolute;
	bottom: 0;
	width: 100%;
}
.box-4 .title>.t-1>.bar>span{
	display: block;
	width: 120%;
	transform: translateX(-5%);
	height: 2px;
	background-color: var(--key-color-2);
}
.box-4 .title>.t-2{
	padding-top: 1rem;
}
.box-4 .title>.t-2>.t-1{
	font-size: 1.2rem;
	font-weight: 500;
	display: inline;
}
.box-4 .list>.swiper-set{
	position: relative;
}
.box-4 .list>.swiper-set>.swiper-wrapper>.swiper-slide>.wrap>.image{
	margin-bottom: 2rem;
}
.box-4 .list>.swiper-set>.swiper-wrapper>.swiper-slide>.wrap>.image>img{
	display: block;
	max-width: none;
	width: 100%;
	height: auto;
	aspect-ratio: 2 / 1.2;
	object-fit: cover;
}
.box-4 .list>.swiper-set>.swiper-wrapper>.swiper-slide>.wrap>.text{
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	opacity:0;
	padding: 0 1rem 2rem;
	transition: opacity 300ms 200ms ease;
}
.box-4 .list>.swiper-set>.swiper-wrapper>.swiper-slide.swiper-slide-active>.wrap>.text{
	opacity:1;
}
.box-4 .list>.swiper-set>.swiper-wrapper>.swiper-slide>.wrap>.text>.left{
	width: 50%;
	height: auto;
	position: relative;
	padding-right: 1rem;
}
.box-4 .list>.swiper-set>.swiper-wrapper>.swiper-slide>.wrap>.text>.left::after{
	content: "";
	display: block;
	position: absolute;
	top: 0;
	right: 2px;
	width: 2px;
	height: 100%;
	background: var(--key-color-2);
}
.box-4 .list>.swiper-set>.swiper-wrapper>.swiper-slide>.wrap>.text>.left>.t-1{
	display: inline-block;
	font-size: 0.9rem;
	font-family: var(--sans-font);
	font-weight: 300;
	border: 1px solid var(--border-color);
	background-color: #fff;
	padding: 0 1rem;
	margin-bottom: 1rem;
}
.box-4 .list>.swiper-set>.swiper-wrapper>.swiper-slide>.wrap>.text>.left>.t-2{
	font-size: 1.4rem;
	font-weight: 700;
	line-height: 1.7em;
	margin-bottom: 1rem;
}
.box-4 .list>.swiper-set>.swiper-wrapper>.swiper-slide>.wrap>.text>.left>.t-3{
	font-size: 1rem;
	font-weight: 400;
}
.box-4 .list>.swiper-set>.swiper-wrapper>.swiper-slide>.wrap>.text>.right{
	width: 50%;
	padding-left: 1rem;
}
.box-4 .list>.swiper-set>.swiper-wrapper>.swiper-slide>.wrap>.text>.right>.t-1{
	font-size: 1rem;
	line-height: 1.7em;
}
.box-4 .list>.swiper-set>.swiper-wrapper>.swiper-slide>.wrap>.text>.right>.detail>div>a{
	display: inline-block;
	font-size: 0.8rem;
	font-family: var(--sans-font);
	background-color: var(--key-color-2);
	color: #fff;
	border: 1px solid var(--key-color-2);
	box-shadow: 0 0 3px rgb(0 0 0 / 30%);
	padding: 0.5rem 3rem;
	text-align: center;
	transition: all 300ms 0s ease;
}
.box-4 .list>.swiper-set>.swiper-wrapper>.swiper-slide>.wrap>.text>.right>.detail>div>a:hover{
	background-color: #fff;
	color: var(--key-color-2);
}
.box-4 .list>.swiper-set>.navi-set{
	position: absolute;
	top: 40%;
	width: 40px;
	height: 40px;
	padding: 8px;
	background-color: #fff;
	border: 1px solid var(--key-color);
	cursor: pointer;
	z-index: 1;
}
.box-4 .list>.swiper-set>.navi-prev{
	left: 16%;
}
.box-4 .list>.swiper-set>.navi-next{
	right: 16%;
}
.box-4 .list>.swiper-set>.navi-set>svg{
	display: block;
	width: 100%;
	height: 100%;
	transition: transform 200ms 0s ease;
}
.box-4 .list>.swiper-set>.navi-set:hover>svg{
	transform: scale(1.2);
}
.box-4 .list3{
	
}
.box-4 .list3>.wrap{
	
}
.box-4 .list3>.wrap>ul{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 20px;
}
.box-4 .list3>.wrap>ul>li{
	width: calc((100% / 2) - 10px);
}
.box-4 .list3>.wrap>ul>li>.wrap{
	
}
.box-4 .list3>.wrap>ul>li>.wrap>.image{
	margin-bottom: 2rem;
}
.box-4 .list3>.wrap>ul>li>.wrap>.image>img{
	display: block;
	max-width: none;
	width: 100%;
	height: auto;
	aspect-ratio: 2 / 1.2;
	object-fit: cover;
}
.box-4 .list3>.wrap>ul>li>.wrap>.text{
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	padding: 0 1rem 2rem;
	transition: opacity 300ms 200ms ease;
}
.box-4 .list3>.wrap>ul>li>.wrap>.text>.left{
	width: 50%;
	height: auto;
	position: relative;
	padding-right: 1rem;
}
.box-4 .list3>.wrap>ul>li>.wrap>.text>.left::after{
	content: "";
	display: block;
	position: absolute;
	top: 0;
	right: 2px;
	width: 2px;
	height: 100%;
	background: var(--key-color-2);
}
.box-4 .list3>.wrap>ul>li>.wrap>.text>.left>.t-1{
	display: inline-block;
	font-size: 0.9rem;
	font-family: var(--sans-font);
	font-weight: 300;
	border: 1px solid var(--border-color);
	background-color: #fff;
	padding: 0 1rem;
	margin-bottom: 1rem;
}
.box-4 .list3>.wrap>ul>li>.wrap>.text>.left>.t-2{
	font-size: 1.3rem;
	font-weight: 700;
	line-height: 1.7em;
	margin-bottom: 1rem
}
.box-4 .list3>.wrap>ul>li>.wrap>.text>.left>.t-3{
	font-size: 1rem;
	font-weight: 400;
}
.box-4 .list3>.wrap>ul>li>.wrap>.text>.right{
	width: 50%;
	padding-left: 1rem;
}
.box-4 .list3>.wrap>ul>li>.wrap>.text>.right>.t1{
	font-size: 1rem;
	line-height: 1.7em;
}
.box-4 .list3>.wrap>ul>li>.wrap>.text>.right>.detail{
	
}
.box-4 .list3>.wrap>ul>li>.wrap>.text>.right>.detail>div{
	
}
.box-4 .list3>.wrap>ul>li>.wrap>.text>.right>.detail>div>a{
	display: inline-block;
	font-size: 0.8rem;
	font-family: var(--sans-font);
	background-color: var(--key-color-2);
	color: #fff;
	border: 1px solid var(--key-color-2);
	box-shadow: 0 0 3px rgb(0 0 0 / 30%);
	padding: 0.5rem 2rem;
	text-align: center;
	text-decoration: none;
	transition: all 300ms 0s ease;
}
.box-4 .list3>.wrap>ul>li>.wrap>.text>.right>.detail>div>a:hover{
	background-color: #fff;
	color: var(--key-color-2);
}
@media screen and (max-width:768px){
	.box-4 .title{
		padding: 0 5%;
	}
	.box-4 .title>.t-1>img{
		height: 3rem;
	}
	.box-4 .title>.t-1>.bar>span{
		width: 110%;
	}
	.box-4 .list>.swiper-set>.navi-set{
		top: 20%;
	}
	.box-4 .list>.swiper-set>.swiper-wrapper>.swiper-slide>.wrap>.image{
		margin-bottom: 1rem;
	}
	.box-4 .list>.swiper-set>.swiper-wrapper>.swiper-slide>.wrap>.text{
		flex-direction: column;
	}
	.box-4 .list>.swiper-set>.swiper-wrapper>.swiper-slide>.wrap>.text>.left{
		width: 100%;
		padding-right: 0rem;
	}
	.box-4 .list>.swiper-set>.swiper-wrapper>.swiper-slide>.wrap>.text>.left::after{
		top: auto;
		bottom: -10px;
		right: 0;
		width: 100%;
		height: 2px;
	}
	.box-4 .list>.swiper-set>.swiper-wrapper>.swiper-slide>.wrap>.text>.left>.t-2{
		font-size: 1.2rem;
		line-height: 1.5em;
	}
	.box-4 .list>.swiper-set>.swiper-wrapper>.swiper-slide>.wrap>.text>.left>.t-3{
		font-size: 0.9rem;
	}
	.box-4 .list>.swiper-set>.swiper-wrapper>.swiper-slide>.wrap>.text>.right{
		width: 100%;
		padding-left: 0rem;
		margin-top: 1.5rem;
	}
	.box-4 .list>.swiper-set>.navi-prev{
		left: 3%;
	}
	.box-4 .list>.swiper-set>.navi-next{
		right: 3%;
	}
	.box-4 .list3>.wrap>ul{
		display: flex;
		flex-direction: column;
	}
	.box-4 .list3>.wrap>ul>li{
		width: 100%;
	}
	.box-4 .list3>.wrap>ul>li>.wrap>.text{
		flex-direction: column;
		padding: 0 5% 2rem;
	}
	.box-4 .list3>.wrap>ul>li>.wrap>.text>.left{
		width: 100%;
		padding-right: 0rem;
	}
	.box-4 .list3>.wrap>ul>li>.wrap>.text>.left::after{
		top: auto;
		bottom: -10px;
		right: 0;
		width: 100%;
		height: 2px;
	}
	.box-4 .list3>.wrap>ul>li>.wrap>.text>.left>.t-2{
		font-size: 1.2rem;
	}
	.box-4 .list3>.wrap>ul>li>.wrap>.text>.left>.t-3{
		font-size: 0.9rem;
	}
	.box-4 .list3>.wrap>ul>li>.wrap>.text>.right{
	    width: 100%;
		padding-left: 0rem;
		margin-top: 1.5rem;
	}
}
/***** box-5 *****/
.box-5{
	
}
.box-5>.inner{
	width: 100%;
	max-width: 1200px;
	margin: auto;
}
.box-5 .title{
	text-align: center;
}
.box-5 .title>.logo{
	display: inline-block;
	margin-bottom: 0.6rem;
}
.box-5 .title>.logo>img{
	display: block;
	width: 60px;
}
.box-5 .title>.text>.t-1{
	font-size: 1.5rem;
	line-height: 1.5em;
	font-weight: 700;
	color: var(--key-color);
}
.box-5 .list-box>ul{
	width: 100%;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}
.box-5 .list-box>ul>li{
	width: 50%;
	display: flex;
	padding: 0 2rem;
	margin: 0 0 2rem;
}
.box-5 .list-box>ul>li:nth-child(odd){
	justify-content: flex-end;
}
.box-5 .list-box>ul>li:nth-child(even){
	justify-content: flex-start;
}
.box-5 .list-box>ul>li>div{
	width: 80%;
	border: 1px solid rgb(62 62 62 / 50%);
	padding: 2rem 0rem;
	background-color:#fff;
	transition:all 300ms 0s ease;
}
.box-5 .list-box>ul>li>div:hover{
	background-color: #f4cca1;
	border: 1px solid #f4cca1;
}
.box-5 .list-box>ul>li>div>a{
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: center;
	color: var(--key-color);
	text-decoration: none;
}
.box-5 .list-box>ul>li>div>a>.image>img{
	display: block;
	width: 50px;
}
.box-5 .list-box>ul>li>div>a>.text{
	font-size: 1.2rem;
	font-family: var(--sans-font);
	font-weight: 700;
	margin-left: 1rem;
}
@media screen and (max-width:768px){
	.box-5>.inner{
		padding: 0 2%;
	}
	.box-5 .title>.text>.t-1{
		font-size: 1.2rem;
	}
	.box-5 .list-box>ul>li{
		padding: 0 0.5rem;
		margin: 0 0 1rem;
	}
	.box-5 .list-box>ul>li>div{
		width: 100%;
	}
	.box-5 .list-box>ul>li>div>a{
		flex-direction: column;
	}
	.box-5 .list-box>ul>li>div>a>.image{
		margin-bottom: 0.6rem;
	}
	.box-5 .list-box>ul>li>div>a>.image>img{
		width: 30px;
	}
	.box-5 .list-box>ul>li>div>a>.text{
		font-size: 1rem;
		margin-left: 0;
	}
}
/***** box-banner *****/
.box-banner{
	
}
.box-banner>.inner{
	width: 100%;
	max-width: 1200px;
	margin: auto;
}
.box-banner .item-box{
	width: 100%;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
}
.box-banner .item-box>.banner{
	width: 50%;
	padding: 0 1rem;
}
.box-banner .item-box>.banner>.wrap{
	width: 100%;
	position: relative;
	height: auto;
	aspect-ratio: 2.45 / 1;
	overflow: hidden;
	background-color: #f0f0f0;
}
.box-banner .item-box>.banner>.wrap>.image{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}
.box-banner .item-box>.banner>.wrap>.image>div{
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: flex-end;
}
.box-banner .item-box>.banner>.wrap>.image>div>img{
	display: block;
	width: 100%;
	object-fit: contain;
	object-position: 100% 50%;
}
.box-banner .item-box>.banner>.wrap>.text{
	width: 100%;
	height: 100%;
	position: relative;
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: center;
}
.box-banner .item-box>.banner>.wrap>.text>div{
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: center;
	height: 100%;
	padding:0 2rem;
}
.box-banner .item-box>.banner>.wrap>.text>div>.t-1>p{
	font-size: 1rem;
	color: var(--key-color);
	display: inline-block;
	position: relative;
	margin-bottom: 0.5rem;
}
.box-banner .item-box>.banner>.wrap>.text>div>.t-1>p::after{
	content:"";
	display: block;
	position: absolute;
	left: -5px;
	bottom: 0;
	width: 110%;
	border-bottom: 1px solid var(--border-color);
}
.box-banner .item-box>.banner>.wrap>.text>div>.t-2{
	font-family: var(--sans-font);
	margin-bottom: 0.5rem;
}
.box-banner .item-box>.banner>.wrap>.text>div>.t-2>p{
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.4em;
	color: var(--key-color);
}
.box-banner .item-box>.banner>.wrap>.text>div>.t-2>.t-2-2{
    color: var(--key-color-2);
}
.box-banner .item-box>.banner>.wrap>.text>div>.t-3{
	font-size: 1rem;
	color: var(--key-color);
	display: inline-block;
	position: relative;
}
.box-banner .item-box>.banner>.wrap>.text>div>.t-3>a{
	display: inline-block;
	color: var(--key-color);
	position: relative;
}
.box-banner .item-box>.banner>.wrap>.text>div>.t-3>a>p{
	font-size: 1rem;
	transition:opacity 200ms 0s ease;
}
.box-banner .item-box>.banner>.wrap>.text>div>.t-3>a:hover>p{
	opacity:0.5;
}
.box-banner .item-box>.banner>.wrap>.text>div>.t-3>a>.bar{
	position: absolute;
	bottom: 0;
	left: 0;
	width: 120%;
	height: 1px;
	background-color: var(--border-color);
	transition:width 200ms 0s ease;
}
.box-banner .item-box>.banner>.wrap>.text>div>.t-3>a:hover>.bar{
	width: 130%;
}
.box-banner .item-box>.banner>.wrap>.text>div>.t-3>a>.bar>span{
	display: block;
	width: 1.5rem;
	height: 1px;
	position: absolute;
	bottom: 0;
	right: 0;
	background-color: var(--border-color);
	transform-origin: bottom right;
	transform: rotateZ(45deg);
	transition:width 220ms 0s ease;
}
.box-banner .item-box>.banner>.wrap>.text>div>.t-3>a:hover>.bar>span{
	width: 2rem;
}
.box-banner .item-box>.banner>.wrap>.text>div>.t-4{
	font-family: var(--sans-font);
	margin-bottom: 0.5rem;
}
.box-banner .item-box>.banner>.wrap>.text>div>.t-4>p{
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 1.4em;
	color: var(--key-color);
}
.box-banner .item-box>.banner>.wrap>.text>div>.t-4>.t-4-1{
	color: #8CBD46;
}
@media screen and (max-width:768px){
	.box-banner>.inner{
		padding: 0 5%;
	}
	.box-banner .item-box{
		flex-direction: column;
	}
	.box-banner .item-box>.banner{
		width: 100%;
		display: flex;
		justify-content: center;
		padding: 0;
		margin-bottom: 2rem;
	}
	.box-banner .item-box>.banner>.wrap{
		width: 100%;
		aspect-ratio: 2 / 1;
		box-shadow: 0 0 1px var(--border-color);
	}
	.box-banner .item-box>.banner>.wrap>.text>div{
		padding: 0 1rem;
	}
	.box-banner .item-box>.banner>.wrap>.text>div>.t-2>p{
		font-size: 1.3rem;
	}
	.box-banner .item-box>.banner>.wrap>.text>div>.t-4>p{
		font-size: 1.2rem;
	}
	.box-banner .item-box>.banner>.wrap>.image>div>img{
		width: auto;
		height: 100%;
		object-fit: cover;
	}
}
/*****  *****/
.fade-target{
	transition: all 600ms 0s ease-out;
	transform: translateY(20px);
	opacity: 0;
}
.box-11 .item-box>.image-box>div>.im-1>div>.shutter.fade-target,
.box-11 .item-box>.image-box>div>.im-2>div>.shutter.fade-target,
.box-11 .item-box>.image-box>div>.im-3>.mlt>div>.shutter.fade-target,
.box-11 .item-box>.image-box>div>.im-3>div>.shutter.fade-target{
	transform: translateY(0);
	opacity: 1;
}
.f-active{
	transform: translateY(0);
	opacity: 1;
}
@media screen and (max-width:768px){
	
	
	
}
/***** back top top *****/
.backtoup{
	position: fixed;
	bottom: 10px;
	right: 10px;
	cursor: pointer;
	opacity: 0;
	transition: opacity 200ms 0s ease;
	z-index: 4;
}
.backtoup.btuActive{
	opacity: 1;
}
.backtoup>div{
	width: 50px;
	height: 50px;
	position: relative;
	transform: scale(0.9);
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all 200ms 0s ease;
	flex-direction: column;
	flex-wrap: nowrap;
	background-color: var(--key-color-2);
}
.backtoup:hover>div{
	transform: scale(1);
}
.backtoup>div>svg{
	color: #fff;
	height: 60%;
}
.backtoup>div>svg path{
	stroke: #fff;
	fill: #fff;
}
.backtoup>div>p{
	font-size: 0.8rem;
	line-height: 1em;
	font-weight: 300;
	font-family: var(--sans-font);
	color: #fff;
	margin: 0;
}
@media screen and (max-width:768px){
	.backtoup{
		bottom: 7rem;
	}
}
/***** high priority *****/
.vk_post_imgOuter_singleTermLabel{
	z-index: 5 !important;
}