.outfit {
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
}
.goldenbook {
    font-family: "goldenbook", serif;
    font-weight: 400;
    font-style: normal;
}
.futura {
    font-family: "futura-pt", sans-serif;
    font-weight: 600;
    font-style: normal;
}




/*　Anime
-----------------------------*/
.fade-in {
	opacity: 0;
	transition: all 1s;
    transition-delay: .5s;
}
.fade-in.inview {
    opacity: 1;
}
.fade-in:nth-child(2) {
    transition-delay: .7s;
}
.fade-in:nth-child(3) {
    transition-delay: .9s;
}
.fade-in:nth-child(4) {
    transition-delay: 1.1s;
}

.fade-in_parent > div {
	opacity: 0;
	transition: all 1s;
    transition-delay: .5s;
}
.fade-in_parent.inview > div {
    opacity: 1;
}
.fade-in_parent > div:nth-child(2) {
    transition-delay: .7s;
}
.fade-in_parent > div:nth-child(3) {
    transition-delay: .9s;
}
.fade-in_parent > div:nth-child(4) {
    transition-delay: 1.1s;
}
.fade-in_parent > div:nth-child(5) {
    transition-delay: 1.3s;
}
.fade-in_parent > div:nth-child(6) {
    transition-delay: 1.5s;
}
.fade-in_parent > div:nth-child(7) {
    transition-delay: 1.7s;
}
.fade-in_parent > div:nth-child(8) {
    transition-delay: 1.9s;
}
.fade-in_parent > div:nth-child(9) {
    transition-delay: 2.1s;
}
.fade-in_parent > div:nth-child(10) {
    transition-delay: 2.3s;
}
.fade-in_parent > div:nth-child(11) {
    transition-delay: 2.5s;
}
.fade-in_parent > div:nth-child(12) {
    transition-delay: 2.7s;
}
.fade-in_parent > div:nth-child(13) {
    transition-delay: 2.9s;
}
.fade-in_parent > div:nth-child(14) {
    transition-delay: 3.1s;
}
.fade-in_parent > div:nth-child(15) {
    transition-delay: 3.3s;
}

.down-to-top {
    opacity: 0;
	transform: translateY(20px);
	transition: all 1s;
    transition-delay: .5s;
}
.down-to-top.inview {
    opacity: 1;
	transform: translate(0);
}

.down-to-top_parent .down-to-top_child {
    opacity: 0;
    transform: translateY(20px);
    transition: all 1s;
    transition-delay: .3s;
}
.down-to-top_parent.inview .down-to-top_child {
    opacity: 1;
    transform: translate(0);
}
.down-to-top_parent .down-to-top_child:nth-child(2) {
	transition-delay: .5s;
}
.down-to-top_parent .down-to-top_child:nth-child(3) {
	transition-delay: .7s;
}
.down-to-top_parent .down-to-top_child:nth-child(4) {
	transition-delay: .9s;
}
.down-to-top_parent .down-to-top_child:nth-child(5) {
	transition-delay: 1.1s;
}
.down-to-top_parent .down-to-top_child:nth-child(6) {
	transition-delay: 1.3s;
}
.down-to-top_parent .down-to-top_child:nth-child(7) {
	transition-delay: 1.5s;
}
.down-to-top_parent .down-to-top_child:nth-child(8) {
	transition-delay: 1.7s;
}
.down-to-top_parent .down-to-top_child:nth-child(9) {
	transition-delay: 1.9s;
}
.down-to-top_parent .down-to-top_child:nth-child(10) {
	transition-delay: 2.1s;
}
.down-to-top_parent .down-to-top_child:nth-child(11) {
	transition-delay: 2.3s;
}
.down-to-top_parent .down-to-top_child:nth-child(12) {
	transition-delay: 2.5s;
}
.down-to-top_parent .down-to-top_child:nth-child(13) {
	transition-delay: 2.7s;
}
.down-to-top_parent .down-to-top_child:nth-child(14) {
	transition-delay: 2.9s;
}
.down-to-top_parent .down-to-top_child:nth-child(15) {
	transition-delay: 3.1s;
}



.left-to-right {
    opacity: 0;
	transform: translateX(-20px);
	transition: all 1s;
    transition-delay: .5s;
}
.left-to-right.inview {
    opacity: 1;
	transform: translate(0);
}

.right-to-left_wrap {
    overflow-x: hidden;
}
.right-to-left {
    opacity: 0;
	transform: translateX(20px);
	transition: all 1s;
    transition-delay: .5s;
}
.right-to-left.inview {
	opacity: 1;
	transform: translate(0);
}

.color img {
    filter: grayscale(100%);
    transition: 1s ease-in-out;
}
.add_color img {
    filter:grayscale(0);
}

.blur {
    opacity: 0;
    -moz-transition: -moz-transform 0.5s linear;
    -webkit-transition: -webkit-transform 0.5s linear;
    -o-transition: -o-transform 0.5s linear;
    -ms-transition: -ms-transform 0.5s linear;
    transition: transform 0.5s linear;
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}
.add_blur {
    -webkit-animation-name: imageBlur;
    animation-name: imageBlur;
    opacity: 1;
    transition: .8s;
}
@-webkit-keyframes imageBlur {
    from {
      opacity: 0;
      -webkit-filter: blur(15px);
      -moz-filter: blur(15px);
      -ms-filter: blur(15px);
      -o-filter: blur(15px);
      filter: blur(15px);
    }
    to {
        opacity: 1;
        -webkit-filter: blur(0px);
        -moz-filter: blur(0px);
        -ms-filter: blur(0px);
        -o-filter: blur(0px);
        filter: blur(0px);
    }
}
@keyframes imageBlur {
    from {
        opacity: 0;
        -webkit-filter: blur(15px);
        -moz-filter: blur(15px);
        -ms-filter: blur(15px);
        -o-filter: blur(15px);
        filter: blur(15px);
    }
    to {
        opacity: 1;
        -webkit-filter: blur(0px);
        -moz-filter: blur(0px);
        -ms-filter: blur(0px);
        -o-filter: blur(0px);
        filter: blur(0px);
    }
}

/*モノクロ→カラー*/
.gray-color {
    filter: grayscale(100%);
    transition: .3s;
	transition-delay: 1.3s!important;
}
.gray-color.inview {
    filter:grayscale(0);
}


.pc_only {
    display: none;
}



/*　Anime Delay
-----------------------------*/
.delay_time02 {
    transition-delay: 0.2s;
}
.delay_time04 {
    transition-delay: 0.4s;
}
.delay_time06 {
    transition-delay: 0.6s;
}
.delay_time08 {
    transition-delay: 0.8s;
}
.delay_time10 {
    transition-delay: 1s;
}
.delay_time12 {
    transition-delay: 1.2s;
}

#main_contents {
    line-height: 1.5;
    padding-bottom: 10px;
    padding-top: 80px;
}
#main_contents img {
    vertical-align: bottom;
}
.contents_width {
    width: 100%;
    max-width: 100%;
    font-family: "yu-gothic-pr6n", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Meiryo", sans-serif;
    font-weight: 400;
    letter-spacing: 1px;
}
.main_image {
    width: 100%;
    margin: 0 auto 80px;
    position: relative;
}
.main_image_1 {
    position: sticky;
    top: 80px;
}

.main_logo {
    position: relative;
    z-index: 1;
    padding: 0 0 40vh;
    width: 40%;
    margin: 0 auto;
}


.main_image_text {
    width: 55%;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    text-align: left;
}

.video_section {
    background: url(https://kg-image.jp/contents/campaign/images/f-25sslookbook/back_sp.jpg) no-repeat;
    background-position: bottom;
    background-size: 100%; 
    margin-bottom: 50px;
}
.video_box {
    width: 70%;
    margin: 0 auto 30px;
}
.video_box video {
    width: 100%;
}
.video_text {
    color: #fff;
    padding-bottom: 50px;
}
.video_text_title {
    font-size: 17px;
    margin-bottom: 20px;
}
.video_text_comment {
    font-size: 11px;
}

.image_section {
    margin-bottom: 100px;
    width: 100%;
}
.image_1 {
    width: 50%;
    margin: 0 auto 0 5%;
}
.image_2 {
    width: 60%;
    margin: -10vw 5% 50px auto;
}
.image_3 {
    width: 80%;
    margin: 0 auto 50px 0;
}
.image_4 {
    width: 100%;
    margin: 0 auto 50px;
}
.image_5 {
    width: 50%;
    margin: 0 auto 0 0;
    position: sticky;
    top: 50px;
}
.image_6 {
    width: 50%;
    margin: 0 0 50px auto;
}
.image_7 {
    width: 80%;
    margin: 0 0 50px auto;
}
.image_8 {
    width: 80%;
    margin: 0 auto 50px 5%;
}
.image_9 {
    width: 70%;
    margin: 0 5% 0 auto;
}
.image_10 {
    width: 70%;
    margin: -20vw auto 50px 0;
}
.image_11 {
    width: 100%;
}
.image_12 {
    width: 42%;
    margin: -20vw 7% 10px auto;
}
.image_13 {
    width: 42%;
    margin: 0 1% 50px 0;
}
.image_14 {
    width: 42%;
    margin: 0 0 50px 1%;
}
.image_15 {
    width: 86%;
    margin: 0 auto 50px;
}
.image_16 {
    width: 50%;
    margin: 0 auto 0 0;
    position: sticky;
    top: 50px;
}
.image_17 {
    width: 50%;
    margin: 0 0 50px auto;
}
.image_18 {
    width: 70%;
    margin: 0 auto 0 0;
}
.image_19 {
    width: 70%;
    margin: 0 auto 50px 0;
}
.image_20 {
    width: 100%;
    position: sticky;
    top: 50px;
}
.image_21 {
    width: 80%;
    margin: 0 auto 50px;
    padding: 0 0 15vw;
    position: relative;
    z-index: 100;
}
.image_22 {
    width: 60%;
    margin: 0 5% 0 auto;
}
.image_23 {
    width: 60%;
    margin: -10vw auto 0 5%;
}
.flex_box {
    display: flex;
    justify-content: center;
    align-items: center;
}

.bg_green {
    position: relative;
}
.bg_green:after {
    display: block;
    content: "";
    height: 200%;
    background: #dddece;
    z-index: -1;
    position: absolute;
    width: 100%;
    left: 0;
    top: -30%;
}
.bg_blue {
    position: relative;
}
.bg_blue:after {
    display: block;
    content: "";
    height: 140%;
    background: #b8cbd1;
    z-index: -1;
    position: absolute;
    width: 100%;
    left: 0;
    top: -20%;
}



.loop_slider_section {
    width: 100%;
    margin: 0 auto 100px;
}


.feature_content {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
}


.bottom_logo {
    width: 30%;
    margin: 0 auto 50px;
}



.slick-prev, .slick-next {
    width: 25px;
    height: 50px;
    background-repeat: no-repeat;
    background-size: 60%;
    background-position: center center;
    border-radius: 0;
}
.slick-prev {
    left: 5px;
    background-image: url(https://kg-image.jp/contents/campaign/images/f-24awlookbook/arrow_01.png);
}
.slick-next {
    right: 5px;
    background-image: url(https://kg-image.jp/contents/campaign/images/f-24awlookbook/arrow_02.png);
}
.slick-prev:before, .slick-next:before {
    content: none;
}
.slick-dots {
    bottom: 10px;
    text-align: right;
    height: 8px;
    width: 98%;
    margin-right: 2%;
}
.slick-dots li {
    position: relative;
    display: inline-block;
    width: 8px;
    height: 8px;
    margin: 0 3px;
    padding: 0;
    cursor: pointer;
    vertical-align: top;
}
.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 8px;
    height: 8px;
    padding: 5px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
    padding: 0;
}
.slick-dots li.slick-active button:before {
    opacity: 1;
    background-color: #000;
}
.slick-dots li button:before {
    font-family: 'slick';
    font-size: 6px;
    line-height: 10px;
    position: absolute;
    top: 0;
    left: 0;
    width: 8px;
    height: 8px;
    content: '';
    text-align: center;
    opacity: 1;
    background-color: transparent;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    border-radius: 50%;
    border: 1px solid #000;
    box-sizing: border-box;
}
.slick-dotted.slick-slider {
    margin-bottom: 0px;
}



.popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding-bottom: 12px;
    z-index: 10000;
    width: 85%;
}
.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
}
.close-popup {
    position: absolute;
    right: 0;
    top: -30px;
}
.batten {
    display: block;
    width: 20px;   
    height: 20px;
    position: relative;
}
.batten::before,
.batten::after {
    content: "";
    width: 100%;
    height: 1px; 
    display: inline-block;
    background: #aaa;
    position: absolute;
    top: 50%;
    left: 0;
}

.batten::before {
    transform: rotate(45deg);
}
.batten::after {
    transform: rotate(-45deg);
}

.popup_inner_image {
    margin-bottom: 12px;
}
.popup_link {
    text-align: left;
    padding: 0 15px;
    font-size: 12px;
}
.popup_link li a small {
    margin: 0 5px;
}
.popup_link li a span {
    border-bottom: .5px solid #000;
}


@media screen and (min-width: 480px) {
    .sp_only {
        display: none;
    }
    .pc_only {
        display: block;
    }
    #main_contents {
        padding-top: 130px;
    }
    .main_image_1 {
        position: sticky;
        top: 130px;
    }
    .main_logo {
        padding: 0 0 55vh;
        width: 10%;
    }
    .video_section {
        background: url(https://kg-image.jp/contents/campaign/images/f-25sslookbook/back_pc.jpg) no-repeat;
        background-position: center 15vw;
        background-size: 100%;
        margin-bottom: 50px;
    }
    .video_box {
        max-width: 500px;
        margin: 0 auto 30px;
    }
	
	.video_text {
    color: #fff;
    padding-bottom: 5%;
}
	
    .video_text_title {
        font-size: 24px;
        margin-bottom: 30px;
    }
    .video_text_comment {
        font-size: 14px;
    }
    .image_section {
        max-width: 100%;
        margin: 0 auto 150px;
    }
    .image_1 {
        width: 22%;
        margin: 10% auto 0 22%;
    }
    .image_2 {
        width: 30%;
        margin: -20% 22% 50px auto;
    }
    .image_3 {
        width: 30%;
        margin: 0 0 100px 22%;
    }
    .image_4 {
        width: 35%;
        margin: 0 auto 100px;
    }
    .image_6 {
        margin: 0 0 100px auto;
    }
    .image_7 {
        width: 28%;
        margin: 0 20% 100px auto;
    }
    .image_8 {
        width: 26%;
        margin: 0 auto 100px 22%;
    }
    .image_9 {
        width: 22%;
        margin: 0 30% 0 auto;
    }
    .image_10 {
        width: 25%;
        margin: -18vw auto 100px 27%;
    }
    .image_11 {
        width: 38%;
        margin: 0 auto;
    }
    .image_12 {
        width: 15%;
        margin: -20vw 34.5% 20px auto;
    }
    .image_13 {
        width: 15%;
        margin: 0 0.5% 100px 0;
    }
    .image_14 {
        width: 15%;
        margin: 0 0 100px 0.5%;
    }
    .image_15 {
        width: 35%;
        margin: 0 auto 100px;
    }
    .image_17 {
        margin: 0 0 100px auto;
    }
    .image_18 {
        width: 30%;
        margin: 0 auto 0 20%;
    }
    .image_19 {
        width: 30%;
        margin: 0 auto 100px 20%;
    }
    .image_21 {
        width: 80%;
        margin: 0 auto 100px;
        padding: 0 0 100px;
        position: relative;
        z-index: 100;
    }
    .image_22 {
        width: 25%;
        margin: 0 20% 0 auto;
    }
    .image_23 {
        width: 25%;
        margin: -10vw auto 0 25%;
    }
    .image_2column {
        width: 40%;
        margin: 0 auto;
    }
    .right-to-left_wrap {
        overflow-x: visible;
    }
    .bottom_logo {
        width: 30%;
        max-width: 200px;
        margin: 0 auto 150px;
    }
    .popup {
        max-width: 500px;
		padding-bottom: 15px;
    }
	.popup_link {
    text-align: left;
    padding: 0 20px;
    font-size: 14px;
}
	
	.popup_inner_image {
    margin-bottom: 15px;
}
}