@charset "UTF-8";
/* CSS Document */

body{
	overflow:unset !important;
}
.se h2,
.se h3,
.se h4{
	font-size:unset !important;
	letter-spacing:unset !important;
	text-align:unset !important;
	font-weight:unset !important;
	padding:unset !important;
}

/*===========
fadeIn
===========*/

.fadeIn {
	opacity: 0; /* 最初は非表示にしておく */
    transition: all 3s; /* 動きを滑らかに */
}
.fadeIn.show {
  opacity: 1;
}



.se{
}

/*-- mainV --*/ 
.se .mainV{
	width:100%;
	height:80vh;
	margin:0 auto 0px;
	display:flex;
	justify-content:space-between;
}
.se .mainV{
	position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.se .mainV .reverse-parallax-background{
	position: absolute;
    top: -20%;
    left: 0;
    width: 100%;
    height: 150%;
    background:url("/se/img/mainV_bg.webp")no-repeat center / cover;
    background-size: cover;
    background-position: center;
    transform: translateY(0);
    will-change: transform;
}
.se .mainV .title{
	width:80%;
	max-width:450px;
	height:fit-content;
	position:absolute;
	bottom:50px;
	right:50px;
}
.se .mainV .title img{
	margin-bottom:10px;
}
.se .mainV .title h2{
	font-family: "Zen Old Mincho", serif !important;
	font-weight: 400 !important;
	color:#fff !important;
	font-size:1.3rem !important;
	margin-bottom:0.6em !important;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	line-height:1.7em !important;
}
.se .mainV .title p{
	color:#fff;
}

@media screen and (max-width:959px) {
	/*-- mainV --*/ 
	.se .mainV{
		height:100vh;
	}
	.se .mainV .title{
		width:90%;
		max-width:380px;
	}
	.se .mainV .title h2{
		font-size:1.1rem !important;
		margin-bottom:0.6em !important;
	}
}
@media screen and (max-width:768px) {
	.se .mainV .title{
		width:90%;
		right:0;
		left:0;
		margin:auto;
	}
}


/*-- ep --*/ 
.se .ep{
	padding:100px 0;
	color:#fff;
	background:#202423;
}
.se .ep .wrap{
	width:90%;
	max-width:1200px;
	margin:auto;
	display:flex;
	justify-content:space-between;
	align-items:center;
	flex-direction: row-reverse;
}
.se .ep .wrap .image{
	width:45%;
}
.se .ep .wrap .image img{
	width:100%;
}
.se .ep .wrap .detail{
	width:50%;
	height:fit-content;
}
.se .ep .wrap .detail h3{
	font-family: "Zen Old Mincho", serif !important;
	font-size:2rem !important;
	font-weight: 100 !important;
	margin-bottom:0.5em;
		-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
.se .ep .wrap .detail h4{
	font-family: "Zen Old Mincho", serif !important;
	font-size:1.3rem !important;
	margin-bottom:0.5em;
		-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
@media screen and (max-width:768px) {
	.se .ep .wrap{
		width:90%;
		max-width:unset;
		display:block;
		justify-content:unset;
		align-items:unset;
		flex-direction: unset;
	}
	.se .ep .wrap .image{
		width:100%;
	}
	.se .ep .wrap .image img{
		width:100%;
		max-width:500px;
		margin:auto;
		display:block;
	}
	.se .ep .wrap .detail{
		width:100%;
		height:fit-content;
	}
	.se .ep .wrap .detail h3{
		font-size:2rem !important;
		font-weight: 400 !important;
		text-align:center !important;
	}
}


/*-- point --*/
.point{
	width:100vw;
	animation-duration: 1s;
	position:relative;
}
.point.point_back_change .point_imagebg{
	content:"";
	position:absolute;
	top:0;
	width:100%;
	height:100%;
	  --dot-bg: #202423;
  --dot-color: white;
  --dot-size: 1px;
  --dot-space: 22px;
  background:
    linear-gradient(90deg, var(--dot-bg) calc(var(--dot-space) - var(--dot-size)), transparent 1%) center / var(--dot-space) var(--dot-space),
    linear-gradient(var(--dot-bg) calc(var(--dot-space) - var(--dot-size)), transparent 1%) center / var(--dot-space) var(--dot-space),
    var(--dot-color);
	z-index:1;
	transition: all 0.5s 0s ease;
	opacity:0;
}
.point.point_back_change.is-active .point_imagebg{
	opacity:0.6;
}
.point .wrap{
	height:100%;
	width:100%;
	position:relative;
}
.point .wrap .bg_space{
	height:100vh;
	width:100%;
	position:sticky;
	top:0;
	left:0;
}
.point .wrap .bg_space .slider-area {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.point .wrap .bg_space .slider-item {
    position: absolute;
    inset: 0;
    opacity: 0;
    z-index: 0;
    animation: sliderAnime 40s linear infinite 0s;
}
.point .wrap .bg_space .slider-item:nth-child(2) {
    animation-delay: 10s;
}
.point .wrap .bg_space .slider-item:nth-child(3) {
    animation-delay: 20s;
}
.point .wrap .bg_space .slider-item:nth-child(4) {
    animation-delay: 30s;
}
.point .wrap .bg_space .slider-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@keyframes sliderAnime {
    0% {
        opacity: 0;
        animation-timing-function: ease-in;
    }
    8% {
        opacity: 1;
        animation-timing-function: ease-out;
    }
    20% {
        opacity: 1;
        transform: scale(1.1);
    }
    40%,
    100% {
        opacity: 0;
        transform: scale(1.2);
    }
}
.point .wrap .sub_wrap{
	width:90%;
	max-width:1400px;
	z-index:5;
	position:relative;
	margin:auto;
	padding:100px 0;
}
.point .wrap .sub_wrap .title_box{
	width:fit-content;
	height:50vh;
	margin:auto;
}
.point .wrap .sub_wrap .title_box h3{
	color:#fff;
	font-family: "Zen Old Mincho", serif !important;
	font-weight: 400 !important;
	color:#fff !important;
	font-size:2.0rem !important;
	margin-bottom:0.6em !important;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	letter-spacing:0em !important;
    position: relative;
    padding: 0em 1em !important;
}

.point .wrap .sub_wrap .title_box h3::before,
.point .wrap .sub_wrap .title_box h3::after {
    display: inline-block;
    position: absolute;
    width: 10px;
    height: 100%;
    border: 1px solid #fff;
    box-sizing: border-box;
    content: '';
}
.point .wrap .sub_wrap .title_box h3::before {
    top: 0;
    left: 0;
    border-right: none;
}
.point .wrap .sub_wrap .title_box h3::after {
    bottom: 0;
    right: 0;
    border-left: none;
}
.point .wrap .sub_wrap_box{
	display:flex;
	justify-content:space-between;
}
.point .wrap .sub_wrap .movie{
	width:50%;
	position:sticky;
	height:fit-content;
	top:30%;
}
.point .wrap .sub_wrap .movie iframe{
	width:100%;
	aspect-ratio:16 / 9;
	box-shadow:10px 10px 5px #0006;
} 
.point .wrap .sub_wrap .inner{
	width:45%;
}
.point .wrap .sub_wrap .inner .sub_inner{
	margin:0 0 150px 0
}
.point .wrap .sub_wrap .inner .sub_inner li{
	list-style:none;
	margin-bottom:100px;
}
.point .wrap .sub_wrap .inner .sub_inner > h4{
	font-family: "Zen Old Mincho", serif !important;
	font-weight: 400 !important;
	font-size:2.0rem !important;
	color:#fff;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	display: flex;
	align-items: center;
	margin-bottom:1em;
}
.point .wrap .sub_wrap .inner .sub_inner > h4 span{
	margin:0 0.2em 0 0;
}
.point .wrap .sub_wrap .inner .sub_inner > h4:after {
    content: "";
    height: 1px;
    flex-grow: 1;
    background-color: #fff;
	margin-left:1em;
}
.point .wrap .sub_wrap .inner .sub_inner > p{
	color:#fff;
	margin-bottom:50px
}
.point .wrap .sub_wrap .inner .sub_inner li dt{
	margin:0 0 10px 0;
	background:#f9f9f9cc;
}
.point .wrap .sub_wrap .inner .sub_inner li dt img{
	width:100%;
}
.point .wrap .sub_wrap .inner .sub_inner li dd{
	color:#fff;
}
.point .wrap .sub_wrap .inner .sub_inner li dd h5{
	font-family: "Zen Old Mincho", serif !important;
	font-weight: 400 !important;
	font-size:1.4rem;
		-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	margin:0.6em 0;
}
.point .wrap .sub_wrap .inner .sub_inner li dd p{
}

@media screen and (max-width:959px) {
	.point .wrap .sub_wrap_box{
		display:block;
		justify-content:unset;
		width:96%;
		max-width:600px;
		margin:auto;
	}
	.point .wrap .sub_wrap .movie{
		width:100%;
		position:unset;
		height:fit-content;
		top:unset;
		margin:0 auto 100px;
	}
	.point .wrap .sub_wrap .inner{
		width:100%;
	}
}

@media screen and (max-width:768px) {
	.point .wrap .sub_wrap .title_box h3{
		text-align:center !important;
	}
	.point .wrap .sub_wrap .title_box h3 span{
		display:block;
	}
}
@media screen and (max-width:599px) {
	.point .wrap .sub_wrap .title_box h3{
		text-align:center !important;
		font-size:5.8vw !important;
	}
	.point .wrap .sub_wrap .title_box h3 span{
		display:block;
	}
	.point .wrap .sub_wrap .inner .sub_inner > h4{
		font-size:2.2rem !important;
	}
}



/*-- case --*/
.case{
}
.case .wrap{
	display:flex;
	justify-content:space-between;
	position:relative;
}
.case .wrap .title_image{
	width:47%;
	height:fit-content;
	position:sticky;
	top:0;
	left:0;
}
.case .wrap .title_image .sub_title {
	position:absolute;
	height:fit-content;
	width:fit-content;
	top:0;
	bottom:0;
	left:0;
	margin:auto;
	display:flex;
	justify-content:space-evenly;
	width:100%;
	padding-left:2em;
	box-sizing:border-box;
	align-items:center;
}
.case .wrap .title_image .sub_title .inner_title > h3{
	font-family: "Zen Old Mincho", serif !important;
	font-weight: 400 !important;
	font-size:1.8rem !important;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	height:fit-content;
}
.case .wrap .title_image .sub_title  .inner_title > h3 span{
	display:block;
}
.case .wrap .title_image .sub_title  .inner_title > h3 span:nth-child(1):after{
	content: "\A"; /* 改行コード */
	white-space: pre; /* 改行を有効にする */
}
.case .wrap .title_image .sub_title .inner_image{
	width:50%;
}
.case .wrap .title_image .sub_title .inner_image img{
	width:90%;
}

.case .wrap .title_image .image_bg{
	display:grid;
	grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
	grid-template-rows: 11vh 11vh 11vh 11vh 11vh 11vh 11vh 11vh 11vh;
	gap:3px;
}
.case .wrap .title_image dt{
	overflow:hidden;
}
.case .wrap .title_image dt img{
	object-fit:cover;
	height:100%;
	width:100%;
}
.case .wrap .title_image dt:nth-child(1){
  grid-column: 1 / 7;
  grid-row: 1 / 4;
}
.case .wrap .title_image dt:nth-child(2){
  grid-column: 7 / 10;
  grid-row: 1 / 4;
}
.case .wrap .title_image dt:nth-child(3){
  grid-column: 1 / 7;
  grid-row: 4 / 7;
}
.case .wrap .title_image dt:nth-child(4){
  grid-column: 1 / 4;
  grid-row: 7 / 10;
}
.case .wrap .title_image dt:nth-child(5){
  grid-column: 4 / 7;
  grid-row: 7 / 10;
}
.case .wrap .title_image dt:nth-child(6){
  grid-column: 7 / 10;
  grid-row: 7 / 10;
}
.case .wrap .detail{
	width:53%;
	padding:100px 0;
	background:#102022;
	color:#fff;
}
.case .wrap .detail .inner{
	width:90%;
	max-width:800px;
	margin:auto;
}
.case .wrap .detail .title_box{
	margin-bottom:50px;
}
.case .wrap .detail .title_box h4{
	font-size:1.5rem !important;
	font-family: "Zen Old Mincho", serif !important;
	font-weight: 400 !important;
	margin-bottom:10px;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
.case .wrap .detail .case_info{
}
.case .wrap .detail .case_info li{
	margin-bottom:50px;
	list-style:none;
	border-bottom:1px dotted #fff;
	padding-bottom:20px;:
}
.case .wrap .detail .case_info li:last-child{
	border-bottom:none;
	padding-bottom:0px;:
}
.case .wrap .detail .case_info li .sub_title{
	display:flex;
	justify-content:space-between;
	align-items:center;
	margin-bottom:20px;
}
.case .wrap .detail .case_info li .sub_title dt{
	width:200px;
}
.case .wrap .detail .case_info li .sub_title dt img{
	width:100%;
}
.case .wrap .detail .case_info li .sub_title dd{
	width:calc(100% - 220px);
	height:fit-content;
}
.case .wrap .detail .case_info li .sub_title dd h5{
	font-size:1.5rem;
	font-family: "Zen Old Mincho", serif !important;
	font-weight: 400 !important;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
.case .wrap .detail .case_info li .sub_title dd h6{
	font-size:1rem;
	font-family: "Zen Old Mincho", serif !important;
	font-weight: 400 !important;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

@media screen and (max-width:1199px) {
}
@media screen and (max-width:959px) {
	.case .wrap{
		display:block;
		justify-content:unset;
	}
	.case .wrap .title_image{
		width:100%;
		height:fit-content;
		top:unset;
		left:unset;
	}
	.case .wrap .detail{
		width:100%;
	}
}
@media screen and (max-width:599px) {
	.case .wrap .detail .case_info li .sub_title{
		display:block;
		justify-content:unset;
		align-items:unset;
		margin-bottom:20px;
	}
	.case .wrap .title_image .sub_title .inner_title > h3{
		font-size:5.3vw !important;
	}
	.case .wrap .detail .case_info li .sub_title dt{
		width:100%;
		margin-bottom:15px;
	}
	.case .wrap .detail .case_info li .sub_title dd{
		width:100%;
		height:fit-content;
	}
}


/*-- guidance --*/
.guidance{
	background:#000000;
	padding:0px 0;
}
.guidance .wrap{
	display:flex;
	justify-content:space-between;
	background:url("/se/img/guidance_img.webp")no-repeat center bottom / 70%;
	width:96%;
	max-width:1400px;
	margin:auto;
	padding:100px 0;
}
.guidance .wrap .image{
	width:35%;
	align-items:center;
	display:flex;
}
.guidance .wrap .image img{
	width:100%;
	max-width:300px;
	margin:auto;
	height:fit-content;
}
.guidance .wrap .detail{
	color:#fff;
	width:35%;
	padding:100px 0;
}
.guidance .wrap .detail h3{
	font-size:1.5rem !important;
	font-family: "Zen Old Mincho", serif !important;
	font-weight: 400 !important;
	margin-bottom:20px;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
@media screen and (max-width:959px) {
	.guidance .wrap{
		display:block;
		justify-content:unset;
		background:url("/se/img/guidance_img.webp")no-repeat center bottom / 100%;
		width:90%;
		max-width:700px;
		margin:auto;
		padding:100px 0 200px;
	}
	.guidance .wrap .image{
		width:100%;
		align-items:unset;
		display:unset;
		margin:auto;
		display:block;
		padding-bottom:50px;
	}
	.guidance .wrap .image img{
		width:100%;
		max-width:400px;
		margin:auto;
		height:fit-content;
		display:block;
	}
	.guidance .wrap .detail{
		color:#fff;
		width:100%;
		padding:0;
	}
	.guidance .wrap .detail h3{
		text-align:center !important;

	}
}
@media screen and (max-width:768px) {
	.guidance .wrap .image{
		padding-bottom:20px;
	}
	.guidance .wrap .image img{
		width:100%;
		max-width:350px;
	}
	.guidance .wrap .detail h3{
		font-size:4.5vw !important;

	}
}

@media screen and (max-width:1199px) {
}
@media screen and (max-width:959px) {
}
@media screen and (max-width:599px) {
}
@media screen and (max-width:499px) {
}

