@charset "UTF-8";

.swiper-slide-img {
	width: 100%;
}

/*Swiper用のCSS*/
.swiper {
	width: 100%;
	--add-bottom: 40px;
	padding-bottom: var(--add-bottom);
}

.swiper [class^="swiper-button-"] {
	top: calc(50% - var(--add-bottom) / 2);
}

/*TOP*/
.top-main-area {
	background: #FFF5E2;
	padding-bottom: 50px;
}

.top-main-list {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.top-main-list li {
	width: 48.8%;
	margin-bottom: 20px;
}

.top-bottom {
	padding-bottom: 50px;
}

@media screen and (max-width:700px) {
	.top-main-area {
		padding-bottom: 20px;
	}

	.top-main-list li {
		margin-bottom: 5px;
	}

	.top-bottom {
		padding-bottom: 30px;
	}
}


/* modalwindow */
/*モーダルを開くボタン*/
.modal-open {
	padding: 30px 10px 40px;
	background-color: #FFF5E2;
}

.modal_open_btn {
	display: flex;
	justify-content: center;
}

.modal_open_btn img {

	max-width: 360px;
	margin: 0 auto;
	margin-top: 40px;
	transition: all 0.3s;
	cursor: pointer;
}

.modal_open_btn:hover img {
	opacity: 0.6;
}

.back_to_top {
	display: flex;
	justify-content: center;
	margin-top: 40px;
	margin-bottom: 50px;

}

.back_to_top a {
	font-weight: 500;
	font-size: 16px;
	line-height: 54px;
	text-align: center;
	color: #313131;
	width: 240px;
	height: 54px;
	background: #ededed;


}

@media screen and (max-width:767px) {

	.modal_open_btn img {
		max-width: 240px;
		margin-top: 30px;
	}
}

/*モーダル本体の指定 + モーダル外側の背景の指定*/
.modal-container {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	text-align: center;
	background: rgba(0, 0, 0, 100%);
	padding: 40px 20px;
	overflow: auto;
	opacity: 0;
	visibility: hidden;
	transition: .3s;
	box-sizing: border-box;
	z-index: 100000;
}

/*モーダル本体の擬似要素の指定*/
.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: 90vw;
	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 {
	text-align: left;
	padding: 30px;
}

@media screen and (max-width:700px) {
	.modal-container {
		padding: 0;
	}

	/*モーダル枠の指定*/
	.modal-body {
		position: relative;
		display: inline-block;
		vertical-align: middle;
		max-width: 100%;
		width: 98%;
	}

	/*モーダルを閉じるボタンの指定*/
	.modal-close {

		display: none;
	}

	/*モーダル内のコンテンツの指定*/
	.modal-content {
		text-align: left;
		padding: 0;
	}



}


.smartphoto-count {
	display: none;
}

.video_wrap {
	position: relative;
	padding-top: 56.25%;
	margin-top: 50px;
	margin-bottom: 50px;

}

.video_wrap iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

@media screen and (max-width:767px) {

	.video_wrap {
		margin-top: 40px;
		margin-bottom: 0;

	}
}

.other_line_ups {
	margin-top: 50px;
	margin-bottom: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.other_line_ups a.other_line_ups_btn {
	font-weight: normal;
	font-size: 16px;
	text-align: center;
	color: #fff;
	width: 100%;
	line-height: 68px;
	background: #016BD5;
	border: 1px solid #016BD5;
	display: block;
	max-width: 480px;
	
}
@media screen and (max-width:767px) {

	.other_line_ups {
		margin-top: 30px;
		margin-bottom: 0;
	}
	
.other_line_ups a.other_line_ups_btn {
	font-weight: normal;
	font-size: 16px;
	text-align: center;
	color: #fff;
	width: 100%;
	line-height: 68px;
	background: #016BD5;
	border: 1px solid #016BD5;
	display: block;
	max-width: 280px;
	
}
}