@charset "utf-8";

/*　adobe Fonts
-----------------------------*/
.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;
}
.ivyPresto-display-thin {
    font-family: "ivypresto-display", serif;
    font-weight: 100;
    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%;
    max-width: 800px;
    margin: 0 auto;
}
.main_image img {
    width: 100%;
}
.main_video_section {
    margin: 0 auto 80px;
}
.main_video {
    width: 60%;
    max-width: 400px;
    margin: 0 auto;
}
.main_video video {
    width: 100%;
}
.main_text_section {
    margin: 0 auto 130px;
}
.main_text {
    width: 60%;
    max-width: 600px;
    margin: 0 auto;
    font-size: 3vw;
}


.mainitem_text {
    width: 90%;
    max-width: 600px;
    margin: 0 auto 10px;
    font-size: 3vw;
}

.item_section {
    margin: 0 auto 60px;
}
.item_wrap {
    width: 100%;
    padding-bottom: 30px;
    position: relative;
    margin-bottom: 70px;
}
.item_wrap:after {
    content: "";
    display: block;
    width: 100%;
    height: 50vw;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
    background: #eee;
}
.item {
    width: 80%;
    max-width: 600px;
    margin: 0 auto;
}
.item_title {
    font-size: 7vw;
    margin-bottom: 20px;
}
.item_image {
    margin-bottom: 20px;
}
.item_link {
    text-align: center;
}
.item_link a {
    display: block;
    margin-bottom: 5px;
    font-size: 3vw;
}
.staff_title {
    font-size: 7vw;
    margin-bottom: 20px;
}
.staff_title span {
    font-size: 3vw;
    display: block;
}
.staff_week {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    width: 94%;
    max-width: 600px;
    margin: 0 auto;
}
.staff_day {
    width: 46%;
    margin: 0 1% 50px;
}
.staff_day_title {
    font-size: 5vw;
    margin-bottom: 10px;
}
.staff_day_image {
    margin-bottom: 20px;
}
.staff_day_comment {
    font-size: 2.8vw;
    margin-bottom: 15px;
}
.staff_day_link a {
    display: block;
    margin-bottom: 5px;
    font-size: 2.5vw;
}





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

.sp {
display: block;
 }
.pc {
display: none;
 }



@media screen and (min-width: 480px) {
    .sp_only {
        display: none;
    }
    .pc_only {
        display: block;
    }
    #main_contents {
        padding-top: 130px;
    }
	.item_section {
    margin: 0 auto 80px;
}
	
	.staff_week {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    width: 86%;
    max-width: 600px;
    margin: 0 auto;
}
	
	
	.bottom_section {
    margin-bottom: 50px;
}
	
    .item_wrap:after {
        height: 300px;
    }
    .main_text {
        font-size: 14px;
    }
	    .mainitem_text {
    width: 60%;
    max-width: 600px;
        font-size: 14px;
			margin-bottom: 20px;
    }
	.item_wrap:after {
    content: "";
    display: block;
    width: 100%;
    height: 20vw;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
    background: #eee;
}
	
	.main_video_section {
    margin: 0 auto 50px;
}
	
    .item_title {
        font-size: 36px;
    }
    .item_link a {
        font-size: 14px;
    }
    .staff_title {
        font-size: 36px;
    }
    .staff_title span {
        font-size: 16px;
    }
    .staff_day_title {
        font-size: 28px;
    }
    .staff_day_comment {
        font-size: 13px;
    }
    .staff_day_link a {
        font-size: 12px;
    }
    
	
	.sp {
display: none;
 }
.pc {
display: block;
 }
	
	

	
}