<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";

/* このCSSの目次
    (0) アニメーション用キーフレーム
    (1) 表紙
    (2) プロローグ
    (3) インタビュー

    上記のそれぞれに下記を別々に定義
        スマートフォン
        デスクトップ（小）
        デスクトップ追加設定（大）
*/


/* (0) アニメーション用キーフレーム
================================================================================ */

@keyframes come_logo {
    0% {
        bottom: 43.5vh;
    }
    100% {
        bottom: 70vh;
    }
}

@keyframes come_logo_SP {
    0% {
        top: 43.5%;
    }
    100% {
        top: 2.5%;
    }
}

@keyframes fade_in {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes come_photo {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes zoom_photo {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.2);
    }
}

@keyframes come_juntas {
    0% {
        opacity: 0;
        transform: translateY(10vh);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes come_juntas_SP {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}




/* (1) 表紙
================================================================================ */


/* スマートフォン */
@media only screen and (max-width: 767px) {

    #IssuesCover {
        margin: 0 auto;
        position: relative;
        height: calc(100vh - 60px);
        width: 100%;
    }

    #TitleLogo {
        width: 100%;
        position: absolute;
        z-index: 2;
        top: 43.5%;
        /* top: 2.5%; Last position */
        left: 8%;
    }

   .playAnime #TitleLogo {
        animation: .5s ease-in-out .5s 1 normal forwards running come_logo_SP;
    }

    #TitleLogo img {
        width: 100%;
        height: auto;
    }
    
    #TitleLogo .title {
        display: block;
        width: 80%;
    }

    #TitleLogo .sub_title {
        opacity: 0;
        display: block;
        box-sizing: border-box;
        width: 52%;
        padding: .5vh 0 0 .5%;
    }

    .playAnime .sub_title {
        animation: .5s ease-in-out .5s 1 normal forwards running fade_in;
    }

    #IssuesPhotoSP {
        opacity: 0;
        height: 60vh;
        position: absolute;
        z-index: 2;
        top: 20%;
        left: 24%;
    }

    .playAnime #IssuesPhotoSP {
        animation: 1.5s ease-in-out 1s 1 normal forwards running come_photo;
    }

    #IssuesPhotoSP span {
        display: inline-block;
        height: 100%;
        width: auto;
        overflow: hidden;
    }

    #IssuesPhotoSP img {
        height: 100%;
        width: auto;
    }

    .playAnime #IssuesPhotoSP img {
        animation: 10s linear 1s 1 normal forwards running zoom_photo;
    }

    #IssuesLeadSP {
        opacity: 0;
        width: 4%;
        position: absolute;
        z-index: 2;
        top: 20%;
        left: 8%;
    }

    .playAnime #IssuesLeadSP {
        animation: .5s ease-in-out 1s 1 normal forwards running come_juntas_SP;
    }

    #IssuesLeadSP img {
        width: 100%;
        height: auto;
    }

    #GuestName {
        opacity: 0;
        width: 40%;
        position: absolute;
        z-index: 2;
        top: 82vh;
        left: 24%;
    }

    .playAnime #GuestName {
        animation: .5s ease-in-out 1s 1 normal forwards running come_juntas_SP;
    }

    #GuestName img {
        width: 100%;
        height: auto;
    }

	
}

/* デスクトップ（小） */
@media print, screen and (min-width: 768px) {

    #IssuesCover {
        margin: 0 auto;
        position: relative;
        height: calc(100vh - 90px);
        width: calc( 100vh / 4 * 6 );
    }

    #IssuesCover::after {
        content: '';
        display: block;
        width: 1px;
        height: 50px;
        position: absolute;
        z-index: 5;
        left: 50%;
        bottom: 0;
        background: #000;
    }

    #TitleLogo {
        height: 13vh;
        position: absolute;
        z-index: 2;
        bottom: 43.5vh;
        /* bottom: 70vh; Last position */
        left: 50%;
        transform: translateX(-50%);
    }

    .playAnime #TitleLogo {
        animation: .5s ease-in-out .5s 1 normal forwards running come_logo;
    }

    #TitleLogo img {
        width: auto;
        height: 100%;
    }
    
    #TitleLogo .title {
        display: block;
        height: 70%;
    }

    #TitleLogo .sub_title {
        opacity: 0;
        display: block;
        box-sizing: border-box;
        padding-left: .7%;
        height: 30%;
    }

    .playAnime .sub_title {
        animation: .5s ease-in-out .5s 1 normal forwards running fade_in;
    }

    #IssuesPhoto {
        opacity: 0;
        height: 65.5vh;
        position: absolute;
        z-index: 2;
        bottom: 0;
        left: 28%;
    }

    .playAnime #IssuesPhoto {
        animation: 1.5s ease-in-out 1s 1 normal forwards running come_photo;
    }

    #IssuesPhoto span {
        display: inline-block;
        height: 100%;
        width: auto;
        overflow: hidden;
    }

    #IssuesPhoto img {
        height: 100%;
        width: auto;
    }

    .playAnime #IssuesPhoto img {
        animation: 10s linear 1s 1 normal forwards running zoom_photo;
    }

    #IssuesLead {
        opacity: 0;
        height: 25vh;
        position: absolute;
        z-index: 2;
        left: 7%;
        top: 35%;
    }

    .playAnime #IssuesLead {
        animation: .5s ease-in-out 1s 1 normal forwards running come_juntas;
    }

    #IssuesLead img {
        height: 100%;
        width: auto;
    }

    #GuestName {
        opacity: 0;
        height: 7vh;
        position: absolute;
        z-index: 2;
        bottom: 10%;
        left: 17%;
    }

    .playAnime #GuestName {
        animation: .5s ease-in-out 1s 1 normal forwards running come_juntas;
    }

    #GuestName img {
        height: 100%;
        width: auto;
    }
}




/* (3) インタビュー
================================================================================ */

/* デバイス共通 */

#SecInterview,
#SecInterview2 {
    background: #fafafa;
}

.alt_char_wrapper {
    display: inline-block;
    line-height: 1.0em;
    position: relative;
    width: 16px;
    height: 16px;
}

.alt_char {
    vertical-align: text-bottom;
    width: 16px !important;
    height: 16px !important;
       line-height: 1.0em;
          position: absolute;
		  top: 4px;
		  left: 0;
}
object {
    height: inherit;
    width: auto;
}

#SecInterview dl,
#SecInterview2 dl,
#SecInterview p,
#SecInterview2 p {
    margin: 0 0 70px 0 !important;
    font-size: 100%;
    font-size: 1.4rem;
    line-height: 2.0em;
    letter-spacing: .03em;
    -moz-text-align: justify;
    text-align: justify;
    text-justify: distribute;
    text-justify: inter-character; 
}

#SecInterview dt,
#SecInterview2 dt {
    position: relative;
    margin-bottom: 40px;
    font-weight: 600;
}

#SecInterview dd,
#SecInterview2 dd {
    margin-left: 0;
    margin-inline-start: 0 !important;
}

#SecInterview dt::before,
#SecInterview2 dt::before {
    display: inline-block;
    margin-right: .8em;
    vertical-align: middle;
    background-color: #000;
    content: "";
    width: 30px;
    height: 1px;
}

#SecInterview .fig_after,
#SecInterview2 .fig_after {
    color: #777;
    text-align: left;
    margin-bottom: 20px !important;
}


/* スマートフォン */
@media only screen and (max-width: 767px) {


    #SecInterview,
    #SecInterview2 {
        padding: 0 38px 80px 38px;
        position: relative;
        z-index: 26;
        overflow: hidden;
    }

    #SecInterview2 {
	 padding-bottom: 140px !important;
    }

    #SecInterview h2,
    #SecInterview2 h2 {
        font-size: 1.6rem;
        margin-top: 90px;
        margin-bottom: 30px;
        font-weight: normal;
    }

    #SecInterview h3,
    #SecInterview2 h3 {
        font-size: 1.6rem;
        line-height: 1.8em;
        font-weight: 600;
        letter-spacing: 0.05em;
        margin-bottom: 60px;
    }

    #SecInterview dt,
    #SecInterview2 dt {
        font-weight: 600;
    }

	#SecInterview dt .Kerning1,
    #SecInterview2 dt .Kerning1 {
	letter-spacing: -0.04em !important;
	}

	#SecInterview dt .Kerning2,
    #SecInterview2 dt .Kerning2 {
	letter-spacing: -0.03em !important;
	}

	#SecInterview .Kerning3,
    #SecInterview2 .Kerning3 {
	word-break: break-all;
	letter-spacing: -0.02em !important;
	}

    #SecInterview .sec1,
    #SecInterview2 .sec1 {
/*         padding-top: 40px; */
    }

    figure.portrait1 {
        margin: 0 -38px 40px -38px !important;
    }

    figure.portrait2 {
        margin: 0 -38px 40px 0 !important;
    }

	figure.portrait2.Btmportrait {
	margin: 0 -38px 40px -38px !important;	    
	}   

    figure.portrait3 {
        margin: 0 -38px 100px -38px !important;
    }

    #SecInterview .ListKomeS,
    #SecInterview2 .ListKomeS {
        padding-left: 0;
        text-align-last: left;
        margin-top: 90px 0 0 0;
        font-size: 1.1rem;
        line-height: 2.0em; 
       color: #707070;
    }

    #SecInterview .Inteview02Caution.ListKomeS,
    #SecInterview2 .Inteview02Caution.ListKomeS {
        font-size: 1.1rem;
        line-height: 2.0em; 
       color: #707070;
        margin-top: 170px;
    }

    #SecInterview2 .text dl {
	margin-bottom: 50px !important;
    }

	.InterviewPortrait {
	margin-top: 20px;
	}

	.InterviewPortraitB {
	margin-top: 20px;
	}

	.InterviewPortrait ul {
	display: flex;
	}
	
	#SecInterview .InterviewPortrait p.fig_after {
	margin-top: 5px !important;
	font-size: 1.3rem !important;
	}

	#SecInterview .InterviewPortraitB p.fig_after {
	margin-top: 5px !important;
	font-size: 1.3rem !important;
	}

	.InterviewPortrait ul li:first-child {
	padding-right: 2.5%;
	}

	.InterviewPortrait ul li:last-child {
	padding-left: 2.5%;
	}

}

/* デスクトップ（小） */
@media print, screen and (min-width: 768px) {


    #SecInterview,
    #SecInterview2 {
        position: relative;
    }

    #SecInterview h2,
    #SecInterview2 h2 {
        margin-top: 0;
        margin-bottom: 80px;
        font-weight: normal;
        font-size: 1.6rem;
    }
    
    #SecInterview h3,
    #SecInterview2 h3 {
        font-size: 1.8rem;
        line-height: 1.8em;
        font-weight: 600;
        letter-spacing: 0.05em;
        margin-bottom: 60px;
    }

    #SecInterview .sec,
    #SecInterview2 .sec {
        box-sizing: border-box;
        padding: 15vh 0 10vh 0;
        background: #fafafa;
    }
    
    #SecInterview .sec {
	   padding-bottom: 150px;
    }
 
     #SecInterview .sec {
	   padding-top: 100px;
    }
 
     #SecInterview2 .sec {
	    padding-top: 350px !important;
     }
 

    #SecInterview .sec dl:last-child,
    #SecInterview2 .sec dl:last-child {
        margin-bottom: 0 !important;
    }

    #SecInterview .sec1,
    #SecInterview2 .sec1 {
        margin-top: 10vh;
        margin-bottom: 10vh;
        display: flex;
    }

    #SecInterview .sec1 {
	  margin-bottom: 0 !important;
    }
    
    #SecInterview .sec2,
    #SecInterview2 .sec2 {
        display: flex;
        flex-direction: row-reverse;
    }

    figure.portrait1 {
        flex-basis: 50%;
        box-sizing: border-box;
        padding-right: 5% !important;
        padding-left: calc(5% + 130px) !important;
    }

    figure.portrait1 img {
        position: -webkit-sticky;
        position: sticky;
        top: 20vh;
	    width: 100%;
        height: auto;
    }

    figure.portrait1 + div {
        flex-basis: 50%;
        box-sizing: border-box;
        padding: 0 10%;
    }

    figure.portrait2 {
        flex-basis: 50%;
        box-sizing: border-box;
        padding: 0 10% !important;
    }

    figure.portrait2 + div {
        flex-basis: 50%;
        box-sizing: border-box;
        padding-right: 5% !important;
        padding-left: calc(5% + 130px) !important;
    }

    figure.portrait2 img {
        position: -webkit-sticky;
        position: sticky;
        top: 15vh;
        width: 100%;
        height: auto;
    }

/*
    #SecInterview2 .sec3 {
        position: relative;
        width: 100%;
        box-sizing: border-box;
        padding-left: 60%;
        z-index: 2;
        padding-top: 2vh !important;
        padding-bottom: 18vh !important;
    }

    #SecInterview2 .sec3 .ListKomeS {
        font-size: 1.1rem;
        line-height: 1.8em;
        color: #707070;
    }
*/

    #SecInterview2 .sec3 {
        position: relative;
        width: 100%;
        box-sizing: border-box;
        padding-left: 62%;
        z-index: 2;
        padding-top: 5vh !important;
    }

    #SecInterview2 .sec3 {
        position: relative;
        width: 100%;
        box-sizing: border-box;
        padding-left: calc(5% + 130px) !important;
        z-index: 2;
        padding-top: 5vh;
    }

    #SecInterview2 .sec2 .ListKomeS {
        font-size: 1.1rem;
        line-height: 1.8em;
        color: #707070;
    }
 
    #SecInterview2 .sec2 {
     display: block !important;
    }
   
    #SecInterview2 .sec {
	padding: 20% 10% 15% 25% !important;
    }

    #SecInterview2 .sec2 .text {
	 padding-top: 12% !important;
	padding-left: 53% !important;
    }
    
    #SecInterview2 .text dl {
	margin-bottom: 75px !important;
    }

	.InterviewPortrait {
	margin-top: 50px !important;
	}

	.InterviewPortrait ul {
	display: flex;
	}
	
	#SecInterview .InterviewPortrait p.fig_after {
	margin-top: 7px !important;
	font-size: 1.3rem !important;
	}
	
	#SecInterview .InterviewPortraitB p.fig_after {
	margin-top: 7px !important;
	font-size: 1.3rem !important;
	text-align: left !important;
	}

	#SecInterview .InterviewPortraitB img {
	width: 50% !important;
	}

	.InterviewPortrait ul li:first-child {
	padding-right: 2%;
	}

	.InterviewPortrait ul li:last-child {
	padding-left: 2%;
	}
	
}

@media print, screen and (min-width: 1201px) {
    figure.portrait1 img {
        top: 15vh;
    }

}
</pre></body></html>