@charset "utf-8";
/* 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 section p{
	margin:0 auto 50px;
	max-width: 800px;
}
article h2{
	position: relative;
	padding-bottom: 50px;
	margin-bottom: 50px;
	font-size: 4rem;
	font-family:  var(--head-font-family);
	text-align: center;
}

article h2::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translate(-50%) rotate(30deg);
	width: 1px;
	height: 40px;
	background-color: var(--accent-color);
}
article .Bk02{
	margin: 100px auto;
	padding-bottom: 200px;
	background-color: var(--sub-bg);
}
.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;
	}
}
/*--------------------------

#top

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

#top{
	max-width: 85%;
	padding-top: 100px;
	position: relative;
}
#top h1{
	position: absolute;
	top: 102%;
	bottom: 50%;
	transform: translateY(-50%);
	font-size: 4rem;
	font-family: var(--head-font-family);
	
}
#top img{
	display: block;
	width: 85%;
	margin-left: auto;
}

/*#top .p-title{
	color: red;
  font-size: 10rem;
  font-weight: bold;
  position: absolute;
  inset: 0;
  z-index: -1;
  -webkit-text-stroke: 40px red;
}*/

/*.title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  font-weight: bold;
  font-family: var(--head-font-family);
}*/

.title-bg {
  background-color: white;
  display: inline-block;
  padding: 0.4em 0.8em;
  border-radius: 4px;
  box-shadow: 1px 1px 5px rgba(0,0,0,0.1);
}




@media (max-width: 767px){
	#top{
		display: flex;
		flex-wrap: wrap;
		max-width: 100%;
		padding-top: 50px;
	}
	#top h1{
		margin-bottom: 1em;
		position: relative;
		top: inherit;
		transform: inherit;
		font-size: 2.8rem;
	}
	#top img{
		width: 100%;
		margin-left: inherit;
	}
}

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

#lead

----------------------------*/
#lead h2{
	padding-bottom: 0;
	text-align: start;
	font-size: 2.8rem;
}
#lead h2::after{
	content: none;
}
#lead .item01,#lead .item02{
	display: flex;
	justify-content: space-between;
	align-items: center;
}

#lead .item01 div, #lead .item02 div{
	width: 40%;
}
#lead div img{
	width: 55%;
}
#lead .item01{
	margin-bottom: 50px;
}
#lead .item02 div {
	order: -1;
}

@media (max-width: 767px){
	#lead .item01,#lead .item02{
		flex-wrap: wrap;
	}
	#lead .item01 div, #lead .item02 div{
		width: 100%;
	}
	#lead div img{
		width: 100%;
		margin-bottom: 1em;
	}
	#lead .item02 div {
		order: 0;
	}

}

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

#area

----------------------------*/
#area .recommend{
	display: flex;
	justify-content: space-between;
	margin: 50px auto 0;
}
#area .recommend div{
	width: 49%;
}
#area .recommend div img{
	width: 100%;
}
@media (max-width: 767px){
	#area .recommend{
		flex-wrap: wrap;
	}
	#area .recommend div{
		width: 100%;
	}
}
/*--------------------------

#photos

----------------------------*/
#photos .fotorama {
  max-width: 960px;
  margin: 50px auto;
}
@media (max-width: 767px){
  #photos .fotorama {
    padding-left: 10px;
    padding-right: 10px;
  }
}

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

#virtualtour

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

.vrbox {
  width: 100%;
	margin: 0 auto;
}
.vrbox iframe {
  height: 600px;
}
@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: 20%;
  font-weight: normal;
}
@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);
  }
}
/*--------------------------

#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;
	border: 1px solid #555;
	position: relative;
	z-index: 1;
}
#inquiry a::before {
	content: ">";
	position: absolute;
	right: 10px;
	z-index: 1;
}
#inquiry a::after {
  background: var(--accent-color);
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 100%;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: .3s cubic-bezier(0.45, 0, 0.55, 1);
	z-index: -1;
}

#inquiry a:hover {
	color: #fff;
}
#inquiry a:hover::after {
  transform: scale(1, 1);
}

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

#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;
	}
}