/*--------------------------------------------------
 common 共通の設定
----------------------------------------------------*/
@import url(//use.fontawesome.com/releases/v5.15.1/css/all.css);

#topicpathWrapper {
  display: none;
}
body {
    height: auto!important;
}

#gFooter{
	position: relative;
}

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

.pcOnly {
  display: none!important;
}
.spOnly {
  display: block;
}

h1, h2, h3 {
  margin-top: 0;
  margin-bottom: 0;
}
.box960 {
	width: 96%;
  max-width: 960px;
  box-sizing: border-box;
  margin-right: auto;
  margin-left: auto;
}

.box850 {
  max-width: 850px;
  box-sizing: border-box;
  margin-right: auto;
  margin-left: auto;
}
.box750 {
  max-width: 750px;
  box-sizing: border-box;
  margin-right: auto;
  margin-left: auto;
}

.box700 {
  max-width: 700px;
  box-sizing: border-box;
  margin-right: auto;
  margin-left: auto;
}
.box600 {
  max-width: 600px;
  box-sizing: border-box;
  margin-right: auto;
  margin-left: auto;
}

.txt {
  margin-top: 50px;
  margin-bottom: 50px;
}
a {
  color: inherit;
}
#contesntsWrapper {
  top: 0;
}
div#contents {
  width: 100%;
  margin: 0;
  padding: 0;
  border: none;
  box-sizing: border-box;
}
article {
  -webkit-text-size-adjust: 100%; /* スマホで字が大きくなるのを防ぐ */
	font-family: "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  color: #4a3c32;
  font-size: 1.6rem;
  font-weight: normal;
  width: 100%;
  line-height: 180%;
  text-align: justify;
  letter-spacing: 0.1em;
	   /* margin-top: -50px;*/
}
article a {
  text-decoration: none;
  transition: 0.3s;
}

.center {
  text-align: center;
}


/*見出し*/
.Sub-title {
	position: relative;
  display: block;
  padding: 80px 0 30px;
  text-align: center;
  z-index: 1;
  vertical-align: bottom;
font-family: "Shippori Mincho B1", serif;
    font-style: normal;
    font-weight: 300;
  /*font-size: 2.6em;*/
	font-size: clamp(2rem, 1.564rem + 2.18vw, 3.2rem);
  margin: 0 auto;
	line-height: 1.5;
	color: #564638;
  /*letter-spacing: .3rem;*/
}

.Sub-title span {
  display: block;
  vertical-align: bottom;
  font-size: clamp(1.6rem, 1.2rem + 2vw, 2.7rem);
  font-weight: 500;
  color: #B0705C;
  letter-spacing: normal;
  padding-top: 12px;
  line-height: 1;
	font-family: mrs-eaves-roman-small-caps, serif;
    font-weight: 400;
    font-style: normal;
}



/*スクロールでフェードイン*/
.fadeIn {
  -webkit-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  -ms-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
  visibility: visible !important;
}
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}
.animation {
  visibility: hidden;
}


/*--------------------------------------------------
Scroll progress bar
----------------------------------------------------*/
section#topicpath{
	z-index: 110;
}
 .progress-bar{
    width: 2px;
    height: 0;
    background-color: #845447;
    position: fixed;
    top: 0;
    left: 3%;
    z-index: 5;
  }
.progress-bar:before {
    content: "";
    width: 2px;
    height: 100%;
    background-color: rgb(231, 222, 195,.3);
    position: fixed;
    top: 0;
    left: 3%;
    z-index: 4;
}



/*=== 矢印が動いてスクロールを促す  ====*/

/*スクロールダウン全体の場所*/
.scrolldown{
    /*描画位置※位置は適宜調整してください*/
  position:absolute;
  bottom:5%;
  left:5%;
    /*矢印の動き1秒かけて永遠にループ*/
  animation: arrowmove 1.5s ease-in-out infinite;
}

/*下からの距離が変化して全体が下→上→下に動く*/
@keyframes arrowmove{
      0%{bottom:3%;}
      50%{bottom:5%;}
     100%{bottom:3%;}
 }

/*Scrollテキストの描写*/
.scrolldown span{
    /*描画位置*/
  position: absolute;
  left:-25px;
  bottom:10px;
    /*テキストの形状*/
  color: #E7DEC3;
  font-size: 1rem;
  letter-spacing: 0.25em;
  /*縦書き設定*/
  -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
}

/* 矢印の描写 */
.scrolldown:before {
    content: "";
    /*描画位置*/
    position: absolute;
    bottom: 0;
    right: -6px;
    /*矢印の形状*/
    width: 1px;
    height: 20px;
    background: #E7DEC3;
    transform: skewX(-31deg);
}

.scrolldown:after{
  content:"";
    /*描画位置*/
  position: absolute;
  bottom:0;
  right:0;
    /*矢印の形状*/
  width:1px;
  height: 150px;
  background:#E7DEC3;
}



/*--------------------------------------------------
 top トップ
----------------------------------------------------*/

#top {
  width: 100%;
 height: 900px;
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
	z-index: 105;
}

.title_wrap{
	position:absolute;
	z-index: 50;
	right: 12%;
	top:20%;
	height: 400px; 
	/*-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;*/

    writing-mode: vertical-rl; /* 縦書き（右から左へ） */
    text-orientation: upright; /* 文字を正立させる */

	color:#FFFFFF;
	text-shadow: -3px 4px 4px rgba(0,0,0,0.6);
	font-size:2.15rem;
	font-size: clamp(1.75rem, 1.205rem + 2vw, 2.15rem);
	letter-spacing: 0.5em;
	line-height: 2.6em;
	/*transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);*/
	/*font-family: "Shippori Mincho B1", serif;
	font-style: normal;
	font-weight: 300;*/
}

.title_wrap h1{

}

.title_wrap h1 span{
	margin-bottom: -0.1em;
} 



/*スマホ表示*/
@media screen and (max-width: 767px) {
	#top {
		height: 85vh;
    min-height: 500px;
    background-attachment: scroll;
  }
	.title_wrap{
		letter-spacing: 0.15em;
		text-align: start;
		/*max-height: 250px;*/
		top:25%;
	}
	
	.title_wrap h1{
	text-indent:-1em!important;
	min-height: 250px;
}
}

@supports (-webkit-touch-callout: none) {
  #top, .cd-fixed-bg {
    background-attachment: scroll !important;
  }
}
/*--------------------------------------------------
Open house
----------------------------------------------------*/
#open {
	width: 100%;
	background-image: url('../img/bg_op.jpg');
	background-size: cover;
	background-position: right center;
	margin-top: -2px;
	padding-top: 100px;
	padding-bottom: 100px;
	z-index: 6;
	position: relative;
}

.open_box{
	width: 96%;
	max-width: 700px;
	position: relative;
	margin-left: 15%;
}

.title_open_en{
	color: #FFFFFF;
	position: absolute;
    left: 0;
    top: 0;
    line-height: 2;
    letter-spacing: 0.05em;
    font-size: 2em;
    font-weight: 400;
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
	height: 100%;
	width: 2em;
	font-family: "mrs-eaves-roman-small-caps", serif;
	font-weight: 400;
	font-style: normal;
}

.open_wrap{
	width: 92%;
	max-width: 650px;
	margin: 0 0 0 auto;
	padding: 30px 2% 50px;
	background-image: url('../img/bg02.jpg');
	background-size: cover;
	background-position: center;
	box-sizing: border-box;
	/*position: relative;*/
	color: #4a3c32;
}
.title_open{
    margin: 10px auto 20px!important;
    font-size:2em!important;
    line-height: 2;
	text-align: center;
	font-weight: 200;
	letter-spacing: 0.025em;
}

.open_wrap p{
	font-size:1.65rem;
	font-weight: 600;
	max-width: 96%;
	margin: 0 2%;
}

.open_wrap h2.title_open span{
	display:block;
	letter-spacing: 0.15em!important;
	font-size:2rem!important;
}

.open_wrap h3{
	width:88%;
	max-width: 530px;
    font-size: 2.5rem;
	font-size: clamp(1.25rem, 1.15rem + 1.1vw, 2.5rem);
	letter-spacing: 0.25em;
	margin: 0 auto;
	text-align: center;
	line-height: 1.6;
	font-family: "Shippori Mincho B1", serif;
  font-weight: 400;
  font-style: normal;
	transform: scale(0.9, 1);
}

.big_font {
	font-size: 2.3em;
	margin-left: 0.025em;
	margin-right: 0.05em;
	letter-spacing: 0.15em;
}
.open_wrap p{
	line-height: 1.6;
}
.open_wrap p.small_font {
	font-size: 1.25em;
	letter-spacing: 0.15em;
	margin-top: 1em;
		margin-bottom:40px;
	text-align: center;
}

.open_wrap h4{
	font-size: 2rem;
	line-height: 1.8em;
	text-align: center;
	margin-bottom:45px;
	color:#065009;
}

@media screen and (max-width:767px) {
	.open_box{
		margin-left: 1%!important;
		display: block;
	}
	.open_wrap{
		width: 100%;
		margin: 0 auto 0 30px;
	}
}


/*--------------------------------------------------
intro
----------------------------------------------------*/
#intro {
	width: 100%;
	margin: 0 auto;
}
.cd-fixed-bg {
  box-sizing: border-box;
  height: 85vh;
  position: relative;
  min-height: 100%;
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: top center;
  z-index: 2;
}
.cd-fixed-bg::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
	background-image: linear-gradient(180deg, rgba(143, 110, 74, 0.35), rgba(255, 255, 255, 0) 37% 67%, rgba(143, 110, 74, 0.35));
}
.cd-fixed-bg.cd-bg-1 {
  background-image: url("../img/bg_intro01.jpg");
}
.cd-fixed-bg.cd-bg-2 {
  background-image: url("../img/bg_intro02.jpg");
}
.cd-fixed-bg.cd-bg-3 {
  background-image: url("../img/bg_intro03.jpg");
}

.cd-fixed-bg .intro_wrap{
	display: flex;
	width: 90%;
	max-width: 1080px;
	height: 60vh;
	min-height: 450px;
	position: absolute;
	top: 15%;
	left: 10%;
	flex-wrap: nowrap;
	/*gap: 50px;*/
	align-items: flex-start;
	justify-content: space-around;
}

.cd-fixed-bg.cd-bg-2 .intro_wrap{
	flex-direction: row-reverse;
}

.cd-fixed-bg .intro_wrap .intro_h2{
	-ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
	height: 100%;
	color: #FFF2E0;
	text-shadow: -3px 4px 4px rgba(0,0,0,0.6);
	font-size:3.3rem;
	font-size: clamp(2.25rem, 2.209rem + 1.25vw, 3.3rem);
	letter-spacing: 0.25em;
	font-family: "Shippori Mincho B1", serif;
	font-style: normal;
	font-weight: 300;
	line-height: 1.4;
}

.cd-bg-2 .intro_h2{
	margin-top: 5%;
}


.cd-fixed-bg .intro_wrap p{
	width: 54%;
	color: #FFFFFF;
	align-self: flex-end;
	text-shadow: 2px 2px 2px #333333;
	font-size: 1.1em;
}

/*.cd-fixed-bg.cd-bg-1 p, .cd-fixed-bg.cd-bg-3 p {
  bottom: 2em;
  right: 10%;
}
.cd-fixed-bg.cd-bg-2 p {
  bottom: 2em;
  left: 14%;
}*/



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

	.intro-txt{
		padding: 2em 1em;
	}
	
	.cd-fixed-bg {
		background-size: cover;
		background-attachment: scroll;
		height: 90vh;
	}
	
	.cd-fixed-bg .intro_wrap .intro_h2{
		-ms-writing-mode: lr-tb;
    -webkit-writing-mode: horizontal-tb;
    writing-mode: horizontal-tb;
		max-height: 175px;
	}
	
	.cd-fixed-bg .intro_wrap{
		flex-wrap: wrap;
		width: 92%;
		top: 10%;
		left: 8%;
		height: 40vh;
		min-height: 220px;
		justify-content: flex-start;
	}
	.cd-fixed-bg .intro_wrap p{
		width: 86%;
		line-height: 1.8;
		font-size: 0.95em;
	}
	
	.cd-fixed-bg.cd-bg-2 .intro_wrap{
		left: inherit;
		right: 8%;
	}
}


/*--------------------------------------------------
photos　写真
----------------------------------------------------*/

#photos	{
	 width: 100%;
	padding-top: 100px;
	padding-bottom: 120px;
	background-image: url("../img/bg01.png");
	background-repeat: repeat;
}

#photos h4{
	text-align: center;
	font-size: 1.4em;
	margin-top: 30px;
	margin-bottom: 15px;
}

#photos .flexbox{
	width: 100%;
	 max-width: 850px;
	margin: 120px auto;
  display: -webkit-flex;
  display: flex;
	gap: 1em;
	/*flex-wrap: inherit;*/
}

#photos .feat .flexbox{
	  /*flex-wrap: nowrap;*/
	flex-flow: row wrap;
}

#photos .flexbox .inner{
	width: 100%;
	margin: 0 auto;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
	gap: 1em;
	object-fit: contain;
	justify-content: flex-end;
}

  #photos .flexbox .w38 {
    width: 38%;
	  max-width: 300px;
  }
  #photos .flexbox .w60 {
    width: 60%;
  }

#photos .flexbox p{
	/*padding: 0.5em 1em;*/
	line-height: 1.65;
}

#photos .photo_flex{
	display: -webkit-flex;
    display: flex;
    flex-flow: row wrap;
    -webkit-align-items: center;
    align-items: center;
    justify-content: space-between;
   /* margin-top: 80px;*/
    width: 100%;
}

#photos .photo_flex img{
	margin-bottom: 1%;
}

  #photos .w304 {
    width: 30.4%;
  }
  #photos .w685 {
    width: 68.5%;
  }
  #photos .w326 {
    width: 32.6%;
  }
  .photo_btn {
    /*left: 38%;*/
	 margin: 0 auto;
  }
  
.box1 {
  display: none;
  margin-top: 50px;
}

.photo_btn {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  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;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.15em;
  border-radius: 0.5rem;
  /*left: 18%;*/
	left: 50%;
  transform: translateX(-50%);
  -webkit- transform: translateX(-50%);
  margin-top: 50px!important;
  color: #FFF;
}
.photo_btn-border-shadow {
  padding: calc(1.5rem - 8px) 4rem 1.5rem;
  background: #fff;
}
.photo_btn-border-shadow:before {
  position: absolute;
  top: -6px;
  left: -6px;
  width: 99.5%;
  height: 98.5%;
  content: "";
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: 2px solid #333;
  border-radius: 0.5rem;
}
.photo_btn-border-shadow:hover {
  padding: calc(1.5rem - 4px) 4rem;
}
.photo_btn-border-shadow:hover:before {
  top: -2px;
  left: -2px;
}
.photo_btn-border-shadow--color {
  border-radius: 0;
  background: #B0705C;
	border-width: 0!important;
}
.photo_btn-border-shadow--color:before {
  border-radius: 0;
}


@media screen and (max-width:767px) {
	#photos {
		padding-top: 80px;
	}
  #photos .feat .flexbox {
    display: block;
	  width: 92%;
	  margin: 0 2% 0 auto;
  }
	
	#photos .feat .flex_rev{
		display: flex;
		flex-direction: column-reverse!important;
	}
	#photos .flexbox .w60, #photos .flexbox .w38{
		width: 100%!important;
		max-width: 767px;
		margin: 0 auto 1em;
	}
	
	#photos .flexbox .w60 img, #photos .flexbox .w38 img{
		width: 100%;
		max-width: 767px;
		height: auto;
	}
	
	#photos .flexbox .w38 p{
		margin-bottom: 40px;
	}

  #box2 {
    width: 92%;
    margin: 0 2% 0 auto;
  }
	/*#photos .photo_flex{
		display: block;
	}
	*/
	#photos .w495, #photos .w304, #photos .w685, #photos .w326 {
  width: 100%;
}
	
	#photos .photo_h3 {
		writing-mode: horizontal-tb;
		-webkit-writing-mode: horizontal-tb;
		 -ms-writing-mode: lr-tb;
		bottom: inherit;
		top: -1em;
}
	#photos h4{
		margin-bottom: 40px;
	}
}





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

/*--------------------------------------------------
 plan 間取
----------------------------------------------------*/
#plan {
  padding-top: 50px;
  padding-bottom: 100px;
	background: #EAE8E2;
	margin: auto;
}
#plan .txt {
  margin: 0 auto;
  padding: 20px 0;
	width: 94%;
}



/*--------------------------------------------------
 area 周辺情報
----------------------------------------------------*/
#area {
  margin: 0 auto;
  padding-bottom: 100px;
}

.img_area{
	padding:8vh 0;
}

.img_area img{
	width: 100%;
}

.areaimage1{
	display: flex;
	object-fit: contain;
}

/*.areaimage1 .img_ai1{
	width: 50%;
}*/

.areaimage1 .text_ai1{
	width: 50%;
	padding: 0 0 1em 3%;
}
.areaimage1 .text_ai1 h3{
	margin-bottom: 15px;
}

.areaimage2{
	display: flex;
	justify-content: space-between;
	margin-bottom:50px;
	margin-top: 50px;
}

.areaimage2 li{
	width:31%;
	/*position:relative;*/
}

.areaimage2 li img{
	width: 100%;
	height: auto;
}

.areaimage2 li h4{
	font-size:160%;
	line-height: 1.6;
	text-align: center;
	margin-bottom: 20px;
}

.areaimage2 li h4 span {
	display: block;
    font-size: 1.25rem;
}

.areaimage2 li p{
	/*width:60%;*/
}

/*スマホ表示*/
@media screen and (max-width: 767px) {

	.areaimage1,.areaimage2{
		flex-direction: column;
	}	
	.areaimage1 .img_ai1,.areaimage1 .text_ai1{
		width: 100%;
	}
	.areaimage2 li{
		width:80%;
		margin:0 auto 3%;
	}
}

/*--------------------------------------------------
VirtualTour バーチャル内覧
----------------------------------------------------*/
#VirtualTour {
	background: #B09C87;
}

#VirtualTour .Sub-title span {
	color:#FFE4DB;
}
.VRbox {
  margin: 0 auto;
}
.VRbox iframe {
  height: 400px;
}
#VirtualTour .txt {
  margin: 0 auto;
  font-size: 1.4rem;
}


/*--------------------------
 #details
---------------------------*/
#details{
	padding-bottom: 100px;
}
#details div {
  max-width: 900px;
  margin: 0 auto;
}
#details table {
  box-sizing: border-box;
  border-collapse: collapse;
  width: 100%;
}
#details table th, #details table td {
  border-block-end: 1px solid #DDDAD1;
  padding-inline-start: 8px;
  margin-block-start: 5px;
  vertical-align: middle;
  font-style: normal;
  height: 2.8em;
  font-size: 1.65rem;
  line-height: 1.8em;
  text-align: justify;
}
#details table th {
  width: 12%;
  font-weight: bold;
}
	
/*スマホ表示*/
@media (max-width: 767px) {
  #details div {
    padding-left: 10px;
    padding-right: 10px;
  }
  #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: #ede0da;
  }
}


/*--------------------------------------------------
 inquiry & map
----------------------------------------------------*/

#inquiry{
	width: 100%;
	max-width: 100%;
	z-index: 5;
}

#inquiry .inq_wrap{
	display: flex;
	flex-wrap: nowrap;
}

#inquiry .inq_wrap .inq_box{
	width: 35%;
	 min-width: 550px;
	display: flex;
	justify-content:flex-end;
	align-items: center;
	background-image: url('../img/bg_inq.jpg');
	background-size: cover;
	background-position: left top;
}
#inquiry .inq_wrap .gmap{
	width: 65%;
}

#inquiry .btn,
#inquiry a.btn,
#inquiry button.btn {
		margin-right: 50px;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 3.5;
  position: relative;
  display: inline-block;
  padding: 1rem 3rem;
  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;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.15em;
  color: #FFFFFF;
  border-radius: 30px;
	font-family: 'Hina Mincho', serif;
}

#inquiry a.btn--wh {
  color: #fff;
  background-color:hsla(0,0%,100%,0.35);
	border: #FFFFFF 2px solid;
  /*border-bottom: 5px solid #755146;*/
}
#inquiry a.btn--wh:hover {
  margin-top: 3px;
  color: #361a09;
  background-color:hsla(0,0%,100%,0.9);
  /*border-bottom: 2px solid #333333;*/
}

#inquiry a.btn--wh:hover .far{
	color: #361a09;
}

#inquiry a.btn--shadow {
  -webkit-box-shadow: 0 5px 6px rgba(0, 0, 0, .4);
  box-shadow: 0 5px 6px rgba(0, 0, 0, .4);
}

/*--------------------------------------------------
contact button
----------------------------------------------------*/
.cta_btn {
  position: fixed;
  background-color: #B0705C;
  border-radius: 0;
  bottom: 3%;
  right: 0;
  box-shadow: 0 1px 3px 1px rgb(0 0 0 / 8%);
	border: none;
  transition: all 0.3s ease;
  z-index: 90;
}
.cta_link {
  display: flex;
  align-items: center;
	line-height: 1.8;
}
.cta_icon {
  padding: 2rem;
  color: #fff;
}
.cta_ttl {
  padding-left: 8px;
  padding: 2rem;
  text-align: justify;
  font-size: 1.8rem;
  letter-spacing: 0.1rem;
  font-weight: normal;
  color: #fff;
    /*font-family: fot-tsukuaoldmin-pr6n, sans-serif;*/
	font-family: 'Hina Mincho', serif;
}
#cta_floating.cta_btn,
.cta_floating {
  transform: translateX(10rem);
}
#cta_floating.cta_btn:hover,
.cta_floating:hover {
  transform: translateX(0);
}

.fa-envelope::before{
font-family: "Font Awesome 5 Free";
content: '\f0e0';
font-weight: 900;
}

/*スマホ表示*/
@media screen and (max-width: 767px) {

  #cta_floating.cta_btn,
  .cta_floating {
    transform: translateX(0);
  }
  .cta_btn {
    right: 16px;
    height: 60px;
    width: 60px;
    padding: 0;
    text-align: center;
    border-radius: 50%;
    border: none;
    outline: none;
    box-shadow: 0 1px 3px 1px rgb(0 0 0 / 8%);
    box-shadow: 0 2px 4px -1px rgb(0 0 0 / 20%), 0 4px 5px 0 rgb(0 0 0 / 14%), 0 1px 10px 0 rgb(0 0 0 / 12%);
    transform: translateX(calc(100% + 16px));
    transition: 0.2s cubic-bezier(0, .6, .99, 1);
    cursor: pointer;
  }
	
	.fa-lg{
		font-size: 1.5em;
	}
}

/*--------------------------------------------------
 googlemap アクセス
----------------------------------------------------*/
.gmap iframe {
  vertical-align: bottom;
}
.gmap {
	z-index: 100;
	filter: sepia(0.15) ;
}
/*--------------------------------------------------
 PC
----------------------------------------------------*/
@media screen and (max-width: 1200px) {
		#inquiry .inq_wrap .inq_box{
		min-width: 400px;
	}
}

@media screen and (max-width: 1080px) {
	.open_box{
		margin-left: 5%;
	}
	#plan .txt, #area, #VirtualTour .box960{
		width: 92%;
		margin-right: 2%;
		margin-left: auto;
	}	
	#detailsin{
		width: 94%;
		margin-right: 2%;
		margin-left: auto;
	}	
#inquiry .inq_wrap .inq_box{
		min-width: 350px;
	}
}

@media screen and (max-width: 960px) {
	.open_wrap{
		width: 90%;
		max-width: 550px;
		margin: 0 auto 0 50px;
	}
		#photos .flexbox{
		width: 94%;
		margin-right: 1%;
	}
	.img_ai1 img{
		width: 400px;
		height: 266px;
	}
	.areaimage1 .text_ai1{
		width:65%;
	}	
	#inquiry .inq_wrap{
		flex-wrap: wrap;
		width: 100%;
	}
	#inquiry .inq_wrap .inq_box{
		width: 100%;
		min-height: 400px;
	}
	#inquiry .inq_wrap .gmap{
		width: 100%;
	}
}

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

	#photos .flexbox{
		max-width: 800px;
	}
	#photos .flexbox .w60{
		width: 56%;
	}
	
	.areaimage1{
		flex-wrap: wrap-reverse;
		justify-content: center;
	}
	.areaimage1 .text_ai1{
		width:100%;	
		padding: 0;
	}	
	
	.img_ai1{
		text-align: center;
	}
	.img_ai1 img{
		width: 80%;
		height: auto;
		margin: 1em auto;
	}
}

@media screen and (min-width: 768px) {
  /*--------------------------------------------------
 common 共通の設定
----------------------------------------------------*/
  .pcOnly {
    display: block!important;
  }
  .spOnly {
    display: none !important;
  }
  .box960 {
    padding-left: 0;
    padding-right: 0;
  }

  /*--------------------------------------------------
 map 周辺情報
----------------------------------------------------*/
  #map {
    max-width: 950px;
    margin: 100px auto 0;
  }
  /*--------------------------------------------------
 plan 間取
----------------------------------------------------*/
	#plan{
		padding-bottom: 150px;
	}
	
  .planin {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

/*--------------------------------------------------
VIRTUAL TOUR バーチャル内覧
----------------------------------------------------*/
  /*  #VirtualTour {
    width: 100%;
  }*/
  .VRbox {
    width: 100%;
  }
  .VRbox iframe {
    height: 600px;
  }
  #VirtualTour .VRbox {
    width: 100%;
    padding: 50px 0;
  }
  #VirtualTour .txt {
    max-width: 600px;
  }
  /*--------------------------------------------------
details 物件概要
----------------------------------------------------*/
	#details {
		background-image: url("../img/bg01.png");
	background-repeat: repeat;
	}
	
  #details table th, #details table td {
    display: table-cell;
    text-align: justify;
  }
  #details table th {
    background: none;
    padding-inline-start: 0;
  }
  #details td {
    width: 50%;
  }

  .none {
    display: inherit;
  }
  #service ul {
    margin: 0 auto 50px;
  }
  #service ul li {
    width: 33%;
  }
}