@charset "utf-8";
/* CSS Document */
/* 共通部分
------------------------------- */
body {
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}
article {
  width: 100%;
  margin: 0;
  padding: 0;
  border: none;
  color: #333333;
  font-size: 1.6rem;
  letter-spacing: 0.15rem;
  line-height: 1.8;
  text-align: justify;
  vertical-align: baseline;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
  font-feature-settings: "palt";
  font-smoothing: antialiased;
  -webkit-font-smoothing: antialiased;
	text-justify: inter-ideograph;
  margin: 0;
  padding: 0;
  border: 0;
  background-color: #F5F4F3;
  overflow: hidden;
}

article img {
  /*display: block;*/
  height: auto;
  max-width: 100%;
  margin-inline-start: auto;
  margin-inline-end: auto;
}

.backgroundImg{
	background-image: url("../img/background.png");
}

.sawarabi{
	font-family: "Sawarabi Mincho", serif;
	font-weight: 500;
	font-style: normal;
}

.clearfix:after {
  clear: both;
  content: "";
  display: block;
}
.clearfix {
  *zoom: 1;
} /*for IE6,IE7*/
.pc_only {
  display: block;
}
.sp_only {
  display: none;
}

.l-960{
	max-width: 960px;
	margin-inline:auto;
	padding-inline:40px;
	padding-top:250px;
	padding-bottom: 200px;
}
.l-1200{
	max-width: 1200px;
	margin-inline:auto;
}

.c-title{
   font-family: "Rubik Dirt", system-ui;
   font-weight: 400;
   font-style: normal;
   font-size: 100px;
   color: #A1A09B;
   text-align: center;
   line-height: 1.2;
   position: absolute;
   margin-bottom: 80px;
   top: -90px;
   left: 50%;
   transform: translateX(-50%);
   white-space: nowrap;
}

.c-title .ja{
	font-family: "Sawarabi Mincho", serif;
	font-weight: 500;
	font-style: normal;	
	font-size: 30px;
	display: block;
}

@media screen and (max-width: 860px){
	#gFooter{
		margin-top: 0 !important;
	}
}

@media screen and (max-width: 768px) {
  .pc_only {
    display: none !important;
  }
  .sp_only {
    display: block;
  }
	
  .c-title{
    font-family: "Rubik Dirt", system-ui;
	font-weight: 400;
	font-style: normal;
    font-size: 64px;
	color: #A1A09B;
    text-align: center;
    line-height: 1.2;
    position: absolute;
    margin-bottom: 40px;
	top: -60px;
    left: 50%;
  }
	
  .c-title .ja{
	font-family: "Sawarabi Mincho", serif;
	font-weight: 500;
	font-style: normal;	
	font-size: 24px;
	display: block;
}
	
  .l-960{
	max-width: 960px;
	margin-inline:auto;
	padding-inline:30px;
	padding-top:250px;
	padding-bottom: 80px;
  }
	

}
/* 順番 
1.位置情報系＝position, top, right, z-index, display, float等
2.サイズ＝width, height, padding, margin
3.文字系＝font, line-height, letter-spacing, color- text-align等
4.背景＝background, border等
5.その他＝animation, transition等
*/



/* responsive img
------------------------------- */
/*中央揃えにするためのcss*/
picture img {
    display: block;
    /*max-width: 960px;*/
    width: 100%;
    margin: 0 auto;
}
/*スマホ表示*/
@media screen and (max-width: 768px) {
   picture img {
    width: 96%;
  }
}

/* article
------------------------------- */

article .txt {
    font-size: 1.6rem;
  padding-block-end: 10px;
}
article .txt_s {
  font-size: 1.3rem;
}
/*マーカーアニメーション*/
.marker-animation.active {
  background-position: -100% .5em;
}
.marker-animation {
  background-image: -webkit-linear-gradient(left, transparent 50%, rgba(248, 226, 175, 0.7) 50%);
  background-image: -moz-linear-gradient(left, transparent 50%, rgba(248, 226, 175, 0.7) 50%);
  background-image: -ms-linear-gradient(left, transparent 50%, rgba(248, 226, 175, 0.7) 50%);
  background-image: -o-linear-gradient(left, transparent 50%, rgba(248, 226, 175, 0.7) 50%);
  background-image: linear-gradient(left, transparent 50%, rgba(248, 226, 175, 0.7) 50%);
  background-repeat: repeat-x;
  background-size: 200% .8em;
  background-position: 0 .5em;
  transition: all 3s ease;
  font-weight: bold;
}
/*注意書き*/
.nossale {
  color: #c9171e;
  font-weight: bold;
}
.section-block {
  width: 100%;
  clear: both;
}
.text-block {
  width: 40%;
  float: left;
  margin-left: 3%;
}
h1.title img {
  /* じわっと画像が表示される */
  animation: fadeIn 3s ease 0s 1 normal;
  -webkit-animation: fadeIn 3s ease 0s 1 normal;
}
/* じわっと画像が表示される ---------　一度追加していたら不要*/
@keyframes fadeIn { /*上のbody内で呼び出しているアニメーションと名前をそろえる*/
  0% {
    opacity: 0
  } /* 始め */
  100% {
    opacity: 1
  } /* 終わり */
}
/*古いブラウザ用　---------　一度追加していたら不要*/
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0
  }
  100% {
    opacity: 1
  }
}


.js-animation {
  opacity: 0;
  visibility: hidden;
  transform: translateY(40px);
  transition: all 1.5s;
}
.js-animation.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}


/* top
------------------------------- */

.top_wrap{
	display: flex;
	width: 100%;
	height: 85vh;
	position: relative;
}

.top_left{
	width: 30%;
	display: flex;
	align-items: center;
}

.top_right{
	width: 70%;
}

.l-logo{
	padding-left: 60px;
	height: 70vh;
}

.logo_img{
	height: 100%;
}

.top_slider{
	height: 100%;
}

.top-sliderList{
	height: 100%;
}

.top_sliderItem{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.slick-slider .slick-list{
	height: 100% !important;
}

.slick-slider .slick-track{
	height: 100% !important;
}

@keyframes zoom-in {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}

.top_sliderItem {
  animation: zoom-in 10s linear 0s 3 normal both;
}

@media screen and (max-width: 768px){
	.top_wrap{
		display: flex;
		width: 100%;
		height: 85vh;
	}
	.top_right{
		width: 75%;
	}
	
	.top_left{
		width: 25%;
		display: flex;
		align-items: flex-end;
		padding-bottom: 20px;
	}
	
	.l-logo{
		padding-left: 20px;
	}
	
	.logo_img{
		height: auto;
	}

}

/* スクロールアニメーション
------------------------------- */

.container_Wrap{
	position: absolute;
	top: 70%;
    left: 20%;
	z-index: 10;
}

.container_01 {
  margin: 0;
  padding: 0;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.container_01 a:hover {
  opacity: 0.7;
}

.scroll-down_01 {
  position: relative;
  width: 200px;
  height: 200px;
  color: #333;
  font-family: serif;
  text-decoration: none;
}

.circle-text_01 {
  position: absolute;
  width: 100%;
  height: 100%;
  animation: rotate 20s linear infinite;
}

.circle-text_01 span {
  position: absolute;
  left: 50%;
  font-size: 16px;
  transform-origin: 0 100px;
}

.arrow_01 {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 50px;
  transform: translate(-50%, -50%);
  animation: scroll_01 3s infinite;
}

.arrow_01::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  height: 100%;
  width: 1px;
  background-color: #333;
  transform: translateX(-50%);
}
.arrow_01::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 12px;
  height: 12px;
  border-bottom: 1px solid #333;
  transform: translateX(-50%) rotate(-45deg);
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes scroll_01 {
  0% {
    transform: translate(-50%, -50%) translateY(-10px);
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) translateY(10px);
    opacity: 0;
  }
}
@media screen and (max-width: 768px){
	.container_Wrap{
		position: absolute;
		top: 70%;
		left: auto;
		right: 0;
		z-index: 10;
	}
}


/* intro
------------------------------- */

.intro_wrap{
	display: flex;
	height: 100vh;
}

.intro_left{
	width: 30%;
}

.simpleParallax{
	height: 100%;
}

.intro_right{
	width: 70%;
	display: flex;
	align-items: center;
}

.intro_rightWrap{
	width: 65%;
	margin-inline:auto;
}

.intro_img{
	height: 100%;
	object-fit: cover;
}

.intro_head{
	font-size: 32px;
	margin-bottom: 60px;
	line-height: 2;
}

.intro_text{
	font-size: 18px;
}

.intro_text.first{
	padding-bottom: 40px;
}

@media screen and (max-width: 820px){
	.intro_rightWrap{
		width: 75%;
		margin-inline:auto;
	}
}

@media screen and (max-width: 768px){
	.intro_wrap{
		display: flex;
		flex-direction: column-reverse;
		height: auto;
	}

	.intro_left{
		width: 100%;
	}

	.simpleParallax{
		height: 100%;
	}

	.intro_right{
		width: 80%;
		display: flex;
		align-items: center;
		margin-inline:auto;
	}

	.intro_rightWrap{
		width: 100%;
		margin-inline:auto;
		padding-top: 80px;
		padding-bottom: 60px;
	}

	.intro_img{
		/*height: 100%;*/
		height: 600px;
		width: 100%;
		object-fit: cover;
	}

	.intro_head{
		font-size: 24px;
		margin-bottom: 40px;
		line-height: 2;
	}

	.intro_text{
		font-size: 18px;
	}

	.intro_text.first{
		padding-bottom: 20px;
	}
	
}


/* point
------------------------------- */

.point{
	padding-top: 160px;
}

.point_wrap{
	content: "";
    width: 90vw;
	max-width: 1200px;
	margin-inline:auto;
    background-color: #E9E7E4;
	padding: 120px 120px 60px;
	position: relative;
    margin-bottom: 100px;
}

.point_flexWrap{
	display: flex;
}

.point_accent{
	writing-mode: vertical-rl;
	font-size: 36px;
	line-height: 1;
	padding-right: 40px;
	color: #A1A09B;
}

.point_head{
	font-size: 32px;
	line-height: 2;
	padding-bottom: 60px;
}

.point_text{
	font-size: 18px;
}

.point_text.first{
	padding-bottom: 20px;
}
#point h3 {
    max-width: 1200px;
    font-size: 30px;
    margin: 70px auto 30px; 
}

.slider-ltr .slick-slide,
.slider-rtl .slick-slide {
    padding: 0 5px;
}

.point_slide .slick-slide{
	margin: 0;
	opacity: 1;
}
.slider-rtl {
  transform: scaleX(-1);
}
.slider-rtl .slick-slide {
  transform: scaleX(-1);
}
.point_slide-wrap {
    padding-bottom: 120px;
}
@media screen and (max-width: 768px){
	.point{
		padding-top: 100px;
	}

	.point_wrap{
		content: "";
		width: 90vw;
		max-width: 1200px;
		margin-inline:auto;
		background-color: #E9E7E4;
		padding: 60px 40px;
		position: relative;
	}
#point h3 {
width: 92%; 
}
	.point_flexWrap{
		display: block;
	}

	.point_accent{
		writing-mode: vertical-rl;
		font-size: 36px;
		line-height: 1;
		padding-right: 30px;
		color: #A1A09B;
		float: left;
	}

	.point_head{
		font-size: 24px;
		line-height: 2;
		padding-bottom: 40px;
	}

	.point_text{
		font-size: 18px;
	}

	.point_text.first{
		padding-bottom: 20px;
	}

	.point_slide{
		padding-bottom: 100px;
	}

	.point_slideListItem{
		padding-right: 10px;
		width: 20vw;
	}

	.point_slide .slick-slide{
		margin: 0;
		opacity: 1;
	}

	.slick-slide img {
		width: 100% !important;
	}
	
}



/* open house
------------------------------- */
.openHouse{
	padding-bottom: 160px;
}

.openHouseWrap{
	width: 100%;
	max-width: 960px;
	margin-inline:auto;
	padding-block:80px; 
	padding-inline:60px;
}

.openHouseWrap{
	background-image: url('../img/openHouse.jpg');
	background-color:rgba(255,255,255,0.85);
    background-blend-mode:lighten;  
}

.openHouse_title{
	font-size: 28px;
	text-align: center;
	margin-bottom: 10px;
}

.openHouse_reservation{
	font-size: 24px;
	text-align: center;
}

.openHouse_date{
	font-size: 24px;
	text-align: center;
	margin-bottom: 20px;
}

.openHouse_attention{
	text-align: center;
	font-size: 18px;
}

@media screen and (max-width: 768px){
	
	.openHouse{
		padding-bottom: 80px;
	}

	.openHouseWrap{
		width: 100%;
		max-width: 960px;
		margin-inline:auto;
		padding-block:60px; 
		padding-inline:40px;
	}

	.openHouseWrap{
		background-image: url('../img/openHouse.jpg');
		background-color:rgba(255,255,255,0.85);
		background-blend-mode:lighten; 
		background-repeat: no-repeat;
	}

	.openHouse_title{
		font-size: 24px;
		text-align: center;
		margin-bottom: 10px;
		line-height: 1.6;
	}

	.openHouse_reservation{
		font-size: 20px;
		text-align: center;
	}

	.openHouse_date{
		font-size: 20px;
		text-align: center;
		margin-bottom: 20px;
	}

	.openHouse_attention{
		text-align: left;
		font-size: 16px;
	}
	
	.openHouse_attentionText{
		line-height: 1.6;
		text-indent: -1em;
        padding-left: 1em;
	}
	
}

/* parallax
------------------------------- */
.paralla{
	padding-bottom: 200px;
}

.parallax_wrap{
	width: 100vw;
	height: 600px;
	overflow: hidden;
}

.parallax_img{
	width: 100%;
	object-fit: cover;
}

@media screen and (max-width: 768px){
	.paralla{
		padding-bottom: 100px;
	}

	.parallax_wrap{
		width: 100vw;
		height: 200px;
		overflow: hidden;
	}

	.parallax_img{
		width: 100%;
		object-fit: cover;
	}

	
}

/* area
------------------------------- */

.area{
	padding-top: 240px;
}

.area_wrap{
	content: "";
    width: 90vw;
	max-width: 1200px;
	margin-inline:auto;
    /*background-color: #E9E7E4;*/
	border:1px solid #A1A09B;
	background-color: #fff;
    padding: 140px 120px 60px;
    position: relative;
}

.area_head{
	font-size: 30px;
	line-height: 1.8;
	margin-bottom: 20px;
	text-align: right;
}

.area_imgWrap{
	margin-bottom: 20px;
}

.area_text{
	margin-bottom: 20px;
	line-height: 1.6;
}

.area_title{
	font-family: "Sawarabi Mincho", serif;
	font-weight: 500;
	font-style: normal;	
	font-size: 24px;
	text-align: right;
}

.area_title .small{
	font-size: 16px;
	padding-right: 10px;
}

.sliderArea {
  max-width: 100%;
  margin: 30px auto;
  overflow: hidden;
}
.sliderArea.w300 {
  max-width: 540px;
}
.slick-slide {
  margin: 0 5px;
}
.slick-slide img {
  width: 100%;
}
.slick-prev, .slick-next {
  z-index: 1;
}
#area .slick-prev:before, #area .slick-next:before {
  position: relative;
  top: -390%;
  left: -30px;
  color: #5c5c5c;
  font-size: clamp(1rem, 2vw + 1.3rem, 2.8rem);
}
#area .slick-prev:before {
  left: 25px;
}
.slick-slide {
  transition: all ease-in-out .3s;
  opacity: .2;
}
.slick-active {
  opacity: 1;
}
.slick-current {
  opacity: 1;
}
.thumb {
  margin: 20px 0 0;
}
.thumb .slick-slide {
  cursor: pointer;
}
.thumb .slick-slide:hover {
  opacity: .7;
}
.full-screen .slick-list {
  overflow: visible;
}
.full-screen.slider {
  max-width: 600px;
  margin: 0 auto;
}
.slider {
  text-align: start;
}

@media screen and (max-width: 768px){
	
	.area{
		padding-top: 80px;
	}

	.area_wrap{
		content: "";
		width: 90vw;
		max-width: 1200px;
		margin-inline:auto;
		/*background-color: #E9E7E4;*/
		border:1px solid #A1A09B;
		background-color: #fff;
		padding: 80px 30px 0px;
		position: relative;
	}

	.area_head{
		font-size: 20px;
		line-height: 1.8;
		margin-bottom: 20px;
		text-align: left;
	}

	.area_imgWrap{
		margin-bottom: 20px;
	}

	.area_text{
		margin-bottom: 20px;
		line-height: 1.6;
	}

	.area_title{
		font-family: "Sawarabi Mincho", serif;
		font-weight: 500;
		font-style: normal;	
		font-size: 18px;
		text-align: left;
	}
	
	.area_title .small{
		font-size: 12px;
		padding-right: 10px;
		display: block;
	}
	
}

/* plan
------------------------------- */

.plan{
	padding-top: 200px;
	padding-bottom: 240px;
}

.plan_wrap{
	content: "";
    width: 90vw;
	max-width: 1200px;
	margin-inline:auto;
    /*background-color: #E9E7E4;*/
	border:1px solid #A1A09B;
	background-color: #fff;
    padding: 140px 120px 60px;
    position: relative;
}

.plan_head{
	font-size: 30px;
	line-height: 1.8;
	margin-bottom: 40px;
}

.plan_contents{
	display: flex;
	gap:40px;
}

.plan_imgWrap{
	width: 40%;
}

.plan_textWrap{
	width: 60%;
}

.plan_text{
	margin-bottom: 20px;
}

@media screen and (max-width: 768px){
	.plan{
		padding-top: 80px;
		padding-bottom: 100px;
	}

	.plan_wrap{
		content: "";
		width: 90vw;
		max-width: 1200px;
		margin-inline:auto;
		/*background-color: #E9E7E4;*/
		border:1px solid #A1A09B;
		background-color: #fff;
		padding: 80px 30px 60px;
		position: relative;
	}

	.plan_head{
		font-size: 20px;
		line-height: 1.8;
		margin-bottom: 40px;
	}

	.plan_contents{
		display: block;
		gap:40px;
	}

	.plan_imgWrap{
		width: 100%;
		margin-bottom: 40px;
	}

	.plan_textWrap{
		width: 100%;
	}

	.plan_text{
		margin-bottom: 20px;
	}
	
}

/* photo
------------------------------- */

section#photos {
  width: 100%;
/*  max-width: 950px;
  margin-inline-start: auto;
  margin-inline-end: auto;
  margin-block-end: 180px;	
	padding-block-end: 150px;*/
	padding-block-start: 200px;
	text-align: center;
	/*background-color: #BCBBB3;*/
	background-color: #A1A09B;
	position: relative;
}


#photos .c-title{
    top: -90px;
    left: 23%;
	text-align: left;
}

#photos .c-title .ja{
    color: #fff;
}

#photos .photo_wrap {
   margin: 0 auto;
   width: 96%;
   max-width: 960px;
   padding-block-end: 150px;
}
#photos h4 {
    font-size: 30px;
    margin: 60px auto 10px;
    text-align: center;
}
#photos .flex {
  display: -webkit-flex;
  display: flex;
  flex-flow: row wrap;
  -webkit-align-items: center;
  align-items: center;
  justify-content: space-between!important;
  margin-top: 80px;
	/*max-width: 800px;*/
  margin: 0 auto;
}

/*▼写真のアスペクト比3：2の場合　他のサイズにする場合は調整してください。*/
#photos .flex .w495 {
  width: 49.5%;/*写真1/2サイズ*/
}
#photos .flex .w304 {
  width: 30%;/*写真1/3サイズ（縦）*/
}
#photos .flex .w685 {
  width: 67.5%;/*写真2/3サイズ（横）*/
}
#photos .flex .w326 {
  width: 32%;/*縦の写真3枚並びの場合こちら*/
}
#photos .flex img {
  margin-top: 1rem;
  display: block;
}
article .box {
  display: none;
  margin-top: 50px;
}
/*もっと見るボタン*/
.photo_btn {
  font-family: "Sorts Mill Goudy", serif;
  font-weight: 400;
  font-style: normal;
  position: relative;
  display: inline-block;
  font-size: 24px;
  line-height: 2;
  padding: 5px 80px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center!important;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.05em;
  color: #333;
  margin-top: 70px;
  background-color: #fff;
  border: 1px solid #333;
}

/* 三角形の矢印(clip-path) */
.photo_btn::before {
  border-right: 1px solid #333;
  border-top: 1px solid #333;
  bottom: 0;
  content: "";
  height: 10px;
  margin: auto;
  position: absolute;
  right: 20px;
  top: 0;
  transform: rotate(135deg);
  width: 10px;
}

.photo_btn:hover{
	color: #fff;
	background-color: #333;
}

/*スマホ表示*/
@media screen and (max-width: 768px){
	#photos .c-title{
		top: -60px;
		left: 23%;
		text-align: left;
	  }
}


/*スマホ表示*/
@media screen and (max-width: 767px) {
	
  #photos .c-title{
    top: -60px;
    left: 35%;
	text-align: left;
  }

  #photos .flex {
    flex-flow: column wrap;
    padding-left: 10px;
    padding-right: 10px;
  }
  #photos .flex .w495, #photos .flex .w304, #photos .flex .w685, #photos .flex .w326 {
    width: 100%;
  }
	
  #photos .photo_wrap {
    margin: 0 auto;
    width: 96%;
    max-width: 960px;
    padding-block-end: 80px;
  }
	
  section#photos {
	  width: 100%;
	/*  max-width: 950px;
	  margin-inline-start: auto;
	  margin-inline-end: auto;
	  margin-block-end: 180px;	
		padding-block-end: 150px;*/
		padding-block-start: 80px;
		text-align: center;
	}
}

.credit_wrap{
	width: 96%;
	max-width: 960px;
	/*display: flex;
	justify-content: space-between;
	gap: 3em;
	align-items: flex-end;*/
	margin: 50px auto 0;
	text-align: right;
}

.credit_wrap h3 {
/*    text-align: left;*/
    font-size: 1.35em;
    font-weight: normal;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
	line-height: 2;
	
}

.credit_wrap h3 span{
	display: inline;
	font-size: 0.8em;
}

.credit_wrap a:link{
	text-decoration:none;
	opacity: 0.35;
}
.produce_box a:hover{
	font-weight: 500;
	opacity: 1!important;
}

#photos .curve::after{
	background:#d9d9d9;
}

@media screen and (max-width: 768px) {
	.credit_wrap h3 {
		font-size: 1.15em;
	}
}


/*--------------------------------------------------
virtualtour バーチャル内覧
----------------------------------------------------*/

.virtualtour{
	padding-top: 240px;
	padding-bottom: 240px;
}
.virtualtour h3 {
    margin: 60px 0 20px;
}
.virtualtour_wrap{
	content: "";
    width: 90vw;
	max-width: 1200px;
	margin-inline:auto;
    /*background-color: #E9E7E4;*/
	border:1px solid #A1A09B;
	background-color: #fff;
    padding: 140px 120px 60px;
    position: relative;
}

#virtualtour .nodal_wrap{
	width: 96%;
	max-width: 960px;
	margin: 0 auto;
}
.VRbox {
    margin: 0 auto;
	width: 96%;
	max-width: 960px;
}
.VRbox iframe {
	height: 600px;
}
#virtualtour .txt {
	width: 95%;
    /*margin: 50px auto 10px;*/
	font-size: 1em;
	text-align: center;
}

#virtualtour .curve::after {
	
	transform:none;
	}

@media screen and (max-width:767px) {
	
	
	#virtualtour .c-title{
		font-size: 46px;
		top: -42px;
	  }

	
	.virtualtour_wrap{
		content: "";
		width: 90vw;
		max-width: 1200px;
		margin-inline:auto;
		/*background-color: #E9E7E4;*/
		border:1px solid #A1A09B;
		background-color: #fff;
		padding: 80px 20px 40px;
		position: relative;
	}
	
	.VRbox iframe {
	  height: 400px;
	}
	
	#virtualtour {
      padding-top: 120px;
	  padding-bottom: 80px;
	}
}

/* details
------------------------------- */

.details{
	padding-bottom: 200px;
}

.details_wrap{
	content: "";
    width: 90vw;
	max-width: 1200px;
	margin-inline:auto;
	border:1px solid #A1A09B;
	background-color: #fff;
    /*background-color: #E9E7E4;*/
    padding: 140px 120px 120px;
    position: relative;
}

.details_wrap.l-960{
	padding-top:200px;
	padding-bottom:100px;
}

table {
  box-sizing: border-box;
  border-collapse: collapse;
  margin: 0 auto;
  width: 96%;
  max-width: 1000px;
  margin-block-start: 30px;
  font-size: 1.55rem;
  letter-spacing: 0.075em;
}
table th, table td {
  border-block-end: 1px solid #333;
  padding-inline-start: 8px;
  padding-block-start: 8px;
  margin-block-start: 8px;
  vertical-align: middle;
  font-style: normal;
  height: 3em;
  text-align: left;
}
table th {
  width: 25%;
  font-weight: 400;
}
@media (max-width: 768px) {
  .details{
	padding-bottom: 60px;
  }
	
  .details_wrap{
	content: "";
    width: 90vw;
	max-width: 1200px;
	margin-inline:auto;
	border:1px solid #A1A09B;
	background-color: #fff;
    /*background-color: #E9E7E4;*/
    padding: 60px 20px 40px;
    position: relative;
  }

  table {
    width: 100%;
  }
  table th, table td {
    display: block;
    height: auto;
    border-block-end: 0px;
  }
  table th {
    width: 100%;
    background-color: #e0e0e0;
  }
	
  .details_wrap.l-960{
	padding-top:120px;
	padding-bottom:80px;
  }
}


/* ---------------------------
service
------------------------------ */
#service {
  margin: 0 auto;
  padding: 50px 10px 0;
}

#service p{
	width: 96%;
	 max-width: 960px;
	margin: 0 auto 15px;
	text-align: center;
}
#service ul {
  margin: 0 auto 50px;
  display: flex;
  gap:20px;
  justify-content: space-between;
  width: 96%;
  max-width: 960px;
}
#service ul li {
  max-width: 314px;
	max-height: 85px;
  margin: 10px auto;
	background-color: #FFFFFF;
}

@media (max-width: 768px){
	#service {
	  margin: 0 auto;
	  padding: 0px 10px 0;
	}
	
	#service ul {
	  margin: 0 auto 50px;
	  display: block;
	  gap:20px;
	  justify-content: space-between;
	  width: 96%;
	  max-width: 960px;
	}
}


/* ---------------------------
form box
------------------------------ */

.formButton a{
    background: #9D2724;
    border-radius: 3px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    max-width: 220px;
    padding: 10px 25px;
    color: #fff;
    transition: 0.3s ease-in-out;
    font-weight: 500;
}
.formButton a::before {
  content: '';
  position: absolute;
  bottom: -7px;
  right: -7px;
  width: 100%;
  height: 1px;
  background-color: #333;
  transition: 0.2s ease 0s;
}

.formButton a::after {
  content: '';
  position: absolute;
  top: 7px;
  right: -7px;
  width: 1px;
  height: 100%;
  background-color: #333;
  transition: 0.2s ease 0.2s;
}

.formButton a:hover::before {
  width: 0%;
}

.formButton a:hover::after {
  height: 0%;
}

.formButton a:hover {
  text-decoration: none;
  background-color: #DCACAC;
}

@media (max-width: 768px){
	.formButton{
		margin-top: 40px;
	}
}

/* ---------------------------
form box
------------------------------ */
/*#form_box {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 120px auto 0;
  padding: 0 0 50px;
  text-align: center;
}
#form_box a {
  font-weight: 200;
  background: #333333;
  border: 1px solid #333333;
  width: 220px;
  height: 60px;
  text-align: center;
  line-height: 60px;
  transition: .3s;
  color: #FFFFFF;
	text-decoration: none;
}
#form_box a:hover {
  background: #FFFFFF;
  color: #333333;
  transform: scale(1.1);
}

@media (max-width: 768px){
	#form_box {
	  display: flex;
	  justify-content: center;
	  align-items: center;
	  margin: 0px auto 0;
	  padding: 0 0 0px;
	  text-align: center;
	}
}*/

/* Google Map
------------------------------- */
section#gmap {
  position: relative;
  width: 100%;
  height: 450px;
  margin: 0 auto;
  margin-top: 80px;
}
#gmap iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

@media (max-width: 768px){
	
	section#gmap {
	  position: relative;
	  width: 100%;
	  height: 450px;
	  margin: 0 auto;
	  margin-top: 60px;
	}
	
}

/* inquiry
------------------------------- */

.inquiry_button{
	position: relative;
}

.inquiry_button img{
	height: 600px;
	width: 100%;
	object-fit: cover;
}

.inquiry_text{
	position: absolute;
	top:60%;
	left: 10%;
	transform: translateY(-50%);
	color: #fff;
	font-size: min(8vw, 60px);
}

.inquiry_text .icon{
	display: inline-block;
	vertical-align: sub;
	line-height: 1;
	position: relative;
	width: 1em;
	height: 1em;
	border: 1px solid #fff;
	border-radius: 50%;
	box-sizing: content-box;
	margin-left: 10px;
}

.inquiry_text .icon::before{
	border-right: 1px solid #FBFAF6;;
	border-top: 1px solid #FBFAF6;;
	bottom: 0;
	content: "";
	height: 10px;
	margin: auto;
	position: absolute;
	top: 0;
	left: 0;
	right: 10%;
	transform: rotate(45deg);
	width: 10px;
}

@media (max-width: 768px){
	.inquiry_button img{
		height: 300px;
		width: 100%;
		object-fit: cover;
	}
	
	.inquiry_text{
		position: absolute;
		top:50%;
		left: 10%;
		transform: translateY(-50%);
		color: #fff;
		font-size: min(8vw, 60px);
	}
}
/* form-btn 固定
___________________*/

.form-btn {
  position: fixed;
  bottom: 5%;
  right: 5%;
  width: 80px;
  height: 80px;
  background-color: #9D2724;
  border-radius: 40px;
  z-index: 10;
}
.vector-2 {
  margin-top: 26px;
  width: 40.67px;
  height: 28px;
  margin-left: 19.3px;
}
.form-btn:hover {
  text-decoration: none;
  background-color: #DCACAC;
}

/* pagetop
------------------------------- */
.pagetop {
  position: fixed;
  bottom: 0;
  right: 5px;
  display: none;
  z-index: 150;
  cursor: pointer;
}

/*===========
テキストアニメーション
===========*/

/*text animetions*/
.text-animation span {
  opacity: 0;
  transition: 2s 0.5s;
}

/*===========
inview
===========*/

.fadeIn_up {
  opacity: 0;
  transform: translate(0, 50%);
  transition: 2s;
}
.fadeIn_up.is-show {
  transform: translate(0, 0);
  opacity: 1;
}

.fadeIn_right {
  opacity: 0;
  transform: translate(60%, 0);
  transition: 2s;
}
.fadeIn_right.is-show {
  transform: translate(0, 0);
  opacity: 1;
}

.fadeIn_left {
  opacity: 0;
  transform: translate(-60%, 0);
  transition: 2s;
}
.fadeIn_left.is-show {
  transform: translate(0, 0);
  opacity: 1;
}

.fadeIn {
  opacity: 0;
  transition: 3s 0s;
}

.fadeIn02 {
  opacity: 0;
  transition: 3s 0.5s;
}

.fadeIn03 {
  opacity: 0;
  transition: 3s 3s;
}

.fadeIn.is-show {
  opacity: 1;
}

.fadeIn02.is-show {
  opacity: 1;
}

.fadeIn03.is-show {
  opacity: 1;
}

.animate{
  transform: translateY(10px);
  transition: all 1.0s;
}

.animate.show {
  opacity: 1;
  transform: translateY(0);
}

.animate.show:nth-of-type(1) {
  transition-delay: 0s;
}
.animate.show:nth-of-type(2) {
  transition-delay: 0.1s;
}


