@charset "UTF-8";

/* 簡易リセットCSS */
*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}


/* モーダル */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
  pointer-events: none;
  opacity: 0;
  z-index: 9999;
  background-color: rgba(40, 39, 50, 0.9);
}

/* モーダルがactiveの時 */
.modal.is-active {
  opacity: 1;
  pointer-events: auto;
}

/* モーダル背景のオーバーレイ部分 */
.modal__overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

/* モーダルのコンテンツ */
.modal__content {
  position: relative;
 /* background-color: #fff;*/
  width: 100%;
  max-width: 900px;
 /* padding: 20px;*/
}

/* モーダルを閉じるボタン */
.modal__close-btn {
  position: absolute;
  right: 0;
  top: 0;
  width: 40px;
  height: 40px;
  background: rgba(40, 39, 50, 0.2);
  border: 1px solid #fff;
  cursor: pointer;
  z-index: 10;
  color: #fff;
}

.swiper-button-next, .swiper-button-prev {
color: #fff;
}
.swiper-pagination-bullet {
  background-color: #fff ;
}

/* 
-----------------------
フローティング　バナー
-----------------------
*/


.floating-banner{
	position: fixed;
	right: 0;
	bottom: 50%;
	z-index:9999;
	/*background-color: #f00;*/
	/*color: #fff;*/
	/*padding: 10px;*/
	cursor: pointer;
	 opacity: 0; 
	transition: opacity 350ms ease;
	/*display: none;*/
}

.floating-banner ul{
	margin-bottom: 0;
}
ul li.preview-banner{
	background-color: #A78F45;
	padding: 28px 10px;
}
ul li.preview-banner a{color: #fff;}
ul li.contact-banner{
	border: solid 1px #A78F45;
	background-color: #fff;
	padding: 28px 10px;
}
ul li.contact-banner a{color: #A78F45;}

ul li.preview-banner:hover{
	opacity: 0.9;
}
ul li.preview-banner a:focus{
	text-decoration: none;
}
ul li.contact-banner:hover{
	opacity: 0.9;
}
ul li.contact-banner a:focus{
	text-decoration: none;
}
@media screen and (max-width:768px){
	.modal {
		padding: 0;
	}
	.floating-banner{
	position: fixed;
	right: 0;
	bottom: 0;
    width: 100%;
		
}
	.floating-banner ul {
		display: flex;
		text-align: center;
	}
	ul li.preview-banner,ul li.contact-banner{
		width: 50%;
		padding: 20px 10px;
	}
}