@charset "utf-8";
/*------------------------------------------------------------
	汎用スタイル
------------------------------------------------------------*/
/* 81-LSM */
/* clearfix */	
.clearfix:after {content: "";display: block;clear: both;}
/* flex */	
.flex,.flexA,.flexB,.flexC {display: flex;flex-wrap: wrap;}
.flexA {justify-content: space-around;}
.flexB {justify-content: space-between;}
.flexC {justify-content: center;}
/*------------------------------------------------------------
	svgAnimation
------------------------------------------------------------*/
.svgAnimation {
	margin: 0 auto;
	display: block;
}
.svgAnimation .cls-1 {
	fill: none;
    stroke: #fff;
    stroke-width: 11;
    stroke-linejoin: round;
    stroke-linecap: round;
}
@keyframes draw {
	100% {
		stroke-dashoffset: 0;
	}
}
/*------------------------------------------------------------
	fade
------------------------------------------------------------*/
.fadeInLeft,
.fadeGroup .inLeft {
	opacity: 0;
	transform: translateX(-5rem);
	transition: all 1s ease-out;
}
.fadeInLeft.in,
.fadeGroup.in .inLeft {
	opacity: 1;
	transform: translateX(0);
}
.fadeInUp,
.fadeGroup .inUp {
    opacity: 0;
    transition: all ease-in-out 0.8s;
}
.fadeInUp.in,
.fadeGroup.in .inUp {
    opacity: 1;
}
.fadeGroup.in .svgAnimation .cls-1 {
	animation: draw 1s ease forwards;
	animation-delay: .7s;
}
/*------------------------------------------------------------
	content
------------------------------------------------------------*/
.content {
	margin: 0 auto;
	max-width: 104rem;
}
@media all and (max-width: 896px) {
}
/*------------------------------------------------------------
	comPhotoList
------------------------------------------------------------*/
.comPhotoList {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 9.8rem 0;
}
.comPhotoList > li {
	padding-left: 7rem;
	width: calc((100% - 5.3rem) / 2);
	box-sizing: border-box;
	position: relative;
	z-index: 1;
}
.comPhotoList > li .line {
	margin-left: -1.4rem;
	position: absolute;
	top: 6.6rem;
	left: 50%;
	transform: translateX(-50%);
	width: 44.3rem;
	z-index: -1;
}
.comPhotoList > li a {
	position: absolute;
	top: 18.9rem;
	left: -0.1rem;
	width: 6.2rem;
	display: block;
}
.comPhotoList > li a:hover {
	opacity: 0.7;
}
.comPhotoList li .topBox {
	margin-bottom: 2.5rem;
	position: relative;
}
.comPhotoList li .topBox .textImg {
	width: 45.7rem;
}
.comPhotoList li .topBox .photo {
	position: absolute;
	top: 0;
	right: 0;
	width: 16rem;
	aspect-ratio: 16 / 9;
}
.comPhotoList li .topBox .photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.comPhotoList li .textUl li:not(:last-child) {
	margin-bottom: 1.5rem;
}
.comPhotoList li .textUl li .tag {
	margin-bottom: 0.9rem;
	padding: 0.9rem 0.5rem 0.4rem;
	width: 9.5rem;
	font-size: 1.1rem;
	font-weight: 700;
	background: #ffff00;
	border-radius: 0.5rem;
	text-align: center;
}
.comPhotoList li .textUl li .text {
	margin-right: -1rem;
	font-size: 1.5rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	line-height: 1.41;
	text-align: justify;
}
@media all and (max-width: 896px) {
	.comPhotoList {
		display: block;
	}
	.comPhotoList > li {
		margin: 0 auto 7.6rem;
		padding: 0 1rem 0 3rem;
		width: auto;
		max-width: 37.5rem;
	}
	.comPhotoList > li .line {
		margin-left: 0.2rem;
		top: 5.1rem;
		width: 33rem;
	}
	.comPhotoList > li a {
		top: 14.4rem;
        left: 1.5rem;
        width: 4.6rem;
	}
	.comPhotoList li .topBox {
		margin-bottom: 1.9rem;
	}
	.comPhotoList li .topBox .textImg {
		width: auto;
		max-width: 19.6rem;
	}
	.comPhotoList li .topBox .photo {
		position: absolute;
		top: 0.1rem;
		right: 0.5rem;
		width: 12rem;
	}
	.comPhotoList li .spImg {
		margin: 0 3.9rem 1.9rem;
		width: 29.6rem;
	}
	.comPhotoList li .textUl {
		margin: 0 -0.8rem 0 3.8rem;
	}
	.comPhotoList li .textUl li:not(:last-child) {
		margin-bottom: 1rem;
	}
	.comPhotoList li .textUl li .tag {
		margin-bottom: 0.8rem;
		padding: 0.7rem 0.5rem 0.5rem;
		width: 7rem;
		font-size: 0.85rem;
		line-height: 1.2;
	}
	.comPhotoList li .textUl li .text {
		margin-right: 0;
		font-size: 1.1rem;
		line-height: 1.41;
	}
}
/*------------------------------------------------------------
	mfp-fade
------------------------------------------------------------*/
.mfp-bg {
	background: #000;
	opacity: 0.4;
}
.mfp-container {
	padding: 0 0.8rem 0 3.2rem;
}
.mfp-fade.mfp-bg {
	opacity: 0;
	-webkit-transition: all 0.5s ease-out;
	transition: all 0.5s ease-out;
}
.mfp-fade.mfp-bg.mfp-ready {
	opacity: 0.4;
}
.mfp-fade.mfp-bg.mfp-removing {
	opacity: 0;
}
.mfp-fade.mfp-wrap .mfp-content {
	opacity: 0;
	-webkit-transition: all 0.5s ease-out;
	transition: all 0.5s ease-out;
}
.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
	opacity: 1;
}
.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
	opacity: 0;
}
@media all and (max-width: 896px) {
	.mfp-container {
		padding: 0;
	}
}
/*------------------------------------------------------------
	comPopBox
------------------------------------------------------------*/
.comPopBox {
	margin: 0 auto;
	max-width: 101.9rem;
	display: none;
}
body.fixed .comPopBox {
	display: block;
}
.comPopBox .titleImg {
	margin: 0 auto 1.3rem;
	max-width: 98.9rem;
}
.comPopBox .inner {
	padding: 1.9rem 1.5rem 2.4rem 1.8rem;
	min-height: 58.7rem;
	position: relative;
	z-index: 1;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	box-sizing: border-box;
}
.comPopBox .inner::before {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url(../img/common/pop_bg01.png) no-repeat center center / 100% 100%;
	content: '';
	z-index: -1;
}
.comPopBox .inner .photo {
	width: 39.8rem;
}
.comPopBox .inner .rBox {
	padding: 3.5rem 1rem;
	width: calc(100% - 39.8rem);
	height: 54.5rem;
	background: #FFF;
}
.comPopBox .inner .rBox .comPhotoList {
	width: 100%;
	display: block;
}
.comPopBox .inner .rBox .comPhotoList > li {
	margin: 0 0.7rem 6rem auto;
	max-width: 52.7rem;
	width: 100%;
}
.comPopBox .inner .rBox .comPhotoList > li:last-child {
	margin-bottom: 0;
}
.comPopBox .inner .rBox .comPhotoList .topBox {
	margin-bottom: 3rem;
}
.comPopBox .inner .rBox .comPhotoList .topBox .photo {
	right: 3.3rem;
}
.comPopBox .inner .rBox .comPhotoList li .textUl li .text {
	margin-right: 0;
}
.comPopBox .inner .rBox .comPhotoList > li .line {
	margin-left: -3rem;
}
.comPopBox .inner .close {
	position: absolute;
	bottom: -3.3rem;
    right: -3.6rem;
	width: 8rem;
	cursor: pointer;
	transition: 0.3s;
}
@media all and (min-width: 897px) and (max-width: 1200px) {
	.comPopBox .inner .rBox .comPhotoList li .topBox .textImg {
		width: 36rem;
	}
}
@media all and (min-width: 897px) and (max-width: 1140px) {
	.mfp-container {
		padding: 0 2rem;
	}
	.comPopBox .inner {
		min-height: 49rem;
	}
	.comPopBox .inner .photo {
		width: 33rem;
	}
	.comPopBox .inner .rBox {
		width: calc(100% - 33rem);
		height: 45.2rem;
	}
	.comPopBox .inner .close {
		width: 6rem;
		bottom: -2.3rem;
    	right: -0.6rem;
	}
	.comPopBox .inner .rBox .comPhotoList > li {
		margin: 0 auto 6rem;
	}
	.comPopBox .inner .rBox .comPhotoList > li .line {
		margin-left: 0;
	}
	.simplebar-track {
		right: -3rem !important;
	}
}
@media all and (min-width: 897px) {
	.comPopBox .inner .close:hover {
		opacity: 0.7;
	}
}
@media all and (max-width: 896px) {
	.comPopBox {
		margin: 0;
		max-width: inherit;
		position: relative;
	}
	.comPopBox .titleImg {
		margin: 0 auto 1.3rem;
		max-width: 98.9rem;
		position: absolute;
		top: 10.5vw;
        left: 3.1rem;
		z-index: 5;
	}
	.comPopBox .titleImg img {
		height: 4.1rem;
	}
	.comPopBox .inner {
		padding: 0;
		min-height: 58.7rem;
		display: block;
	}
	.comPopBox .inner::before {
		display: none;
	}
	.comPopBox .inner .photo {
		width: auto;
	}
	.comPopBox .inner .photo img {
		width: 100%;
	}
	.comPopBox .inner .rBox {
		padding: 4.5rem 1rem;
		width: auto;
		height: 44.7rem;
	}
	.comPopBox .inner .rBox .comPhotoList > li {
		margin: 0 auto 4rem;
		padding: 0 1.9rem;
		max-width: 35.5rem;
		width: 100%;
	}
	.comPopBox .inner .rBox .comPhotoList .topBox {
		margin-bottom: 1.9rem;
	}
	.comPopBox .inner .rBox .comPhotoList .topBox .photo {
		right: -1.5rem;
	}
	.comPopBox .inner .rBox .comPhotoList .spImg {
		margin-bottom: 2.2rem;
	}
	.comPopBox .inner .rBox .comPhotoList > li .line {
		margin-left: 0.2rem;
	}
	.comPopBox .inner .rBox .comPhotoList > li a {
		top: 14.2rem;
        left: 0.5rem;
	}
	.comPopBox .inner .close {
		bottom: 0.9rem;
		right: 1.6rem;
		width: 4.4rem;
	}
}
/*------------------------------------------------------------
	simplebar-scrollbar
------------------------------------------------------------*/
.simplebar-track {
	right: -5.4rem;
	width: 0.8rem !important;
}
.simplebar-scrollbar:before {
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	opacity: 1 !important;
	background: #FFF;
}
@media all and (max-width: 896px) {
	.simplebar-track {
		right: 0.6rem;
        top: 0.7rem !important;
        width: 0.3rem !important;
        bottom: 0.7rem !important;
	}
	.simplebar-scrollbar:before {
		background: rgba(0, 0, 0, 0.3);
	}
}
