/* キッチンカー */

.contentsWrap .main {
	max-width:900px;
	margin:0 auto;
}
@media screen and (max-width:767px) {
	.contentsWrap .main {
		margin:0 auto;
		max-width:94%;
	}
}

.carWrap {
	display:flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin:40px 0;
	padding-bottom:40px;
	border-bottom:2px solid #ddd;
}
.carWrap .left {
	width:55%;
}
.carWrap .right {
	width:40%;
}
.carWrap .phlist {
	display:flex;
	flex-wrap: wrap;
	margin:20px 0 0;
	width:100%;
}
.carWrap .phlist li {
	margin-right:5%;
	width:30%;
}
.carWrap .phlist li:nth-child(3n) {
	margin-right:0;
}
.carWrap .left h3 {
	font-size:34px;
}
.carWrap .left .add {
	margin-left:10px;
	padding:0.3em 0.5em;
	background:#f0e6c0;
	font-size:14px;
}
.carWrap .left .icon {
	display:flex;
	margin:20px 0;
}
.carWrap .left .icon li {
	margin-right:10px;
}
.carWrap .left .icon .day {
	padding:0.3em 0.3em 0.3em 0.4em;
	background:#1a2a5e;
	color:#fff;
	border-radius: 7px;
}
.carWrap .left p {
	margin-bottom:15px;
	line-height:1.7;
}

@media screen and (max-width:767px) {
	.carWrap {
		flex-direction: column;
	}
	.carWrap .left {
		width:100%;
	}
	.carWrap .right {
		width:100%;
	}
	.carWrap .left h3 {
		line-height:1.2;
	}
	.carWrap .left .add {
		margin-left:0;
	}
}

/* =====================================================
   phlistサムネイル：クリック可能な見た目
   ===================================================== */
.kc-thumb {
	cursor: pointer;
	transition: opacity 0.2s;
}
.kc-thumb:hover {
	opacity: 0.75;
}
.phlist-note {
	margin-top: 5px;
	width: 100%;
	font-size: 12px;
	color: #888;
}

/* =====================================================
   モーダル
   ===================================================== */
.kc-modal {
	display: none;
	position: fixed;
	z-index: 1000;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.kc-modal.is-open {
	display: flex;
	align-items: center;
	justify-content: center;
}
.kc-modal-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.85);
	cursor: pointer;
}
.kc-modal-inner {
	position: relative;
	z-index: 1;
	max-width: 90vw;
	max-height: 90vh;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.kc-modal-img-wrap img {
	display: block;
	max-width: 85vw;
	max-height: 80vh;
	object-fit: contain;
}
.kc-modal-close {
	position: absolute;
	top: -40px;
	right: -10px;
	background: none;
	border: none;
	color: #fff;
	font-size: 28px;
	cursor: pointer;
	line-height: 1;
	padding: 5px 10px;
}
.kc-modal-close:hover {
	color: #c9a227;
}
.kc-modal-nav {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-top: 15px;
}
.kc-modal-prev,
.kc-modal-next {
	background: none;
	border: none;
	color: #fff;
	font-size: 28px;
	cursor: pointer;
	padding: 5px 10px;
	line-height: 1;
}
.kc-modal-prev:hover,
.kc-modal-next:hover {
	color: #c9a227;
}
.kc-modal-count {
	color: #fff;
	font-size: 14px;
	min-width: 50px;
	text-align: center;
}

/* モーダル表示中はbodyスクロール禁止 */
body.kc-modal-active {
	overflow: hidden;
}

@media screen and (max-width:767px) {
	.kc-modal-img-wrap img {
		max-width: 95vw;
		max-height: 75vh;
	}
	.kc-modal-close {
		top: -35px;
		right: 0;
		font-size: 24px;
	}
	.kc-modal-prev,
	.kc-modal-next {
		font-size: 22px;
	}
}