@charset "UTF-8";


.fadeIn {
  opacity: 0;
  transition: 2s;
}
.fadeIn.is-show {
  opacity: 1;
}

.fadeIn_up {
  opacity: 0;
}
.fadeIn_up.is-show {
	animation-name:fadeUpAnime;
	animation-duration:0.8s;
	animation-fill-mode:forwards;
}
@keyframes fadeUpAnime{
  from {
    opacity: 0;
	transform: translateY(60px);
  }

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




.circle img {
	animation:7s linear infinite rotation1;
}

@keyframes rotation1{
  0%{ transform:rotate(0);}
  100%{ transform:rotate(360deg); }
}



/*リンクの形状*/
#page-top a{
	display: flex;
	justify-content:center;
	align-items:center;
	background:none;
	width: 10px;
	height: 50px;
	color: #fff;
	text-align: center;
	text-transform: uppercase; 
	text-decoration: none;
	font-size:1.2rem;
	transition:all 0.3s;
	line-height: 1.4;
	border-radius: 10px;
}


/*リンクを右下に固定*/
#page-top {
	position: fixed;
	right: 10px;
	bottom:90px;
	z-index: 9999;
    /*はじめは非表示*/
	opacity: 0;
	transform: translateY(100px);
}

/*　上に上がる動き　*/

#page-top.UpMove{
	animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime{
  from {
    opacity: 0;
	transform: translateY(200px);
  }
  to {
    opacity: 1;
	transform: translateY(0);
  }
}

/*　下に下がる動き　*/

#page-top.DownMove{
	animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
  from {
  	opacity: 1;
	transform: translateY(0);
  }
  to {
  	opacity: 1;
	transform: translateY(100px);
  }
}






.modal-open{
	cursor: pointer;
}
/*モーダル本体の指定 + モーダル外側の背景の指定*/
.modal-container{
	position: fixed;
	top: 70px;
	left: 0;
	width: 100%;
	height: 100%;
	text-align: center;
	background: rgba(0,0,0,50%);
	padding: 40px 20px;
	overflow: auto;
	opacity: 0;
	visibility: hidden;
	transition: .3s;
    box-sizing: border-box;
	z-index: 100;
}
/*モーダル本体の擬似要素の指定*/
.modal-container:before{
	content: "";
	display: inline-block;
	vertical-align: middle;
	height: 100%;
}
/*モーダル本体に「active」クラス付与した時のスタイル*/
.modal-container.active{
	opacity: 1;
	visibility: visible;
}
/*モーダル枠の指定*/
.modal-body{
	position: relative;
	display: inline-block;
	vertical-align: middle;
	max-width: 600px;
	width: 90%;
}
/*モーダルを閉じるボタンの指定*/
.modal-close{
	position: absolute;
	display: flex;
    align-items: center;
    justify-content: center;
	top: -40px;
	right: -40px;
	width: 40px;
	height: 40px;
	font-size: 40px;
	color: #fff;
	cursor: pointer;
}
/*モーダル内のコンテンツの指定*/
.modal-content{
	background: #fff;
	text-align: left;
	padding: 30px;
}





.feature-slider .swiper-slide {
	margin-top: 60px;
}
.feature-slider .swiper-slide {
	overflow: hidden;
	transition: box-shadow 0.3s, border 0.3s;
	width: 405px;
}

.feature-slider .swiper-slide-active {
}

.feature-slider .swiper-slide:hover {
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
}

/* ナビゲーションボタン・ページ番号 */
.swiper-button-next,
.swiper-button-prev {
	position: absolute;
	top: auto !important;
	bottom: 10px !important;
	width: 40px;
	height: 40px;
}
.swiper-button-next img,
.swiper-button-prev img {
	width: 40px;
	height: 40px;
}

.swiper-button-next::after,
.swiper-button-prev::after {
	display: none;
}


/* 位置調整 */
.swiper-button-prev {
  left: calc(100vw - 400px) !important;
}

.swiper-button-next {
  right: 60px !important;
}


.swiper-pagination-count {
	text-align: right;
	font-family: "Cinzel", serif;
	font-style: italic;
	font-size: 3.6rem;
	margin-top: 20px;
	margin-right: 165px;
	color: #a99664;
}

@media screen and (max-width: 1023px) {
.swiper-button-next,
.swiper-button-prev {
	position: absolute;
	top: auto !important;
	bottom: 0px !important;
	width: 40px;
	height: 40px;
}
.swiper-button-next img,
.swiper-button-prev img {
	width: 40px;
	height: 40px;
}

.swiper-button-next::after,
.swiper-button-prev::after {
	display: none;
}


/* 位置調整 */
.swiper-button-prev {
  left: 5% !important;
}

.swiper-button-next {
  right: 5% !important;
}


.swiper-pagination-count {
	text-align: center;
	font-family: "Cinzel", serif;
	font-style: italic;
	font-size: 2rem;
	margin-top: 20px;
	margin-right: 0;
	color: #a99664;
}
}



