@charset "utf-8";

#contesntsWrapper {
margin-top: 50px !important;
}

article ul{
padding-inline-start: 0
}

article h1 {
margin-top: 0;
margin-bottom: 0;
}

article h2 {
background-color: transparent;
color: inherit;
box-shadow: none;
margin-top: 0;
padding: 0;
/font-size: inherit;/
font-size: 25px;
}

.cta_link {
margin-bottom: 0;
}

.syoudan {
font-weight: bold;
color: #820132;
}
/* CSS Document */
article {
	background-color: var(--main-bg);
	color: var(--main-font);
	font-family: var(--font-family);
	font-size: 1.6rem;
}

article .material-symbols-outlined {
	font-variation-settings:
		'FILL' 1,
		'wght' 400,
		'GRAD' 0,
		'opsz' 24
}

article section {
	max-width: 960px;
	margin: 0 auto;
	padding-top: 200px;
}

article h2 {
	position: relative;
	padding-top: 50px;
	padding-bottom: 50px;
	font-size: 2.8rem;
	text-align: center;
	z-index: 1;
}

article h2 span {
	position: relative;
	z-index: 2;
}

article h2::before {
	content: attr(data-en);
	width: 100%;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	color: var(--sub-bg);
	font-family: var(--head-font-family);
	font-weight: 400;
	mix-blend-mode: screen;
	font-size: 80px;
	z-index: -1;
}

article .Bk02 h2::before {
	color: var(--main-bg);
}

article section p {
	margin: 0 auto 50px;
	max-width: 800px;
	font-size: 1.8rem;
	line-height: 3rem;
}

article .Bk02 {
	padding-bottom: 200px;
	background-color: var(--sub-bg);
}

picture img {
	display: block;
	width: 100%;
}

.fadeIn {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 1s ease, transform 1s ease;
}

.fadeIn.animated {
	opacity: 1;
	transform: none;
}

@media (max-width: 767px) {
	article section {
		max-width: 95%;
		padding-top: 20vw;
	}

	article img {
		width: 100%;
	}

	#gFooter {
		margin-top: 0;
	}

	article h2::before {
		font-size: 60px;
	}
}

/*--------------------------

#top

----------------------------*/
#top {
	max-width: 100%;
	padding-top: 50px;
	position: relative;
}

#top h1 {
	position: absolute;
	bottom: 10%;
	left: 10%;
	font-size: 5rem;
	display: inline-block;
	font-weight: bold;
	background: #fff;
	margin: 0 auto 50px;
	padding: 10px;
}

#top img {
	display: block;
	width: 80%;
	margin-left: auto;
}

@media (max-width: 767px) {
	#top {
		padding-top: 0;
		height: 70%;
	}

	#top h1 {
		position: inherit;
		padding: 30px 10px;
		font-size: 2.8rem;
		bottom: inherit;
		left: inherit;
	}

	#top img {
		width: 100%;
		margin: auto;
		height: auto;
	}
}

/*--------------------------

#lead

----------------------------*/
article section#lead h2 {
	font-family: var(--head-font-family);
	font-size: 5rem;
	font-weight: 400;
	color: var(--accent-color);
}

#lead {
	max-width: 70%;
}

.parent {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	ggrid-auto-rows: minmax(150px, auto);
	gap: 10px;
	margin-bottom: 10px;
}

.div1,
.div2,
.div3 {
	grid-row: span 2;
	height: 100%;

}

.div1 {
	grid-column: span 3;
}

.div2 {
	grid-column: span 2;
	grid-column-start: 4;
}

.div3 {
	display: flex;
	align-items: center;
	grid-column: 5 / 7;
	grid-row: span 2;
}

.parent.reverse .div1 {
	grid-column: 4 / 7;
}

.parent.reverse .div2 {
	grid-column: 3 / 4;
}

.parent.reverse .div3 {
	grid-column: 1 / 3;
	grid-row: span 2;
}


.div1 img,
.div2 img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	aspect-ratio: 4 / 3;
}

/*#lead p{
	font-size: 1.8rem;
	line-height: 3rem;
}*/

@media (max-width: 1000px) {
	article section#lead h2 {
		font-size: 3rem;
	}

	#lead {
		max-width: 95%;
	}

	.parent {
		grid-template-columns: 1fr;
	}

	.div1 img,
	.div2 img {
		aspect-ratio: auto;
	}

	.div1,
	.div2,
	.div3,
	.parent.reverse .div1,
	.parent.reverse .div2,
	.parent.reverse .div3 {
		grid-column: auto;
		grid-row: auto;
	}

	.parent.reverse .div3 {
		order: 1;
	}
}

/*--------------------------

#photos

----------------------------*/
#photos {
	max-width: 80%;
	margin: 0 auto;
}

#photos p {
	text-align: center;
}

.fancybox_area {
	column-count: 4;
	gap: 10px;
}

.fancybox_area li {
	margin-bottom: 10px;
}

.fancybox_area li a {
	display: inline-block;
	position: relative;
}

.fancybox_area li a::before {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	font-family: 'Material Icons';
	font-size: 4rem;
	content: '\e8ff';
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: space-around;
	opacity: 0;
	transition: all .5s ease;
}

.fancybox_area li a:hover::before {
	opacity: 1;
}

.fancybox_area img {
	width: 100%;
	vertical-align: bottom;
}

@media (max-width: 767px) {
	#photos {
		max-width: 95%;
	}

	.fancybox_area {
		column-count: 2;
		margin: 0 auto;
	}
}

.parallax {
	max-width: 100%;
	margin-top: 100px;
	height: 400px;
	background-image: url("../img/parallax.webp");
	background-attachment: fixed;
	background-size: cover;
}

@media (max-width: 767px) {
	.parallax {
		background-attachment: scroll;
		height: 250px;
	}
}

/*--------------------------

#virtualtour

----------------------------*/

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

.vrbox iframe {
	height: 600px;
}

#virtualtour p{
	text-align: center;
}

@media (max-width: 767px) {
	.vrbox {
		width: 95%;
	}

	.vrbox iframe {
		height: 400px;
	}
}

/*--------------------------------------------------

 #details

----------------------------------------------------*/
#details table {
	box-sizing: border-box;
	border-collapse: collapse;
	width: 100%;
}

#details table th,
#details table td {
	border-block-end: 1px solid #DDDAD1;
	vertical-align: middle;
	font-style: normal;
	/*text-align: justify;*/
	line-height: 3;
}

#details table th {
	width: 23%;
	font-weight: normal;
}

#details table a {
	padding: 0 .5em;
	text-decoration: underline;
	color: var(--accent-color);
	transition: .5s all;
}

#details table a:hover {
	opacity: .5;
}

@media (max-width: 767px) {
	#details table {
		width: 100%;
	}

	#details table th,
	#details table td {
		display: block;
		width: 100%;
		padding-left: 1em;
		border-block-end: 0px;
	}

	/*#details table th {
		background-color: var(--sub-bg);
		mix-blend-mode: multiply;
	}*/
	
	/*#details table th {
  background-color: color-mix(in srgb, var(--sub-bg), #000 10%);
}*/
	
	/* フォールバック（color-mix未対応ブラウザ向け） */
#details table th {
  background-color: #e0d1b9;
}

/* 対応ブラウザではこちらが適用される */
#details table th {
  background-color: color-mix(in srgb, var(--sub-bg) 80%, #A47939 20%);
  /* var(--sub-bg) = #EFE7D9, #A47939 を 20% 混ぜで #E0D1B9 になります */
}
}

/*--------------------------

#inquiry

----------------------------*/
#inquiry {
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	position: relative;
}

#inquiry a {
	min-width: 300px;
	padding: 20px 50px;
	overflow: hidden;
	position: relative;
	background-color: var(--accent-color);
	color: var(--main-bg);
	z-index: 1;
	transition: .3s;
}

#inquiry a::before {
	content: ">";
	position: absolute;
	right: 10px;
	z-index: 1;
}

#inquiry a::after {
	content: "";
	position: absolute;
	top: -120px;
	left: -320px;
	width: 320px;
	height: 160px;
	background: rgb(255, 255, 255);
	transform: rotate(-45deg);
	opacity: .5;
	z-index: 0;
	transition: all .3s ease-out;
}

#inquiry a:hover::after {
	top: 100%;
	left: 100%;
}

/*--------------------------

#gmap

----------------------------*/
#gmap {
	padding-bottom: 100px;
}

/*--------------------------

.floatingButton

----------------------------*/
.floatingButton {
	opacity: 0;
	visibility: hidden;
	transition-duration: 0.3s;
	transform: translateY(20px);
	position: fixed;
	bottom: 5%;
	right: 2%;
	background-color: var(--accent-color);
	text-align: center;
}

.floatingButton a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 60px;
	height: 60px;
	color: #fff;
}

.floatingButton.visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.floatingButton:hover {
	opacity: 0.5;
}

.floatingButton a span {
	font-size: 4rem;
}

@media (max-width: 767px) {
	.floatingButton a {
		width: 40px;
		height: 40px;
	}

	.floatingButton a span {
		font-size: 2.5rem;
	}
}

#plan img{
	width: 100%;
	max-width: 960px;
}

#area img{
	width: 100%;
	max-width: 960px;
}

