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

.se{
}

/*-- mainV --*/ 
.se .mainV{
	position: relative;
    height: 80vh;
    justify-content: center;
	margin:0 calc(50% - 50vw) 0;
	width:100vw;
}
.se .mainV .reverse-parallax-background{
    width: 100%;
    height: 100%;
    background:url("../../../../../img/perf/safety/se/mainV_bg.webp")no-repeat center / cover;
    will-change: transform;
	animation: parallax linear both;
	animation-timeline: view();
}
@keyframes parallax {
  from {
    background-position: center -200px;
  }

  to {
    background-position: center 200px;
  }
}
.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{
	color:#fff;
	font-size:1.2rem;
	margin-bottom:0.6em;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
.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;
		margin-bottom:0.6em;
	}
}
@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:#7d7260;
	margin:0 calc(50% - 50vw);
	width:100vw;
}
.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%;
	filter:drop-shadow(10px 10px 10px rgb(75 53 18));
}
.se .ep .wrap .detail{
	width:50%;
	height:fit-content;
}
.se .ep .wrap .detail .inner{
	max-width:400px;
	margin:auto;
}
.se .ep .wrap .detail h3{
	font-size:1.5rem;
	margin-bottom:1em;
		-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
.se .ep .wrap .detail h4{
	font-size:1.1rem;
	margin-bottom:1em;
		-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:0 auto 20px;
		display:block;
	}
	.se .ep .wrap .detail{
		width:100%;
		height:fit-content;
	}
	.se .ep .wrap .detail h3{
		text-align:center;
	}
	.se .ep .wrap .detail h4{
		text-align:center;
	}
}


/*-- point --*/
.point{
	margin:0 calc(50% - 50vw);
	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:#000000;
	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;
	color:#fff;
	font-size:1.5rem;
	margin-bottom:0.6em;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	letter-spacing:0em;
    position: relative;
    padding: 0em 3em;
}

.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:50px;
	border-bottom:1px dotted #fff;
	padding:0 30px 50px;
	box-sizing:border-box;
}
.point .wrap .sub_wrap .inner .sub_inner > h4{
	font-size:1.5rem;
	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 20px 0;
	background:#fff;
}
.point .wrap .sub_wrap .inner .sub_inner li dt img{
	width:100%;
	vertical-align:bottom;
}
.point .wrap .sub_wrap .inner .sub_inner li dd{
	color:#fff;
}
.point .wrap .sub_wrap .inner .sub_inner li dd h5{
	font-size:1.2rem;
		-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;
	}
	.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;
		font-size:4.5vw;
	}
	.point .wrap .sub_wrap .title_box h3 span{
		display:block;
	}
	.point .wrap .sub_wrap .inner .sub_inner > h4{
	}
	.point .wrap .sub_wrap .inner .sub_inner li{
		padding:0 5% 50px;
	}
}



/*-- case --*/
.case{
	margin:0 calc(50% - 50vw);
	width:100vw;
}
.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-size:1.5rem;
	-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:#7d7260;
	color:#fff;
}
.case .wrap .detail .inner{
	width:90%;
	max-width:600px;
	margin:auto;
}
.case .wrap .detail .title_box{
	margin-bottom:50px;
}
.case .wrap .detail .title_box h4{
	font-size:1.3rem;
	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.3rem;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
.case .wrap .detail .case_info li .sub_title dd h6{
	font-size:1rem;
	-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{
	}
	.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;
	margin:0 calc(50% - 50vw);
	width:100vw;
}
.guidance .wrap{
	display:flex;
	justify-content:space-between;
	background:url("../../../../../img/perf/safety/se/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:45%;
	padding:100px 0;
}
.guidance .wrap .detail h3{
	font-size:1.3rem;
	margin-bottom:20px;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}


.guidance .wrap .detail .ctr_box{
	display:flex;
	justify-content:space-between;
	margin:30px 0 0 0;
}
.guidance .wrap .detail .ctr_box .btn{
	width:48%;
}
.guidance .wrap .detail .ctr_box .btn a{
	width:100%;
	display:block;
	padding:10px 20px;
	box-sizing:border-box;
	border-radius:50px;
	background:#948977;
		box-shadow: 1rem 1rem 1rem -1rem hsl(200 50% 20% / 40%);
	background: linear-gradient(139deg, #948977, #7d6f57);
	color:#fff;
	text-align:center;
}

@media screen and (max-width:959px) {
	.guidance .wrap{
		display:block;
		justify-content:unset;
		background:url("../../../../../img/perf/safety/se/guidance_img.webp")no-repeat center bottom / 100%;
		width:70%;
		max-width:400px;
		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:unset;
		margin:auto;
		height:fit-content;
		display:block;
	}
	.guidance .wrap .detail{
		color:#fff;
		width:100%;
		padding:0;
	}
	.guidance .wrap .detail h3{
		text-align:center;
	}
	.guidance .wrap .detail .ctr_box{
		display:block;
		justify-content:unset;
		margin:30px 0 0 0;
	}
	.guidance .wrap .detail .ctr_box .btn{
		width:100%;
		max-width:400px;
		margin:0 auto 20px;
	}
}
@media screen and (max-width:768px) {
	.guidance .wrap .image{
		padding-bottom:20px;
	}
	.guidance .wrap .image img{
		width:100%;
	}
	.guidance .wrap .detail h3{
		font-size:1.1rem;
	}
}

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

