.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: 400;
    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_section {
    margin: 0 auto 80px;
}
.main_image {
    width: 100%;
}
.main_image img {
    width: 100%;
}

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

.main_text_section {
    margin: 0 auto 80px;
}

.image_section {
    background: #f2f2f2;
    padding: 50px 0;
    margin-bottom: 50px;
}
.image_section_title {
    width: 76%;
    margin: 0 auto 30px;
    max-width: 500px;
}

.image_section_item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    width: 96%;
    margin: 0 auto;
    max-width: 700px;
}
.item {
    width: 48%;
    margin: 0 auto 10px;
}
.img_link {
    position: relative;
}
.icon_open_btn {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 20px;
    z-index: 1;
}

.hover_image {
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}
.hover_image.on {
    opacity: 1;
    visibility: visible;
}





.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: #fff;
}
.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 #fff;
    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: 10px;
    z-index: 10000;
    width: 80%;
}
.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: 5px;
    top: 5px;
}
.batten {
    display: block;
    width: 20px;   
    height: 20px;
    position: relative;
}
.batten::before,
.batten::after {
    content: "";
    width: 100%;
    height: 1px; 
    display: inline-block;
    background: black;
    position: absolute;
    top: 50%;
    left: 0;
}

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

.popup_inner_image {
    margin-bottom: 10px!important;
}
.popup_inner_name {
    font-size: 16px;
    text-align: center;
    margin-bottom: 7px;
    font-weight: 600;
    letter-spacing: 2px;
}
.popup_link {
    width: 70%;
    margin: 0 auto;
    font-size: 13px;
}
.popup_link li {
    margin-bottom: 5px;
	text-align: left;
}
.popup_link li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.popup_link li a small {
    margin: 0 5px;
}
.popup_link li a span.btn {
    color: #fff;
    background: #000;
    padding: 0px 7px;
    font-size: 12px;
    border-radius: 0!important;
}



.bottom_section {
    margin-bottom: 50px;
}
.bottom_section_bn {
    width: 70%;
    max-width: 400px;
    margin: 0 auto;
}


@media screen and (min-width: 480px) {
    .sp_only {
        display: none;
    }
    .pc_only {
        display: block;
    }
    #main_contents {
        padding-top: 130px;
    }
    
    .bottom_logo {
        width: 30%;
        max-width: 200px;
        margin: 0 auto 150px;
    }
    .popup {
        max-width: 450px;
    }
	.popup_link {
    width: 70%;
    margin: 0 auto;
    font-size: 15px;
}
	
	.icon_open_btn {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 25px;
    z-index: 1;
}
	.main_image img {
    width: 60%;
		margin: 0 auto;
}
}