@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Cardo&family=Noto+Sans+JP:wght@400&family=Noto+Serif+JP:wght@600&family=Italianno&display=swap');



html, body {
	width: 100%;
	height: 100%;
	font-family: 'Noto Sans JP', sans-serif;
}


body {
	position: relative;
	padding: 0;
	margin: 0;
}

img {
	width: 100%;
}

a {
	text-decoration: underline;
}



/* intro */
#intro {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;

	z-index: 100;
}

#intro_l, #intro_r {
	background: #1F3755;
	position: absolute;
	width: 50%;
	height: 100%;
}

#intro_l {
	left: 0;
}

#intro_r {
	right: 0;
}

#intro_image {
	position: absolute;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

#intro_animation {
	position: relative;
}

#intro_door {
	position: relative;
}

#intro_key {
	width: 100%;
	top: 0;
	left: 70px;
	position: absolute;
	opacity: 0;
}

#intro_mask {
	width: 100%;
	top: 0;
	left: 0px;
	position: absolute;
}

#intro_title {
	margin-top: 106px;
	padding: 0 15px;
}


/* video */
#top {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
}

#top>video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}


/* header */
#header {
	height: 60px;
	z-index: 11;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
}
#header a{
	display: block;
}
#header img {
	display: block;
	height: 50px;
	width: auto;
}



/* container */
#container {
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 10;
	display: none;
}

#logo {
	position: fixed;
	width: 100%;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: -1;
	/*opacity: 0 !important;*/
}

#logo_group {
	display: flex;
	flex-direction: column;
	align-items: center;
}

#logo_image {
	margin-bottom: 35px;
	width: 728px;
	height: 103px;
}

#logo_lead {
	text-align: center;
	font-size: 40px;
	font-family: 'Noto Serif JP', serif;
	color: #bb925b;
}



#content {
	margin-top: 100vh;
	background: #fff;
}


#concept {
	width: 100%;
	height: 40vh;
	background: #1F3755;
	color: #fff;
	font-family: 'Noto Serif JP', serif;
	font-size: 22px;
	line-height: 2.5;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	/*margin-bottom: 162px;*/
	margin-bottom: 0;
	position: relative;
}


#concept_text {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	padding-top: 0;
	margin: auto;
	display: flex;
	align-items: center;
	justify-content: center;
}


#logo_fade_area{
	margin-bottom: 162px;
	position: relative;
}



#title {
	display: flex;
	align-items: center;
	justify-content: space-between;
}


#title > .photo{
	width: 31%;
}

#title > div{
	white-space: nowrap;
	text-align: center;
	color: #787878;
}

#title_main{
	font-size: 110px;
	line-height: 1em;
	font-family: "Italianno", cursive;
}
#title_sub{
	font-size: 70px;
	font-family: 'Noto Serif JP', serif;
}
#title_sub span{
	color: #BB925B;
}


.chapter {
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	font-family: 'Noto Serif JP', serif;
	color: #000;
	padding: 100px 0;
}

section.on .chapter {
	color: #fff;
}

.chapter_sub {
	font-size: 30px;
	margin-bottom: 25px;
	color: #BB925B;
}

.chapter_main {
	font-size: clamp(48px, 2vw, 60px);
	color: #797979;
}
.chapter_main.yellow {
	color: #BB925B;
	position: relative;
	padding-bottom: 10px;
	max-width: 500px;
	margin: auto;
}
.chapter_main.yellow::after{
	display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 1px;
    background: #787878;
    transition: transform .5s ease-out .5s;
    box-sizing: border-box;
    transform-origin: left;
}
.chapter_main .en{
	font-family: "Italianno", cursive;
	font-size: 100px;
}

.chapter_main+.chapter_text{
	margin-top: 60px;
}
.chapter_text{
	font-size: 24px;
	color: #787878;
	line-height: 2;
	text-align: center;
	width: 100%;
}
.chapter_text .note{
	font-size: 70%;
}

.chapter1{
	position: relative;
}
.chapter1 > .lead{
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 50px;
	font-family: 'Noto Serif JP', serif;
}



section {
	display: block;
	background-color: #fff;
	transition: background-color .5s ease-out;
	overflow: hidden;
}



article {
	display: flex;
	justify-content: space-between;
	/*align-items: flex-start;*/
	margin-bottom: 210px;
	position: relative;
}


article.ac{
	align-items: center;
}
.mB70{
	margin-bottom: 70px;
}
.mB210{
	margin-bottom: 210px;
}

article:nth-of-type(even) {
	flex-direction: row-reverse;
}



article>.texts {
	width: 47%;
	position: relative;
}

article .catch {
	position: relative;
	margin-bottom: 50px;
}

article .catch>div {
	position: relative;
}

article .catch>div>div {
	position: relative;
	color: #fff;
	font-size: 48px;
	line-height: 66px;
	padding: 0 0 16px 100px;
	letter-spacing: .05em;
	opacity: 0;
	top: 50px;
	transition: top .5s ease-out, opacity .5s ease-out;
}
.change article .catch>div>div{
	color: #BB925B;
	font-feature-settings: "palt";
	letter-spacing: 0;
}
.change article .catch>div::after{
	background-color: #fff;
}
article .catch.on>div>div {
	top: 0px;
	opacity: 1;
	font-family: 'Noto Serif JP', serif;
}



article .catch>div::after {
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	content: "";
	width: 100%;
	transform: scaleX(0);
	height: 1px;
	background: #1F3755;
	transition: transform .5s ease-out .5s;
	box-sizing: border-box;
	transform-origin: left;
}

article .catch.on>div::after {
	transform: scaleX(1);
}

article:nth-of-type(even) .catch>div>div {
	padding: 0 0 20px 0;
}

article:nth-of-type(even) .catch>div::after {
	transform-origin: right;
}

article .name {
	color: #fff;
	font-weight: bold;
}

article .text {
	/*font-size: 30px;*/
	font-size: 27px;
	line-height: 1.8;
	padding: 0 0 0 100px;
	letter-spacing: .0em;
	position: relative;
}

section.on .text {
	color: #fff;
}

.pop {
	position: relative;
	opacity: 0;
	top: 50px;
	transition: top .5s ease-out, opacity .5s ease-out;
}

.pop.on {
	top: 0px;
	opacity: 1;

}

.popimg {
	position: relative;
	opacity: 0;
	top: 100px;
	transition: top 1s ease-out, opacity 1s ease-out;
}

.popimg.on {
	top: 0px;
	opacity: 1;

}

article:nth-of-type(even) .text {
	padding: 0 100px 0 0;
}

article p {
	text-indent: 1em;
	font-family: 'Noto Serif JP', serif;
	color: #797979;
}



article>.image {
	width: 47%;
	position: relative;
}
.photoInfo{
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 1.5em;
	color: #fff;
	font-size: 20px;
}
.photoInfo p{
	text-indent: 0;
	
}
.photoInfo .company{
	font-weight: bold;
	margin-bottom: 0.5em;
}


section img {
	display: block;
}


article>.bottom>img {
	bottom: 0;
	position: absolute;
}


.center_text {
	padding: 100px 0;
	font-size: 30px;
	line-height: 1.8;
	margin: 0 auto;
	color: #797979;
	font-family: 'Noto Serif JP', serif;
}

section.on .center_text {
	color: #fff;
}

.center_text .name {
	color: #BB925B;
	font-weight: bold;
}

.center {
	text-align: center;
}

.image_area_small {
	width: 73.2%;
	margin: 0 auto;
}


.slidepop {
	position: relative;
	margin-bottom: 210px;
}

.slidepop>div {

	z-index: 3;
	position: relative;
	opacity: 0;
	transition: opacity .5s ease-out .8s;
}

.slidepop.on>div {
	opacity: 1;
}

.slidepop::before {
	content: "";
	display: block;
	position: absolute;
	z-index: 0;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transform: scaleX(0);
	background: #ddd;
	transition: transform .4s ease-in-out;
	transform-origin: left;
}

.slidepop.on::before {
	transform: scaleX(1);
}

.slidepop::after {
	content: "";
	display: block;
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transform: scaleX(0);
	background: #fff;
	transition: transform .4s ease-in-out .4s;
	transform-origin: left;
}

.slidepop.on::after {
	transform: scaleX(1);
}



.tobecontinued {
	padding: 200px 0;
	font-size: 25px;
	width: 51.2%;
	margin: 0 auto;
	text-align: center;
	color: #BB925B;
	font-family: 'Noto Serif JP', serif;

}

.sakazen_logo {
	width: 260px;
	margin: 50px auto 0;
}

.totop {
	font-size: 14px;
	margin-top: 20px;
}



footer {
	padding: 230px 0 50px;
	font-size: 12px;
	color: #fff;
	background: #1F3755;
	text-align: center;
}
/*2312*/
.catch.center{
	color: #BB925B;
    font-size: 48px;
    line-height: 66px;
	letter-spacing: .05em;
    opacity: 0;
    transition: top .5s ease-out, opacity .5s ease-out;
	padding: 0 0 50px;
}
.catch.center.on{
	opacity: 1;
}
.image_area.flexBox{
	display: flex;
	flex-wrap: wrap;
	gap: 50px;
}
.image_area.flexBox>div{
	width: calc(50% - 50px);
}
.mB1em{
	margin-bottom: 1em;
}

/*2512*/
article.reverse{
	flex-direction: row-reverse;
}
article.reverse .text{
	padding: 0 100px 0 0;
}
.change.on{
	background-color: #1F3755;
}
.change article p{
	color: #fff;
}
.change article p.small{
	font-size: 18px;
	text-indent: 0;
}
.change article{
	margin-bottom: 0;
	align-items: center;
}
.comp article{
	flex-direction: row;
	margin-bottom: 0;
}
/*
.comp article::before,
.comp article::after{
	content: "";
	position: absolute;
	display: block;
	height: 10vw;
	width: 2px;
	background: #fff;
	top: 50%;
	left: 50%;
	z-index: 2;
}
.comp article::before{
	transform: translate(-50%,-50%) rotate(45deg);
}
.comp article::after{
	transform: translate(-50%,-50%) rotate(-45deg);
}*/

.comp article .catch{
	margin-bottom: 10px;
}
.comp article .catch>div::after{
	background-color: #fff;
}
.comp article .text_area:first-child .catch>div::after{
	left: 0;
	width: 100%;
	max-width: 1127px;
}
.comp article .text_area:last-child .catch>div::after{
	left: 100px;
	width: calc(100% - 80px);
	transform-origin: right;
}
.comp article .catch>div>div{
	font-family: 'Noto Serif JP', serif;
	line-height: 1.5;
    padding: 30px 0 10px 100px;
	font-size: 30px;
}
.comp article .texts{
	display: flex;
	flex-flow: column;
	width: 100%;
}
.comp article .texts .text_area{
	background: #bb925b;
	padding-bottom: 30px;
	flex: 1;
	position: relative;
}
.comp article .texts .text_area p{
	color: #fff;
	text-indent: 0;
	font-size: 24px;
}
.comp article .texts:nth-child(1) .text_area{
	padding-right: 20px;
}
.comp article .text_area:first-child::after{
	content: "";
	position: absolute;
	left: 17vw;
    bottom: -4vw;
    width: 6vw;
    height: 4vw;
	background: url(../images/arrow_2.svg) center no-repeat;
	background-size: contain;
	z-index: 1;
}
.comp article .text_area:last-child::after{
	content: "";
	position: absolute;
	right: 15vw;
    top: -8vw;
    width: 6vw;
    height: 8vw;
	background: url(../images/arrow_1.svg) center no-repeat;
	background-size: contain;
	z-index: 1;
}
.comp article .texts:nth-child(2) .text_area{
	padding-left: 20px;
}
.comp article .texts:nth-child(2) .catch>div>div,
.comp article .texts:nth-child(2) .text{
	padding-left: 0;
}
.change .chapter_sub{
	margin-bottom: 60px;
}
.change .chapter_main{
	color: #fff;
	font-size: 30px;
}
.change .chapter_text{
	color: #fff;
	margin-top: 20px;
}
.movie-content-wrap video{
	width: 100%;
}
/*2512-end*/

@media screen and (max-width: 1440px) {
	article .text, .center_text {
		font-size: 18px;
	}
	.change article p.small{
		font-size: 12px;
	}
	.photoInfo{
		font-size: 16px;
	}

	article .catch>div>div {
		font-size: 36px;
	}
	/*2512*/
	
	.change article .catch>div>div{
	}
	/*2512-end*/
}

@media screen and (min-width: 1023px) {

	.sp {
		display: none;
	}

	.spimage {
		display: none;
	}
}



@media screen and (max-width: 1024px) {
	.pc {
		display: none;
	}


	/* intro */
	#intro {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;

		z-index: 100;
	}

	#intro_l, #intro_r {
		background: #1F3755;
		position: absolute;
		width: 50%;
		height: 100%;
	}

	#intro_l {
		left: 0;
	}

	#intro_r {
		right: 0;
	}

	#intro_image {
		zoom: .5;
	}


	/* */


	#logo_image {
		margin-bottom: 11px;
		/*width: 255px;*/
		width: 320px;
		height: 36px;
	}

	#logo_lead {
		font-size: 20px;
		text-align: center;
	}



	#concept {
		font-size: 16px;
		line-height: 2.2;
		/*margin-bottom: 100px;*/
		margin-bottom: 0;
		position: relative;
	}


	#concept_text {
		/*padding-top: 50px;*/
	}



	.chapter {
		margin-top: 20px;
		height: auto;
		/*padding: 50px 0;*/
		padding: 50px 25px;
	}

	.chapter_sub {
		font-size: 22px;
		margin-bottom: 10px;
	}

	.chapter_main {
		font-size: 48px;
	}


	article {
		display: flex;
		justify-content: space-between;
		margin-bottom: 90px;
	}


	article:nth-of-type(even) {
		flex-direction: row-reverse;
	}



	article>.texts {
		width: 100%;
	}

	article .catch>div {
		display: inline-block;
	}

	article .catch>div>div {
		width: 100%;
		font-size: 36px;
		line-height: 1.5;
		padding: 0 0 6px 10vw;
		text-align: right;
	}

	article:nth-of-type(even) .catch {
		text-align: right;
	}

	article:nth-of-type(even) .catch>div>div {
		text-align: left;
		padding: 0 10vw 6px 0;
	}

	article>.texts>.image.sp {
		/*width: 73.3%;*/
		width: 100%;
		margin: 50px 0 50px auto;
		position: relative;
		display: flex;
		flex-direction: column;
		align-items: flex-end;
	}
	article>.texts>.image.sp:nth-of-type(odd){
		margin: 0 0 50px;
	}
	/*article>.texts>.image.sp img{
		width: 73.3%;
	}*/

	article:nth-of-type(even)>.texts>.image.sp {
		margin: 0 auto 70px 0;
		align-items: flex-start;

	}
	
	.photoInfo{
		font-size: 10px;
	}

	article .name {
		color: #BB925B;
		font-weight: bold;
	}

	article .text {
		font-size: 15px;
		padding: 0 25px;
	}

	

	article:nth-of-type(odd) .text {
		padding: 0 25px 25px;
	}

	article p {
		text-indent: 1em;
	}



	article>.image {
		width: 47.7%;
		position: relative;
	}




	article>.bottom>img {
		bottom: 0;
		position: absolute;
	}


	.center_text {
		padding: 70px 25px;
		font-size: 18px;
		width: 100%;
	}

	.center_text.center {
		display: flex;
		justify-content: center;
	}

	.center_text>div {
		text-align: left;
	}


	.image_area_small {
		width: 100%;
		margin: 0 auto;
	}


	.tobecontinued {
		padding: 30px 0 60px;
		font-size: 16px;
		width: 100%;
	}


	footer {
		padding: 65px 0 25px;
		font-size: 10px;
	}
	/*2512*/
	.comp article{
		flex-direction: column-reverse;
	}
	.comp article .texts{
		width: 100%;
	}
	.comp article::before,
	.comp article::after{
		display: none;
	}
	
	.comp article .text_area:first-child::after{
		left: 23vw;
		bottom: -10vw;
		width: 8vw;
		height: 10vw;
		background-image: url(../images/arrow_2_sp.svg);
	}
	.comp article .text_area:last-child::after{
		right: 15vw;
		top: -10vw;
		width: 7vw;
		height: 11vw;
		background-image: url(../images/arrow_1_sp.svg);
	}
	.comp article .text_area:first-child .catch>div::after{
		width: calc(100% + 25px);
		left: -25px;
	}
	.comp article .text_area:last-child .catch>div::after{
		width: calc(100% + 20px);
        left: 0;
	}
	.comp article .catch>div{
		display: block;
	}
	.comp article .catch>div>div{
		padding-left: 0;
		text-align: left;
		font-size: 24px;
	}
	.comp article .texts .text_area p{
		font-size: 18px;
	}
	.comp article .texts .text_area{
		padding: 0 25px 30px;
	}
	.comp article:nth-of-type(odd) .text{
		padding: 0;
	}
	.change .chapter_sub{
		margin-bottom: 10px;
	}
	.change .chapter_main{
		font-size: 22px;
	}
	.change .chapter_text{
		font-size: 20px;
		margin-top: 10px;
	}
	.chapter_main+.chapter_text{
		margin-top: 10px;
	}
	.chapter_text{
		font-size: 20px;
		text-align: left;
	}
	.change.mB210{
		margin-bottom: 0;
	}
}


@media screen and (max-width: 600px) {
	.chapter_sub {
		font-size: 15px;
	}

	.chapter_main {
		font-size: 26px;
	}

	article .catch>div>div {
		font-size: 22px;
	}

	/*2312*/
	.comp article .texts .text_area p{
		font-size: 14px;
	}
	.catch.center{
		font-size: 22px;
		line-height: 1.5;
	}
	.image_area.flexBox{
		gap: 10px;
	}
	.image_area.flexBox>div{
		width: calc(50% - 5px);
	}
	.mB210{
		margin-bottom: 50px;
	}
	.mB70{
		margin-bottom: 0;
	}
	/*2512*/
	
	article .text{
		font-size: 14px;
	}
	.slidepop{
		margin-bottom: 50px;
	}
	article>.texts>.image.sp:nth-of-type(odd){
		margin-bottom: 20px;
	}
	.chapter{
		padding: 25px;
		margin-top: 0;
	}
	.chapter_text{
		font-size: 14px;
	}
	article .catch{
		margin-bottom: 20px;
	}
	.center_text{
		font-size: 14px;
		padding: 25px;
	}
	article.reverse .text{
		font-size: 14px;
	}
	.change .chapter_text{
		font-size: 14px;
	}
	.comp article .catch>div>div{
		font-size: 18px;
	}
}
