@charset "utf-8";

/* ===================================================================
//CSS information

// file name  :  gallery.css
// style info :  スタイル指定
=================================================================== */
.inner {
  max-width: 1300px;
}

.sec-head {
  font-size: 6.8rem;
  line-height: 1;
  margin-bottom: 40px;
	color: #A78775;
}

.sec-sub-head {
  display: block;
  font-size: 2rem;
}

.galleryTitle {
  text-align: center;
  margin-top: 150px;
}

.galleryTitle:first-of-type {
  margin-top: 0;
}

.main-container {
  width: 100%;
  height: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0px;
  background-color: transparent;
  /* border: 5px solid #883232;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);*/
  display: flex;
  flex-direction: column;
  overflow: hidden;
  /* スクロールバーを非表示に */
  min-height: auto;
}

/* -----------------------------------------------------
  sliderWrap
----------------------------------------------------- */
.sliderWrap h3.ttl {
  margin-top: 50px;
}

.sliderWrap h3.ttl {
  font-family: 'Cormorant Infant', serif;
  font-size: 40px;
  font-weight: 500;
  color: #000;
  line-height: 40px;
  padding: 10px 0;
}
h3.ttl small {
	font-size: .6em;
}
.wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: auto;
}

.garallySlider {
  width: 100%;
  margin: 0 auto 10px;
}

.garallySlider li p {
  position: absolute;
  bottom: 5px;
  right: 10px;
  text-align: center;
  color: #fff;
  font-family: 'Bellefair', serif !important;
  font-size: 28px;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
}

.garallySlider li p.left {
  position: absolute;
  bottom: 5px;
  right: auto;
  left: 10px;
}

.slide-item img {
  width: 100%;
}

.thumbnail-list {
  width: 100%;
  margin: 0 auto 30px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.thumbnail-item {
  flex: 0 0 120px;
  margin-bottom: 10px;
  box-sizing: border-box;
  position: relative;
  margin: 0px 1px 3px;
  max-height: 70px
}

li.thumbnail-item:after {
  content: "";
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  transition: 0.3s opacity linear;
}

li.thumbnail-item.thumbnail-current:after {
  opacity: 0;
}

.thumbnail-item img {
  width: 100%;
  margin: 0 auto;
}

.caption {
  margin: 50px 0;
}

.picsCaps {
  position: absolute;
  bottom: 0;
  right: 0;
  font-size: 10px;
  line-height: 1.2 !important;
  padding: 5px;
  margin: 1px;
  color: #fff !important;
  text-align: right;
  letter-spacing: 0.02em;
}

.picsCaps.Lside {
  right: auto;
  left: 5px;
}

.picsCaps.black {
  color: #111 !important;
}

.picsCaps.withBG {
  background: rgba(0, 0, 0, 0.8);
  color: #fff !important;
}

.picsCaps.whiteBG {
  background: rgba(255, 255, 255, 0.6);
  color: #000 !important;
}

.picsCaps.noBG {
  position: static;
  margin-top: 10px;
  background: none;
  color: #333 !important;
}


@media screen and (max-width: 1100px) {
  .thumbnail-item {
    flex: 0 0 100px;
  }
}

@media screen and (max-width: 768px) {
  .thumbnail-item {
    flex: 0 0 80px;
  }
}

@media screen and (max-width: 767px) {
  .sec-head {
    font-size: 3.6rem;
    line-height: 1;
    margin-bottom: 20px;
  }

  .sec-sub-head {
    font-size: 1.5rem;
  }

  .galleryTitle {
    margin-top: 75px;
  }

  .sliderWrap h3.ttl {
    font-size: 26px;
    margin-top: 20px;
  }

  .garallySlider li p {
    font-size: 16px;
  }

  .thumbnail-item {
    flex: 0 0 80px;
    margin-bottom: 10px;
    box-sizing: border-box;
    position: relative;
    margin: 1px 1px;
  }
}

@media screen and (max-width: 1200px) {}

@media screen and (max-width: 991px) {}

@media screen and (max-width: 767px) {}

@media screen and (max-width: 420px) {}

@media screen and (min-width: 767px) {
  .desgin {
    display: flex;
    flex-direction: row-reverse;
  }
}

#vr{margin-top: 150px;}
/*
360°ボタン
*/
.btn360 a {
	background-color: #251e1c;
	background: rgba(94,68,11,1);
	display: block;
	width: 45%;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	transition: all ease 0.5s;
	margin-bottom: 50px;
	padding: 40px 0;
	font-size: 1.2em;
	color: #fff;
}
.btn360 a:after {
	content: "";
	position: absolute;
	top: 50%;
	bottom: 0;
	right: 1.5rem;
	opacity: 0;
	font-size: 90%;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all ease 0.3s;
	width: 6px;
	height: 6px;
	border-top: solid 2px #fff;
	border-right: solid 2px #fff;
	transform: translateY(-50%) rotate(45deg);
}
.btn360 a:hover {
	background: rgba(94,68,11,0.8);
}
.btn360 a:hover:after {
	right: 1rem;
	opacity: 1;
}
.btn360 img {
	margin-right: 10px;
	position: relative;
	top: -2px;
	width: 30px;
}
.btn360 span { color: #fff; }

@media screen and (min-width:768px) and (max-width:1200px){
	.btn360 a {
		height: 40px;
		width: 110px;
	}
}

@media screen and (max-width: 767px){
	.btn360 {
		gap: 10px;
		/*width: calc(100% - 50px);*/
	}
	.btn360 li { width: 50%; }
	.btn360 a {
/*		background-color: transparent;
		border: 1px solid #fff;
		font-size: 1.2rem;
		height: 40px;*/
		width: 100%;
		min-width: 120px;
	margin-bottom: 20px;
	}
	.btn360 a:after { display: none; }
	.btn360 img {
		width: 20px;
		top: 0;
	}
}
