.lead {
	margin:16px 0;
	text-align: center;
}
.select-departure {
	margin: 0 0 0 auto;
}
.select-departure__input {
    text-align: left;
}
.cms_item a {
	display: flex;
	flex-direction: column;
	height: 100%;
	box-shadow: 0 0 6px rgb(0 0 0 / 20%);
}
.cms_txt_area {
	padding: 16px 24px;
	height: 100%;
	background: #fff;
	border-bottom-right-radius: .375em;
	border-bottom-left-radius: .375em;
}
.cms_item img {
	width: 100%;
	height: 14em;
	object-fit: cover;
    object-position: 50% 50%;
	border-top-right-radius: .375em;
	border-top-left-radius: .375em;
}
.logo, .logo img {
	display: block;
	width: 30px;
	height: auto;
}
.cms_cassette_ttl {
	text-align: left;
	font-weight: bold;
}
.cms_cassette_icons {
	display: flex;
}
.cms_cassette_icon {
    margin: 4px 0 0 4px;
    padding: 2px 8px;
    font-size: 1.2rem;
	color: #323743;
	background: #eaf0f7;
	border-radius: .375em;
}
.cms_cassette_shohin-text,
.cms_cassette_conditions-peple {
    margin-top: 8px;
    font-size: 1.4rem;
	text-align: left;
}
.cms_cassette_price {
	font-size: 1.4rem;
	font-weight: 400;
	color: #be0505;
}
.cms_cassette_price span {
	font-size: 2.5rem;
	font-weight: bold;
}
.cms_cassette_time {
	display: flex;
	justify-content: center;
}
.cms_cassette_condition {
    position: relative;
    margin-top: 8px;
    padding-left: 3rem;
    font-size: 1.4rem;
    text-align: left;
}
.cms_cassette_condition .m-ico {
    position: absolute;
	top: -5px;
    left: 0;
    font-size: 2rem;
    color: #999;
}
.cms_cassette_note {
	text-align: end;
	padding-top: 8px;
}
.escort_bt a {
	position: relative;
	display: block;
	color: #fff !important;
	border-radius: 8px;
    background: #9a330c;
}
.escort_bt a::after {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
    display: block;
    font-family: 'jtb-dom' !important;
    text-decoration: none;
    content: "\e905";
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
}

@media screen and (min-width: 768px) {
	.cms_cassette_ttl {
		font-size: 1.8rem;
	}
	.cms_item a:hover {
		opacity: .6;
		transition: all 0.4s ease; 
		color: #323743;
	}
	.escort_bt a {
		padding: 16px 35px 16px 15px;
		font-size: 16px;
		transition: all 0.4s;
		margin: 32px auto 0;
		width: 650px;
	}
	.escort_bt a::after {
		right: 16px;
	}
}

@media screen and (max-width: 767px) {
	.cms_cassette_ttl {
		font-size: 1.8rem;
	}
	.cms_item a:hover {
		color: #323743;
	}
	.escort_bt a {
		padding: 10px 35px 10px 15px;
		font-size: 1.4rem;
		transition: all 0.4s;
		margin: 0 auto;
		width: 80%;
	}
	.escort_bt a::after {
		right: 8px;
	}
}

/* swiper */
.swiper {
	width: 100%;
	overflow: hidden;
}
.swiper-wrapper {
	display: flex;
}
.swiper-slide {
	flex-shrink: 0;
}

@media screen and (min-width: 768px) {
	.swiper-wrapper {
		flex-wrap: wrap;
		justify-content: space-around;
		padding: 0 24px;
	}
	.swiper-slide {
		width: calc(33.33333% - 16px);
        padding-top: 24px;
	}
	.swiper-controls {
		display: none;
	}
}

@media screen and (max-width: 767px) {
	.swiper-wrapper {
		padding-top: 16px;
		width: auto;
	}
	.swiper-slide {
		width: 280px;
	}
	.swiper-controls {
		display: flex;
		justify-content: center;
		align-items: center;
		gap: 20px;
		margin: 20px;
	}
	.swiper-btn {
		width: 40px;
		height: 40px;
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
		font-size: 16px;
	}

	/* 初期状態（無効） */
	.swiper-btn.prev,
	.swiper-btn.disabled {
		background: #f5f5f5;
		color: #ccc;
		cursor: not-allowed;
	}

	/* アクティブ状態（有効） */
	.swiper-btn.active,
	.swiper-btn.next:not(.disabled) {
		background: #9a330c;
		color: #fff;
		cursor: pointer;
	}
    
	.swiper-dots {
		display: flex;
		gap: 8px;
	}
    .dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #d0d0d0;
        border: none;
        cursor: pointer;
        transition: all 0.2s ease;
    }
    
    .dot.active {
        background: #9a330c;
        width: 8px;
        height: 8px;
    }
}