@charset "utf-8";
/* CSS Document */
@import url(//use.fontawesome.com/releases/v5.6.3/css/all.css);
/* ---------------------------
contents
------------------------------ */

article {
  /*fadein*/
  animation: fadeIn 2s ease 0s 1 normal;
  -webkit-animation: fadeIn 2s ease 0s 1 normal;
  -webkit-text-size-adjust: 100%;
}

#contents a {
  font-weight: normal !important;
　text-decoration: none;
}
#topicpathWrapper {
  background: #fff;
}
article {
  font-family: '游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif;
  font-weight: 600;
  font-style: normal;
  font-size: 16px;
  line-height: 2;
  color: #333333;
  display: block;	
}
article p {
　font-family: '游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 2;
  color: #333333;
}
article nav {
  display: none;
}

#wrapper {
	margin: 0;
}
article h2{
	margin-bottom: 1em;
	position: relative;
	font-family: 'League Script', cursive;
	font-size: clamp(1.786rem, 2vw + 4.3rem, 6.5rem);
	font-weight: 400;
	text-align: center;
	line-height: 2;
}
article h2::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translate(-50%) rotate(40deg);
	width: 1px;
	height: 30px;
	background-color: #333333;
}

article a{
	text-decoration: none;
}
.contents{
	max-width: 960px;
	margin: 0 auto;
}
article ul li {
　font-family: '游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 2;
  color: #333333;
}
#gFooter {
	margin-top: 0;
	position: relative;
	z-index: 1;
}
/*
.scroll {
	display: inline-block;
	  position: absolute;
	  left: 1%;
	  bottom: 0;
	  z-index: 2;
	  padding: 10px 10px 110px;
	  overflow: hidden;
	  color: #333;
	  font-size: 14px;
	  line-height: 1;
	  letter-spacing: .2em;
	  text-decoration: none;
	  writing-mode: vertical-lr;
}
.scroll::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 15%;
  width: 1px;
  height: 185px;
  background: #333;
}
.scroll::after {
  animation: sdl 1.5s cubic-bezier(1, 0, 0, 1) infinite;
}
@keyframes sdl {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  50.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}*/
/* 　画像切り替え　 */
.pc { display: block !important; }
.sp { display: none !important; }
 
@media only screen and (max-width: 767px) {
    .pc { display: none !important; }
    .sp { display: block !important; }
	article img {
		width: 100%;
	}
}
@media only screen and (max-width: 1024px){
	article img {
		width: 100%;
	}
}

article .box {
	width: 100%;
	height: 300px;
	overflow: hidden;
}

.thumbnail {
	width: 100%;
}

/* ---------------------------
アニメーション
------------------------------ */

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

.fadein.scrollin{
  opacity: 1;
  transform: translate(0, 0);
}

.zoomIn{
  animation-name:zoomInAnime;
  animation-duration:0.5s;
  animation-fill-mode:forwards;
}

@keyframes zoomInAnime{
  from {
  transform: scale(0.6);
  }

  to {
      transform: scale(1);
  }
}



.fadeUp {
animation-name:fadeUpAnime;
animation-duration:0.5s;
animation-fill-mode:forwards;
opacity: 0;
}
@keyframes fadeUpAnime{
  from {
    opacity: 0;
  transform: translateY(100px);
  }

  to {
    opacity: 1;
  transform: translateY(0);
  }
}


.fadeDown{
animation-name:fadeDownAnime;
animation-duration:0.5s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeDownAnime{
  from {
    opacity: 0;
  transform: translateY(-100px);
  }

  to {
    opacity: 1;
  transform: translateY(0);
  }
}
/*---------------------------
lead
------------------------------ */
#lead{
	width: 100%;
	padding-top:2rem;
	display: block;
} 
#lead h1 {
	max-width: 1200px;
	margin: 0 auto;
	font-size: 3rem;
	overflow: hidden;
}
#lead img {
	margin: 2rem auto 0;
}
@media screen and (max-width:1260px){
	#lead h1 {
		width: 90%;
	}
}
@media screen and (max-width:767px){
	#lead img {
		width: 100%;
	}
}
/* ---------------------------
area
------------------------------ */
#area {
	width: 100%;
	margin: 0 auto;
	padding: 100px 0 200px;
}
#area p {
	text-align: start;
	max-width: 73%;
	margin: 0 auto 2em;
}
#area h3 {
	margin: 50px auto 30px;
	font-size:  clamp(1rem, 2vw + 1rem, 2.8rem);
}
#area h4 {
	margin: 10px auto;
	font-size:  clamp(1rem, 2vw + 1rem, 2rem);
}

#area .contents{
	max-width: 960px;
	margin: 0 auto;
}
#area img {
	width: 100%;
}

@media screen and (max-width:767px){
	#area {
		width: 100%;
		margin: 0 auto;
		padding: 0 0 100px;
	}
	#area .contents{
		max-width: 80%;
	}
	#area p{
		max-width: 100%;
	}
}

/* ---------------------------
about
------------------------------ */
#about{
	width: 100%;
	padding: 100px 0;
	
}
#about h2{
	display: inline-block;
	margin-bottom: 150px;
	writing-mode: vertical-rl;
}
#about h2::after{
	content: none;
}
#about h3 {
	margin-bottom: 1em;
	font-size:  clamp(1rem, 2vw + 2rem, 2.8rem);
	font-weight: 200;
}
#about .titleBox {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	max-width: 960px;
	margin: 0 auto;
}
#about ul {
	max-width: 960px;
	width: 80%;
	margin: 0 auto;
}
#about ul li{
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-top: 100px;
}
#about ul li img{
	width: 60%;
}

#about ul li.third img{
	margin-right: auto;
}

#about ul li p {
	width: calc(50% - 150px) ;
	position: relative;
}
#about ul li.second p{
	order: 0;
}
#about ul li.second img{
	order: 1;
}
#about ul li p::before {
	content: '';
	width: 1px;
	height: 170px;
	position: absolute;
	bottom: 0;
	left: -2em;
	background-color: #333333;
}
#about ul li.second p::before {
	bottom: 0;
	left: inherit;
	right: -2em;
}
@media screen and (max-width:767px){
	#about{
		width: 100%;
		margin: 0 auto;
		padding: 100px 0 ;
	}
	#about h2{
		margin-bottom: 0;
		position: relative;
		top: -50px;
		left: -20px;
	}
	#about .titleBox {
		width: 95%;
		margin: 0 auto;
		align-items: flex-start;
	}
	#about ul {
		width: 90%;
		margin: 0 auto;
	}
	#about ul li{
		flex-wrap: wrap;
	}
	#about ul li p,#about ul li img {
		width: 100%;
	}
	#about ul li p{
		order: 0;
		margin-bottom: 35px;
	}
	#about ul li.second p::before {
		right: inherit;
		bottom: inherit;
		left: -2em;
	}
	#about ul li p::before{
		width: 173px;
		height: 1px;
		top: -30px;
		bottom: inherit;
	}
	#about ul li img {
		order: 1;
	}
}
/* ---------------------------
plan
------------------------------ */

#plan {
	width: 100%;
	padding-top: 100px;
}
#plan .fadein{
	max-width: 960px;
	margin: 0 auto;
}
#plan .txt{
	max-width: 73%;
	margin: 0 auto;	
	margin-bottom: 40px;
}
#plan .img{
	text-align: center;
}
#plan .img img {
	width: 100%;
}
#plan ul {
	max-width: 73%;
	margin: 50px auto 0;
}
#plan ul li:first-child {
	margin-bottom: 1.5em;
}
#plan ul li:last-child {
	margin-top: 1.5em;
	font-size: 1.4rem;
}
@media screen and (max-width:767px){
	#plan{
		width: 100%;
		margin: 0 auto;
		padding-top: 0;
	}
	#plan .txt{
		max-width: 80%;
	}
	#plan ul{
		max-width: 80%;
	}
}
/* ---------------------------
photos
------------------------------ */
#photos{
	width: 100%;
	margin: 0 auto;
	padding: 200px 0;
}
#photos h2{
	margin-bottom: 30px;
}
#photos p{
	text-align: center;
	margin-bottom: 35px;
}
#photos .fadein {
	width: 90%;
	margin: 0 auto;
}
.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';
	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% !important;
  height: auto !important;
	vertical-align: bottom;
}

@media (max-width: 767px) {
	#photos {
		width: 100%;
		margin: 0 auto;
		padding: 150px 0;
	}
	#photos p{
		width: 80%;
		margin: 0 auto 35px;
		text-align: start;
	}
	.fancybox_area {
		column-count: 3;
		width: 95%;
		margin: 0 auto;
	}
}


/* ---------------------------
tour
------------------------------ */
#tour {
	padding-bottom: 300px;
}
#tour h2{
	margin-bottom: 30px;
}
#tour p{
	max-width: 700px;
	margin: 0 auto 35px;
}
.nodal{
	max-width: 960px;
	margin: 0 auto ;
	 height: 500px;
}
.nodal iframe {
  width: 100%;
  height: 100%;
}
@media screen and (max-width:767px){
	.nodal {
		width: 95%;
	}
	#tour p{
		width: 85%;
	}
}
/* ---------------------------
パララックス
------------------------------ */
.bg01{
    background-image: url(../img/bg.jpg);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    -moz-background-size:cover;
    background-size:cover;
    height: 360px;
    display: block;
}
@media (max-width: 767px) {
	.bg01{
	background-image: url(../img/bg_sp.jpg);
	}
}
/* ---------------------------
details
------------------------------ */
#wrap_details {
	width: 100%;
	margin:0 auto;
	padding: 100px 0;
}
#wrap_details h2{	
	margin-bottom: 30px;
}
#wrap_details table {
	box-sizing: border-box;
	border-collapse: collapse;
	margin: 0 auto;
	padding-top: 25px;
	max-width:  960px;
	width: 90%;
	font-size: 1.6rem;
}
#wrap_details table th, #wrap_details table td {
	border-block-end: 1px solid #333;
	padding-inline-start: 8px;
	margin-block-start: 5px;
	vertical-align: middle;
	font-style: normal;
	height: 2.8em;
	text-align: left;
}
#wrap_details table th {
	width: 25%;
	font-weight:300;
}
@media (max-width: 767px) {
	#wrap_details {
		width: 100%;
		margin: 0 auto;
	}
	#wrap_details table {
		width: 90%;
	}
	#wrap_details table th, #wrap_details table td {
		display: block;
		height: auto;
		border-block-end: 0px;
	}
	#wrap_details table th {
		width: 100%;
		background-color: rgb(51 51 51 / 8%);
	}
}


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


#form_box {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto;
	padding:  0 0 100px;
	text-align: center;
	background-color: #FFFFFF;
}
#form_box a{
  font-weight: 200;
  background: #333333;
	border: 1px solid #333333;
  width: 200px;
  height: 60px;
  text-align: center;
  line-height: 60px;
  transition: .3s;
	color: #FFFFFF;
}

#form_box a:hover {
	background: #FFFFFF;
	color: #333333;
	transform:scale(1.1);
}

.arrow {
  position: relative;
  display: inline-block;
}
.arrow::before {
  content: '';
  width: 10px;
  height: 10px;
  border-top: solid 1px #fff;
  border-right: solid 1px #fff;
  position: absolute;
  right: 10%;
  top: 43%;
}
.arrow-right::before {
  transform: rotate(45deg);
}
	
#form_box a:hover.arrow::before{
	 border-top: solid 1px #333;
  	border-right: solid 1px #333;
}

/* ---------------------------
.Google Map
------------------------------ */

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

.cta_btn {
  position: fixed;
  background-color: #333333;
  border-radius: 0;
  bottom: 3%;
  right: 0;
  box-shadow: 0 1px 3px 1px rgb(0 0 0 / 8%);
  transition: all 0.3s ease;
  z-index: 90;
}

.cta_link {
  display: flex;
  align-items: center;
}

.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: 200;
  color: #fff;	
}

#cta_floating.cta_btn,
.cta_floating {
  transform: translateX(15rem);
}

#cta_floating.cta_btn:hover,
.cta_floating:hover {
  transform: translateX(0);
}
@media screen and (max-width: 639px) {
  #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;
  }
	.cta_icon{
		position: relative;
		top: -6px;
	}
}
