@charset "UTF-8";

/*------------------------------------------------------------------------------------------------------------------------------
          
スペシャル座談会
									
------------------------------------------------------------------------------------------------------------------------------*/


#sp-cross .attention {
	display: block;
	line-height: 1.64;
    font-size: 75%;
    margin-top: 20px;
    opacity: .8;
}

/*------------------------------------------------------ HEADER */

#sp-cross .scHeader {
	width: 100%;
    height: auto;
}

#sp-cross .scHeader .schInner {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column-reverse;
}

#sp-cross .scHeader .schInner .schTxt {
	width: 100%;
    padding-top: 60px;
}

#sp-cross .scHeader .schInner .schTxt .schTxtInner {
    width: 100%;
    text-align: center;
    padding: 0 30px;
}

#sp-cross .scHeader .schInner .schTxt .schTxtInner .en {
    display: block;
    font-size: 1.2rem;
    line-height: 1;
}

#sp-cross .scHeader .schInner .schTxt .schTxtInner .schHead {
    display: block;
    font-size: 2.6rem;
    line-height: 1.36;
    margin-top: 25px;
}

#sp-cross .scHeader .schInner .schTxt .schTxtInner .schHead .nowrap {
	background-color: #fff;
}

#sp-cross .scHeader .schInner .schImg {
	width: 100%;
}

#sp-cross .scHeader .scrollBtn {
	display: none;
}

/*------------------------------------------------------ MEMBER */

#sp-cross .members {
}

#sp-cross .members .membersList {
	margin-bottom: -60px;
}

#sp-cross .members .membersList .membersListInner {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column-reverse;
    margin-bottom: 60px;
}

#sp-cross .members .membersList .membersListInner .membersTxt {
    width: 100%;
    margin-top: 12px;
}

#sp-cross .members .membersList .membersListInner .membersTxt .name {
	display: block;
    font-size: 160%;
}

#sp-cross .members .membersList .membersListInner .membersTxt .name span {
    display: inline-block;
    vertical-align: text-top;
    font-size: 50%;
    border-radius: 50px;
    padding: 4px 10px;
    color: #fff;
    background-color: #137bd9;
    margin-left: 8px;
}

#sp-cross .members .membersList .membersListInner .membersTxt .profile {
	font-size: 88%;
    font-weight: 700;
    line-height: 1.36;
    margin-top: 4px;
}

#sp-cross .members .membersList .membersListInner .membersTxt .txt {
    line-height: 1.64;
    opacity: .75;
    margin-top: 8px;
}

#sp-cross .members .membersList .membersListInner .membersImg {
	width: 100%;
}

#sp-cross .members .membersList .membersListInner .membersImg figure {
	width: 100%;
	position: relative;
}

#sp-cross .members .membersList .membersListInner .membersImg figcaption {
	display: block;
    line-height: 12px;
    position: absolute;
    top: 10px;
    right: 10px;
    transform-origin: right top;
    transform: rotate(90deg) translate(100%, 0);
    z-index: 5;
}

#sp-cross .members .membersList .membersListInner .membersImg figcaption .en {
	display: inline-block;
    font-size: 1.2rem;
    line-height: 1;
    color: #fff;
}


/*------------------------------------------------------ CONTENTS */

#sp-cross .spcContents {
	position: relative;
	overflow: hidden;
}

#sp-cross .spcContents .sectionEn {
	position: absolute;
}

#sp-cross .spcContents .sectionEn span {
	font-size: 8rem;
    line-height: 1;
    color: #fff;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
}

#sp-cross .spcContents.bk-lb .sectionEn {
    top: 10px;
    left: 0;
}

#sp-cross .spcContents:not(.bk-lb) .sectionEn {
	top: 10px;
	right: 0;
}

#sp-cross .spcContents:not(.bk-lb) .sectionEn span {
	color: #edf5fd;
}

#sp-cross .spcContents .sectionHead {
	position: relative;
	z-index: 5;
}

#sp-cross .spcContents .spcWrapper {
	position: relative;
	z-index: 5;
}

#sp-cross .spcContents .spcWrapper .spcContetnsTitle {
	text-align: center;
	position: relative;
	padding-bottom: 25px;
    margin-bottom: 40px;
}

#sp-cross .spcContents .spcWrapper .spcContetnsTitle:before {
	content: "";
	display: block;
	width: 1px;
	height: 25px;
	background-color: #0682c6;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
}

#sp-cross .spcContents .spcWrapper .spcContetnsTitle:after {
	content: "";
	display: block;
	width: 8px;
	height: 8px;
	background-color: #0682c6;
	position: absolute;
	left: 0;
	right: 0;
	bottom: -4px;
	border-radius: 50%;
	margin: auto;
}

#sp-cross .spcContents .spcWrapper .spcContetnsTitle .outline {
    display: inline-block;
    font-size: 2rem;
    line-height: 1.48;
    color: #fff;
    background-color: #0682c6;
    padding: 16px 20px;
    border-radius: 6px;
}

#sp-cross .spcContents .spcWrapper {
}

#sp-cross .spcContents .spcWrapper .answer {
    margin-top: 20px;
	opacity: 0;
	transform: translate(0,10px);
	transition: all 300ms cubic-bezier(0.32, 0.08, 0.24, 1);
}

#sp-cross .spcContents .spcWrapper .answer.in {
	opacity: 1;
	transform: translate(0,0);
}

#sp-cross .spcContents .spcWrapper .answer .answerInner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

#sp-cross .spcContents .spcWrapper .answer:nth-child(2n) .answerInner {
    flex-direction: row-reverse;
}

#sp-cross .spcContents .spcWrapper .answer .answerInner .txtBox {
    width: calc(100% - 90px);
    background-color: #fff;
    padding: 20px;
    border-radius: 6px;
	position: relative;
	box-shadow: 0 0 20px rgb(1 27 66 / 25%);
}

#sp-cross .spcContents .spcWrapper .answer .answerInner .txtBox:after {
	content: "";
	display: block;
	width: 20px;
	height: 18px;
	background: url(../images/special-crosstalk/fukidashi.svg) center center / cover no-repeat;
	position: absolute;
}

#sp-cross .spcContents .spcWrapper .answer:nth-child(2n) .answerInner .txtBox:after {
    top: 25px;
    left: -10px;
}

#sp-cross .spcContents .spcWrapper .answer:nth-child(2n+1) .answerInner .txtBox:after {
	top: 25px;
    right: -10px;
	transform:rotate(180deg);
}

#sp-cross .spcContents .spcWrapper .answer .answerInner .txtBox .text {
    line-height: 1.64;
}

#sp-cross .spcContents .spcWrapper .answer .answerInner .txtBox .text .attention {
	display: block;
	line-height: 1.64;
    font-size: 75%;
    margin-top: 10px;
    opacity: .8;
}

#sp-cross .spcContents .spcWrapper .answer .answerInner .imgBox {
    width: 70px;
}

#sp-cross .spcContents .spcWrapper .answer .answerInner .imgBox figure {
}

#sp-cross .spcContents .spcWrapper .answer .answerInner .imgBox figure img {
	display: block;
	width: 100%;
	border-radius: 50%;
	overflow: hidden;
	position: relative;
	z-index: 1;
}

#sp-cross .spcContents .spcWrapper .answer .answerInner .imgBox figure figcaption {
    margin-top: 8px;
}

#sp-cross .spcContents .spcWrapper .answer .answerInner .imgBox figure figcaption span {
    display: block;
    font-size: 1rem;
    line-height: 1;
    text-align: center;
    opacity: .6;
}

#sp-cross .figureImg {
	width: 100%;
}

#sp-cross .figureImg .figureImgInner {
	width: 100%;
}

#sp-cross .figureImg .figureImgInner picture {
	width: 100%;
}

#sp-cross .figureImg .figureImgInner picture img {
	width: 100%;
}


/*------------------------------------------------------ OFF */

#sp-cross .off {
}

#sp-cross .off .offList {
	padding: 0 30px;
	margin-bottom: -60px;
}

#sp-cross .off .offList .offListInner {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column-reverse;
    margin-bottom: 60px;
}

#sp-cross .off .offList .offListInner .offTxt {
    width: 100%;
    margin-top: 12px;
}

#sp-cross .off .offList .offListInner .offTxt .name {
    display: block;
    font-size: 130%;
}

#sp-cross .off .offList .offListInner .offTxt .txt {
    font-size: 88%;
    line-height: 1.64;
    opacity: .75;
    margin-top: 2px;
}

#sp-cross .off .offList .offListInner .offImg {
	width: 100%;
}

#sp-cross .off .offList .offListInner .offImg figure {
	width: 100%;
}


/*------------------------------------------------------ DATE */

#sp-cross .date {
	border-bottom: 1px solid rgb(0 26 67 / 10%);
}


/*------------------------------------------------------------------------------------

以下 TAB 用
									
------------------------------------------------------------------------------------*/

@media print, screen and (min-width: 500px) {
	
    /*------------------------------------------------------ HEADER */

    #sp-cross .scHeader .schInner .schTxt .schTxtInner {
        padding: 0 10vw;
    }

    #sp-cross .scHeader .schInner .schTxt .schTxtInner .schHead {
        font-size: 3rem;
    }

    #sp-cross .scHeader .schInner .schTxt .schTxtInner .en {
        font-size: 1.3rem;
    }

    /*------------------------------------------------------ MEMBER */

    #sp-cross .members .membersList {
    }

    #sp-cross .members .membersList .membersListInner {
        flex-direction: row-reverse;
        justify-content: space-between;
    }

    #sp-cross .members .membersList .membersListInner .membersTxt {
        width: calc((100% - 30px) / 2);
        margin-top: -5px;
    }

    #sp-cross .members .membersList .membersListInner .membersImg {
        width: calc((100% - 30px) / 2);
    }

    /*------------------------------------------------------ CONTENTS */

    #sp-cross .spcContents .sectionEn span {
        font-size: 12rem;
    }

    #sp-cross .spcContents .spcWrapper .spcContetnsTitle {
        padding-bottom: 30px;
        margin-bottom: 45px;
    }

    #sp-cross .spcContents .spcWrapper .spcContetnsTitle:before {
        height: 30px;
    }

    #sp-cross .spcContents .spcWrapper .spcContetnsTitle .outline {
        font-size: 2.6rem;
        padding: 18px 32px;
    }

    #sp-cross .spcContents .spcWrapper .answer {
        width: 90%;
    }

    #sp-cross .spcContents .spcWrapper .answer:nth-child(2n+1) {
        margin-left: 10%;
    }

    #sp-cross .spcContents .spcWrapper .answer .answerInner .imgBox {
        width: 100px;
    }

    #sp-cross .spcContents .spcWrapper .answer .answerInner .imgBox figure figcaption {
        margin-top: 10px;
    }

    #sp-cross .spcContents .spcWrapper .answer .answerInner .imgBox figure figcaption span {
        font-size: 1.2rem;
    }

    #sp-cross .spcContents .spcWrapper .answer .answerInner .txtBox {
        width: calc(100% - 130px);
        padding: 30px;
    }

    #sp-cross .spcContents .spcWrapper .answer .answerInner .txtBox .text {
        line-height: 1.8;
    }

    #sp-cross .spcContents .spcWrapper .answer {
        margin-top: 35px;
    }


    /*------------------------------------------------------ OFF */

    #sp-cross .off .offList {
        padding: 0 5vw;
        margin-bottom: -45px;
    }

    #sp-cross .off .offList .offListInner {
        flex-direction: row-reverse;
        justify-content: space-between;
        margin-bottom: 45px;
    }

    #sp-cross .off .offList .offListInner .offTxt {
        width: calc((100% - 30px) / 2);
        margin-top: -5px;
    }

    #sp-cross .off .offList .offListInner .offImg {
        width: calc((100% - 30px) / 2);
    }

}


/*------------------------------------------------------------------------------------

以下 PC 用
									
------------------------------------------------------------------------------------*/

@media print, screen and (min-width: 900px) {

    #header{
        background: rgba(255, 255, 255, .75);
    }
    
    /*------------------------------------------------------ HEADER */

    #sp-cross .scHeader {
        height: 100vh;
        min-height: 640px;
        position: relative;
    }

    #sp-cross .scHeader .schInner {
        display: flex;
        flex-wrap: initial;
        flex-direction: initial;
    }

    #sp-cross .scHeader .schInner .schTxt {
        width: 80vw;
        max-width: 1100px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        padding-top: 0;
    }

    #sp-cross .scHeader .schInner .schTxt .schTxtInner {
        padding: 0;
        text-align: left;
    }

    #sp-cross .scHeader .schInner .schTxt .schTxtInner .en {
        font-size: 1.5rem;
    }

    #sp-cross .scHeader .schInner .schTxt .schTxtInner .schHead {
        width: 50%;
        font-size: 4.2rem;
        margin-top: 40px;
    }

    #sp-cross .scHeader .schInner .schImg {
        width: 70%;
        margin-left: 30%;
    }

    @media screen and (min-width: 1100px) {
        #sp-cross .scHeader .schInner .schImg {
            width: calc(770px + (100% - 1100px) / 2);
            margin-left: calc(100% - (770px + (100% - 1100px) / 2));
        }
    }

    #sp-cross .scHeader .schInner .schImg img {
        height: 100vh;
        min-height: 640px;
        object-position: center top;
    }

    #sp-cross .scHeader .scrollBtn {
        display: block;
        position: absolute;
        left: 10%;
        bottom: -30px;
    }

    @media screen and (min-width: 1375px) {	
        #sp-cross .scHeader .scrollBtn {
            right: auto;
            left: 50%;
            transform: translate(-550px,0);
        }
    }

    /*------------------------------------------------------ MEMBER */

    #sp-cross .members .membersList {
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        margin-bottom: -50px;
    }


    #sp-cross .members .membersList .membersListInner {
        width: calc((100% - 13%) / 3);
        flex-direction: column-reverse;
        justify-content: normal;
        margin-bottom: 50px;
    }

    #sp-cross .members .membersList .membersListInner:not(:nth-child(3n)) {
        margin-right: 6.5%;
    }

    #sp-cross .members .membersList .membersListInner .membersTxt {
        width: 100%;
        margin-top: 12px;
    }

    #sp-cross .members .membersList .membersListInner .membersTxt .profile {
        margin-top: 8px;
    }

    #sp-cross .members .membersList .membersListInner .membersTxt .txt {
        margin-top: 10px;
    }

    #sp-cross .members .membersList .membersListInner .membersImg {
        width: 100%;
    }

    #sp-cross .members .membersList .membersListInner .membersImg figcaption {
        top: 0;
        right: -10px;
        transform: rotate(90deg) translate(100%, -100%);
    }

    #sp-cross .members .membersList .membersListInner .membersImg figcaption .en {
        display: inline-block;
        font-size: 1.3rem;
        line-height: 1;
        color: inherit;
    }

    /*------------------------------------------------------ CONTENTS */

    #sp-cross .spcContents.bk-lb {
        background: linear-gradient(90deg, #edf5fd, #edf5fd 96.6666%, #fff 96.6666%, #fff);
    }

    #sp-cross .spcContents .sectionEn span {
        font-size: 15rem;
    }

    #sp-cross .spcContents.bk-lb .sectionEn,
    #sp-cross .spcContents:not(.bk-lb) .sectionEn {
        top: 140px;
    }

    #sp-cross .spcContents .spcWrapper .spcContetnsTitle .outline {
        font-size: 3.2rem;
        padding: 20px 36px;
    }

    #sp-cross .spcContents .spcWrapper .answer {
        width: 70%;
    }

    #sp-cross .spcContents .spcWrapper .answer:nth-child(2n+1) {
        margin-left: 30%;
    }

    #sp-cross .spcContents .spcWrapper .answer .answerInner .imgBox {
        width: 160px;
    }

    #sp-cross .spcContents .spcWrapper .answer .answerInner .imgBox figure figcaption {
        margin-top: 12px;
    }

    #sp-cross .spcContents .spcWrapper .answer .answerInner .imgBox figure figcaption span {
        font-size: 1.5rem;
    }

    #sp-cross .spcContents .spcWrapper .answer .answerInner .txtBox {
        width: calc(100% - 210px);
        padding: 45px;
        box-shadow: 0 0 30px rgb(1 27 66 / 25%);
    }

    #sp-cross .spcContents .spcWrapper .answer:nth-child(2n) .answerInner .txtBox:after {
        top: 30px;
        left: -20px;
    }

    #sp-cross .spcContents .spcWrapper .answer:nth-child(2n+1) .answerInner .txtBox:after {
        top: 30px;
        right: -20px;
    }

    #sp-cross .figureImg {
        position: relative;
    }

    #sp-cross .figureImg.bk-lb {
        background: linear-gradient(90deg, #edf5fd, #edf5fd 96.6666%, #fff 96.6666%, #fff);
    }

    #sp-cross .figureImg.isolated:before {
        content: "";
        display: block;
        width: 100%;
        height: 50%;
        background-color: #fff;
        position: absolute;
        left: 0;
        bottom: 0;
    }

    #sp-cross .figureImg.right.isolated:before {
        bottom: auto;
        top: 0;
    }

    #sp-cross .figureImg .figureImgInner {
        width: 86.6666%;
        position: relative;
        z-index: 5;
    }

    #sp-cross .figureImg.right .figureImgInner {
        margin-left: calc(100% - 86.6666%);
    }

    #sp-cross .figureImg .figureImgInner picture {
    }

    #sp-cross .figureImg .figureImgInner picture img {
        height: 540px;
    }

    /*END*/

    #sp-cross .figureImg.end .figureImgInner {
        width: 100%;
    }

    #sp-cross .bk-lb + .figureImg.end {
        margin-top: 50px;
    }


    /*------------------------------------------------------ OFF */

    #sp-cross .off .offList {
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 0;
        margin-bottom: -50px;
    }

    #sp-cross .off .offList .offListInner {
        width: calc((100% - 13%) / 3);
        flex-direction: column-reverse;
        justify-content: normal;
        margin-bottom: 50px;
    }

    #sp-cross .off .offList .offListInner:not(:nth-child(3n)) {
        margin-right: 6.5%;
    }

    #sp-cross .off .offList .offListInner .offTxt {
        width: 100%;
        margin-top: 10px;
    }

    #sp-cross .off .offList .offListInner .offImg {
        width: 100%;
    }

}


/*------------------------------------------------------------------------------------------------------------------------------
          
経験者座談会
									
------------------------------------------------------------------------------------------------------------------------------*/

#sp-cross #cc .fontColor {
	color: #fff;
}

#sp-cross #cc .attention {
	display: block;
	line-height: 1.64;
    font-size: 75%;
    margin-top: 20px;
    opacity: .8;
}

/*------------------------------------------------------ HEADER */

#sp-cross #cc .scHeader {
	width: 100%;
    height: auto;
}

#sp-cross #cc .scHeader .schInner {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column-reverse;
}

#sp-cross #cc .scHeader .schInner .schTxt {
	width: 100%;
    padding-top: 60px;
}

#sp-cross #cc .scHeader .schInner .schTxt .schTxtInner {
    width: 100%;
    text-align: center;
    padding: 0 30px;
}

#sp-cross #cc .scHeader .schInner .schTxt .schTxtInner .en {
    display: block;
    font-size: 1.2rem;
    line-height: 1;
}

#sp-cross #cc .scHeader .schInner .schTxt .schTxtInner .schHead {
    display: block;
    font-size: 2.6rem;
    line-height: 1.36;
    margin-top: 25px;
}

#sp-cross #cc .scHeader .schInner .schTxt .schTxtInner .schHead .nowrap {
	background-color: #0682c6;
}

#sp-cross #cc .scHeader .schInner .schImg {
	width: 100%;
}

#sp-cross #cc .scHeader .scrollBtn {
	display: none;
}

/*------------------------------------------------------ MEMBER */

#sp-cross #cc .members {
}

#sp-cross #cc .members .membersList {
	margin-bottom: -60px;
}

#sp-cross #cc .members .membersList .membersListInner {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column-reverse;
    margin-bottom: 60px;
}

#sp-cross #cc .members .membersList .membersListInner .membersTxt {
    width: 100%;
    margin-top: 12px;
}

#sp-cross #cc .members .membersList .membersListInner .membersTxt .name {
	display: block;
    font-size: 160%;
}

#sp-cross #cc .members .membersList .membersListInner .membersTxt .profile {
	font-size: 88%;
    font-weight: 700;
    line-height: 1.36;
    margin-top: 4px;
}

#sp-cross #cc .members .membersList .membersListInner .membersTxt .txt {
    line-height: 1.64;
    opacity: .75;
    margin-top: 8px;
}

#sp-cross #cc .members .membersList .membersListInner .membersImg {
	width: 100%;
}

#sp-cross #cc .members .membersList .membersListInner .membersImg figure {
	width: 100%;
	position: relative;
}

#sp-cross #cc .members .membersList .membersListInner .membersImg figcaption {
	display: block;
    line-height: 12px;
    position: absolute;
    top: 10px;
    right: 10px;
    transform-origin: right top;
    transform: rotate(90deg) translate(100%, 0);
    z-index: 5;
}

#sp-cross #cc .members .membersList .membersListInner .membersImg figcaption .en {
	display: inline-block;
    font-size: 1.2rem;
    line-height: 1;
    color: #fff;
}


/*------------------------------------------------------ CONTENTS */

#sp-cross #cc .spcContents {
	position: relative;
	overflow: hidden;
}

#sp-cross #cc .fontColor .spcContents.bk-lb {
	color: #001a43;
}

#sp-cross #cc .fontColor .spcContents + .spcContents {
	padding-top: 0;
}

#sp-cross #cc .spcContents .sectionEn {
	position: absolute;
}

#sp-cross #cc .spcContents .sectionEn span {
	font-size: 8rem;
    line-height: 1;
    color: #fff;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
}

#sp-cross #cc .spcContents.bk-lb .sectionEn {
    top: 10px;
    left: 0;
}

#sp-cross #cc .spcContents:not(.bk-lb) .sectionEn {
	top: 10px;
	right: 0;
}

#sp-cross #cc .spcContents:not(.bk-lb) .sectionEn span {
	color: #0077b8;
}

#sp-cross #cc .spcContents .sectionHead {
	position: relative;
	z-index: 5;
}

#sp-cross #cc .spcContents .spcWrapper {
	position: relative;
	z-index: 5;
}

#sp-cross #cc .spcContents .spcWrapper .spcContetnsTitle {
	text-align: center;
	position: relative;
	padding-bottom: 25px;
    margin-bottom: 40px;
}

#sp-cross #cc .spcContents .spcWrapper .spcContetnsTitle:before {
	content: "";
	display: block;
	width: 1px;
	height: 25px;
	background-color: #0682c6;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
}

#sp-cross #cc .spcContents .spcWrapper .spcContetnsTitle:after {
	content: "";
	display: block;
	width: 8px;
	height: 8px;
	background-color: #0682c6;
	position: absolute;
	left: 0;
	right: 0;
	bottom: -4px;
	border-radius: 50%;
	margin: auto;
}

#sp-cross #cc .spcContents .spcWrapper .spcContetnsTitle .outline {
    display: inline-block;
    font-size: 2rem;
    line-height: 1.48;
    color: #fff;
    background-color: #0682c6;
    padding: 16px 20px;
    border-radius: 6px;
}

#sp-cross #cc .spcContents:not(.bk-lb) .spcWrapper .spcContetnsTitle .outline {
    border: 1px solid #42a3d7;
    /* background-color: rgb(0 26 67 / 60%); */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

#sp-cross #cc .spcContents:not(.bk-lb) .spcWrapper .spcContetnsTitle:after {
	background-color: #42a3d7;
}

#sp-cross #cc .spcContents:not(.bk-lb) .spcWrapper .spcContetnsTitle:before {
	background-color: #42a3d7;
}

#sp-cross #cc .spcContents .spcWrapper {
}

#sp-cross #cc .spcContents .spcWrapper .answer {
    margin-top: 20px;
	opacity: 0;
	transform: translate(0,10px);
	transition: all 300ms cubic-bezier(0.32, 0.08, 0.24, 1);
}

#sp-cross #cc .spcContents .spcWrapper .answer.in {
	opacity: 1;
	transform: translate(0,0);
}

#sp-cross #cc .spcContents .spcWrapper .answer .answerInner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

#sp-cross #cc .spcContents .spcWrapper .answer:nth-child(2n) .answerInner {
    flex-direction: row-reverse;
}

#sp-cross #cc .spcContents .spcWrapper .answer .answerInner .txtBox {
    width: calc(100% - 90px);
    background-color: #fff;
    padding: 20px;
    border-radius: 6px;
	position: relative;
	box-shadow: 0 0 20px rgb(1 27 66 / 25%);
}

#sp-cross #cc .spcContents .spcWrapper .answer .answerInner .txtBox:after {
	content: "";
	display: block;
	width: 20px;
	height: 18px;
	background: url(../images/special-crosstalk/fukidashi.svg) center center / cover no-repeat;
	position: absolute;
}

#sp-cross #cc .spcContents .spcWrapper .answer:nth-child(2n) .answerInner .txtBox:after {
    top: 25px;
    left: -10px;
}

#sp-cross #cc .spcContents .spcWrapper .answer:nth-child(2n+1) .answerInner .txtBox:after {
	top: 25px;
    right: -10px;
	transform:rotate(180deg);
}

#sp-cross #cc .spcContents .spcWrapper .answer .answerInner .txtBox .text {
    line-height: 1.64;
	color: #001a43;
}

#sp-cross #cc .spcContents .spcWrapper .answer .answerInner .txtBox .text .attention {
	display: block;
	line-height: 1.64;
    font-size: 75%;
    margin-top: 10px;
    opacity: .8;
}

#sp-cross #cc .spcContents .spcWrapper .answer .answerInner .imgBox {
    width: 70px;
}

#sp-cross #cc .spcContents .spcWrapper .answer .answerInner .imgBox figure {
}

#sp-cross #cc .spcContents .spcWrapper .answer .answerInner .imgBox figure img {
	display: block;
	width: 100%;
	border-radius: 50%;
	overflow: hidden;
	position: relative;
	z-index: 1;
}

#sp-cross #cc .spcContents .spcWrapper .answer .answerInner .imgBox figure figcaption {
    margin-top: 8px;
}

#sp-cross #cc .spcContents .spcWrapper .answer .answerInner .imgBox figure figcaption span {
    display: block;
    font-size: 1rem;
    line-height: 1;
    text-align: center;
    opacity: .6;
}

#sp-cross #cc .figureImg {
	width: 100%;
}

#sp-cross #cc .figureImg .figureImgInner {
	width: 100%;
}

#sp-cross #cc .figureImg .figureImgInner picture {
	width: 100%;
}

#sp-cross #cc .figureImg .figureImgInner picture img {
	width: 100%;
}


/*------------------------------------------------------ OFF */

#sp-cross #cc .off {
}

#sp-cross #cc .off .offList {
	padding: 0 30px;
	margin-bottom: -60px;
}

#sp-cross #cc .off .offList .offListInner {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column-reverse;
    margin-bottom: 60px;
}

#sp-cross #cc .off .offList .offListInner .offTxt {
    width: 100%;
    margin-top: 12px;
}

#sp-cross #cc .off .offList .offListInner .offTxt .name {
    display: block;
    font-size: 130%;
}

#sp-cross #cc .off .offList .offListInner .offTxt .txt {
    font-size: 88%;
    line-height: 1.64;
    opacity: .75;
    margin-top: 2px;
}

#sp-cross #cc .off .offList .offListInner .offImg {
	width: 100%;
}

#sp-cross #cc .off .offList .offListInner .offImg figure {
	width: 100%;
}


/*------------------------------------------------------ DATE */

#sp-cross #cc .date {
	border-bottom: 1px solid rgb(0 26 67 / 10%);
    margin-top: 20px;
}

/*------------------------------------------------------ DATA */

#sp-cross #cc .spcDate {
}

#sp-cross #cc .spcDate .spcDateInner {
}

#sp-cross #cc .spcDate .spcDateInner .spcDateInnerList {
	margin-bottom: -12px;
}

#sp-cross #cc .spcDate .spcDateInner .spcDateInnerList li {
}

#sp-cross #cc .spcDate .spcDateInner .spcDateInnerList li .title {
    font-size: 2rem;
	line-height: 1.32;
    color: #fff;
    text-align: center;
}

#sp-cross #cc .spcDate .spcDateInner .spcDateInnerList li.comment {
	width: 100%;
}

#sp-cross #cc .spcDate .spcDateInner .spcDateInnerList li.comment + .comment {
	margin-top: 80px;
}

#sp-cross #cc .spcDate .spcDateInner .spcDateInnerList li.comment .commentInner {
    margin-top: 26px;
	margin-bottom: -24px;
	overflow: hidden;
}

#sp-cross #cc .spcDate .spcDateInner .spcDateInnerList li.comment .commentInner.out {
	opacity: 0;
    transform: translate(0,10px);
    transition: all 300ms cubic-bezier(0.32, 0.08, 0.24, 1);
}

#sp-cross #cc .spcDate .spcDateInner .spcDateInnerList li.comment .commentInner.out.in {
	opacity: 1;
    transform: translate(0,0);
}

#sp-cross #cc .spcDate .spcDateInner .spcDateInnerList li.comment .commentInner .text {
	line-height: 1.64;
    text-align: justify;
    color: #001a43;
    background-color: #edf5fd;
    padding: 18px;
    border-radius: 6px;
    box-shadow: inset 6px 6px 6px rgb(0 26 67 / 10%);
	position: relative;
	margin-bottom: 24px;
}

#sp-cross #cc .spcDate .spcDateInner .spcDateInnerList li.comment .commentInner .text:after {
    content: "";
    display: block;
    width: 16px;
    height: 18px;
    background: url(../images/number/num-fukidashi.svg) center center / cover no-repeat;
    position: absolute;
    right: 24px;
    bottom: -13px;
}

#sp-cross #cc .spcDate .spcDateInner .spcDateInnerList li.comment .commentInner .text .commenter {
    font-size: 75%;
    display: block;
    text-align: right;
    margin-top: 8px;
}

#sp-cross #cc .spcDate .spcDateInner .spcDateInnerList li.comment .commentInner .text .icon {
    display: block;
    text-align: center;
    margin-bottom: 8px;
}

#sp-cross #cc .spcDate .spcDateInner .spcDateInnerList li.comment .commentInner .text .icon .bl {
	display: flex;
    align-items: center;
    justify-content: center;
    font-size: 115%;
    font-weight: 700;
    position: relative;
}

#sp-cross #cc .spcDate .spcDateInner .spcDateInnerList li.comment .commentInner .text .icon .bl:before {
	content: "";
	display: block;
	width: 20px;
	height: 1px;
	margin-right: 6px;
	background-color: #001a43;
}


#sp-cross #cc .spcDate .spcDateInner .spcDateInnerList li.comment .commentInner .text .icon .bl:after {
	content: "";
	display: block;
	width: 20px;
	height: 1px;
	margin-left: 6px;
	background-color: #001a43;
}

#sp-cross #cc .spcDate .spcDateInner .spcDateInnerList li.comment .commentInner .graph {
	background-color: #edf5fd;
    padding: 36px;
    border-radius: 6px;
    box-shadow: inset 6px 6px 6px rgb(0 26 67 / 10%);
    position: relative;
    margin-bottom: 24px;
}

/*------------------------------------------------------------------------------------

以下 TAB 用
									
------------------------------------------------------------------------------------*/

@media print, screen and (min-width: 500px) {

    /*------------------------------------------------------ HEADER */

    #sp-cross #cc .scHeader .schInner .schTxt .schTxtInner {
        padding: 0 10vw;
    }

    #sp-cross #cc .scHeader .schInner .schTxt .schTxtInner .schHead {
        font-size: 3rem;
    }

    #sp-cross #cc .scHeader .schInner .schTxt .schTxtInner .en {
        font-size: 1.3rem;
    }

    /*------------------------------------------------------ MEMBER */

    #sp-cross #cc .members .membersList {
    }

    #sp-cross #cc .members .membersList .membersListInner {
        flex-direction: row-reverse;
        justify-content: space-between;
    }

    #sp-cross #cc .members .membersList .membersListInner .membersTxt {
        width: calc((100% - 30px) / 2);
        margin-top: -5px;
    }

    #sp-cross #cc .members .membersList .membersListInner .membersImg {
        width: calc((100% - 30px) / 2);
    }

    /*------------------------------------------------------ CONTENTS */

    #sp-cross #cc .spcContents .sectionEn span {
        font-size: 12rem;
    }

    #sp-cross #cc .spcContents .spcWrapper .spcContetnsTitle {
        padding-bottom: 30px;
        margin-bottom: 45px;
    }

    #sp-cross #cc .spcContents .spcWrapper .spcContetnsTitle:before {
        height: 30px;
    }

    #sp-cross #cc .spcContents .spcWrapper .spcContetnsTitle .outline {
        font-size: 2.6rem;
        padding: 18px 32px;
    }

    #sp-cross #cc .spcContents .spcWrapper .answer {
        width: 90%;
    }

    #sp-cross #cc .spcContents .spcWrapper .answer:nth-child(2n+1) {
        margin-left: 10%;
    }

    #sp-cross #cc .spcContents .spcWrapper .answer .answerInner .imgBox {
        width: 100px;
    }

    #sp-cross #cc .spcContents .spcWrapper .answer .answerInner .imgBox figure figcaption {
        margin-top: 10px;
    }

    #sp-cross #cc .spcContents .spcWrapper .answer .answerInner .imgBox figure figcaption span {
        font-size: 1.2rem;
    }

    #sp-cross #cc .spcContents .spcWrapper .answer .answerInner .txtBox {
        width: calc(100% - 130px);
        padding: 30px;
    }

    #sp-cross #cc .spcContents .spcWrapper .answer .answerInner .txtBox .text {
        line-height: 1.8;
    }

    #sp-cross #cc .spcContents .spcWrapper .answer {
        margin-top: 35px;
    }


    /*------------------------------------------------------ OFF */

    #sp-cross #cc .off .offList {
        padding: 0 5vw;
        margin-bottom: -45px;
    }

    #sp-cross #cc .off .offList .offListInner {
        flex-direction: row-reverse;
        justify-content: space-between;
        margin-bottom: 45px;
    }

    #sp-cross #cc .off .offList .offListInner .offTxt {
        width: calc((100% - 30px) / 2);
        margin-top: -5px;
    }

    #sp-cross #cc .off .offList .offListInner .offImg {
        width: calc((100% - 30px) / 2);
    }


    /*------------------------------------------------------ DATA */

    #sp-cross #cc .spcDate .spcDateInner .spcDateInnerList {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        margin-bottom: -30px;
    }

    #sp-cross #cc .spcDate .spcDateInner .spcDateInnerList li {
        width: 100%;
        margin-bottom: 30px;
    }

    #sp-cross #cc .spcDate .spcDateInner .spcDateInnerList li .title {
        font-size: 2.4rem;
    }

    #sp-cross #cc .spcDate .spcDateInner .spcDateInnerList li.comment .commentInner {
        display: flex;
        justify-content: space-between;
        align-items: strech;
        flex-wrap: wrap;
        margin-bottom: -36px;
    }

    #sp-cross #cc .spcDate .spcDateInner .spcDateInnerList li.comment .commentInner .text {
        width: calc(50% - 12px);
        padding: 24px;
        margin-bottom: 36px;
    }
    
    #sp-cross #cc .date{
        margin-top: 33px;
    }

}


/*------------------------------------------------------------------------------------

以下 PC 用
									
------------------------------------------------------------------------------------*/

@media print, screen and (min-width: 900px) {

    /*------------------------------------------------------ HEADER */

    #sp-cross #cc .scHeader {
        height: 100vh;
        min-height: 640px;
        position: relative;
    }

    #sp-cross #cc .scHeader .schInner {
        display: flex;
        flex-wrap: initial;
        flex-direction: initial;
    }

    #sp-cross #cc .scHeader .schInner .schTxt {
        width: 80vw;
        max-width: 1100px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        padding-top: 0;
    }

    #sp-cross #cc .scHeader .schInner .schTxt .schTxtInner {
        padding: 0;
        text-align: left;
    }

    #sp-cross #cc .scHeader .schInner .schTxt .schTxtInner .en {
        font-size: 1.5rem;
    }

    #sp-cross #cc .scHeader .schInner .schTxt .schTxtInner .schHead {
        width: 50%;
        font-size: 4.2rem;
        margin-top: 40px;
    }

    #sp-cross #cc .scHeader .schInner .schTxt .schTxtInner .schHead span {
        background-color: #0682c6;
    }

    #sp-cross #cc .scHeader .schInner .schImg {
        width: 70%;
        margin-left: 30%;
    }

    @media screen and (min-width: 1100px) {
    #sp-cross #cc .scHeader .schInner .schImg {
        width: calc(770px + (100% - 1100px) / 2);
        margin-left: calc(100% - (770px + (100% - 1100px) / 2));
    }
    }

    #sp-cross #cc .scHeader .schInner .schImg img {
        height: 100vh;
        min-height: 640px;
        object-position: center top;
    }

    #sp-cross #cc .scHeader .scrollBtn {
        display: block;
        position: absolute;
        left: 10%;
        bottom: -30px;
    }

    /*------------------------------------------------------ MEMBER */

    #sp-cross #cc .members .membersList {
        width: 100%;
        max-width: 960px;
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        flex-wrap: wrap;
        margin-bottom: -50px;
        margin-left: auto;
        margin-right: auto;
    }

    #sp-cross #cc .members .membersList .membersListInner {
        width: calc((100% - 18%) / 3);
        flex-direction: column-reverse;
        justify-content: normal;
        margin-bottom: 50px;
    }

    #sp-cross #cc .members .membersList .membersListInner .membersTxt {
        width: 100%;
        margin-top: 12px;
    }

    #sp-cross #cc .members .membersList .membersListInner .membersTxt .profile {
        margin-top: 8px;
    }

    #sp-cross #cc .members .membersList .membersListInner .membersTxt .txt {
        margin-top: 10px;
    }

    #sp-cross #cc .members .membersList .membersListInner .membersImg {
        width: 100%;
    }

    #sp-cross #cc .members .membersList .membersListInner .membersImg figcaption {
        top: 0;
        right: -10px;
        transform: rotate(90deg) translate(100%, -100%);
    }

    #sp-cross #cc .members .membersList .membersListInner .membersImg figcaption .en {
        display: inline-block;
        font-size: 1.3rem;
        line-height: 1;
        color: inherit;
    }

    /*------------------------------------------------------ CONTENTS */

    #sp-cross #cc .spcContents.bk-lb {
        background: linear-gradient(90deg, #edf5fd, #edf5fd 96.6666%, #0682c6 96.6666%, #0682c6);
    }

    #sp-cross #cc .spcContents .sectionEn span {
        font-size: 15rem;
    }

    #sp-cross #cc .spcContents.bk-lb .sectionEn,
    #sp-cross #cc .spcContents:not(.bk-lb) .sectionEn {
        top: 140px;
    }

    #sp-cross #cc .spcContents .spcWrapper .spcContetnsTitle .outline {
        font-size: 3.2rem;
        padding: 20px 36px;
    }

    #sp-cross #cc .spcContents .spcWrapper .answer {
        width: 70%;
    }

    #sp-cross #cc .spcContents .spcWrapper .answer:nth-child(2n+1) {
        margin-left: 30%;
    }

    #sp-cross #cc .spcContents .spcWrapper .answer .answerInner .imgBox {
        width: 160px;
    }

    #sp-cross #cc .spcContents .spcWrapper .answer .answerInner .imgBox figure figcaption {
        margin-top: 12px;
    }

    #sp-cross #cc .spcContents .spcWrapper .answer .answerInner .imgBox figure figcaption span {
        font-size: 1.5rem;
    }

    #sp-cross #cc .spcContents .spcWrapper .answer .answerInner .txtBox {
        width: calc(100% - 210px);
        padding: 45px;
        box-shadow: 0 0 30px rgb(1 27 66 / 25%);
    }

    #sp-cross #cc .spcContents .spcWrapper .answer:nth-child(2n) .answerInner .txtBox:after {
        top: 30px;
        left: -20px;
    }

    #sp-cross #cc .spcContents .spcWrapper .answer:nth-child(2n+1) .answerInner .txtBox:after {
        top: 30px;
        right: -20px;
    }

    #sp-cross #cc .figureImg {
        position: relative;
    }

    #sp-cross #cc .figureImg.bk-lb {
        background: linear-gradient(90deg, #edf5fd, #edf5fd 96.6666%, #0682c6 96.6666%, #0682c6);
    }

    #sp-cross #cc .figureImg.isolated:before {
        content: "";
        display: block;
        width: 100%;
        height: 50%;
        background-color: #0682c6;
        position: absolute;
        left: 0;
        bottom: 0;
    }

    #sp-cross #cc .figureImg.right.isolated:before {
        bottom: auto;
        top: 0;
    }

    #sp-cross #cc .figureImg .figureImgInner {
        width: 86.6666%;
        position: relative;
        z-index: 5;
    }

    #sp-cross #cc .figureImg.right .figureImgInner {
        margin-left: calc(100% - 86.6666%);
    }

    #sp-cross #cc .figureImg .figureImgInner picture {
    }

    #sp-cross #cc .figureImg .figureImgInner picture img {
        height: 540px;
        object-position: center 25%;
    }

    /*END*/

    #sp-cross #cc .figureImg.end .figureImgInner {
        width: 100%;
    }

    #sp-cross #cc .bk-lb + .figureImg.end {
        margin: 50px 0 0 0;
    }


    /*------------------------------------------------------ OFF */

    #sp-cross #cc .off .offList {
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 0;
        margin-bottom: -50px;
    }

    #sp-cross #cc .off .offList .offListInner {
        width: calc((100% - 13%) / 3);
        flex-direction: column-reverse;
        justify-content: normal;
        margin-bottom: 50px;
    }

    #sp-cross #cc .off .offList .offListInner:not(:nth-child(3n)) {
        margin-right: 6.5%;
    }

    #sp-cross #cc .off .offList .offListInner .offTxt {
        width: 100%;
        margin-top: 10px;
    }

    #sp-cross #cc .off .offList .offListInner .offImg {
        width: 100%;
    }


    /*------------------------------------------------------ DATA */

    #sp-cross #cc .spcDate .spcDateInner .spcDateInnerList {
        margin-bottom: -60px;
    }

    #sp-cross #cc .spcDate .spcDateInner .spcDateInnerList li {

    }

    #sp-cross #cc .spcDate .spcDateInner .spcDateInnerList li .title {
        font-size: 2.8rem;
        min-height: 0;
    }

    #sp-cross #cc .spcDate .spcDateInner .spcDateInnerList li.comment .commentInner {
        justify-content: center;
    }

    #sp-cross #cc .spcDate .spcDateInner .spcDateInnerList li.comment .commentInner .text {
        width: calc(33.333% - (36px / 3));
    }

    #sp-cross #cc .spcDate .spcDateInner .spcDateInnerList li.comment.column-2 .commentInner .text {
        width: 45%;
    }

    #sp-cross #cc .spcDate .spcDateInner .spcDateInnerList li.comment .commentInner .text:not(:nth-child(3n)) {
        margin-right: 18px;
    }

    #sp-cross #cc .spcDate .spcDateInner .spcDateInnerList li.comment .commentInner .text:last-child {
        margin-right: 0;
    }

    #sp-cross #cc .spcDate .spcDateInner .spcDateInnerList li.comment .commentInner .text .commenter {
        margin-top: 10px;
    }

    #sp-cross #cc .spcDate .spcDateInner .spcDateInnerList li.comment .commentInner .text .icon {
        min-width: 180px;
    }

    #sp-cross #cc .spcDate .spcDateInner .spcDateInnerList li.comment .commentInner .graph {
        padding: 36px 7.5%;
    }

}

@media screen and (min-width: 1375px) {	
    #sp-cross #cc .scHeader .scrollBtn {
        right: auto;
        left: 50%;
        transform: translate(-550px,0);
    }
}