@charset "UTF-8";

/* 共通パーツ */

section {
	padding: 10vw 0;
	width: 100%;
	background: transparent;
	text-align: center;
	overflow: hidden;
	font-size: 4vw;
}

@media screen and (min-width: 681px) {
	section {
		padding: 100px 0;
	}

}


section h2 {
	font-size: 7vw;
	font-weight: 600;
	position: relative;
	font-family: "Cinzel", serif;
}

@media screen and (min-width: 681px) {
	section h2 {
		font-size: 30px;
	}
}
section h2::before {
	position: absolute;
	content: "";
	display: block;
	width: 1px;
	height: 8vw;
	border-left: 1px #000 solid;
	top: -5vw;
	left: 2vw;
	transition: all .5s;
	transform: rotate(0deg);
}

section h2.visible::before {
	transform: rotate(45deg);
}


/* /ダミー */
/*tabの形状*/
.tab {
	display: flex;
	flex-wrap: wrap;
}

.tab li a {
	display: block;
	background: #ddd;
	margin: 0 2px;
	padding: 10px 20px;
}

/*liにactiveクラスがついた時の形状*/
.tab li.active a {
	background: #fff;
}


/*エリアの表示非表示と形状*/
.area {
	display: none;
	/*はじめは非表示*/
	opacity: 0;
	/*透過0*/
	background: #fff;
	padding: 50px 20px;
}

/*areaにis-activeというクラスがついた時の形状*/
.area.is-active {
	display: block;
	/*表示*/
	animation-name: displayAnime;
	/*ふわっと表示させるためのアニメーション*/
	animation-duration: 2s;
	animation-fill-mode: forwards;
}

@keyframes displayAnime {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

/* sec-bg
***************************************************************/
.sec-bg {
	position: fixed;
	height: 100vh;
	z-index: -100;
	opacity: 0.6;
}

@media screen and (min-width: 681px) {
	.sec-bg {
		width: 100%;
	}

}

.sec-bg img {
	height: 100%;
}

/* fv
***************************************************************/
/* Loading背景画面設定　*/
#splash {
	/*fixedで全面に固定*/
	position: fixed;
	width: 100%;
	height: 100%;
	z-index: 999;
	background: #FDF5E6;
	text-align: center;
	color: #fff;
}

/* Loading画像中央配置　*/
#splash_logo {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

/* Loading アイコンの大きさ設定　*/
#splash_logo img {
	width: 260px;
}

/* fadeUpをするアイコンの動き */
.fadeUp {
	animation-name: fadeUpAnime;
	animation-duration: 0.5s;
	animation-fill-mode: forwards;
	opacity: 0;
}

@keyframes fadeUpAnime {
	from {
		opacity: 0;
		transform: translateY(100px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* メイン */
#container {
	position: relative;
	z-index: -1;
}

.fv {
	position: relative;
	z-index: 1;
}

@media screen and (min-width: 681px) {
	.fv {
		padding: 96px 0 0;
	}

}

.fv .inner {
	max-width: calc(100% - 40px);
}

/*==================================================
スライダーのためのcss
===================================*/
.fv .slider {
	position: relative;
	z-index: 1;
	/*↑z-indexの値をh1のz-indexの値よりも小さくして背景に回す*/
	height: 100vh;
	/*スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
}

@media screen and (min-width: 681px) {
	.fv .slider {
		height: auto;
	}

}

/*　背景画像設定　*/

.fv .slider-item01 {
	background: url(../../images/FV-sp1.jpeg);
}

.fv .slider-item02 {
	background: url(../../images/FV-sp2.jpeg);
}

.fv .slider-item03 {
	background: url(../../images/FV-sp3.jpeg);
}

@media screen and (min-width: 681px) {
	.fv .slider-item01 {
		background: url(../../images/FV-pc1.jpeg);
	}

	.fv .slider-item02 {
		background: url(../../images/FV-pc2.jpeg);
	}

	.fv .slider-item03 {
		background: url(../../images/FV-pc3.jpeg);
	}


}


.fv .slider-item {
	width: 100%;
	/*各スライダー全体の横幅を画面の高さいっぱい（100%）にする*/
	height: 100vh;
	/*各スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
	background-repeat: no-repeat;
	/*背景画像をリピートしない*/
	background-position: center;
	/*背景画像の位置を中央に*/
	background-size: cover;
	/*背景画像が.slider-item全体を覆い表示*/
}


@media screen and (min-width: 681px) {
	.fv .slider-item {
		height: calc(100vh - 96px);
	}
}


/*====== 9-1-1 縦線が動いてスクロールを促す =======*/

/*スクロールダウン全体の場所*/
.fv .scrolldown1 {
	/*描画位置※位置は適宜調整してください*/
	position: absolute;
	left: 50%;
	bottom: 10px;
	/*全体の高さ*/
	height: 50px;
	z-index: 10;
}

@media screen and (min-width: 681px) {
	.fv .scrolldown1 {}

}

/*Scrollテキストの描写*/
.fv .scrolldown1 span {
	/*描画位置*/
	position: absolute;
	left: -15vw;
	top: -15vw;
	/*テキストの形状*/
	color: #fff;
	font-size: 8vw;
	letter-spacing: 0.05em;
}

@media screen and (min-width: 681px) {
	.fv .scrolldown1 span {
		font-size: 25px;
		left: -50px;
		top: -40px;
	}

}

/* 線の描写 */
.fv .scrolldown1::after {
	content: "";
	/*描画位置*/
	position: absolute;
	top: 0;
	/*線の形状*/
	width: 2px;
	height: 30px;
	background: #fff;
	/*線の動き1.4秒かけて動く。永遠にループ*/
	animation: pathmove 2s ease-in-out infinite;
	opacity: 0;
}

/*高さ・位置・透過が変化して線が上から下に動く*/
@keyframes pathmove {
	0% {
		height: 0;
		top: 0;
		opacity: 0;
	}

	30% {
		height: 30px;
		opacity: 1;
	}

	100% {
		height: 0;
		top: 50px;
		opacity: 0;
	}
}


#wrapper {
	position: absolute;
	/*描画を#particles-jsよりも上にするためposition:relative;を指定*/
	z-index: 100;
	/*z-indexの数字を大きくすることで描画を#particles-jsよりも上に*/
	width: 100%;
	height: 100%;
}

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

@media screen and (max-width: 680px) {
	.fv {
		position: relative;
		z-index: -1;
		padding: 0 0;

	}

	.fv .inner {
		max-width: 100%;
		width: 100vw;
	}

	.fv .inner .bg-img {
		height: 100vh;
	}

	.fv .inner .bg-img img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}


}

/* section1
***************************************************************/
.sec1 {}

.sec1 .inner {}

.sec1 .inner .container {
	width: 100%;
	display: flex;
	writing-mode: vertical-rl;
	flex-direction: column;
	justify-content: center;
	text-align: left;
	gap: 8vw;
	padding-bottom: 50px;
	opacity: 0;
	transform: translateY(40px);
	transition: opacity 1.5s ease-out, transform 1.5s ease-out;
	position: relative;
}

@media screen and (min-width: 681px) {
	.sec1 .inner .container {
		padding-bottom: 120px;
	}
}


.sec1 .inner .container::before {
	content: "";
	display: block;
	position: absolute;
	top: 45%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: #F5F5F5;
	width: 50%;
	padding-top: 50%;
	z-index: -1;
	border-radius: 50%;
	box-shadow: 30px 0 30px rgba(255, 255, 255, 1);
	filter: blur(10px);
}


.sec1 .inner .container.visible {
	opacity: 1;
	transform: translateY(0);
}

.sec1 .inner .container h1 {
	font-size: 6vw;
	font-weight: 600;
}

@media screen and (min-width: 681px) {
	.sec1 .inner .container h1 {
		font-size: 25px;
	}

}


.sec1 .inner .container .txt-box {
	padding-top: 40px;
	word-wrap: break-word;
	overflow-wrap: break-word;
	white-space: normal;
	height: 400px;
	font-size: 4vw;
}

@media screen and (min-width: 681px) {
	.sec1 .inner .container .txt-box {
		font-size: 20px;
	}
}



.sec1 .slider {
	position: relative;
	z-index: 1;
	width: 80%;
	opacity: 0;
	transform: translateX(-50px);
	transition: opacity 1.5s ease-out, transform 1.5s ease-out;
}

.sec1 .slider.visible {
	opacity: 1;
	transform: translateX(0);
}

/*　背景画像設定　*/
.sec1 .slider-item01 {
	background: url(../../images/sec1-1.jpeg);
}

.sec1 .slider-item02 {
	background: url(../../images/sec1-2.jpeg);
}

.sec1 .slider-item03 {
	background: url(../../images/sec1-3.jpeg);
}

.sec1 .slider-item {
	width: 100%;
	height: 20vh;
	background-repeat: no-repeat;
	/*背景画像をリピートしない*/
	background-position: center;
	/*背景画像の位置を中央に*/
	background-size: cover;
	/*背景画像が.slider-item全体を覆い表示*/
}

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

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

/* section-news
***************************************************************/
.sec-news {
	display: flex;
	flex-direction: column;
	padding: 10vw 5vw;
}

@media screen and (min-width: 681px) {
	.sec-news {
		padding: 80px 5vw;
		text-align: right;
	}

}


.sec-news h2 {
	padding-bottom: 3vw;
	text-align: center;
}


.sec-news h2::before {
	display: none;
}


.sec-news .post-item {
	display: block;
	margin-top: 6vw;
	text-align: left;
	transition: all .3s;

}

@media screen and (min-width: 681px) {
	.sec-news .post-item {
		margin-top: 20px;
	}

}


.sec-news .post-item:hover {
	opacity: 0.5;
}

.sec-news .post-date {
	font-size: 4vw;
	position: relative;
	font-weight: 400;
	color: #000;
}

@media screen and (min-width: 681px) {
	.sec-news .post-date {
		font-size: 20px;
	}
}

.sec-news .post-date::before {
	position: absolute;
	content: "";
	display: block;
	width: 1px;
	height: 6vw;
	border-left: 1px #888 solid;
	top: -4vw;
	left: 2vw;
	transform: rotate(45deg);
}

@media screen and (min-width: 681px) {
	.sec-news .post-date::before {
		display: none;
	}
}

.sec-news .post-title {
	font-size: 5vw;
}

@media screen and (min-width: 681px) {
	.sec-news .post-title {
		font-size: 25px;
	}

}

/* section-thumbnail
***************************************************************/
.sec-thumbnail {
	padding: 0 5vw;
}

.sec-thumbnail h2 {}

.sec-thumbnail h2::before {
	display: none;
}

.sec-thumbnail .grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: repeat(2, 1fr);
	gap: 3vw;
	margin-top: 3vw;
}

@media screen and (min-width: 681px) {
	.sec-thumbnail .grid {
		grid-template-columns: repeat(4, 1fr);
		grid-template-rows: repeat(1, 1fr);
	}
}

.sec-thumbnail .grid .post-thumbnail {
	background-color: #ccc;
	display: flex;
	justify-content: center;
	align-items: center;
	box-shadow: 0 0 30px rgba(90, 116, 138, 0.3);
}

.sec-thumbnail .grid .post-thumbnail img {
	margin: 0;
}


.sec-thumbnail .link {
	display: block;
	font-size: 4vw;
	position: relative;
	width: 35vw;
	margin-left: auto;
	transition: all .3s;
}

@media screen and (min-width: 681px) {
	.sec-thumbnail .link {
		font-size: 20px;
		width: 200px;
	}

}



.sec-thumbnail .link:hover {
	opacity: 0.5;
}

.sec-thumbnail .link::before {
	position: absolute;
	display: block;
	content: "";
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 6vw;
	height: 2vw;
	border-top: 2vw solid transparent;
	border-bottom: 2vw solid transparent;
	border-left: 6vw solid #c1b4a4;
}

@media screen and (min-width: 681px) {
	.sec-thumbnail .link::before {
		width: 40px;
		height: 10px;
		border-top: 10px solid transparent;
		border-bottom: 10px solid transparent;
		border-left: 40px solid #c1b4a4;
	}

}

.sec-thumbnail .link::after {
	position: absolute;
	display: block;
	content: "";
	bottom: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background: #c1b4a4;

}

/* section2
***************************************************************/
.sec2 {}

.sec2 .inner {
	text-align: left;
}

.sec2 .inner h2 {}

.sec2 .inner .container {
	margin-top: 20px;
	display: flex;
	justify-content: center;
	flex-direction: column;
	align-items: center;
}

@media screen and (min-width: 681px) {
	.sec2 .inner .container {
		flex-direction: row;
		gap: 30px;
	}

}


.sec2 .inner .container .fr-img {
	position: relative;
	width: 100%;
	padding-top: 60%;
	right: -20px;

	opacity: 0;
	transform: translateX(40px);
	transition: opacity 1.5s ease-out, transform 1.5s ease-out;
}

.sec2 .inner .container .fr-img.visible {
	opacity: 1;
	transform: translateX(0px);
}

@media screen and (min-width: 681px) {
	.sec2 .inner .container .fr-img {
		position: static;
		width: 600px;
		padding-top: 50%;
	}

	.sec2 .inner .container .fr-img.visible {}
}


.sec2 .inner .container .fr-img img {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;

}

@media screen and (min-width: 681px) {
	.sec2 .inner .container .fr-img img {}
}


.sec2 .inner .container .txt {}

@media screen and (min-width: 681px) {
	.sec2 .inner .container .txt {
		position: static;

	}
}




.sec2 .inner .container .txt h3 {
	margin-top: 10px;
	font-size: 5vw;
	text-align: center;
	font-weight: 600;
}

@media screen and (min-width: 681px) {
	.sec2 .inner .container .txt h3 {
		font-size: 25px;
	}

}



.sec2 .inner .container .txt p {
	margin-top: 10px;

}

@media screen and (min-width: 681px) {
	.sec2 .inner .container .txt p {
		font-size: 20px;
	}

}

/* section-menu
***************************************************************/
.sec-menu {}

.sec-menu .inner {}

.sec-menu .inner h2 {
	text-align: left;
}

.sec-menu .inner .container {
	display: grid;
	gap: 20px;
	grid-template-columns: 1fr;
}

@media screen and (min-width: 681px) {
	.sec-menu .inner .container {
		grid-template-columns: 1fr 1fr 1fr;
	}
}

.sec-menu .inner .container .menu-box {
	border: 1px solid #c1b4a4;
	border-radius: 20px;
	overflow: hidden;
	padding-bottom: 4vw;
	background-color: #fff;
	position: relative;
	opacity: 0;
	transform: translateY(40px);
	transition: opacity 1.5s ease-out, transform 1.5s ease-out;
}


@media screen and (min-width: 681px) {
	.sec-menu .inner .container .menu-box {
		padding-bottom: 40px;
	}
}


.sec-menu .inner .container .menu-box.visible {
	opacity: 1;
	transform: translateY(0);
}

.sec-menu .inner .container .menu-box::before {
	content: "";
	position: absolute;
	bottom: 4vw;
	right: 4vw;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 0 5vw 5vw;
	border-color: transparent transparent #e0dacd transparent;
}

@media screen and (min-width: 681px) {
	.sec-menu .inner .container .menu-box::before {
		bottom: 15px;
		right: 15px;
		border-width: 0 0 30px 30px;
	}

}


.sec-menu .menu-box .img-box {
	width: 100%;
	overflow: hidden;
	position: relative;
	padding-top: 60%;
}

.sec-menu .menu-box .img-box img {
	position: absolute;
	top: 0;
	left: 0;
	/* transform: translate(-50%, -50%); */
}

.sec-menu .menu-box h3 {
	font-size: 6vw;
	line-height: 1.5em;
	margin-top: 4vw;
}


@media screen and (min-width: 681px) {
	.sec-menu .menu-box h3 {
		font-size: 25px;
		margin-top: 15px;
	}

}


.sec-menu .menu-box .en {
	font-size: 4vw;
	line-height: 1.5em;
	color: #c1b4a4;
}

@media screen and (min-width: 681px) {
	.sec-menu .menu-box .en {
		font-size: 20px;
		margin-top: 10px;
	}
}

.sec-menu .menu-box .txt {
	font-size: 4vw;
	line-height: 1.5em;
	margin-top: 3vw;
	padding: 0 5vw;
	text-align: justify;
}

@media screen and (min-width: 681px) {
	.sec-menu .menu-box .txt {
		font-size: 15px;
		margin-top: 10px;
		padding: 0 20px;
	}
}


@media screen and (min-width: 681px) {
	.sec-menu .inner .container {
		grid-template-columns: 1fr 1fr 1fr;
	}
}

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

/* section-access
***************************************************************/
.sec-access {
	text-align: left;
	background: #fff;
	border-top: solid 1px #c1b4a4;
}

.sec-access .inner {}

.sec-access .inner .box {
	display: flex;
	flex-direction: column;
}

@media screen and (min-width: 681px) {
	.sec-access .inner .box {
		flex-direction: row;
		justify-content: space-between;

	}
}

.sec-access .inner .box .txt-box {
	font-size: 4vw;
	padding: 10px 0;
	color: #c1b4a4;
}

@media screen and (min-width: 681px) {
	.sec-access .inner .box .txt-box {
		font-size: 20px;
	}

}

.sec-access .inner .box .txt-box .tel {}

.sec-access .inner .box .txt-box .tel span {
	font-size: 6vw;
	color: #000;
	font-weight: 600;
}

@media screen and (min-width: 681px) {
	.sec-access .inner .box .txt-box .tel span {
		font-size: 25px;
	}

}


.sec-access .inner .box .txt-box .open {}

.sec-access .inner .box .txt-box .open span {
	color: #000;
}

.sec-access .inner .box .txt-box .address {
	margin-top: 20px;
}

.sec-access .inner .box .txt-box .address span {
	font-size: 4vw;
	color: #000;
}

@media screen and (min-width: 681px) {
	.sec-access .inner .box .txt-box .address span {
		font-size: 20px;
	}

}

.sec-access .iframe-wrap {
	position: relative;
	width: 100%;
	padding-top: 75%;
	/* = height ÷ width × 100 */
	border: solid 2px #c1b4a4;
	border-radius: 20px;
	overflow: hidden;
}

@media screen and (min-width: 681px) {
	.sec-access .iframe-wrap {
		width: 50%;
		padding-top: 30%;
	}

}


.sec-access .iframe-wrap iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

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

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

/* section-Product
***************************************************************/
.sec-product {}

.sec-product .inner {}

.sec-product .inner h2 {
	text-align: left;
}

.sec-product .inner .box {
	display: flex;
	flex-direction: column;
}

@media screen and (min-width: 681px) {
	.sec-product .inner .box {
		flex-direction: row;
		justify-content: space-between;
	}
}


.sec-product .inner .box .img-box {
	margin-top: 5vw;
	opacity: 0;
	transform: translateY(5vw);
	transition: opacity 1.5s ease-out, transform 1.5s ease-out;
}

@media screen and (min-width: 681px) {
	.sec-product .inner .box .img-box {
		width: 45%;
	}
}

.sec-product .inner .box .img-box.visible {
	opacity: 1;
	transform: translateY(0);
}

.sec-product .inner .box .txt-box {
	margin-top: 3vw;
	text-align: right;
}

@media screen and (min-width: 681px) {
	.sec-product .inner .box .txt-box {
		width: 50%;
	}
}

.sec-product .inner .box .txt-box h3 {
	text-align: left;
	font-size: 6vw;
	font-weight: 600;
}

@media screen and (min-width: 681px) {
	.sec-product .inner .box .txt-box h3 {
		font-size: 25px;
	}

}


.sec-product .inner .box .txt-box p {
	margin-top: 4vw;
	font-size: 4vw;
	text-align: justify;
}

@media screen and (min-width: 681px) {
	.sec-product .inner .box .txt-box p {
		font-size: 20px;
	}

}


.sec-product .inner .box .txt-box a {
	margin-top: 5vw;
	padding-right: 8vw;
	position: relative;
	transition: all .2s;
}


@media screen and (min-width: 681px) {
	.sec-product .inner .box .txt-box a {
		font-size: 20px;
		padding-right: 60px;
	}


}


.sec-product .inner .box .txt-box a:hover {
	opacity: 0.5;
}

.sec-product .inner .box .txt-box a::before {
	position: absolute;
	display: block;
	content: "";
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 6vw;
	height: 2vw;
	border-top: 2vw solid transparent;
	border-bottom: 2vw solid transparent;
	border-left: 6vw solid #c1b4a4;
}

@media screen and (min-width: 681px) {
	.sec-product .inner .box .txt-box a::before {
		width: 40px;
		height: 10px;
		border-top: 10px solid transparent;
		border-bottom: 10px solid transparent;
		border-left: 40px solid #c1b4a4;
	}

}

.sec-product .inner .box .txt-box a::after {
	position: absolute;
	display: block;
	content: "";
	bottom: 0;
	left: -10%;
	width: 110%;
	height: 1px;
	background: #c1b4a4;
}

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

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

/* section5
***************************************************************/
@media screen and (min-width: 681px) {}

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