@charset "UTF-8";
/* media query : mobile */
@media screen and (max-width:768px) {
}
/* media query : desktop */
@media screen and (min-width:769px) {
}
/* media query : tablet */
@media screen and (min-width:769px) and (max-width:1024px){
}
/* common
--------------------------------------------------------------*/

/* single-mv
--------------------------------------------------------------*/
.single-mv__img {
    display: block;
    line-height: 0;
    width: 100%;
    margin-left: 1.5rem;
}
.single-mv__im:before {
    content: "";
    display: block;
    padding-top: 100%;
}
.single-mv__im img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}
.single-mv__txt {
    display: flex;
    align-items: flex-end;
    margin-left: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 4rem;
    padding-bottom: 1rem;
    color: #FFF ;
    line-height: 0.8;
    border-bottom: 1px solid #FFF;
}
.single-mv__title {
    font-size: 2rem;
    margin-right: 0.5rem;
}
/* single-info
--------------------------------------------------------------*/
.single-info {
    margin-bottom: 4rem;
}
.single-info__title {
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.5;
}
/* single-contents
--------------------------------------------------------------*/
.single-edit h2 {
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 2rem;
    margin-top: 4rem;
}
.single-edit h3 {
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 1rem;
}
.single-edit h4{
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 1rem;
}
.single-edit p {
    margin-bottom: 1rem;
}
/* single-share
--------------------------------------------------------------*/
.section-single-share:before {
    display: none;
}
/* single-nav
--------------------------------------------------------------*/
.section-single-nav:before {
    display: none;
}
.single-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}
.single-nav a {
    color: #FFF;
}

.single-nav__link:before {
    content: "";
    display: block;
    width: 3rem;
    height: 3rem;
    align-items: center;
}
.single-nav__link {
    display: flex;
    align-items: center;
}
.single-nav__prev:before {
    background: url(../img/icon-control-left.svg) no-repeat center / contain;
}
.single-nav__next {
    flex-direction: row-reverse;
}
.single-nav__next:before {
    background: url(../img/icon-control-right.svg) no-repeat center / contain;
}
.single-nav__list {

}

/* single-related
--------------------------------------------------------------*/
.single-related__list {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}
.single-related__img {
    display: block;
    line-height: 0;
    width: 100%;
}
.single-related__img:before {
    content: "";
    display: block;
    padding-top: 100%;
}
.single-related__img img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}
.single-related__txt {
    margin-top: -2rem;
}
.single-related__slogan {
    font-size: 1.7rem;
    line-height: 1.7;
}
.single-related__slogan span {
    background: #FFF;
    color: #000;
}
a.single-related__link {
    display: flex;
    align-items: flex-end;
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    color: #FFF ;
    line-height: 0.8;
    border-bottom: 1px solid #FFF;
}
a.single-related__link:before {
    position: absolute;
    content: "";
    display: block;
    width: 3rem;
    height: 3rem;
    right: 0;
    top: calc(50% - 1.4rem);
    background: #231815;
    border: 1px solid #FFF;
}
a.single-related__link:after {
    position: absolute;
    content: "";
    display: block;
    width: 0.8rem;
    height: 0.8rem;
	right: 1.1rem;
    top: calc(50% - 0.2rem);
	background: url(../img/icon-arrow-right-wht.svg) no-repeat center/contain;
}
.single-related__title {
    font-size: 2rem;
    margin-right: 0.5rem;
}
/* single-slide
--------------------------------------------------------------*/
.single-slide {
    padding-top: 2rem;
}
.single-slide li {

}
.single-slide .slick-arrow {
    width: 3rem;
    height: 3rem;
    z-index: 1;
    top: 0rem;
}
.single-slide .slick-arrow:before {
    content: "";
    display: block;
    width: 3rem;
    height: 3rem;
    opacity: 1;
}
.single-slide .slick-prev {
    left: auto;
}
.single-slide .slick-prev:before {
    background: url(../img/icon-control-left.svg) no-repeat center / contain;
}
.single-slide .slick-next:before {
    background: url(../img/icon-control-right.svg) no-repeat center / contain;
}
.single-slide .slick-dots li {
    background: none;
}
.single-slide .slick-track {
    display: flex;
}
.single-slide .slick-slide {
    height: auto;
}
/* media query : mobile */
@media screen and (max-width:768px) {
     .single-slide .slick-prev {
        right: 2.5rem;
    }
    .single-slide .slick-next {
        right: -0.5rem;
    }
}
/* media query : desktop */
@media screen and (min-width:769px) {
    .single-slide {
        margin-left: -2rem;
        width: calc(100% + 4rem);
    }
    .single-slide li {
        margin-left: 2rem;
        margin-right: 2rem;
    }
    .single-slide .slick-prev {
        right: 4.3rem;
    }
    .single-slide .slick-next {
        right: 1.3rem;
    }
}