@charset "utf-8";
/* CSS Document */
/* 
※20210424 追記 
--------------------*/
/* for sp 表示非表示のスイッチ
---------------------------------------------------------- */
@media screen and (max-width: 768px) {
    .only-pc, .no-sp, .only-tb, img.only-tb {
        display: none !important;
    }
    .only-sp, .no-pc, .no-tb {
        display: block !important;
    }
    img.only-sp, img.no-pc, img.no-tb {
        display: inline-block !important;
    }
    .txt-note-01 {
        font-size: 12px;
    }
    section:first-child {
        margin-top: 0;
    }
    /*改行削除したい場合*/
    br .only-sp, br .no-pc, br .no-tb {
        display: none;
    }
}
/* for pc 表示非表示のスイッチ
---------------------------------------------------------- */
@media only screen and (min-width : 767px) {
    .only-pc {}
    .only-tb, .only-sp, .no-pc {
        display: none !important;
    }
    .no-tb {}
    .no-sp {}
    /*改行削除したい場合*/
    br .only-pc {
        display: none;
    }
    section:first-child {
        margin-top: 0px;
    }
}
.tal {
    text-align: left;
}
/* ---------------------------
contents
------------------------------ */

article {
    /*fadein*/
    animation: fadeIn 2s ease 0s 1 normal;
    -webkit-animation: fadeIn 2s ease 0s 1 normal;
    -webkit-text-size-adjust: 100%;
    /*	overflow-x: hidden;*/
	font-family: 'Noto Serif JP', serif;
	font-size: 1.6rem;
	line-height: 1.8;
	color: #d1d0cd;
	font-weight: normal;
}
article a {
    font-weight: normal !important;
	transition: all .6s;
}

article h1{
	font-size: clamp(1rem, 2vw + 2.4rem, 10rem);
	font-family: ten-mincho, serif;
	font-weight: 300;
    color: #FFFFFF;
}
article h2 {
	display: inline-block;
	position: relative;
	text-align: center;
	font-size: clamp(1.5rem, 2vw + 2rem, 3.8rem);
	font-family:  ten-mincho, serif;
	color: #BC8420;
	font-weight: normal;
}

article h3{
	font-size: clamp(2.5rem, 2vw + 1rem, 3rem);
	font-weight: normal;
	margin-bottom: 30px;
}
article img {
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
}

#gFooter {
	margin-top: 0!important;
	position: relative;
	z-index: 1;
}

#wrapper {
	background-color: inherit !important;
	margin-bottom: 0;
}
.bl_backToTop{
	z-index: 90;
}

.fadein {
  opacity: 0;
  transform : translate(0, 5%);
  transition : all 1500ms;
}

.fadein.scrollin{
  opacity: 1;
  transform: translate(0, 0);
}
@media (max-width: 768px) {
	
	.fadein {
		opacity: 1;
	}
}

/* #top
--------------------*/
#top {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 80vh;
}
#top::before{
	content:"";
     display:block;
	width: 100vw;
	height: 100vh;
     position:fixed;
     top:0;
     left:0;
		 background-color: rgba(0,0,0,0.4);
     background-image: url("../img/mv.jpg") ;
	background-position: center , center;
	background-repeat: no-repeat ,no-repeat;
	background-size: cover,cover;
	z-index: 0;
}
#top::after{
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: rgba(0,0,0,0.4);
	z-index: -1;
}
#top h1{
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
	z-index: 2;
}
#top h1 span{
	font-size: clamp(1rem, 2vw + 1.5rem, 3.5rem);
	-webkit-text-stroke: unset;
  text-stroke: unset;
}
.top_inner {
position: relative;
	z-index: 0;
  overflow: hidden;
    height: 100vh;
    width: 100%;
}



/* #lead
--------------------*/
#lead {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	margin: 10vw auto 20vw;
}
#lead p {
	writing-mode: vertical-rl;
	height: 310px;
	font-size: 2rem;
	letter-spacing: 8px;
	font-family: ten-mincho, serif;
	color: #FFFFFF;
}
@media (max-width: 768px) {
	#lead {
		margin-bottom: 40vw;
	}
}

/* scroll
--------------------*/
.scroll02 {
	position: fixed;
  bottom: 20px;
  left: 50%;
  z-index: 0;
  display: inline-block;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  text-decoration: none;
	color: #FFFFFF;
}

.scroll02 span {
  position: absolute;
  top: -50px;
  left: 50%;
  width: 24px;
  height: 24px;
  margin-left: -12px;
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-animation: sdb 1.5s infinite;
  animation: sdb 1.5s infinite;
  box-sizing: border-box;
}
@-webkit-keyframes sdb {
  0% {
    -webkit-transform: rotate(-45deg) translate(0, 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: rotate(-45deg) translate(-20px, 20px);
    opacity: 0;
  }
}
@keyframes sdb {
  0% {
    transform: rotate(-45deg) translate(0, 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: rotate(-45deg) translate(-20px, 20px);
    opacity: 0;
  }
}

/* #about
--------------------*/

#about{
	width: 100%;
	padding: 20vw 0 0;
	position: relative;
	background-color: #0F0F0F;
	opacity: 1;
	background-image:  repeating-linear-gradient(45deg, #1F1D14 25%, transparent 25%, transparent 75%, #1F1D14 75%, #1F1D14), repeating-linear-gradient(45deg, #1F1D14 25%, #0F0F0F 25%, #0F0F0F 75%, #1F1D14 75%, #1F1D14);
	background-position: 0 0, 21px 21px;
	background-size: 42px 42px;
}
#about::after {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: radial-gradient(
    circle farthest-side at 200px 200px,
    #000000 0%,
	transparent 50%,
	transparent 70%,
    transparent 100%
  );
}
#about ul{
	display: grid;
	position: relative;
	z-index: 2;
}
#about ul li{
	margin: 50px 0;
}

#about ul li:nth-child(2){
	margin-left: auto;
	margin-right: 5%;
}
#about ul li:nth-child(3){
	margin-left: 20%;
}
@media (max-width: 768px) {
	#about ul li:nth-child(1){
		width: 80%;
	}
	#about ul li:nth-child(2),#about ul li:nth-child(3){
		width: 50%;
	}
	#about ul li:nth-child(3){
		margin-left: 5%;
	}
}

/* #area
--------------------*/
#area {
	width: 100%;
	padding: 20vw 0;
	text-align: center;
	background-color: #1F1D14;
	opacity: 1;
	position: relative;
	background-image:  repeating-linear-gradient(45deg, #0F0F0F 25%, transparent 25%, transparent 75%, #0F0F0F 75%, #0F0F0F), repeating-linear-gradient(45deg, #0F0F0F 25%, #1F1D14 25%, #1F1D14 75%, #0F0F0F 75%, #0F0F0F);
	background-position: 0 0, 21px 21px;
	background-size: 42px 42px;
}
#area::before {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: radial-gradient(
    circle farthest-side at 1000px 1000px,
    #000 0%,
    transparent 100%
  );
}
.text{
	text-align: start;
	position: relative;
}

#area .text p {
	margin-bottom: 30px;
}
#area p{
	max-width: 700px;
	margin: 0 auto;
}
#area .map {
	position: relative;
}

#area img{
	margin-top: 30px;
}
@media (max-width: 768px) {
	#area p{
		max-width: 90%;
	}
	#area {
		padding-bottom: 40vw;
	}
}



/* #plan
--------------------*/
#plan , #photos, #virtualtour{
	width: 100%;
	padding: 0 0 20vw;
	background-color: #2D2D2D;
}
#plan h2{
	margin-top: -30px;
	margin-bottom: 20px;
}

#plan p {
	max-width: 700px;
	margin: 0 auto 50px;
	text-align: start;
}


.contents {
	max-width: 960px;
	margin: 0 auto;
	text-align: center;
}
@media (max-width: 768px) {
	.contents {
		width: 95%;
	}
	.contents p{
		width: 95%;
		margin: 0 auto;
	}
	#plan h2{
		position: relative;
		top: -7px;
	}
}
/* #photos
--------------------*/
#photos .contents {
	max-width: 95%;
	margin: 0 auto;
}

#photos h2,#photos p{
	margin-bottom: 1em;
}

.fancybox_area {
    column-count: 4;
    column-gap: 10px;
}
.fancybox_area li a{
	display: inline-block;
	margin: 10px 0 0;
	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 Round';
	font-size: 5rem;
  	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% !important;
  height: auto !important;
}

@media (max-width: 768px) {
	#photos {
		width: 100%;
	}
	.fancybox_area {
		column-count: 3;
	}
}
/* #virtualtour
--------------------*/

#virtualtour h2{
	margin-bottom: 1em;
}
.nodal {
	  max-width: 960px;
	  height: 600px;
	  margin: 0 auto;
	padding-bottom: 100px;
}

.nodal iframe {
  width: 100%;
  height: 100%;
}  

@media (max-width: 768px) {
	.nodal {
		text-align: center;
	}
	.nodal iframe {
		width: 90%;
	}
}
/* #details
--------------------*/
#wrap_details {
	width: 100%;
	padding: 20vw 0 10vw;
	background-color: #0F0F0F;
	opacity: 1;
	background-image:  repeating-linear-gradient(45deg, #1F1D14 25%, transparent 25%, transparent 75%, #1F1D14 75%, #1F1D14), repeating-linear-gradient(45deg, #1F1D14 25%, #0F0F0F 25%, #0F0F0F 75%, #1F1D14 75%, #1F1D14);
	background-position: 0 0, 21px 21px;
	background-size: 42px 42px;
}
#wrap_details .contents {
	background: #000000;
	padding: 50px;
}
#wrap_details h2{
	text-align: center;
	margin-bottom: 1em;
}
#wrap_details table {
	box-sizing: border-box;
	border-collapse: collapse;
	margin: 0 auto;
	width: 100%;
	font-size: 1.6rem;
}
#wrap_details table th, #wrap_details table td {
	border-block-end: 1px solid #5F4718;
	padding-inline-start: 8px;
	margin-block-start: 5px;
	vertical-align: middle;
	font-style: normal;
	height: 2.8em;
	text-align: left;
	line-height: 2;
}
#wrap_details table th {
	width: 18%;
	font-weight:400;
}

@media (max-width: 768px) {

	#wrap_details .contents {
		width: 90%;
	}
	#wrap_details table th, #wrap_details table td {
		display: block;
		height: auto;
		border-block-end: 0px;
		padding: 15px 0 15px 10px;
	}
	#wrap_details table th {
		width: 100%;
		background-color: #bc84202e;
	}
	
}


/* ---------------------------
#gmap
------------------------------ */
#form_box {
	padding: 0 0 10vw;
	text-align: center;
	background-color: #1F1D14;
	opacity: 1;
	position: relative;
	background-image:  repeating-linear-gradient(45deg, #0F0F0F 25%, transparent 25%, transparent 75%, #0F0F0F 75%, #0F0F0F), repeating-linear-gradient(45deg, #0F0F0F 25%, #1F1D14 25%, #1F1D14 75%, #0F0F0F 75%, #0F0F0F);
	background-position: 0 0, 21px 21px;
	background-size: 42px 42px;
	
}
#form_box a{
	display: inline-block;
	margin-bottom:30px;
	padding: 20px 40px;
	background: #BC8420;
	font-family: "Noto Sans JP",sans-serif;
	color: #FFFFFF;
	text-decoration: none;
}
#form_box a:hover{
	background: #ffc800;
}
.material-icons-round{
	position: relative;
	top: 5px;
	padding-right: 5px;
}
#gmap {
    width: 100%;
	height: 600px;
    padding: 0;
	position: relative;
	background-color: #0F0F0F;
	opacity: 1;
	background-image:  repeating-linear-gradient(45deg, #1F1D14 25%, transparent 25%, transparent 75%, #1F1D14 75%, #1F1D14), repeating-linear-gradient(45deg, #1F1D14 25%, #0F0F0F 25%, #0F0F0F 75%, #1F1D14 75%, #1F1D14);
	background-position: 0 0, 21px 21px;
	background-size: 42px 42px;
}
#gmap iframe{
	position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;

}
/* ---------------------------
.toform
------------------------------ */
#toform {
  height: 90px;
  width: 90px;
  position: fixed;
  bottom: 3%;
  right: 1.5%;
  z-index: 11;
  line-height: 90px;
  background: #BC8420;
  transition: all 0.3s;
  opacity: 0;
  z-index: 99;
}
#toform:hover {
  background: #ffc800;
}
#toform a {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  position: absolute;
  top: 17%;
   left: 23%;
}
#toform span {
  align-self: center;
  color: #FFFFFF;
  font-size: 50px;
}
.bl_backToTop {
  z-index: 90;
}
#toform.UpMove {
  animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
#toform.DownMove {
  animation: DownAnime 1s forwards;
}
@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(200px);
  }
}
/*スマホ表示*/
@media screen and (max-width:768px) {
  #toform {
    height: 70px;
    width: 70px;
  }
  #toform span {
    font-size: 40px;
  }
}
