@charset "UTF-8";

/*----------------------------------------------------
	☆PC
----------------------------------------------------*/

/*--- mv --*/
#mv{
    width: calc(100% - 40px - 40px);
    height: 75vh;
    min-height: 600px;
    margin: 40px auto 0;
    position: relative;
}
#mv .mvInner{
    background: #ffbb33;
    border: 2px solid #000;
    border-radius: 30px;
    padding: 10px;
    text-align: center;
    height: 100%;
    position: relative;
}
#mv .mvInner .inner{
    position: absolute;
    left: 12px;
    top: 12px;
    border: 2px solid #000;
    border-radius: 20px;
    background: url("../images/crosstalk/mv.jpg") center top / cover no-repeat;
    height: calc(100% - 24px);
    width: calc(100% - 24px);
    z-index: 1;
}
#mv .deco{
    position: absolute;
    z-index: 2;
}
#mv .deco01{
    width: 270px;
    left: -30px;
    top: 20%;
}
#mv .deco02{
    width: 160px;
    left: 9%;
    bottom: -30px;
}
#mv .deco03{
    width: 230px;
    left: 80%;
    top: 8%;
}
#mv .deco04{
    width: 320px;
    right: 30px;
    bottom: -60px;
}

/*--- member --*/
#contents .member ul{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: -20px;
}
#contents .member ul li{
    max-width: 300px;
    margin: 0 25px 20px;
    text-align: center;
}
#contents .member ul li .image{
    max-width: 150px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 15px;
}
#contents .member ul li p{
    line-height: 1.2;
    font-weight: bold;
}#contents .member ul li:nth-child(1) p{
    color: #8f5ae1;
}
#contents .member ul li:nth-child(2) p{
    color: #07a587;
}
#contents .member ul li:nth-child(3) p{
    color: #ff6695;
}
#contents .member ul li:nth-child(4) p{
    color: #e9651f;
}
#contents .member ul li .position{
    font-size: 12px;
    margin-bottom: 8px;
}
#contents .member ul li .name{
    font-size: 20px;
    margin-bottom: 8px;
}
#contents .member ul li p.year{
    opacity: 0.5;
    font-size: 12px;
    margin-bottom: 5px;
    color: #000;
}
#contents .member ul li p.exp{
    font-size: 12px;
    color: #000;
}



/*--- talk --*/
#contents .talk{
    position: relative;
}
#contents .talk:nth-of-type(even)::before{
    content: "";
    display: block;
    width: 90vw;
    height: calc(100% + 120px);
    border-radius: 0 50px 50px 0;
    background: #00a550;
    z-index: -1;
    left: 50%;
    top: 225px;
    transform: translate(-50vw,0);
    position: absolute;
}

#contents .talk .image{
    background-position: center center;
    background-size: cover;
    border-radius: 50px;
    height: 450px;
    max-width: 1200px;
    margin: 0 auto;
}
#contents .talk01 .image{
    background-image: url("../images/crosstalk/img_01.jpg");
}
#contents .talk02 .image{
    background-image: url("../images/crosstalk/img_03.jpg");
}
#contents .talk03 .image{
    background-image: url("../images/crosstalk/img_02.jpg");
}
#contents .talk04 .image{
    background-image: url("../images/crosstalk/img_04.jpg");
}
#contents .talk05 .image{
    background-image: url("../images/crosstalk/img_05.jpg");
}
#contents .talk06 .image{
    background-image: url("../images/crosstalk/img_06.jpg");
}
#contents .talk07 .image{
    background-image: url("../images/crosstalk/img_07.jpg");
}
#contents .talk08 .image{
    background-image: url("../images/crosstalk/img_08.jpg");
}

#contents .talk dl{
    display: flex;
    max-width: 745px;
    width: 85%;
    margin: 0 auto;
    justify-content: space-between;
}
#contents .talk dl + dl{
    margin-top: 40px;
}
#contents .talk dl:last-of-type{
    margin-bottom: 120px;
}
#contents .talk dl:nth-of-type(2n){
    flex-direction: row-reverse;
}
#contents .talk dl dt{
    width: calc((120 / 745) * 100%);
    font-size: 14px;
    text-align: center;
    line-height: 1.2;
    transform: scale(0);
    transition: all 300ms cubic-bezier(0.32, 0.08, 0.24, 1);
	flex-shrink: 0;
}
#contents .talk:nth-of-type(even) dl dt{
    color: #fff;
}
#contents .talk dl dt img{
    display: block;
    margin-bottom: 10px;
}

#contents .talk dl dd{
    width: calc((600 / 745) * 100%);
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 5px 5px 8px rgba(0,0,0,0.2);
    position: relative;
    
    transform: translate(0, 15px);
    opacity: 0;
    transition: all 300ms cubic-bezier(0.32, 0.08, 0.24, 1);
}

#contents .talk dl dd::before{
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-right: 11px solid #fff;
    border-left: 0;
    
    position: absolute;
    left: 0;
    top: 0;
    transform: translate(-100%,60px);
}
#contents .talk dl:nth-of-type(2n) dd::before{
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: 11px solid #ffffff;
    border-right: 0;
    
    left: auto;
    right: 0;
    transform: translate(100%,60px);
}

#contents .talk .notice{
    padding: 60px 30px;
}

#contents .talk .deco{
    position: absolute;
    left: 50%;
    top: 400px;
}

#contents .talk .deco01{
    width: 196px;
    transform: translate(-600px);
}
#contents .talk .deco02{
    width: 236px;
    transform: translate(390px);
}
#contents .talk .deco03{
    width: 150px;
    transform: translate(-600px);
}
#contents .talk .deco04{
    width: 250px;
    transform: translate(390px);
}
#contents .talk .deco05{
    width: 210px;
    transform: translate(-600px);
}
#contents .talk .deco06{
    width: 170px;
    transform: translate(390px);
}
#contents .talk .deco07{
    width: 216px;
    transform: translate(-600px);
}


/*----------------------------------------------------
	☆ANIMATION
----------------------------------------------------*/

#mv .mvInner{
    clip-path: polygon(50% 0, 50% 0, 50% 100%, 50% 100%);
    animation: mv 800ms ease forwards;
}

@keyframes mv{
    0%{ clip-path: polygon(50% 0, 50% 0, 50% 100%, 50% 100%); }
    100%{  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);}
}

#mv .deco{
    animation: chara 400ms ease forwards;
    transform: scale(0);
    opacity: 0;
}

@keyframes chara{
    0%{ transform: scale(0); opacity: 0;}
    100%{  transform: scale(1); opacity: 1;}
}

#mv .deco01{ animation-delay: 0.6s !important;}
#mv .deco02{ animation-delay: 0.8s !important;}
#mv .deco03{ animation-delay: 1.0s !important;}
#mv .deco04{ animation-delay: 1.2s !important;}

#contents .talk dl.in dt{
    transform: scale(1);
}
#contents .talk dl.in dd{
    transform: translate(0, 0);
    opacity: 1;
}

#contents .member ul li,
#contents .talk .deco img{
    transform: scale(0);
    opacity: 0;
}
#contents .member ul.in li,
#contents .talk.in .deco img{
    animation: chara 400ms ease forwards;
}
#contents .member ul.in li:nth-of-type(2){ animation-delay: 0.2s !important;}
#contents .member ul.in li:nth-of-type(3){ animation-delay: 0.4s !important;}
#contents .member ul.in li:nth-of-type(4){ animation-delay: 0.6s !important;}

#contents .talk.in .deco img{
    animation-delay: 0.4s;
}

#contents .talk .image{clip-path: polygon(50% 0, 50% 0, 50% 100%, 50% 100%);}
#contents .talk.in .image{
    animation: mv 500ms ease forwards;    
}


/*----------------------------------------------------
	☆901以上　PCのみ & HOVER
----------------------------------------------------*/

@media screen and (min-width:901px) {
}

/*----------------------------------------------------
	☆高さが900px以下
----------------------------------------------------*/

@media screen and (max-height:900px) {
    
    #mv .deco02 {
        width: 140px;
    }
    #mv .deco03{
        width: 210px;
    }
    #mv .deco04 {
        width: 220px;
        bottom: -80px;
    }
}

/*----------------------------------------------------
	☆高さが700px以下
----------------------------------------------------*/

@media screen and (max-height:700px) {
    
    #mv .deco01{
        width: 240px;
    }
    #mv .deco02{
        width: 130px;
    }
    #mv .deco04{
        width: 220px;
    }
}

/*----------------------------------------------------
	☆UNDER 1200
----------------------------------------------------*/

@media screen and (max-width:1200px) {
    
    #mv {
        height: 600px;
    }
    #mv .deco01{
        width: 20%;
        min-width: 120px;
        top: 30%;
    }
    #mv .deco02{
        width: 12%;
        min-width: 90px;
    }
    #mv .deco03 {
        width: 17%;
        left: 84%;
        min-width: 120px;
        bottom: max(29vw, 300px);
        top: auto;
    }
    #mv .deco04{
        width: 20%;
        right: -1%;
        min-width: 120px;
    }
    
    
    
    #contents .talk .deco01 {
        width: 136px;
        transform: translate(0, 0);
        left: 4%;
        top: calc(50vw - 200px);
    }
    #contents .talk .deco02 {
        width: 149px;
        transform: translate(0);
        right: 28px;
        left: auto;
        top: calc(50vw - 200px);
    }
    #contents .talk .deco03 {
        width: 110px;
        transform: translate(0);
        left: 45px;
        top: calc(50vw - 200px);
        z-index: 0;
    }
    
    #contents .talk03 .head02,
    #contents .talk06 .head02,
    #contents .talk07 .head02{
        z-index: 1;
    }
    #contents .talk .deco04 {
        width: 150px;
        transform: translate(0);
        right: 40px;
        left: auto;
        top: calc(50vw - 200px);
        z-index: 1;
    }
    #contents .talk .deco05 {
        width: 130px;
        transform: translate(0);
        left: 51px;
        top: calc(50vw - 200px);
        z-index: 1;
    }
    #contents .talk .deco06 {
        width: 110px;
        transform: translate(0);
        top: calc(50vw - 200px);
        left: calc(50% - 55px);
        z-index: 0;
    }
    #contents .talk .deco07 {
        width: 140px;
        transform: translate(0);
        left: auto;
        top: calc(50vw - 200px);
        right: 7%;
        z-index: 0;
    }
    
}

/*----------------------------------------------------
	☆UNDER 900
----------------------------------------------------*/

@media screen and (max-width:900px) {    
    
    #mv .mvInner .inner {
        background: url(../images/crosstalk/mv_sp.jpg) center top / cover no-repeat;
    }
    
    /*--- member --*/
    #contents .member ul {
        justify-content: space-between;
        margin-bottom: -40px;
        max-width: 85%;
        margin: 0 auto;
    }
    #contents .member ul li{
        width: 48%;
        margin: 0 auto 40px;
    }
    #contents .member ul li .image {
        min-width: 100px;
        width: 80%;
    }
    #contents .member ul li p.exp{
        font-size: 10px;
    }
    
    
    /*--- talk --*/
    #contents .talk .image{
        border-radius: 0;
        height: 50vw;
    }
	
	#contents .talk:nth-of-type(even)::before{
		width: 100%;
		border-radius: 0;
	}
    
    
}


/*----------------------------------------------------
	☆UNDER 800
----------------------------------------------------*/

@media screen and (max-width:800px) {
    
    #mv{
        height: 90vw;
        min-height: auto;
    }
    
    #mv .deco01 {
        width: 30%;
        min-width: auto;
        top: auto;
        bottom: -40px;
        left: -2%;
    }
    #mv .deco02 {
        width: 17%;
        min-width: auto;
        left: 31%;
        bottom: -1.3vw !important;
    }
    #mv .deco03 {
        width: 25%;
        left: 76%;
        min-width: auto;
        top: auto;
        bottom: -1.1vw !important;
    }
    #mv .deco04 {
        width: 27%;
        right: 23%;
        min-width: auto;
        bottom: min(-50px,-9.5vw);
    }
    
}

/*----------------------------------------------------
	☆UNDER 600
----------------------------------------------------*/

@media screen and (max-width:600px) {

    #mv {
        width: 100%;
        margin: 60px auto 0;
        /*overflow: hidden;*/
        padding: 0 28px 20vw 28px;
        height: calc(90vw + 80px);
        margin-bottom: 2vw;
    }
    #mv .mvInner .inner {
        left: 6px;
        top: 6px;
        border-radius: 22px;
        height: calc(100% - 12px);
        width: calc(100% - 12px);
    }    
    
    #mv .deco01,
    #mv .deco02,
    #mv .deco03,
    #mv .deco04{
        bottom: -3vw;
        top: auto;
    }
    
    #contents .section.member {
        padding: 20px 0;
    }
    
    #contents .talk:nth-of-type(even)::before {
        width: 100vw;
        height: calc(100% + 70px);
        border-radius: 0;
        top: 25vw;
    }
    
    #contents .talk{
        overflow: hidden;
    }
    #contents .talk dl{
        width: 85%;
    }
    #contents .talk dl + dl{
        margin-top: 30px; 
    }
    #contents .talk dl:last-of-type {
        margin-bottom: 70px;
    }
    #contents .talk dl dd {
        padding: 20px;
        width: 75%;
    }
    #contents .talk dl dt {
        font-size: 10px;
        width: 20%;
    }
    #contents .talk dl dd{
        font-size: 13px;
    }
    
    
    #contents .talk .deco {
        position: absolute;
        left: 5%;
        top: calc(50vw - 120px);
        transform: translate(0px) !important;
        width: 90px;
    }
    #contents .talk:nth-of-type(odd) .deco{
        left: auto;
        right: 5%;
    }
    #contents .talk .deco01,
    #contents .talk .deco02{
        z-index: 1;
    }
    #contents .talk .deco03 {
        width: 60px;
        z-index: 0!important;
    }
    
    #contents .talk .deco04 {
        width: 100px;
    }
    #contents .talk .deco05 {
        width: 80px;
    }
    #contents .talk.talk06 .deco06 {
        width: 72px;
        left: calc(50vw - 36px);
    }
    #contents .talk.talk07 .deco07 {
        left: auto;
        right: 7%;
    }
    
    
}



