@charset "utf-8";
/* CSS Document */

.detail_edit h1,
.detail_edit h2{
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    text-align: left;
    width: 100%;
    border-bottom: 1px solid #dddddd;
    padding-bottom: 15px;
    margin-bottom: 35px;
}
.detail_edit h3{
    font-size: 20px;
    font-weight: 700;
}
.detail_edit h4{
    font-size: 18px;
    font-weight: 700;
}
.detail_edit h5{
    font-size: 17px;
    font-weight: 700;
}
.detail_edit h6{
    font-size: 16px;
    font-weight: 700;
}

.aligncenter{
	display: block;
	margin-inline: auto;
}
.alignleft{
	display: block;
	margin-left: 0;
	margin-right: auto;
}
.alignright{
	display: block;
	margin-left: auto;
	margin-right: 0;
}


/* ------------------------------------------------------------------------ */

/* swiper(common)

/* ------------------------------------------------------------------------ */
section .swiper-wrap{
	max-width: 86.6%;
	margin: 0 auto;
}
section .swiper-wrap .swiper-slide{
	position: relative;
	text-align: center;
	max-width: 314px;
	width: 100%;
	display: flex;
	flex-direction: column;
	height: auto;
}
section .swiper-wrap .swiper-slide a{
	position: absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
}
section .swiper-wrap .swiper-slide a:hover{
	text-decoration: none;
}
section .swiper-wrap .swiper-slide .swiper-title{
    flex-grow: 1;
}
section .swiper-wrap .swiper-slide .swiper-title figure img{
	transition: 0.5s all;
}
section .swiper-wrap .swiper-slide:hover .swiper-title figure img{
    -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
	transition: 0.5s all;
}

section .swiper-wrap .swiper-slide p.item_title{
	text-align: left;
	flex-grow: 1;
}
section .swiper-wrap .swiper-slide figure{
	margin-bottom: 15px;
	border: 1px solid #fff;
	border-radius: 5px;
	overflow: hidden;
}
section .swiper-wrap .swiper-slide figure img{
    width: 100%;
    height: 200px;
    object-fit: cover;
}
section .swiper-wrap .swiper-slide .swiper-link{
	padding: 20px 0 30px;
	text-align: right;
	border-bottom: 1px solid #fff;
}
section .swiper-wrap .swiper-slide .swiper-link p{
	position: relative;
	padding-right: 55px;
	color: #fff;
}
section .swiper-wrap .swiper-slide .swiper-link p:after{
	content: '';
	display: inline-block;
	width: 48px;
	height: 48px;
	background-image: url('/common/img/icon/img_arrow_next.png');
	background-size: contain;
	vertical-align: middle;
	position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}
section .swiper-button-prev,
section .swiper-button-next {
	height: 48px;
	width: 48px;
    top: 32%;
}
section .swiper-button-prev {
	left: 0;
}
section .swiper-button-next {
	right: 0;
}
section .swiper-button-prev:after,
section .swiper-button-next:after {
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	height: 48px;
	margin: auto;
	width: 48px;
}
section .swiper-button-prev:after {
	background-image: url('/common/img/icon/img_arrow_prev.png');
}
section .swiper-button-next:after {
	background-image: url('/common/img/icon/img_arrow_next.png');
}
section .swiper-slide img {
	height: auto;
	width: 100%;
}

section .swiper-wrap .swiper-slide.slide_last{
	border: 1px solid #fff;
	box-sizing: border-box;
	transition: 0.3s;
	border-radius: 5px;
}
section .swiper-wrap .swiper-slide.slide_last:hover{
	background-color: #fff;
}
section .swiper-wrap .swiper-slide.slide_last .swiper-link{
	border: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
	padding: 0;
}
section .swiper-wrap .swiper-slide.slide_last .swiper-link p{
	padding: 0;
	font-size: 20px;
	transition: 0.3s;
	font-weight: 700;
}
section .swiper-wrap .swiper-slide.slide_last:hover .swiper-link p{
	color: #333;
}
section .swiper-wrap .swiper-slide.slide_last .swiper-link p:after{
	width: 10px;
	height: 16px;
	background-image: url('/common/img/icon/img_arrow_right.png');
	top: 55%;
	right: -20px;
	transition: 0.3s;
}
section .swiper-wrap .swiper-slide.slide_last:hover .swiper-link p:after{
	background-image: url('/common/img/icon/img_arrow_right_hover.png');
}

@media screen and (max-width: 1200px){
	section .swiper-button-prev {
		left: 20px;
	}
	section .swiper-button-next {
		right: 20px;
	}
}

@media screen and (max-width: 768px){
	section .swiper-wrap {
		max-width: 100%;
		margin-top: 40px;
	}
	section .swiper-wrap .swiper-slide {
		max-width: none;
	}

	section .swiper-button-prev,
	section .swiper-button-next {
		top: -75px;
	}
	section .swiper-button-prev {
		left: auto;
		right: 80px;
	}
	section .swiper-button-next {
		right: 20px;
	}
	section .swiper-button-prev:after {
		background-image: url('/common/img/icon/img_arrow_prev_sp.png');
	}
	section .swiper-button-next:after {
		background-image: url('/common/img/icon/img_arrow_next_sp.png');
	}
}