@charset "utf-8";
/* CSS Document */

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

共通や細かなパーツなど

==========================*/
article {
	font-size: 1.6rem;
	font-family: "Zen Old Mincho", serif;
	color: #555;
}
article h1{
	position: absolute;
	bottom: 15%;
	left: 5%;
	font-size: 5rem;
	color: #fff;
	font-weight: 400;
	line-height: 1.6em;
}
article h2{
	font-weight: 400;
}
article p{
	margin-bottom: 50px;
}

#gmap iframe {
  vertical-align: bottom;
}

.fiximg {
    height: 500px;
    position: relative;
    clip-path: inset(0);
}
.fiximg::before{
	content: "";
	display: block;
	width: 100%;
	height: 500px;
	background-color: rgba(0,0,0,0.30);
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}
.fiximg img {
    object-fit: cover;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}


@media screen and (max-width: 768px) {
	html, body {
	  transform: none !important;
	  will-change: auto !important;
	  overflow-x: hidden;
	  backface-visibility: visible !important;
	}
	article h1{
		font-size: 3rem;
	}
	#gFooter{
		margin-top: 0;
	}
	.fiximg {
		height: 300px;
	}
}

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

背景固定ゾーン

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

.bg-layer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
   height: calc(var(--vh, 100vh));
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -9999;
  opacity: 0;
	pointer-events: none;
  transform: scale(1.05);
  transition: opacity 1s ease, transform 1s ease;
	will-change: transform, opacity;
}

.bg-layer.visible {
  opacity: 1;
  transform: scale(1.0);
}

.content-wrapper {
  width: 40vw;
	margin-right: auto;
	margin-left: 5%;
	margin-top: 75vh;
  padding: 10rem 4rem;
  box-sizing: border-box;
	background-color: rgba(255,255,255,0.80);
}

article .section {
  margin-bottom: 100px;
	max-width: 100%;
  color: #333;
}
article .section img{
	width: 100%;
}
article .section h2{
	margin-bottom: 50px;
	position: relative;
	font-size: 3rem;
}
article .section h2::before{
	content: '';
	display: inline-block;
	width: 200px;
	height: 1px;
	position: absolute;
	left: -4rem;
	bottom: -30px;
	background-color: #555;
}
article .section h3{
	margin: 50px 0 20px;
	font-weight: 400;
	font-size: 2.2rem;
}

article .section h4{
	margin: 50px 0 20px;
	font-weight: 400;
	font-size: 2rem;
}

article .section ul{
	margin: 50px auto 0;
}
article .section ul li{
	padding-left: 1em;
	text-indent: -1em;
	line-height: 2;
}

.sliderArea {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 25px;
	overflow: hidden;
}
.slick-slide {
  margin: 0 5px;
}
.slick-slide img {
  width: 100%;
  height: auto;
}
.slick-slide {
  transition: all ease-in-out .3s;
}
.slick-list{
	overflow: visible;
}
.slick-current {
  opacity: 1;
}


@media screen and (max-width: 768px) {
	.content-wrapper {
		width: 85vw;
		margin-right: auto;
		margin-left: auto;
		padding: 10rem 2rem;
	}
	.title-wrapper {
	  position: relative;
		top: -30px;
	  z-index: 2;
	}
	.section h2::before{
		left: -2rem;
	}
}
/*========================

open house

==========================*/
.openhouse{
	margin: 100px auto;
	padding: 3rem;
	border: 1px solid #555;
}
.openhouse h3{
	margin-bottom: 1em;
	font-size: 2rem;
	line-height: 2;
	text-align: center;
}
.openhouse p{
	font-size: 3rem;
	line-height: 2;
	text-align: center;
}
@media screen and (max-width: 768px) {
	.openhouse{
		padding: 2rem;
	}
	.openhouse p{
		font-size: 2rem;
	}
}
/*========================

photos

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

#photos{
	width: 100%;
	min-height: 100vh;
	background-color: #333333;
	color: #FFFFFF;
}

#photos h2,
#area h2,
#virtualtour h2,
#details h2{
	padding-top: 150px;
	position: relative;
	text-align: center;
	font-size: 3rem;
}
#photos h2::before,
#area h2::before,
#virtualtour h2::before,
#details h2::before{
	content: '';
	display: inline-block;
	width: 100px;;
	height: 1px;
	position: absolute;
	bottom: -30px;
	left: 50%;
	transform: translateX(-50%);
	background-color: #fff;
}
#photos .content{
	width: 80%;
	margin: 100px auto 0;
}
#photos .content p{
	text-align: center;
}
.fancybox_area {
    column-count: 4;
    column-gap: 10px;
	padding-bottom: 100px;
}
.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 screen and (max-width: 768px) {
	#photos .content{
		width: 90%;
	}
	.fancybox_area {
		column-count: 2;
		margin: 0 auto;
	}
}

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

area

==========================*/
#area,#virtualtour,#details,#inquiry{
	width: 100%;
	padding-bottom: 150px;
	background-color: #F6F6F6;
}
#area h2::before,
#virtualtour h2::before,
#details h2::before{
	background-color: #555;
}
#area .content,
#virtualtour .content,
#details .content{
	max-width: 960px;
	margin: 100px auto 0;
}

@media screen and (max-width: 768px) {
	#area .content,
	#virtualtour .content,
	#details .content{
		max-width: 95%;
	}
	#area,#virtualtour,#details,#inquiry{
		padding-bottom: 100px;
	}
	#area img{
		width: 100%;
	}
}

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

virtualtour

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

.vrbox {
  width: 100%;
	margin: 0 auto;
}
.vrbox iframe {
  height: 600px;
}

/*スマホ表示*/
@media screen and (max-width: 767px) {
  .vrbox {
    width: 95%;
  }
  .vrbox iframe {
    height: 400px;
  }
}

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

details

==========================*/
#details a{
	padding: 0 10px;
	text-decoration: underline;
}
#details table {
  box-sizing: border-box;
  border-collapse: collapse;
  width: 100%;
}
#details table th, #details table td {
	line-height: 3;
  border-block-end: 1px solid #DDDAD1;
  font-style: normal;
  text-align: justify;
}
#details table th {
  width: 20%;
  font-weight: normal;
}
/*スマホ表示*/
@media (max-width: 767px) {

  #details table {
    width: 100%;
  }
  #details table th, #details table td {
    display: block;
    width: 100%;
    height: auto;
    border-block-end: 0px;
    padding: 3px 10px;
  }
  #details table th {
    background-color: rgba(77, 77, 77, 0.10);
  }
}
/*========================

inquiry

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

#inquiry{
	display: grid;
	place-items: center;
}
#inquiry a{
	display: flex;
    justify-content: center;
    align-items: center;
	width: 300px;
	height: 60px;
	position: relative;
	border: solid 1px #555;
	transition: .4s cubic-bezier(0.37, 0, 0.63, 1);
}
#inquiry a::after {
    transform: rotate(45deg);
    width: 5px;
    height: 5px;
	position: absolute;
	right: 5%;
    border-top: 1px solid #555;
    border-right: 1px solid #555;
    content: '';
}
#inquiry a:hover::after{
	border-top: 1px solid #fff;
    border-right: 1px solid #fff;
}
#inquiry a:hover {
  background: #555;
  color: #fff;
  letter-spacing: 0.2em;
}

.fix_contact {
	position: fixed;
	bottom: 2%;
	right: 2%;
	padding: 20px;
	border-radius: 50%;
	background-color: rgba(0,0,0,0.50);
}
.fix_contact:hover{
	background-color: rgba(255,255,255,0.70);
	border: 1px solid rgba(0,0,0,0.40);
}
.fix_contact .material-symbols-outlined {
  font-variation-settings:
  'FILL' 1,
  'wght' 400,
  'GRAD' 0,
  'opsz' 40
}

.fix_contact .material-symbols-outlined {
	color: #fff;
	font-size: 35px;
}
.fix_contact:hover .material-symbols-outlined{
	color: #333;
}
@media (max-width: 767px) {
	.fix_contact {
		padding: 10px;
	}
	.fix_contact .material-symbols-outlined {
		font-size: 24px;
	}
}