:root {
	--white: #fff;
    --black:#312825;
    --red:#EEABAB;
    --grey-bg1:#F1ECEC;
    --pinkbg:#FDF8F9;
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	
}
html {
    font-size: 62.5%; /* 1.6rem = 16px、1.8 = 18px、2.0rem = 20px のような設定になってます*/
  }

body {
    color: var(--black);
    font-family: "Zen Old Mincho", serif;
    font-weight: 400;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    font-size: 1.4rem;
}
.front-page{
    background-image: url('../img/bgmain.jpg');
    background-size: cover;
    background-position: top;
}

.container{
    max-width: 800px;
}

.font-opensans{
    font-family: "Open Sans", sans-serif;
}
.greybg1{
    background-color: var(--grey-bg1);
}
.pinkbg{
    background-color: var(--pinkbg);
}
.pd-top200{
    padding-top: 200px;
}
/** header styles **/
.menu-icon {
    width: 65px;
    height: 24px;
    position: fixed;
    top: 24px;
    right: 24px;
    cursor: pointer;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.menu-icon .line {
    width: 100%;
    height: 3px;
    background-color: black;
    transition: all 0.3s ease;
}

.menu {
    width: 100%;
    height: 100%;
    background-color: white;
    position: fixed;
    top: 0;
    right: -100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    z-index: 999;
}

.menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    writing-mode: vertical-rl;
    text-align: center;
}

.menu ul li {
    font-size: 24px;
    margin: 10px 0;
}

.menu-icon.open .line1 {
    transform: rotate(45deg) translate(11px, 10px);
}

.menu-icon.open .line2 {
    transform: rotate(-43deg) translate(4px, -4px);
}

.menu.open {
    right: 0;
}

.header-logo{
    position: fixed;
    top: 24px;
    left: 24px;
    z-index: 99;
}
.header .header-menu .header-nav{
    writing-mode: vertical-lr;
}
.header .header-menu .header-nav .header-menu{
    list-style: none;
    margin: 0px 20px;
    text-align: justify;
}
.header .header-menu .header-nav .header-menu .header-links{
    color: var(--black);
    font-size: 2.4rem;
    letter-spacing: 10px;
    transition: .2s ease;
}
.header .header-menu .header-nav .header-menu .header-links:hover{
    text-decoration: none;
    color: var(--red);
}

@media screen and (max-width: 768px) {
    .header-logo__link img{
        max-width: 80px;
    }
    .menu-icon{
        width: 35px;
    }
}


/** Blur animation of text**/
.blur {
    animation-name: blurAnime;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}

@keyframes blurAnime {
    from {
        filter: blur(10px);
        transform: scale(1.02);
        opacity: 0;
    }

    to {
        filter: blur(0);
        transform: scale(1);
        opacity: 1;
    }
}

.blurTrigger {
    opacity: 0;
    /* Default delay value */
    animation-delay: 0s;
}

/* Specific delays for each span */
.blurTrigger:nth-of-type(1) {
    animation-delay: 0.5s; /* Adjust delay as needed */
}

.blurTrigger:nth-of-type(2) {
    animation-delay: 1s; /* Adjust delay as needed */
}

.blurTrigger:nth-of-type(3) {
    animation-delay: 1.5s; /* Adjust delay as needed */
}
.blurTrigger:nth-of-type(4) {
    animation-delay: 2s; /* Adjust delay as needed */
}

.logo-c{
    height: 100%;
}
.logo-c img{
    width: 56px;
    height: 150px;
}

/** Main styles **/
.sec-1 .sec-1__centertext{
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 130px;
    margin-bottom: 150px;
}
.sec-1 .sec-1__centertext .sec-1__content{
    writing-mode: vertical-lr;
    white-space: pre-line;
    text-align: start;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sec-1 .sec-1__centertext h1{
    font-size: 4.8rem;
    letter-spacing: 11px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column-reverse;
}
.sec-1 .sec-1__news {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 145px;
}
.sec-1 .sec-1__news .sec-1__news-wrap{
    border-top-left-radius: 24px;
    border-bottom-left-radius:24px ;
    background-color: var(--white);
    padding: 24px;
    width: 100%;
    max-width: 570px;

}
@media screen and (max-width: 768px) {
    .mouse{
        margin-top: -15rem;
        margin-bottom: 50px;
    }
    .sec-1 .sec-1__centertext h1{
        font-size: 3rem;
    }
    .sec-1 .sec-1__news .sec-1__news-wrap{
        max-width: 90%;
    }
    .sec-title{
        max-width: 100px;
    }
}

.news_wrap{
    border-top: 1px solid var(--black);
    border-bottom: 1px solid var(--black);
    padding: 16px 0px;
    display: flex;
    color: var(--black);
    text-decoration: none;
    transition: .2s ease;
    align-items: center;
    justify-content: space-between;
}
.news_wrap:hover{
    opacity: 70%;
    text-decoration: none;
    color: var(--black);
}
.news_wrap .news_left{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    flex-shrink: 0;
    margin-right: 20px;
    margin-left: 10px;
}
.news_wrap .news-date{
    color: #6F6666;
    font-weight: 300;
}
.news_wrap .news-cat{
    padding: 0px 30px ;
    border-left: 1px solid var(--black);
    border-right:1px solid var(--black) ;
}
.news_wrap .news_title{
    font-size: 2.4rem;
    font-weight: 600;
    margin-bottom: 0px;
}
.news_wrap .news_right{
    display: flex;
    align-items: flex-start;
    padding-right: 20px;
}
.dli-arrow-right {
    display: inline-flex;
    vertical-align: middle;
    color: var(--black);
    background-color: var(--black);
    line-height: 1;
    position: relative;
    width: 24px;
    height: 0.1em;
    margin-right:16px ;
  }
  
  .dli-arrow-right::before {
    content: '';
    width: 0.5em;
    height: 0.5em;
    border: 0.1em solid var(--black);
    border-left: 0;
    border-bottom: 0;
    transform: rotate(45deg);
    transform-origin: top right;
    position: absolute;
    top: 50%;
    right: -0.05em;
    box-sizing: border-box;
  }

  @media screen and (max-width: 768px) {
    .news_wrap .news-inner{
        flex-direction: column;
    }
    .news_wrap .news_title{
        font-size: 1.8rem;
    }
  }
.mouse {
    width: 2px;
    height: 65px;
    margin-left: 5%;
    position: relative;
    background: var(--black);
    border-radius: 0px;
    writing-mode: vertical-lr;
    /*animation: colorSlide 5s linear infinite, nudgeMouse 5s ease-out infinite;*/
  }
  .mouse:before,
  .mouse:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
  }
  
  .mouse:after {
    background-color: var(--black);
    width: 6px;
    height: 6px;
    border-radius: 100%;
    animation: trackBallSlide 2s linear infinite;
  }
  
  
  /* Animations */
  
  @keyframes trackBallSlide {
    0% {
      transform: translateY(-30px); /* Start above the viewport */
    }
    100% {
      transform: translateY(25px); /* End below the viewport */
    }
  }
  

.sec-2 .sec-2__wrap{
    background-color: var(--white);
    padding: 170px 0px;
    box-shadow: 0 0 80px 105px var(--white);
}  
.sec-2 .sec-2__content .para{
    font-size: 2.4rem;
    letter-spacing: 2px;
    line-height: 2.5;
    font-weight: 100;
    mix-blend-mode: hard-light;
}
.sec-3{
    position: relative;
}
.sec-3 .logo-side{
    position: absolute;
    right: 0px;
    top: -30px;
    width: 100%;
    max-width: 340px;
    z-index: 80;
}
.sec-3 .sec-3__content{
    margin-top: 90px;
    margin-bottom: 400px;
}

@media screen and (max-width: 768px) {
    .sec-2 .sec-2__wrap{
        padding: 70px 20px;
    }
    .sec-2 .sec-2__content .para{
        font-size: 2rem;
    }
    .sec-3 .logo-side{
        max-width: 120px;
        top: 50px;
    }
}
.actors-list{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    column-gap: 70px;
    row-gap: 120px;
}
.actors-list .character-link{
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
   color: var(--black);
}
.actors-list .character-link .img-wrap{
    background-color:transparent;
    border-radius: 46% / 45%;
    overflow: hidden;

}
.actors-list .character-link .img-wrap img{
    transform: scale(1.1);
    transition: .2s ease;
}
.actors-list .character-link:hover img{
    transform: scale(1.3);
}
.actors-list .character-link .c-role{
    position: absolute;
    bottom: 0px ;
    right: 10px;
    writing-mode: vertical-rl;
    font-size: 4.8rem;
    border: 1px solid var(--black);
    padding: 16px;
    width: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
}
.actors-list .character-link:hover .c-role{
    background-color: var(--red);
    color: var(--white);
    border: 1px solid var(--white);
}
@media screen and (max-width: 768px) {
    .actors-list{
        grid-template-columns: repeat(1, 1fr);
        column-gap: 30px;
        row-gap: 50px;
        padding: 0px 40px;
    }
    .sec-3 .sec-3__content{
        margin-bottom: 120px;
    }
   
}
@media screen and (max-width: 568px) {
    .actors-list .character-link .c-role{
        font-size: 2.8rem;
        padding: 10px 5px;
        width: 45px;
    }
}
.news-main__wrap .news_wrap{
    padding: 24px 0px;
}
.btn-cta .cta-link{
    color:var(--black);
    text-decoration: none;
    letter-spacing: 2px;
    font-size: 1.6rem;
}
.sec-4 .sec-header{
    margin-bottom:50px;
}
.sec-4{
    margin-bottom: 170px;
}

.sec-5 {
    margin-bottom: 260px;
}
.sec-5 .left-area{
    writing-mode: vertical-rl;
    margin-right: 30px;
}
.sec-5 .left-area h3{
    font-size: 3.2rem;
    letter-spacing: 11px;
}

.responsive-list {
    list-style: decimal; 
    padding-left: 20px; 
    line-height: 1.6; 
}

.responsive-list li {
    margin-bottom: 15px; 
}
.sec-5 .sec-5__content{
    display: flex;
    align-items: flex-start;
}
.sec-5 .sec-5__content .right-area {
    padding-top: 50px;
}
.sec-5 .sec-5__content .right-area .text-content{
    padding-top: 20px;
    border-top: 1px solid var(--black);
    font-size: 1.6rem;
    line-height: 2.5;
}
@media screen and (max-width: 768px) {
    .sec-5 .left-area h3{
        font-size: 2rem;
    }
    .sec-5 .col-md-6{
        margin-bottom: 50px;
    }
    .sec-5{
        margin-bottom: 60px;
    }
}

.footer .f-logo__link:hover img{
    opacity: 70%;
}
.footer .f-logo{
    width: 100%;
    max-width: 160px;
    transition: .2s ease;
}
.footer .footer-menu .footer-nav{
    writing-mode: vertical-lr;
}
.footer .footer-menu .footer-nav .footer-menu{
    list-style: none;
    margin: 0px 20px;
}
.footer .footer-menu .footer-nav .footer-menu .footer-links{
    color: var(--black);
    font-size: 2.4rem;
    letter-spacing: 10px;
    transition: .2s ease;
}
.footer .footer-menu .footer-nav .footer-menu .footer-links:hover{
    text-decoration: none;
    color: var(--red);
}

.footer .mb-170{
    margin-bottom: 170px;
}

.footer .copy{
    font-size: 1.2rem;
    margin-bottom: 30px;
}

@media screen and (max-width: 768px) {
    .footer .mb-170{
        margin-bottom: 70px;
    }
}
/*** NEWS PAGE STYLES ***/


.sec-1__news .news-cat__wrap{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 180px;
    margin-bottom: 90px;
}
.sec-1__news .news-pagination a,
.sec-1__news .news-cat__wrap a{
    text-decoration: none;
    color: var(--black);
    border-top:1px solid ;
    border-bottom: 1px solid;
    font-size: 1.6rem;
    margin: 0px 25px;
    padding: 5px;
    border-radius: 0px;
}
.sec-1__news .news-pagination{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 140px;
    margin-top: 50px;
}
.sec-1__news .news-pagination a:hover,
.sec-1__news .news-pagination:active,
.news-page .cat-lists:hover,
.news-page  .cat-lists.active {
   color: var(--red);
}

/* News Items */
.news-page  .news-main__wrap {
    display: none;
}

.news-page  .news-main__wrap.active {
    display: block;
}


.news-topic__cat{
    width: 100%;
    max-width: 960px;
    margin: 0px auto;
}
.news-topic__cat .main-cat{
    color: var(--black);
    border-top:1px solid ;
    border-bottom: 1px solid;
    font-size: 1.6rem;
    margin: 0px ;
    padding: 5px;
    border-radius: 0px;
}
.news-topic__cat .news-date{
    color: #6F6666;
}
.news-detail__content{
    margin-top: 150px;
}
.news-detail__content .news-post__title{
    margin-bottom: 120px;
}
.news-detail__content .news-post__title h2{
    font-size: 3.2rem;
    font-weight: 600;
}
.news-detail__content .news-post__text {
    font-size: 1.6rem;
    letter-spacing: 0px;
    font-weight: bold;
    line-height: 2.5;
    margin-bottom: 250px;
}

.actors-archive__content{
    margin-top: 200px;
    margin-bottom: 50vh;
}

.actor-detail{
    display: flex;
    align-items: start;
    justify-content: space-between;
    flex-direction: column;
    margin-top: 100px;
    margin-bottom: 240px;
}
.actor-detail .actor-img{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right:auto ;
    margin-left: auto;
    max-width: 460px;
    margin-bottom: 100px;
}
.f-16{
    font-size: 1.6rem;
}
.container-large{
    max-width: 960px;
}
.actor-detail .actor-description {
    width: 100%;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}
.actor-detail .period{
    font-size: 2.4rem;
}
.actor-detail .actor-name{
    font-size: 4rem;
    letter-spacing: 5px;
}
.actor-detail .actor-name .f-16{
    letter-spacing: 0px;
}
.actor-detail .actor-description .para{
    letter-spacing: 3px;
    font-size: 1.6rem;
    line-height: 2;
}
.actor-detail .description-top{
    margin-bottom: 50px;
}
.actor-detail .description-bottom .career{
    font-size: 2.4rem;
    padding: 5px;
    border-top: 1px solid var(--black);
    border-bottom: 1px solid var(--black);
    width: 170px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 35px;
}

.timeline-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0px;
}


.timeline-item {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: flex-start;
}

/* Year section */
.year {
    flex-basis: 120px; /* Set width for the year section */
   
}

/* Description section */
.description {
    flex: 1;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .timeline-item {
        flex-direction: column;
        margin-bottom: 20px;
    }

    .year {
        flex-basis: auto;
    }
}

.sp-only{
    display: none;
}
@media screen and (max-width: 768px) {
    .sp-only{
        display: block;
    }
    .pc-only{
        display: none;
    }
    .actor-detail{
        flex-direction: column;
    }
    .actor-detail .actor-img{
        width: 100%;
        max-width: unset;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 30px;
        padding: 20px;
    }
    .actor-detail .actor-img img{
        width: 100%;
        max-width: 400px;
    }
    .actor-detail .actor-description{
        width: 100%;
        max-width: unset;
    }
}
