@charset "utf-8";

/* 拠点紹介
============================ */

.base h2::before {
	content: "BASE";
	left: -0.55em !important;
	}
	@media screen and (min-width:1025px) {
	.base h2::before {
		left: -0.4em !important;
	}
}
.base .col3 {
	display: flex;
	flex-wrap: wrap;
	margin-top: 50px;
	}
	@media screen and (min-width:1025px) {
	.base .col3 {
		margin-top: 90px;
	}
}
.base dl {
	display: flex;
	flex-direction: column;
	margin-bottom: 50px;
}
.base .col3 dl:last-of-type {
	margin-bottom: 0;
	}
	@media screen and (min-width:1025px) {
	.base dl {
		margin:0 6% 60px 0;
	}
	.base dl:nth-child(3n) {
		margin:0 0 60px;
	}
}
.base .col3 dl {
	flex-basis: 100%;
	}
	@media screen and (min-width:1025px) {
	.base .col3 dl {
		flex-basis: 29%;
	}
}
.base dl dt {
	flex-shrink: 0;
}
.base dl .name {
	font-size: 1.8rem;
	background: #fff;
	width: 80%;
	position: relative;
	z-index: 10;
	margin-top: -35px;
	padding: 20px 10px 6px;
	line-height: 1.4;
	}
	@media screen and (min-width:1025px) {
	.base dl .name {
		font-size: 2.2rem;
		width: 75%;
	}
	.base .col3 dl .name {
		margin-top: -40px;
		padding: 25px 20px 8px;
	}
}
.base dl dd {
	padding: 0 10px;
	}
	@media screen and (min-width:1025px) {

	.base dl dd {
		padding: 0 20px;
	}
}
.base dl dd.ad {
	font-size: 1.3rem;
	color: #888;
	line-height: 1.6;
	}
	@media screen and (min-width:1025px) {
	.base dl dd.ad {
		font-size: 1.5rem;
		line-height: 1.6;
	}
}
.base dl dd.txt {
	margin: 1em 0 20px;
	line-height: 1.8;
}

@media screen and (min-width:1025px) {
.base .col3 dl dd.tour a.btn {
	height: 52px;
	line-height: 52px;
	font-size: 1.5rem;
	width: 220px;
	border-radius: 26px;
	}
}

/* ツアー */
.base dl dd.tour {
	margin-top: auto;
}
.base dl dd.tour a.btn {
	width: 190px;
	line-height: 38px;
	height: 42px;
	}
	@media screen and (min-width:1025px) {
	.base dl dd.tour a.btn {
		width: 280px;
		height: 56px;
		line-height: 52px;
		border-radius: 28px;
		padding-right: 10px;
	}
	.base dl dd.tour.honsya {
		margin-top:33px;
	}
}

/* モーダル */
.base .tour .btn.gallery img,
.base .tour .gallery.pic img {
	display: none;
}
.base #colorbox .tour .gallery.pic img {
	display: block;
}
.base .btn.soon {
	background:#ddd;
	width:240px;
}
@media screen and (min-width:1025px) {
	.base .btn.soon {
		height: 52px;
		line-height: 52px;
		font-size: 1.5rem;
		width: 260px;
		border-radius: 26px;
	}
}
/* for appear
============================ */
.base dl {
	opacity: 0;
	position: relative;
	top: 50px;
}
.base dl dd.tour {
	opacity: 0;
	position: relative;
	left: -30px;
}
.base dl dd.tour.is-active {
	opacity: 0;
	left:0;
	animation-fill-mode:forwards;
	animation-delay:1.6s;
	animation-name: slideIn;
	animation-duration: 0.4s;
}

@keyframes slideIn {
	0% {
		left: -30px;
		opacity: 0;
	}
	100% {
		opacity: 1;
		left:0;
	}
}