@charset "utf-8";
/* CSS Document */

#contesntsWrapper {
	margin-top: 50px !important;
}


article ul{
	padding-inline-start: 0
}

article h1 {
	margin-top: 0;
   	margin-bottom: 0;
}

article h2 {
	background-color: transparent;
	color: inherit;
	box-shadow: none;
	margin-top: 0;
	margin-bottom: 0;
	padding: 0;
	font-size: inherit;
}

.cta_link {
	margin-bottom: 0;
}

.syoudan {
    font-weight: bold;
    color: #820132;
}



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 h2{
	position: relative;
	padding-top: 50px;
	padding-bottom: 50px;
	font-size: 2.8rem;
	text-align: center;
	z-index: 1;
}

article h2 span {
	position: relative;
	z-index: 2;
}
article h2::before {
	content: attr(data-en);
	width: 100%;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	color:  var(--sub-bg);
	font-family: var(--head-font-family);
	font-weight: 400;
	mix-blend-mode: screen;
	font-size: 80px;
	z-index: -1;
}
article .Bk02 h2::before {
	color: var(--main-bg);
}
article section p{
	margin:0 auto 50px;
	max-width: 800px;
}
article .Bk02{
	padding-bottom: 200px;
	background-color: var(--sub-bg);
}
picture img {
    display: block;
    width: 100%;
}
.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;
	}
	article h2::before {
		font-size: 60px;
	}
}
/*--------------------------

#top

----------------------------*/
#top {
	max-width: 100%;
	padding-top: 50px;
	position: relative;
}
#top h1{
	position: absolute;
	bottom: 6%;
	left: 8%;
	font-size: 5rem;
	text-shadow: 3px 3px 3px #FFFFFF;
	color: #000000;
	letter-spacing: 0.05rem;
}
#top img{
	display: block;
	width: 80%;
	margin-left: auto;
}

@media (max-width: 767px){
	#top {
		padding-top: 0;
		height: 70%;
	}
	#top h1{
		position: inherit;
		padding: 30px 10px;
		font-size: 3rem;
		bottom: inherit;
		left: inherit;
	}
	#top img{
		width: 100%;
		margin: auto;
		height: auto;
	}
}
/*--------------------------

#lead

----------------------------*/
article section#lead h2{
	font-family: var(--head-font-family);
	font-size: 5rem;
	font-weight: 400;
	color: var(--accent-color);
}
#lead {
	max-width: 70%;
}
.parent {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  ggrid-auto-rows: minmax(150px, auto);
  gap: 10px;
	margin-bottom: 10px;
}

.div1,
.div2,
.div3{
  grid-row: span 2;
  height: 100%;
	
}
.div1 {
  grid-column: span 3;
}

.div2 {
  grid-column: span 2;
  grid-column-start: 4;
}

.div3 {
	display: flex;
	align-items: center;
  grid-column: 5 / 7;
  grid-row: span 2;
}
.parent.reverse .div1 {
  grid-column: 4 / 7; 
}

.parent.reverse .div2 {
  grid-column: 3 / 4;   
}

.parent.reverse .div3 {
  grid-column: 1 / 3; 
  grid-row: span 2;
}


.div1 img,
.div2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
	aspect-ratio: 4 / 3;
}
        
@media (max-width: 1000px) {
	article section#lead h2{
		font-size: 3rem;
	}
	#lead {
		max-width: 95%;
	}
	.parent {
		grid-template-columns: 1fr;
	}
	.div1 img,
	.div2 img {
		aspect-ratio: auto;
	}
	.div1,
	.div2,
	.div3,
	.parent.reverse .div1,
	.parent.reverse .div2,
	.parent.reverse .div3 {
		grid-column: auto;
		grid-row: auto;
	}
	.parent.reverse .div3{
		order: 1;
	}
}


.plan_img{
text-align: center;
}


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

#photos

----------------------------*/
#photos{
	max-width: 80%;
	margin: 0 auto;
}
#photos p{
	text-align: center;
}
.fancybox_area {
    column-count: 7;
    gap: 10px;
}
.fancybox_area li{
	margin-bottom: 10px;
}
.fancybox_area li a{
	display: inline-block;
	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%;
	vertical-align: bottom;
}

@media (max-width: 767px) {
	#photos{
		max-width: 95%;
	}
	.fancybox_area {
		column-count: 2;
		margin: 0 auto;
	}
}





/* pick
--------------------------------------------------------- */
section#pick{
  max-width: 1180px;
  margin: 0 auto;
  font-size: 1.65rem;
  letter-spacing: 0.1rem;
  padding: 80px 10px 120px;
}
section#pick .wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-block-end:30px;
}

section#pick .wrap .item {
  width: 31%;
  background-color: #fff;
}
section#pick .wrap .item:nth-child(2){
margin:0 25px
}
section#pick .wrap .item img{
  border-radius:10px;
  border: 2px solid #EFE7D9;
  max-width: 100%;
}
section#pick .wrap .item h3.title{
margin-block-start:20px;
font-size: 2rem;
text-align: center;
  position: relative;
  color: #c6b6a8;
}
section#pick .wrap .item h3.title::before {
  background-color: #EFE7D9; /* 線の色 */
  border-radius: 5px; /* 線の両端を丸く */
  bottom: -10px; /* 線の位置 */
  content: "";
  height: 3px; /* 線の高さ */
  left: 50%; /* 線の中央寄せ */
  position: absolute;
  transform: translateX(-50%); /* 線の中央寄せ */
  width: 30px; /* 線の長さ */
}
section#pick .wrap .item_txt{
margin-block-start:20px;
padding-block-start:20px;
letter-spacing: 1.6;
font-size: 1.6rem;
max-width: 90%;
margin: 0 auto;
line-height: 1.6;
}
@media not all and (min-width: 768px) {
section#pick{
margin-block-start:100px;
}
section#pick .wrap .item {
    width: 100%;
  }
section#pick .wrap .item:nth-child(2){
margin:0;
}
section#pick .wrap .item:not(:last-child) {
    margin-bottom: 30px;
  }
}







.parallax {
	max-width: 100%;
	margin-top: 100px;
	height: 400px;
	background-image: url("../img/parallax.webp"); 
	background-attachment: fixed; 
	background-size: cover;
}
@media (max-width: 767px) {
	.parallax {
		background-attachment: scroll; 
		height: 250px;
	}
}
/*--------------------------

#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: 23%;
  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);
	  mix-blend-mode: multiply;
  }
}
/*--------------------------

#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;
	position: relative;
	background-color: var(--accent-color);
	color: var(--main-bg);
	z-index: 1;
	transition: .3s;
}
#inquiry a::before {
	content: ">";
	position: absolute;
	right: 10px;
	z-index: 1;
}
#inquiry a::after{
      content:"";
      position: absolute;
      top:-120px;
      left: -320px;
      width: 320px;
      height: 160px;
      background: rgb(255, 255, 255);
      transform: rotate(-45deg);
      opacity: .5;
      z-index: 0;
      transition: all .3s ease-out;
    }
#inquiry a:hover::after{
	top:100%;
	left: 100%;
}
/*--------------------------

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