@charset "UTF-8";


/*========================================

  loader

========================================*/
#WrapPage {
	opacity: 0;
	min-width: 1200px;
	background: #fff;
	overflow: hidden;
}

@media screen and (max-width: 767px) {
	#WrapPage {
		min-width: 100vw;
	}
}


#loader-bg {
	position: fixed;
	z-index: 10001;
	top: 0;
	left: 0;
	display: none;
	width: 100%;
	height: 100%;
	background: #fff;
}

#loader {
	position: absolute;
	z-index: 10002;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 64px;
	height: 64px;
	display: none;
	margin: auto;
	text-align: center;
	color: #999;
}



/*===== index =====*/
.video-container {
	position: relative;
	margin: 0 auto;
	width: 100%;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 1;
}

.video-wrap {
	position: relative;
	overflow: hidden;
	width: 100%;
	height: 100vh;
	background: url(../mov/main.jpg) no-repeat center center/cover;
	z-index: 0;
}


video {
	min-width: 100%;
	min-height: 100vh;
	position: absolute;
}

/*画面サイズが変わっても常に動画の中央が表示されるようにする*/
/*動画よりも画面が横に長くなるとき用*/
@media (aspect-ratio: 16/9),
(min-aspect-ratio: 16/9) {
	video {
		width: 100%;
		top: 50%;
		transform: translateY(-50%);
	}
}

/*動画よりも画面が縦に長くなるとき用*/
@media (max-aspect-ratio: 16/9) {
	video {
		height: 100%;
		left: 50%;
		transform: translateX(-50%);
	}
}



@media screen and (max-width: 767px) {
	.video-wrap {
		width: 100%;
		height: 56.25vw;
	}

	video {
		top: 0;
		left: 0;
		transform: translateX(0);
		width: 100%;
		height: 56.25vw;
		min-height: 56.25vw;
	}
}



.video-container #sound_button {
	position: absolute;
	bottom: 30px;
	left: 0;
	right: 0;
	z-index: 2;
	cursor: pointer;
	background-color: #333;
	border: 1px solid #fff;
	color: #fff;
	font-size: 16px;
	line-height: 40px;
	padding: 0;
	border-radius: 20px;
	letter-spacing: 1px;
	transition: .3s;
	text-align: center;
	width: 11em;
	margin: 0 auto;
	font-family: "Italiana",
		sans-serif;
	font-weight: 400;
}

.video-container #sound_button:hover {
	background-color: #000;
}

.video-container #sound_button span::after {
	display: inline-block;
	margin-left: .5em;
}

.video-container #sound_button.sound_off span::after {
	content: "\f026";
	font-weight: 900;
	font-family: "Font Awesome 6 Free";
}

.video-container #sound_button.sound_on {
	background-color: #000;
}

.video-container #sound_button.sound_on:hover {
	background-color: #333;
}

.video-container #sound_button.sound_on span::after {
	content: "\f028";
	font-weight: 900;
	font-family: "Font Awesome 6 Free";
}


@media screen and (max-width: 767px) {
	.video-container #sound_button {
		bottom: -5vw;
		right: 0;
		left: 0;
		margin-left: auto;
		margin-right: auto;
		font-size: 3vw;
		line-height: 8vw;
		border-radius: 4vw;
		width: 10em;
	}
}




/*========================================

  indexページ

========================================*/
@media screen and (min-width: 768px) {
	main {
		padding-top: 0 !important;
	}
}

#hero {
	background-image: url(../img/hero_img_pc.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	height: 66vw;
	margin-top: -120px;
}

#hero .ttl {
	width: 1450px;
	margin: 0 auto;
	padding-top: 52vw;
}

#hero .ttl h1 {
	color: #fff;
	font-size: 100px;
	line-height: 1em;
	font-family: "Italiana", sans-serif;
	font-weight: 400;
}

@media screen and (max-width: 767px) {
	#hero {
		background-image: url(../img/hero_img_sp.jpg);
		height: 100vw;
		margin-top: 0;
	}

	#hero .ttl {
		width: 96%;
		margin: 0 auto;
		padding-top: 80vw;
	}

	#hero .ttl h1 {
		font-size: 8vw;
		margin-left: 3vw;
	}
}



/* 共通 */
h2 {
	font-size: 72px;
	font-family: "Italiana", sans-serif;
	font-weight: 400;
}

@media screen and (max-width: 767px) {
	h2 {
		font-size: 10vw;
	}
}



/* sec001 */
#sec001 {
	padding-top: 180px;
	padding-bottom: 180px;
}

#sec001 .flex_box .boxL,
#sec001 .flex_box .boxR {
	width: 680px;
}

@media screen and (max-width: 1450px) {

	#sec001 .flex_box .boxL,
	#sec001 .flex_box .boxR {
		width: 600px;
	}
}



#sec001 .flex_box .boxL span img {
	border-radius: 20px;
}

#sec001 .flex_box .boxR h2 {
	line-height: .8em;
}

#sec001 .flex_box .boxR .en_copy {
	margin-top: .5em;
}

#sec001 .flex_box .boxR .ja_copy {
	margin-top: 1em;
}

#sec001 .flex_box .boxR .photo {
	display: flex;
	justify-content: space-between;
	margin-top: 40px;
}

#sec001 .flex_box .boxR .photo span img {
	width: 200px;
	border-radius: 20px;
}

@media screen and (max-width: 1450px) {
	#sec001 .flex_box .boxR .photo span img {
		width: 180px;
	}
}


@media screen and (max-width: 767px) {
	#sec001 {
		padding-top: 12vw;
		padding-bottom: 12vw;
	}

	#sec001 .flex_box .boxL,
	#sec001 .flex_box .boxR {
		width: 100%;
	}

	#sec001 .flex_box .boxL span img {
		border-radius: 3vw;
	}

	#sec001 .flex_box .boxR {
		display: flex;
		flex-direction: column-reverse;
	}


	#sec001 .flex_box .boxR h2 {
		line-height: 1em;
		margin-top: .5em;
	}

	#sec001 .flex_box .boxR .en_copy {
		margin-top: .5em;
	}

	#sec001 .flex_box .boxR .ja_copy {
		margin-top: 1em;
	}

	#sec001 .flex_box .boxR .photo {
		margin-top: 4vw;
	}

	#sec001 .flex_box .boxR .photo span {
		width: 32%;
	}

	#sec001 .flex_box .boxR .photo span img {
		width: 100%;
		border-radius: 3vw;
	}
}



/* sec002 */
#sec002 {
	padding-top: 120px;
	padding-bottom: 180px;
}

#sec002 h2 {
	line-height: 1em;
	text-align: center;
}

#sec002 .link {
	display: flex;
	justify-content: center;
	margin-top: 100px;
}

#sec002 .link dl {
	margin: 0;
	padding: 0;
	width: 290px;
	text-align: center;
	border-right: 3px solid #b6c2c2;
	padding: 20px 0;
}

#sec002 .link dl:first-child {
	border-left: 3px solid #b6c2c2;
}

#sec002 .link dl dt span {
	display: block;
}

#sec002 .link dl dt span img {
	width: 150px;
}

#sec002 .link dl dt strong {
	display: block;
	font-size: 24px;
	font-family: "GFS Didot", serif;
	font-weight: 400;
	margin-top: 1em;
}

#sec002 .link dl dd a img {
	width: 200px;
	border-radius: 20px;
	margin-top: 30px;
}

@media screen and (max-width: 767px) {
	#sec002 {
		padding-top: 12vw;
		padding-bottom: 12vw;
	}

	#sec002 .link {
		flex-direction: column;
		margin-top: 10vw;
	}

	#sec002 .link dl {
		display: flex;
		align-items: center;
		width: 100%;
		border-right: none;
		border-bottom: 2px solid #b6c2c2;
		padding: 5vw 5vw 5vw 0;
	}

	#sec002 .link dl:first-child {
		border-left: none;
		border-top: 2px solid #b6c2c2;
	}

	#sec002 .link dl dt {
		width: 50%;
	}

	#sec002 .link dl dt span img {
		width: 60%;
	}

	#sec002 .link dl dt strong {
		font-size: 4vw;
		margin-top: 2vw;
	}

	#sec002 .link dl dd {
		width: 50%;
	}

	#sec002 .link dl dd a img {
		width: 100%;
		border-radius: 3vw;
		margin-top: 0;
	}
}



/* sec003 */
#sec003 {
	position: relative;
	padding-bottom: 180px;
}

#sec003 h2 {
	position: absolute;
	top: 20vw;
	color: #fff;
	text-align: center;
	line-height: .8em;
	z-index: 10;
	width: 100%;
}

#sec003 h2 strong {
	display: block;
	font-size: 32px;
	font-family: "Noto Serif JP", serif;
	font-weight: 400;
}

#sec003 .sp-thumbnails {
	margin-top: 40px;
}

#sec003 .sp-thumbnails .sp-thumbnail-container {
	margin: 0 10px;
	opacity: .5;
}

#sec003 .sp-thumbnails .sp-thumbnail-container.sp-selected-thumbnail {
	opacity: 1;
}



#sec003 .box {
	margin-top: 120px;
}

#sec003 .box .txt {
	width: 720px;
}

@media screen and (max-width: 1450px) {
	#sec003 .box .txt {
		width: 650px;
	}
}



#sec003 .box .txt .ja_copy {
	margin-top: 2em;
}

#sec003 .box .photo {
	width: 560px;
}

#sec003 h3 {
	font-size: 48px;
	font-family: "Italiana", sans-serif;
	font-weight: 400;
	text-align: center;
	line-height: 1em;
	margin-top: 120px;
}

#sec003 h3 strong {
	display: block;
	font-size: 32px;
	font-family: "Noto Serif JP", serif;
	font-weight: 400;
}

#sec003 .box2 {
	margin-top: 100px;
}

#sec003 .box2.box_re {
	flex-direction: row-reverse;
}

#sec003 .box2 .photo {
	width: 680px;
}

#sec003 .box2 .txt {
	width: 740px;
}

@media screen and (max-width: 1450px) {
	#sec003 .box2 .photo {
		width: 600px;
	}

	#sec003 .box2 .txt {
		width: 600px;
	}
}



#sec003 .box2 .txt .ja_copy {
	margin-top: 2em;
}

@media screen and (max-width: 767px) {
	#sec003 {
		padding-bottom: 12vw;
	}

	#sec003 .visu {
		background-image: url(../img/img_15_sp.jpg);
		height: 75vw;
	}

	#sec003 h2 {
		top: 30vw;
	}

	#sec003 h2 strong {
		font-size: 5.5vw;
	}


	#sec003 .sp-thumbnails {
		margin-top: 5vw;
	}

	#sec003 .sp-thumbnails .sp-thumbnail-container {
		margin: 0 2px;
	}



	#sec003 .box {
		margin-top: 10vw;
	}

	#sec003 .box .txt {
		width: 100%;
	}

	#sec003 .box .txt .ja_copy {
		margin-top: 1em;
	}

	#sec003 .box .photo {
		width: 100%;
	}

	#sec003 h3 {
		font-size: 7vw;
		line-height: 1.2em;
		margin-top: 10vw;
	}

	#sec003 h3 strong {
		font-size: 5vw;
	}

	#sec003 .box2 {
		margin-top: 10vw;
	}

	#sec003 .box2.box_re {
		flex-direction: column;
	}

	#sec003 .box2 .photo {
		width: 100%;
		margin-bottom: 5vw;
	}

	#sec003 .box2 .txt {
		width: 100%;
	}

	#sec003 .box2 .txt .ja_copy {
		margin-top: 1em;
	}
}



/* sec004 */
#sec004 {
	padding-top: 120px;
	padding-bottom: 180px;
}

#sec004 h2 {
	text-align: center;
}

#sec004 .en_copy {
	text-align: center;
}

#sec004 .flex_box {
	width: 1340px;
	margin: 0 auto;
	margin-top: 60px;
}

@media screen and (max-width: 1450px) {
	#sec004 .flex_box {
		width: 1250px;
		gap: 0 30px;
	}
}



#sec004 .flex_box span img {
	width: 640px;
	border-radius: 20px;
}

@media screen and (max-width: 767px) {
	#sec004 {
		padding-top: 12vw;
		padding-bottom: 12vw;
	}

	#sec004 .en_copy {
		font-size: 3.4vw;
		text-align: center;
	}

	#sec004 .flex_box {
		width: 100%;
		margin: 0 auto;
		margin-top: 2vw;
	}

	#sec004 .flex_box span img {
		width: 100%;
		border-radius: 3vw;
		margin-top: 3vw;
	}
}


/* sec005 */
#sec005 {
	padding-top: 120px;
	padding-bottom: 120px;
}

#sec005 h2 {
	text-align: center;
	line-height: .8em;
}

#sec005 h2 strong {
	display: block;
	font-size: 32px;
	font-family: "Noto Serif JP", serif;
	font-weight: 400;
}

#sec005 .flex_box {
	width: 1400px;
	margin: 0 auto;
	margin-top: 60px;
}

#sec005 .flex_box .txt {
	width: 720px;
}

#sec005 .flex_box .txt .ja_copy {
	margin-top: 2em;
	margin-right: 1em;
}

#sec005 .flex_box .photo {
	width: 680px;
}


#sec005 .flex_box .photo .in {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

#sec005 .flex_box .photo .in span img {
	width: 320px;
	margin-bottom: 20px;
}


@media screen and (max-width: 1450px) {
	#sec005 .flex_box {
		width: 1250px;
	}

	#sec005 .flex_box .txt {
		width: 680px;
	}

	#sec005 .flex_box .photo {
		width: 520px;
	}

	#sec005 .flex_box .photo .in span img {
		width: 250px;
	}
}


#sec005 .flex_box .photo dl dt img {
	width: 160px;
}

#sec005 .flex_box .photo dl dd ul {
	display: flex;
	margin-top: 20px;
}

#sec005 .flex_box .photo dl dd ul li {
	width: 320px;
	font-size: 16px;
	list-style: none;
}

#sec005 .flex_box .photo dl dd ul li:first-child {
	margin-right: 40px;
}

#sec005 .flex_box .photo dl dd ul li strong {
	display: block;
	font-weight: bold;
}

@media screen and (max-width: 767px) {
	#sec005 {
		padding-top: 12vw;
		padding-bottom: 12vw;
	}

	#sec005 h2 {
		line-height: .8em;
	}

	#sec005 h2 strong {
		font-size: 5vw;
	}

	#sec005 .flex_box {
		width: 100%;
		margin: 0 auto;
		margin-top: 10vw;
	}

	#sec005 .flex_box .txt {
		width: 100%;
	}

	#sec005 .flex_box .txt .ja_copy {
		margin-top: 2em;
		margin-right: 0;
	}

	#sec005 .flex_box .photo {
		width: 100%;
		margin-top: 3vw;
	}

	#sec005 .flex_box .photo .in {
		flex-direction: column;
	}

	#sec005 .flex_box .photo .in span img {
		width: 100%;
		margin-bottom: 3vw;
	}

	#sec005 .flex_box .photo dl {
		margin: 0;
		padding: 0;
	}

	#sec005 .flex_box .photo dl dt img {
		width: 40%;
	}

	#sec005 .flex_box .photo dl dd ul {
		flex-direction: column;
		margin-top: 3vw;
	}

	#sec005 .flex_box .photo dl dd ul li {
		width: 100%;
		font-size: 3.4vw;
		margin-bottom: 3vw;
	}

	#sec005 .flex_box .photo dl dd ul li:first-child {
		margin-right: 0;
	}
}



/* sec006 */
#sec006 .btn a {
	margin-top: 100px;
	margin-bottom: 100px;
}

@media screen and (max-width: 767px) {
	#sec006 .btn a {
		margin-top: 10vw;
		margin-bottom: 10vw;
	}
}