.gHeader{
    background-color: #ffffff;
    z-index: -1;
}

.gFooter{
    z-index: -1;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}

:root{
    --akari-space-s: 20px;
    --akari-space-m: 40px;
    --akari-space-l: 80px;
    --akari-space-xl: 160px;
    
    --akari-font-size-m: 1.714285714285714rem;
    --akari-font-size-l: 2.285714285714286rem;
    
    --akari-color-black: #100A06;
    --akari-color-white-10: #ffffff1a;
    --akari-color-white-70: #ffffffd3;
    --akari-color-highlight: #FFEFA81a;
    
    --akari-border: solid 1px #ffffff80;
}

.akarinoyouna{
    position: relative;
    font-family: "Noto Serif JP", serif;
    color: var(--akari-color-white-70);
    letter-spacing: 0.1em;
    width: 100%;
    height: auto;
    background-color: var(--akari-color-black);
    background-image: url("../images/bg_01.jpg");
    background-size: 100% auto;
    background-repeat: repeat-y;
    z-index: 0;
    overflow: hidden;
}

.heading-text{
    font-size: var(--akari-font-size-l);
    margin-bottom: 24px;
}

.text{
    margin-bottom: 2.5rem;
    line-height: 1.8
}

svg{
    width: 1em;
}

a,
a:hover{
    color: var(--akari-color-white-70);
}

.loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 1px;
    width: 130px;
    --c:no-repeat linear-gradient(var(--akari-color-white-70) 0 0);
    background: var(--c),var(--c),var(--akari-color-white-10);
    background-size: 60% 100%;
    animation: l16 3s infinite;
    opacity: 1;
    transition: opacity 0.3s;
}

.loader.is-hidden{
    opacity: 0;
}

@keyframes l16 {
  0%   {background-position:-150% 0,-150% 0}
  66%  {background-position: 250% 0,-150% 0}
  100% {background-position: 250% 0, 250% 0}
}

/* ========== オーディオ ========== */
.audio-control {
    position: fixed;
    width: 100%;
    height: 100vh;
    z-index: 999;
    background-color: var(--akari-color-black);
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0;
    text-align: center;
    transition: 1.5s;
}

.audio-control.is-hidden{
    opacity: 0;
}

.audio-control__contents-wrap{
    opacity: 1;
    visibility: visible;
    transition: 0.5s;
}

.audio-control__contents-wrap.is-hidden{
    opacity: 0;
    visibility: hidden;
}

.audio-control__sound-button{
    position: relative;
    background: var(--akari-color-white-10);
    border: var(--akari-border);
    color: var(--akari-color-white-70);
    cursor: pointer;
    margin: 40px 10px;
    width: 90px;
    height: calc(1em + 30px);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.audio-control__sound-button::before{
    position: absolute;
    content: "";
    width: 20%;
    border-radius: 50%;
    aspect-ratio: 1 / 1;
    filter: blur(10px);
    background-color: var(--akari-color-highlight);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.8s;
    z-index: 2;
    opacity: 0;
}

.audio-control__sound-button:hover::before{
    width: 150%;
    opacity: 1;
}

.audio-control__sound-button svg{
    margin-left: 5px;
}

/* ========== コンテンツラップ ========== */
.contents-wrap{
    width: 80%;
    max-width: 900px;
    margin:  0 auto;
    padding-top: var(--akari-space-m);
    position: relative;
    z-index: 0;
}

/* ========== swiper ========== */
.slider{
    position: relative;
    width: 100%;
    margin-bottom: var(--akari-space-m);
}

.slider__title-logo-pc {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    opacity: 0;
	filter: blur(10px);
}

/* ========== プログラムヘッダー ========== */
.program-header{
    text-align: center;
    background-color: var(--akari-color-black);
    border: var(--akari-border);
    padding: 40px 0;
}

.program-header__text{
    font-size: var(--akari-font-size-m);
    margin-bottom: 40px;
}

.program-header__btn-wrap{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.program-header__btn{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 250px;
    height: 8rem;
    background-color: var(--akari-color-white-10);
    border: var(--akari-border);
    cursor: pointer;
    overflow: hidden;
}

.program-header__btn::before{
    content: "";
    position: absolute;
    background-color: var(--akari-color-highlight);
    width: 120%;
    min-height: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 100%;
    top: 50%;
    left: 50%;
    filter: blur(10px);
    opacity: 0;
    transition: 0.8s;
    transform: translate(-50%, -50%) scale(0.25);
}

.program-header__btn:hover::before{
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* ========== プログラム本文 ========== */
.program-body{
    margin-bottom: 160px;
}

.program-body__visual{
    text-align: center;
    margin: 160px 0;
}

.program-body__visual-img-wrap{
    width: 100%;
    height: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    margin-bottom: 40px;
}

.program-body__visual-img-wrap img{
    object-fit: contain;
    width: 100%;
    height: 100%;
}

.program-body__visual-title{
    font-size: var(--akari-font-size-m);
}

.program-body__text-wrap{
    margin-bottom: 80px;
}

.program-body__text-wrap .text.spacious{
    margin-bottom: 80px;
}

/* ========== 各話あらすじ ========== */
.episode{
    display: flex;
    margin-bottom: 240px;
}

.episode__index{
    width: 20%;
    padding-top: 80px;
}

.episode__index a{
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
    transition: 0.8s;
}

.episode__index a:hover{
    transform: translateX(10px);
}

.episode__index a::after{
    content: "";
    position: absolute;
    width: 100%;
    height: 0.5px;
    background-color: var(--akari-color-white-70);
    will-change: transform;
    transform: scaleX(0);
    transform-origin: left;
    bottom: 0;
    left: 0;
    transition: 0.8s;
}

.episode__index a.selected{
    transform: translateX(10px);
    pointer-events: none;
}

.episode__index a.selected::after{
    transform: scaleX(1);
}

.episode__item-list{
    width: 80%;
}

.episode__item{
    padding-top: 80px;
    padding-bottom: 40px;
}

.episode__movie-wrap{
    position: relative;
    width: 100%;
    height: 100%;
    aspect-ratio: 9 / 5;
    margin-bottom: 40px;
    overflow: hidden;
}

.episode__movie-wrap img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.episode__movie-wrap::after{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url(../images/comingsoon.jpg);
    background-size: cover;
    background-position: center;
    display: none;
    top: 0;
    left: 0;
}

.episode__movie-wrap.coming-soon::after{
    display: block;
    opacity: 0.8;
}

.episode__movie-wrap.no-image::after{
    display: block;
    opacity: 1;
}

.episode__title{
    font-size: var(--akari-font-size-m);
    margin-bottom: 10px;
}

.episode__title span{
    font-size: 1.4rem;
    margin-left: 2rem;
}

.episode__link-wrap{
    text-align: right;
}

.episode__link{
    position: relative;
    display: inline-flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: 1rem;
    border-bottom: var(--akari-border);
    transition: 0.8s;
}

.episode__link:hover{
    letter-spacing: 0.2rem;
}

.episode__link::before{
    content: "";
    position: absolute;
    width: 80%;
    min-height: 100%;
    aspect-ratio: 1 / 1;
    right: -40%;
    background-image: url(../images/bg_02.png);
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0;
    transition: 0.8s;
}

.episode__link:hover::before{
    opacity: 0.8;
}

.episode__link svg{
    margin-left: 5px;
}

/* ========== 監督コメント ========== */
.comment{
    margin-bottom: 120px;
}

.comment .heading-text span{
    font-size: 1.5rem;
}

/* ========== 岡⽥敦プロフィール ========== */
.profile{
    margin-bottom: 120px;
}

.profile__inner-wrap{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    margin: 0 auto;
}

.profile__img-wrap{
    width: 23%;
}

.profile__text{
    padding-top: 0.75rem;
    width: 73%;
    line-height: 1.8;
}

/* ========== 概要 ========== */
.summary{
    margin-bottom: 120px;
}

.summary .heading-text{
    text-align: center;
}

.summary dl{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    width: 90%;
    min-width: 650px;
    border: var(--akari-border);
    margin: 0 auto;
}

.summary dt{
    width: 25%;
    align-self: stretch;
    text-align: center;
    border-right: var(--akari-border);
    padding: 10px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.summary dd{
    width: 75%;
    padding: 10px 20px;
}

.summary dt:not(:last-of-type),
.summary dd:not(:last-of-type){
    border-bottom: var(--akari-border);
}

.summary dd a{
    border-bottom: var(--akari-border);
}

/* ========== 制作スタッフ ========== */
.staff{
    margin-bottom: 120px;
}

.staff .heading-text{
    text-align: center;
}

.staff dl{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    column-gap: 1rem;
    line-height: 1.8;
}

.staff dt{
    width: calc(50% - 0.5rem);
    text-align: right;
}

.staff dd{
    width: calc(50% - 0.5rem);
}

/* ========== BGMオンオフ ========== */
.toggle-sound{
    margin-bottom: 240px;
    text-align: center;
}

.toggle-sound p{
    margin-bottom: 20px;
}

.toggle-sound label{
    margin: 0 20px;
}

.toggle-sound label:hover{
    cursor: pointer;
}

.toggle-sound input{
    accent-color: #a81602;
}

.pc_none{
    display: none;
}