
/*-===============
section-about
===============-*/

.section-about {
	position : relative;
	width: 100%;
	height: calc(100svh - 70px);
	margin-top: 70px;
	}

.section-about .bg{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	background-position: center center;
	background-repeat: no-repeat;
	background-image: url(../images/bg_about-pc.jpg);
	background-size: cover;
	}

.section-about .bg img{
	height: 100%;
	}

.section-about .headline{
	position: fixed;
	width: 100%;
	padding: 50px 0 0 30px;
	z-index: 2;
	color: #222;
	}
@media screen and (max-width: 768px) {
.section-about .headline{
	padding: 30px 0 0 20px;
	}
	}

.section-about .headline h3{
	font-size: 1.6em;
	line-height: 1em;
	}
@media screen and (max-width: 768px) {
.section-about .headline h3{
	font-size: 1.2em;
	}
	}

.section-about .headline p{
	margin-top: 10px;
	font-size: .8em;
	}
@media screen and (max-width: 768px) {
.section-about .headline p{
	margin-top: 5px;
	font-size: .7em;
	}
	}

.section-about .facade {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	}

.section-about .facade h2{
	font-size: 2em;
	line-height: 1em;
	}
@media screen and (max-width: 768px) {
.section-about .facade h2{
	font-size: 1.5em;
	}
	}

.section-about .scrolldown{
	position: absolute;
	left: 50%;
	bottom: 0;
	height: 80px;
	}
@media screen and (max-width: 768px) {
.section-about .scrolldown{
	height: 40px;
	}
	}

.section-about .scrolldown::after{
	content: "";
	position: absolute;
	top: 0;
	width: 1px;
	height: 80px;
	background: #fff;
	animation: pathmove 2s ease-in-out infinite;
	opacity:0;
	}
@media screen and (max-width: 768px) {
.section-about .scrolldown::after{
	height: 40px;
	}
	}

@keyframes pathmove{
	0%{
		height:0;
		top:0;
		opacity: 0;
		background: #333;
	}
	30%{
		height:80px;
		top:0;
		opacity: 1;
	}
	60%{
		opacity: 1;
	}
	100%{
		height:0px;
		top:80px;
		opacity: 0;
	}
	}
@media screen and (max-width: 768px) {
@keyframes pathmove{
	0%{
		height:0;
		top:0;
		opacity: 0;
		background: transparent;
	}
	30%{
		height:40px;
		top:0;
		opacity: 1;
	}
	60%{
		opacity: 1;
	}
	100%{
		height:0px;
		top:40px;
		opacity: 0;
	}
	}
	}


/*-===============
section-word
===============-*/

.section-word {
	position : relative;
	width: 100%;
	height: calc(100svh - 70px);
	background: #fff;
	}
@media screen and (max-width: 768px) {
.section-word {
	width: 100%;
	height: auto;
	aspect-ratio: 1 / 1;
	}
	}

.section-word .facade {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	}

.section-word .facade p{
	font-size: 1.2em;
	line-height: 2.5em;
	text-align: center;
	}
@media screen and (max-width: 768px) {
.section-word .facade p{
	font-size: 1em;
	}
	}


/*-===============
section-video
===============-*/

.section-video {
	position : relative;
	width: 100%;
	height: calc(100svh - 70px);
	background: #fff;
	font-size: 0;
	}
@media screen and (max-width: 768px) {
.section-video {
	width: 100%;
	height: auto;
	aspect-ratio: 6 / 4;
	}
	}

.section-video video {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: center;
	object-position: center;
	}


/*-===============
section-photo
===============-*/

.section-photo {
	position : relative;
	width: 100%;
	height: calc(100svh - 70px);
	background: #fff;
	font-size: 0;
	}
@media screen and (max-width: 768px) {
.section-photo {
	width: 100%;
	height: auto;
	/*aspect-ratio: 6 / 4;*/
	overflow: hidden;
	}
	}

.section-photo .parallax-img {
	width: 100%;
	}
@media screen and (max-width: 768px) {
.section-photo .parallax-img {
	width: 120%;
	/*margin-left: -10%;*/
	}
.section-photo .parallax-img.parallax-right {
	margin-left: -10%;
	}
	}

.section-photo .parallax-img img {
	width: 100%;
	}


/*-===============
section-detail
===============-*/

.section-detail {
	position : relative;
	width: 100%;
	padding: 140px 8% 150px;
	}
@media screen and (max-width: 768px) {
.section-detail {
	padding: 100px 7% 60px;
	}
	}

.section-detail .headline{
	width: 100%;
	}

.section-detail .headline h3{
	font-size: 1.6em;
	line-height: 1em;
	}
@media screen and (max-width: 768px) {
.section-detail .headline h3{
	font-size: 1.4em;
	}
	}

.section-detail .headline p{
	margin-top: 10px;
	font-size: .9em;
	}

.section-detail .categoly{
	margin-top: 120px;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	flex-direction: row;
	column-gap: 6%;
	}
@media screen and (max-width: 768px) {
.section-detail .categoly{
	margin-top: 80px;
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	flex-direction: column;
	row-gap: 50px;
	}
	}

.section-detail .categoly div{
	display: flex;
	align-items: flex-start;
	justify-content: center;
	flex-direction: column;
	row-gap: 30px;
	}
@media screen and (max-width: 768px) {
.section-detail .categoly div{
	row-gap: 20px;
	}
	}

.section-detail .categoly div p{
	font-size: 1em;
	line-height: 1.7em;
	}

.section-detail .categoly div p.ftr{
	font-size: 1em;
	line-height: 1em;
	}

.section-detail .categoly div img{
	width: 100%;
	display: block;
	}





