@charset "UTF-8";
/* CSS Document */
/*tab
.tab-group {
	display: flex;
	justify-content: center;
	position: relative;
}
.tab-group::before {
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 100%;
	height: 2px;
	content: "";
	background: #a0d8ef;
	pointer-events: none;
}
.tab {
	flex-grow: 1;
	padding: 10px 5px;
	list-style: none;
	text-align: center;
	cursor: pointer;
	color: #FFF;
	background: #a0d8ef;
	border: 2px solid transparent;
	border-bottom: none !important;
	margin: 0 7px;
}
.tab-group button {
	width: 100%;
	max-width: 330px;
	white-space: nowrap;
	position: relative;
	bottom: -2px;
}
.panel-group {
	height: 100%;
	padding-top: 50px;
	background: #fff;
}
.panel {
	display: none;
}
.tab.is-active {
	background: #fff;
	color: #a0d8ef;
	border: 2px solid #a0d8ef;
	transition: all 0.2s ease-out;
}
.panel.is-show {
	display: block;
}
@media(max-width:750px) {
	.tab {
		margin: 0 3px;
	}
	.panel-group {
		padding-top: 40px;
	}
}
@media(max-width:550px) {
	.tab {
		padding: 7px 3px;
	}
	.tab-group {
		padding: 0 7px;
	}
	.panel-group {
		padding-top: 33px;
	}
	.tab-group button {
		font-size: 0.87rem;
	}
}
*/
/*===メイン用==============================*/
.c_maintitle {
	margin-bottom: 65px;
}
@media (max-width: 870px) {
	.c_maintitle {
		margin-bottom: 35px;
	}
}
.c_flexbox {
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
}
.child .stitle {
	font-size: clamp(1.1rem, 0.9125rem + 0.6vw, 1.25rem);
	padding-top: 3px;
}
.child p {
	font-size: 90%;
	margin-bottom: 0;
}
.child p span::after {
	content: '/';
}
.child p span:last-child::after {
	content: none;
}
.child {
	width: 31%;
	margin: 0 1% 25px;
}
.child:last-child {
	margin-bottom: 0 !important;
}
.child_img img {
	object-fit: cover;
	width: 100%;
	height: 250px;
}
@media (max-width: 1180px) {
	.child_img img {
		height: 20vw;
	}
}
@media (max-width: 870px) {
	.child_img img {
		height: 27vw;
	}
}
@media (max-width: 550px) {
	.child_img img {
		height: 55vw;
	}
}
.c_slider .slick-slide img {
	object-fit: contain !important;
}
.child_img, .child_hover_effect {
	overflow: hidden;
	position: relative;
}
.child_img::before {
	content: "VIEW MORE";
	position: absolute;
	color: #fff;
	font-size: 1.7rem;
	text-shadow: 0px 0.3px 3px rgb(0 0 0 / 35%), 0px -0.3px 3px rgb(0 0 0 / 25%);
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	z-index: 2;
	font-weight: 700;
	white-space: nowrap;
	transition: .6s;
	opacity: 0;
}
.child_img::after {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	content: '';
	z-index: 0;
	transition: .6s;
}
.child_hover_effect::before, .child_hover_effect::after {
	position: absolute;
	top: 20px;
	right: 20px;
	bottom: 20px;
	left: 20px;
	content: '';
	pointer-events: none;
	z-index: 1;
	opacity: 0;
	transition: .6s;
}
.child_hover_effect::before {
	border-top: 2px solid #fff;
	border-bottom: 2px solid #fff;
}
.child_hover_effect::after {
	border-right: 2px solid #fff;
	border-left: 2px solid #fff;
}
.child .stitle {
	margin-bottom: 7px;
}
.child a {
	color: #333;
}
.child a:hover img {
	transform: scale(1.05, 1.05);
	transition: .6s;
}
.child a:hover .child_img::before {
	opacity: 1;
}
.child a:hover .child_img::after {
	background: rgba(0, 0, 0, 0.65);
}
.child a:hover .child_hover_effect::before, .child a:hover .child_hover_effect::after {
	opacity: 1;
}
@media (max-width: 870px) {
	.child {
		width: 48%;
	}
}
@media (max-width: 550px) {
	.child {
		width: 100%;
		margin: 0 0 25px;
	}
}
/*===詳細ページ用==============================*/
.custom_detail .c_maintitle {
	margin-bottom: 55px;
}
.custom_detail .stitle {
	max-width: 1100px;
	margin: auto;
	margin-bottom: 40px;
	font-size: clamp(1.1rem, 0.6rem + 1.6vw, 1.5rem);
}
.custom_detail .stitle::after {
	content: '';
	position: absolute;
	bottom: -1px;
	left: 0;
	width: 95px;
	height: 1px;
	background: #a0d8ef;
}
@media (max-width: 1005px) {
	.custom_detail .c_maintitle {
		margin-bottom: 60px;
	}
}
@media (max-width: 550px) {
	.custom_detail .c_maintitle {
		margin-bottom: 27px;
	}
	.custom_detail .stitle {
		margin-bottom: 25px;
	}
}
/*slide*/
.custom_detail .container {
	width: 90%;
	margin: auto;
	margin-bottom: 95px;
}
.c_slider .slick-slide {
	position: relative;
}
.c_slider .slick-slide::before {
	content: '';
	display: block;
	padding-top: 57%; /*高さの比率*/
}
.c_slider .slick-slide img {
	margin: auto;
	display: block;
	object-fit: cover;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	transition: all 0.3s ease;
}
.c_slider {
	margin-bottom: 2%;
}
/*thumbnail slide*/
.thumbnail .slick-slide {
	position: relative;
}
.thumbnail .slick-slide::before {
	content: '';
	display: block;
	padding-top: 57%; /*高さの比率*/
}
.thumbnail .slick-slide img {
	margin: auto;
	display: block;
	object-fit: cover;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	transition: all 0.3s ease;
}
.thumbnail-img {
	margin: 0 0.2%;
}
.thumbnail .slick-prev:before, .thumbnail .slick-next:before {
	color: #a0d8ef;
	opacity: 1;
}
@media (max-width: 550px) {
	.custom_detail .container {
		margin-bottom: 65px;
	}
	.thumbnail .slick-prev:before, .thumbnail .slick-next:before {
		font-size: 0.95rem;
	}
}
/*table*/
.custom_detail .on_table {
	font-size: 90%;
}
.custom_detail .on_table th {
	padding-left: 8px;
	text-align: left;
}