@charset "UTF-8";

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


/*--- intMain --*/
#intMain{
    height: 100vh;
    position: relative;
    z-index: 0;
}

#intMain .image{
    position: fixed;
    width: 100%;
    height: 100vh;
    z-index: -1;
}

#interview.int01 #intMain .image{    background: url("../images/interview/mv_int01.jpg") center center / cover no-repeat;}
#interview.int02 #intMain .image{    background: url("../images/interview/mv_int02.jpg") center center / cover no-repeat;}
#interview.int03 #intMain .image{    background: url("../images/interview/mv_int03.jpg") center center / cover no-repeat;}
#interview.int04 #intMain .image{    background: url("../images/interview/mv_int04.jpg") center center / cover no-repeat;}
#interview.int05 #intMain .image{    background: url("../images/interview/mv_int05.jpg") center center / cover no-repeat;}

#intMain .info{
    width: 100%;
    left: 0;
    bottom: 0;
    padding: 15% 0;
    position: absolute;
    background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8) 100%);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.4;
    font-weight: bold;
}

#intMain .info .en{
    font-size: 18px;
}
#intMain .info .title{
    font-size: 42px;
    margin: 0.8em auto;
}
#intMain .info .position{
    font-size: 12px;
}
#intMain .info .name{
    font-size: 18px;
    margin: 0.8em auto 0.4em;
}
#intMain .info .profile{
    opacity: 0.6;
    font-size: 12px;
}

#intMain .info .scroll{
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-50%,0);
    padding-bottom: 80px;
}
#intMain .info .scroll::before{
    content: "";
    display: block;
    width: 1px;
    height: 60px;
    background: #fff;
    opacity: 0.3;
    position: absolute;
    left: 50%;
    bottom: 0;
}
#intMain .info .scroll::after{
    content: "";
    display: block;
    width: 1px;
    height: 20px;
    background: #fff;
    position: absolute;
    left: 50%;
    bottom: 20px;
    animation: scrollAnim 1.6s ease infinite;
}

@keyframes scrollAnim {
	0% { transform:translate(0,-100%); opacity: 1; }
	85% { transform:translate(0,100%); opacity: 1; }
	90% { transform:translate(0,100%); opacity: 0; }
	95% { transform:translate(0,-100%); opacity: 0; }
	100% { transform:translate(0,-100%); opacity: 1; }
}

#intMain .info .scroll p{
    font-size: 11px;
}


/*--- work --*/
#contents .work{
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(15px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    z-index: 1;
}
#contents .work .workList{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 40px;
}
#contents .work .workList li{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 21%;
    margin: 0 2%;
}

#contents .work .workList .image{
    max-width: 80px;
}
#contents .work .workList .title{
    font-size: 16px;
}


/*--- interviewContents --*/
#contents .section {
    position: relative;
    z-index: 1;
}
#contents .interviewContents .chapter{
    display: flex;
    justify-content: space-between;
    max-width: 1320px;
    margin: 0 auto;
    z-index: 1;
    position: relative;
}
#contents .interviewContents .chapter02{
    flex-direction: row-reverse;
}
#contents .interviewContents .chapter .image{
    width: 50%;
    background-position: center center;
    background-size: cover;
}
#contents .interviewContents .chapter .info{
    width: 50%;
    padding: 100px 60px 160px;
    position: relative;
}
#contents .interviewContents .chapter02 .info{
    padding: 160px 60px 100px;
}

#contents .numBox{
    background: #e21b13;
    color: #fff;
    width: 160px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: bold;
    position: absolute;
    flex-direction: column;
    z-index: 1;
}

#contents .interviewContents .chapter01 .info .numBox{
    right: calc(100% - 30px);
    top: -30px;
}
#contents .interviewContents .chapter02 .info .numBox{
    top: -50px;
    left: 60px;
}

#contents .numBox .en{
    font-size: 12px;
}
#contents .numBox .title{
    font-size: 18px;
    line-height: 1.3;
}

#contents .interviewContents .photo{
    width: 80%;
    max-width: 960px;
    height: 500px;
    margin: -50px auto;
    z-index: 0;
    position: relative;
    background-position: center center;
    background-size: cover;
}


/*--- sample --*/
#contents .bgBrown{    
    background-position: center top;
    background-size: cover;
    position: relative;
    clip-path: inset(0); /*背景の固定画像のために必要*/
}
#contents .bgBrown::before{
    content: "";
    display: block;
    background: #260e00;
    opacity: 0.85;
    mix-blend-mode: multiply;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

/*背景の固定画像*/
#contents .bgBrown::after{ 
    content: "";
    display: block;
    width: 100%;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    z-index: -1;
}
#interview.int01 #contents .bgBrown::after{ background: url("../images/interview/img_int01_04.jpg") center center / cover no-repeat;}
#interview.int02 #contents .bgBrown::after{ background: url("../images/interview/img_int02_04.jpg") center center / cover no-repeat;}
#interview.int03 #contents .bgBrown::after{ background: url("../images/interview/img_int03_04.jpg") center center / cover no-repeat;}
#interview.int04 #contents .bgBrown::after{ background: url("../images/interview/img_int04_04.jpg") center center / cover no-repeat;}
#interview.int05 #contents .bgBrown::after{ background: url("../images/interview/img_int05_04.jpg") center center / cover no-repeat;}

#contents .bgBrown .section{
    position: relative;
    z-index: 1;
    color: #fff;
}

/*--- schedule --*/
#contents .schedule {
}
#contents .schedule .image{
    width: 80%;
    max-width: 800px;
    margin: 0 auto 60px;
}
#contents .schedule .comment{
    max-width: 1080px;
    width: 85%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}
#contents .schedule .comment li{
    width: 22%;
}
#contents .schedule .comment li .time{
    font-size: 12px;
    line-height: 1;
    background: #fff;
    color: #000;
    padding: 5px 10px;
    margin-bottom: 7px;
    display: table;
    border-radius: 4px;
}
#contents .schedule .comment li .title{
    font-size: 18px;
    margin-bottom: 10px;
    letter-spacing: 0em;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
#contents .schedule .comment li .text{
    line-height: 1.8;
}

#contents .schedule .comment li .text .note{
    font-size: 0.7em;
    display: block;
    margin-top: 10px;
    opacity: 0.6;
    letter-spacing: 0;
}


/*--- attractivePoint --*/

#contents .attractivePoint{
}
#contents .attractivePointList{
    max-width: 1200px;
    width: 85%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 20px;
	padding-top: 40px;
}
#contents .attractivePointList li{
    padding: 45px;
    background: #fff;
    color: #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}
#contents .attractivePointList li .num{
    background: #e21b13;
    width: 70px;
    height: 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    position: absolute;
    left: 50%;
    top: 0;
    transform: translate(-50%,-50%);
    line-height: 1;
    color: #fff;
    padding-top: 1%;
}
#contents .attractivePointList li .image{
    max-width: 80px;
    margin-top: 20px;
}

#contents .attractivePointList li .title{
    position: relative;
    padding: 15px;
    font-size: 22px;
    text-align: center;
    width: 100%;
    margin: 20px auto;
    line-height: 1.4;
}
#contents .attractivePointList li .title::before,
#contents .attractivePointList li .title::after{
    content: "";
    display: block;
    position: absolute;
    width: 20%;
    aspect-ratio: 1 / 1;
}
#contents .attractivePointList li .title::before{
    border-left: 1px solid #000;
    border-top: 1px solid #000;
    left: 0;
    top: 0;
}
#contents .attractivePointList li .title::after{
    border-right: 1px solid #000;
    border-bottom: 1px solid #000;
    right: 0;
    bottom: 0;
}

/*--- personality --*/
#contents .personalityList{
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    width: 85%;
    margin: 0 auto;
    gap: 20px;
    padding-top: 60px;
}
#contents .personalityList li{
    padding: 45px;
    background: #f2f2f2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    width: calc((100% - (20px * 3)) / 3);
}
#contents .personalityList li .image{
    position: absolute;
    left: 50%;
    top: 0;
    transform: translate(-50%,-50%);
    max-width: 150px;
    width: 40%;
}
#contents .personalityList li .title{
    font-size: 24px;
    text-align: center;
    font-weight: bold;
    margin: 30px auto 20px;
    letter-spacing: 0.01em;
    line-height: 1.4;
}
#contents .personalityList li .text{
    line-height: 1.6;
}



/*--- message --*/
#contents .message .image{
    width: 100%;
    min-height: 480px;
    height: 33.333vw;
}

#interview.int01 #contents .message .image{ background: url("../images/interview/img_int01_05.jpg") center center / cover no-repeat;}
#interview.int02 #contents .message .image{ background: url("../images/interview/img_int02_05.jpg") center center / cover no-repeat;}
#interview.int03 #contents .message .image{ background: url("../images/interview/img_int03_05.jpg") center center / cover no-repeat;}
#interview.int04 #contents .message .image{ background: url("../images/interview/img_int04_05.jpg") center center / cover no-repeat;}
#interview.int05 #contents .message .image{ background: url("../images/interview/img_int05_05.jpg") center center / cover no-repeat;}

#contents .message .numBox{
    color: #000;
}
#contents .message .messageInr{
    padding: 100px 120px 120px;
    position: relative;
    margin-top: -60px;
    z-index: 1;
}
#contents .message .messageInr .numBox{
    left: -20px;
    top: -20px;
}
#contents .message .messageInr .head03{
    margin-bottom: 25px;
}


/*--- slider --*/
#categoryMenu{
    background: #fff;
}
#categoryMenu .sliderContainer{
    overflow: hidden;
    width: 100%;
    padding-bottom: 40px;
}
#categoryMenu .slider{
    width: 1080px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
#categoryMenu .slick-list{
    overflow: visible;
}
#categoryMenu .slick-slide{
    margin: 0 15px;
    overflow: hidden;
    position: relative;
}
#categoryMenu .slick-slide .image{
    position: relative;
}
#categoryMenu .slick-slide .image img{
    transition: .4s;
}
#categoryMenu .slick-slide .image .num{
    color: #e21b13;
    font-size: 18px;
    position: absolute;
    left: 25px;
    top: 13px;
}

#categoryMenu .slick-slide .image .categoryTag{
    position: absolute;
    right: 0;
    top: 0;
    background: #000;
    color: #fff;
    padding: 8px 10px;
}
#categoryMenu .info{
    color: #fff;
    text-align: center;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 30px;
}
#categoryMenu .info .title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.4;
    letter-spacing: 0.05em;
}
#categoryMenu .info .position{
    font-size: 10px;
    margin-bottom: 8px;
    line-height: 1.5;
    opacity: 0.6;
}
#categoryMenu .info .name{
    font-size: 14px;
    line-height: 1.5;
}

.slick-prev,
.slick-next{
    opacity: 1;
    width: 50px;
    height: 50px;
    position: absolute;
    top: 50%;
    transition: .4s;
}

.slick-prev:before, .slick-next:before{
    content: "";
    display: block;
    opacity: 1;
    font-size: 14px;
    width: 100%;
    padding-top: 100%;
    border-radius: 100px;
    background: #e21b13;
    margin-bottom: 10px;
    transition: .4s;
}

.slick-prev:after,
.slick-next:after{
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    display: block;
}

.slick-next,
.slick-prev{
    z-index: 2; 
}
.slick-prev:after{
    background: url("../images/common/prev_arrow.png") center top / contain no-repeat;
}
.slick-next:after{
    background: url("../images/common/next_arrow.png") center top / contain no-repeat;
}

#categoryMenu .slick-dots {
    bottom: -40px;
}
#categoryMenu .slick-dots li,
#categoryMenu .slick-dots li button:before,
#categoryMenu .slick-dots li button{
    width: 8px;
    height: 8px;
    border-radius: 100px;
}
#categoryMenu .slick-dots li button:before{
    background: #ccc;
    font-size: 0;
    line-height: 0;
    content: "";
    opacity: 1;
    transition: .5s;
}
#categoryMenu .slick-dots li.slick-active button:before{
    background: #e21b13;
    transform: scale(1.5);
}


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



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

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


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

@media screen and (max-width:1200px) {
    
    /*--- attractivePoint ---*/
    #contents .attractivePointList li,
    #contents .personalityList li{
        padding: 30px;
    }
    #contents .attractivePointList li .title {
        padding: 18px 5px;
        font-size: 20px;
    }
    #contents .personalityList li .title {
        font-size: 20px;
        margin: 35px auto 15px;
    }
    
    /*--- slider ---*/
    #categoryMenu .slider {
        width: 340px;
    }
    
}

/*----------------------------------------------------
	☆TOP UNDER 1000
----------------------------------------------------*/

@media screen and (max-width:1000px) {    
    
    /*--- interviewContents ---*/
    #contents .interviewContents .chapter .info {
        padding: 60px 60px 120px;
    }
    #contents .interviewContents .chapter02 .info {
        padding: 140px 60px 60px;
    }
    
}



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

@media screen and (max-width:900px) {    
    
    
    /*--- intMain ---*/
    #intMain .info .title {
        font-size: 36px;
    }
    
    /*--- work ---*/
    #contents .work .workList .title {
        font-size: 14px;
    }
    
    /*--- interviewContents ---*/
    #contents .interviewContents.section{
        padding-top: 0;
    }
    #contents .interviewContents .chapter{
        flex-direction: column;
    }
    #contents .interviewContents .chapter .image{
        width: 100%;
        height: 60vw;
    }
    #contents .interviewContents .chapter .info,
    #contents .interviewContents .chapter02 .info{
        width: 100%;
        padding: 7.5%;
    }
    #contents .interviewContents .chapter02 .info{
        padding-bottom: 0;
    }
    #contents .numBox{
        width: 140px;
        height: 140px;
    }
    #contents .interviewContents .chapter01 .info .numBox,
    #contents .interviewContents .chapter02 .info .numBox{
        right: 7.5%;
        left: auto;
    }
    #contents .interviewContents .photo {
        margin: 0 auto 7.5%;
    }
    
    /*--- schedule ---*/
    #contents .schedule .comment{
        flex-wrap: wrap;
    }
    #contents .schedule .comment li{
        width: 48%;
        margin-bottom: 40px;
    }
    #contents .schedule .comment li:nth-child(3),
    #contents .schedule .comment li:nth-child(4){
        margin-bottom: 0;
    }
    
    /*--- attractivePoint ---*/
    #contents .attractivePointList,
    #contents .personalityList{
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    #contents .attractivePointList li,
    #contents .personalityList li{
        width: 100%;
        max-width: 480px;
        margin-bottom: 20px;
    }
    #contents .personalityList li{
        margin-bottom: 60px;
    }
    #contents .personalityList li:last-child{
        margin-bottom: 0;
    }
    #contents .attractivePointList li:last-child{
        margin-bottom: 0;
    }
    #contents .attractivePointList li .num {
        width: 55px;
        height: 55px;
        font-size: 24px;
    }
    #contents .message .messageInr {
        padding: 7.5%;
        margin-top: -7.5%;
    }
    
    /*--- message ---*/
    #contents .message .messageInr .numBox {
        left: -4.5%;
        top: -60px;
    }
}


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

@media screen and (max-width:600px) {
    
    /*--- intMain ---*/
    #intMain .info {
        padding: 25% 0;
    }
    #intMain .info .en {
        font-size: 15px;
    }
    #intMain .info .title {
        font-size: min(6.5vw,28px);
        margin: 0.6em auto;
        padding-left: 15px;
        padding-right: 15px;
        word-break: auto-phrase;
    }
    #intMain .info .position {
        font-size: 11px;
    }
    #intMain .info .name {
        font-size: 16px;
        margin: 1em auto 0.2em;
    }
    #intMain .info .profile {
        font-size: 11px;
    }

    #intMain .info .scroll {
        padding-bottom: 45px;
    }
    #intMain .info .scroll::before {
        height: 40px;
    }
    #intMain .info .scroll::after {
        height: 12px;
        bottom: 18px;
    }
    #intMain .info .scroll p {
        font-size: 8px;
    }
    
    /*--- work ---*/
    #contents .work .workList .image {
        max-width: 60px;
    }
    #contents .work .workList {
        margin-bottom: 0;
        flex-wrap: wrap;
        justify-content: center;
        padding-top: 25px;
    }
    #contents .work .workList li{
        width: 43%;
        margin: 0 0 30px;
        padding: 0 15px;
    }
    #contents .work .workList .title {
        font-size: 13px;
        line-height: 1.4;
    }
    #contents .interviewContents .chapter .image {
        height: 80vw;
    }
    
    
    /*--- interviewContents ---*/
    #contents .numBox {
         width: 100px;
        height: 100px;
    }
    #contents .interviewContents .chapter01 .info .numBox,
    #contents .interviewContents .chapter02 .info .numBox {
        right: auto;
        left: auto;
        top: -80px;
    }
    #contents .numBox .en{
        font-size: 10px;
    }
    #contents .numBox .title{
        font-size: 13px;
        word-break: auto-phrase;
    }
    #contents .interviewContents .chapter .info,
    #contents .interviewContents .chapter02 .info {
        width: 100%;
        padding: 15% 7.5%;
    }
    #contents .interviewContents .chapter02 .info {
        padding-bottom: 0;
    }
    /*#contents .interviewContents .chapter .info .title br{
        display: none;
    }*/
    #contents .interviewContents .photo {
        height: 60vw;
        margin-bottom: 15%;
    }
    
    /*--- schedule ---*/
    #contents .schedule .image {
        width: 170px;
    }
    #contents .schedule .image img{
        transform: translate(-14px,0);
    }
    #contents .schedule .comment li {
        width: 100%;
        margin-bottom: 30px;
    }
    #contents .schedule .comment li:nth-child(3){
        margin-bottom: 30px;
    }
    #contents .schedule .comment li .time{
        margin-bottom: 3px;
    }
    #contents .schedule .comment li .title {
        font-size: 16px;
        margin-bottom: 5px;
    }
    #contents .schedule .comment li .text {
        line-height: 1.6;
        font-size: 13px;
    }
    
    
    /*--- attractivePointList ---*/
    #contents .attractivePointList li .image {
        max-width: 60px;
    }
    #contents .attractivePointList li .title {
        padding: 15px 5px;
        font-size: 18px;
        margin: 15px auto;
    }
    
    /*--- personality ---*/
    #contents .personalityList li .title {
        font-size: 18px;
    }
    
    /*--- message ---*/
    #contents .message .image {
        height: 66vw;
        min-height: 0;
    }    
    #contents .message .messageInr {
        padding: 15% 7.5%;
    }
    
    /*--- slider --*/
    #categoryMenu .slider {
        width: 85%;
    }    
    #categoryMenu .info .title {
        font-size: 17px;
    }
    #categoryMenu  .sliderContainer{
        padding-bottom: 40px;
    }
    .slick-prev, .slick-next {
        width: 40px;
        height: 40px;
    }
    .slick-prev {
        left: -5px;
    }
    .slick-next {
        right: -5px;
    }
    #categoryMenu .slick-dots {
        bottom: -40px;
    }
    
    
}

