/* --------------- TOP ---------------- */

/* loading */
#loading .progress {
    border: 1px solid #000;
}
#loading .bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0 0 0 0;
    max-height: 100%;
    max-width: 100%;
}
/* loadingの漫画を消す（表示の場合は下記表示） */
/* #loading .bg .bg_df {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin: 0;
    background: url(../img/loading_bg.png) center top no-repeat;
    background-size: 90%;
    background-position: center center;
    
}
#loading .bg .bg_ov:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin: 0 0 0;
    background: url(../img/loading_bg_ov.png) center top no-repeat;
    background-size: 90%;
    background-position: center center;
} */
/* loadingの漫画を消す（表示の場合は下記消す） */
#loading .bg .bg_ov:after {
    content: unset;
}
#loading .bg .bg_df {
    background: unset;
}

#loading .content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
#loading #progress_count {
    position: relative;
    background-color: #000;
    padding: 2px 6px;
    width: fit-content;
    margin: 1rem auto 0;
}
/* #loading #progress_count:before {
    content: '';
    background-color: #ec3838;
    width: 25rem;
    height: 1px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
} */

/* FV動画 */
.main_bg_movies {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-size: 100% auto;
    z-index: -1;
}
.main_bg_movies:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background-color: #000;
    width: 100%;
    height: 100%;
}
.main_bg_movies video {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    min-width: 100%;
    min-height: 100%;
}
@media screen and (max-width: 767px) {
    .main_bg_movies video {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translateX(-50%) translateY(-45%);
        min-width: 100%;
        min-height: 100%;
    }
}

.main_bg_movies.change {
    display: none;
    opacity: 0;
}

/* 20241119修正 */
/* FV背景動画 */
.main_bg_movie {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-size: cover;
    z-index: -1;
}
.main_bg_movie video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
}
.main_bg.change .main_bg_movie {
    display: none;
    opacity: 0;
}
@media screen and (max-width: 767px) {
    .main_bg_movie video {
        position: absolute;
        top: 35%;
        transform: translateX(-50%) translateY(-35%);
    }
}
main#top .main_bg {
    background : unset;
}
.scroll_bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../img/kv_bg.jpg) no-repeat;
    background-size: 100% auto;
    z-index: -100;
}
.scroll_bg:after {
    content: '';
    position: absolute;
    background: url(../img/mission_bullbuster_new02.png) no-repeat;
    background-size: contain;
    background-position: center center;
    width: 50%;
    height: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
    .scroll_bg {
        background: url(../img/kv_bg_sp.jpg) no-repeat;
        background-size: 100% auto;
    }
    .scroll_bg:after {
        width: 80%;
    }
}

/* fvのサウンドボタン */
.movie__btn_wrap {
    position: relative;
    z-index: 9999;
}
.movie__btn {
    position: absolute;
    bottom: 6rem;
    right: 1.9rem;
    height: 40px;
    width: 40px;
    z-index: 9999;
    pointer-events: auto;
    opacity: 1; /* 最初から表示 */
    transform: translateX(0);
}
.movie__btn.hidden {
    opacity: 0 !important;
    transition: all .6s ease;
}
button.js-video-button {
    position: relative;
    width: 100%;
    height: 100%;
    border: none;
    background: none;
    cursor: pointer;
}
/* アイコンの3本線 */
button.js-video-button .icon {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: 8.5px;
    align-items: flex-end;
    justify-content: center;
    width: 40px;
    height: 40px;
}
button.js-video-button .icon .bar {
    display: inline-block;
    width: 2px;
    height: 15px;
    background-color: #ec3838;
    transition: height 0.2s ease;
    border-radius: 1px;
}
/* ON/OFF テキスト */
button.js-video-button .status-text {
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 10px;
    color: #fff;
    font-family: sans-serif;
    pointer-events: none;
    font-family: good-times, sans-serif;
}
/* 音OFFの時はちょっと透明にする */
button.js-video-button.off .icon .bar {
    opacity: 0.8;
}
/* 音ONの時はしっかり表示 */
button.js-video-button.on .icon .bar {
    opacity: 1;
}
/* スマホ用レスポンシブ */
@media screen and (max-width: 767px) {
    .movie__btn_wrap {
        position: relative;
        width: 2.5rem;
        height: 2.5rem;
        top: 1.8rem;
        left: 87%;
    }
    .movie__btn {
        bottom: unset;
        top: 0;
        right: 0;
        height: 100%;
        width: 100%;
        opacity: 1;
        transform: translateX(0);
    }
    button.js-video-button .icon {
        gap: 4px;
        width: 1.8rem;
        height: 1.8rem;
        top: 0;
        transform: translateX(-50%);
    }
    button.js-video-button .status-text {
        position: absolute;
        bottom: -.5rem;
        left: 50%;
        transform: translateX(-50%);
        font-size: 7px;
        color: #ec3838;
    }
    button.js-video-button .icon .bar {
        height: 10px;
    }
}


/* fvのタイトル部分修正 */
main#top #kv h2.title .chara_area {
    left: 3vw;
}
@media screen and (max-width: 767px) {
    main#top #kv h2.title .chara_area {
        top: -14.8rem;
        left: 15.3rem;
    }
    .end main#top #kv h2.title .chara_area .chara img {
        width: 80%;
    }
    main#top #kv h2.title .chara_area .serif {
        top: 2rem;
        right: 1rem;
    }
    main#top .main_bg .parts_1 {
        top: 10.45rem;
    }
    main#top .main_bg .parts_2 {
        top: 13.4rem;
        width: 38rem;
        margin: 0 0 0 -18.2rem;
    }
}
/* fvのyoutubeボタン */
#wrapper svg.youtube {
    width: 60%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}


/* mission */
main#top #mission .bg .bullbuster {
    background: url(../img/mission_bullbuster_new01.png) no-repeat;
    background-size: contain;
    background-position: center center;
    width: 50%;
    height: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: unset;
}
main#top #mission .bg .bullbuster:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    background: #000000;
    opacity: .8;
    z-index: 1;
    width: 100%;
    height: 100%;
}
.char {
    display: inline-block;
  }

@media screen and (max-width: 767px) {
    main#top #mission .bg .bullbuster {
        width: 80%;
    }
    main#top #mission .about .about_bg {
        top: -7.55rem;
    }
}

/* youtube banner */
main#top #youtubeBanner {
    position: relative;
    background-color: rgba(0, 0, 0, .7);
    /* padding: 12.45rem 0 7rem; */
    padding: 10.45rem 0 16rem;
}
main#top #youtubeBanner #youtubeBannerWrap {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    z-index: 2;
    margin: auto;
    width: 5rem;
    height: 38.8rem;
    background: #fff;
    overflow: hidden;
    transition: width .4s ease, background-color 0.4s ease;
    border: 2px solid #000;
    padding: 1.8rem;
    z-index: 1000;
}
main#top #youtubeBanner #youtubeBannerWrap.active {
    width: 45.6rem;
}
main#top #youtubeBanner #youtubeBannerWrap:hover {
    background-color: #ec3838;
    opacity: .8;
}
@media screen and (max-width: 767px) {
    main#top #youtubeBanner #youtubeBannerWrap {
        height: 28.5rem;
        border: 1px solid #000;
    }
    main#top #youtubeBanner #youtubeBannerWrap.active {
        width: 33.5rem;
    }
}

/* news */
#news .news_area .list .summary .image.chara00 {
    background: url(../img/chara00.png) no-repeat;
    background-size: contain;
    background-position: center center;
}
#news .modal .inner h2 {
    font-size: 1rem;
    font-weight: bold;
    line-height: 1.5;
    margin: 2rem 0 1em;
}
#news .modal .inner h3 {
    font-size: .8rem;
    font-weight: bold;
    line-height: 1.5;
    margin: 1.5rem 0 1em;
}
#news .modal .inner p a {
    display: unset;
    word-wrap: break-word;
}

@media screen and (max-width: 767px) {
    #news .modal .inner h2 {
		font-size: 1.4rem;
    	line-height: 1.5;
		margin: 3rem 0 1em;
	}
	#news .modal .inner h3 {
		font-size: 1.2rem;
		line-height: 1.5;
		margin: 2rem 0 1em;
	}
}

/* documentary */
#documentary {
    position: relative;
    background-color: rgba(0, 0, 0, .7);
    padding: 8.45rem 0 10rem;
    background: #000;
}
#documentary:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../img/grid_bk.png);
    background-size: contain;
    background-repeat: repeat;
}
canvas {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
canvas#gridCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    aspect-ratio: auto; /* aspect-ratioを無効化 */
}
main#top #documentary h2.title {
	position: relative;
    left: 50%;
    margin: 0 0 0 -14rem;
    width: 0;
    height: 7.2rem;
    overflow: hidden;
    transition: width .4s ease;
}
main#top #documentary h2.title.active {
    width: 28.65rem;
}
main#top #documentary h2.title .inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 28.65rem;
    height: 100%;
}
main#top #documentary p.lead {
    position: relative;
    margin: 2.65rem auto 0;
    width: 53%;
    transform: translateY(1.5rem);
}
@media screen and (max-width: 767px) {
    main#top #documentary p.lead {
        width: 92%;
    }
}
.documentary_area {
    margin: 5rem .5rem 0 .5rem;
}
.youtube_slider {
    touch-action: pan-y; /* 縦スクロールを有効にする */
    overscroll-behavior: contain; /* スクロールバグ防止 */
}
.youtube_slider_wrapper {
    /* align-items: center; */
    justify-items: center;
    /* gap: 5.2vw; */
}

.youtube_slider_item {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55); /* バウンス感 */
    transform: scale(0.7)!important; /* 初期は縮小 */
    padding: 1.4rem 0 0 0;
}
.youtube_slider_item.swiper-slide-active {
    transform: scale(1)!important; /* アクティブなスライドは拡大 */
}
.youtube_slider_item .movie_link {
    position: relative;
    padding: 1.4rem 0 0 0;
    display: block;
    cursor: pointer;
    transition: transform 0.5s ease;
}
/* .youtube_slider_item .movie_link img {
    clip-path: url(#youtube_image_shape);
}
.youtube_slider_item .movie_link svg {
    position: absolute;
    top: 0;
} */
.youtube_slider_item .movie_link p.no {
    position: absolute;
    top: 2.1rem;
    left: -.85rem;
    transform: rotate(-90deg);
    font-family: "good-times", sans-serif;
    color: #fff;
    font-size: 1rem;
    font-weight: bold;
}
@media screen and (max-width: 767px) {
    .youtube_slider_item .movie_link p.no {
        font-size: 1.2rem;
        left: -1.1rem;
        top: 2.1rem;
    }
}
.youtube_slider_item.new_item .movie_link p.no {
    color: #ec3838;
    left: -.9rem;
    top: 2.1rem;
}
.youtube_slider_item.youtube01 .movie_link p.no {
    top: 1.85rem;
    left: -.65rem;
}
.youtube_slider_item.new_item.youtube01 .movie_link p.no {
    top: 2rem;
    left: -.7rem;
}
@media screen and (max-width: 767px) {
    .youtube_slider_item.new_item .movie_link p.no {
        left: -1rem;
        top: 2.1rem;
    }
    .youtube_slider_item.new_item.youtube01 .movie_link p.no,
    .youtube_slider_item.youtube01 .movie_link p.no {
        top: 2rem;
        left: -.8rem;
    }
}
.youtube_slider_item .movie_link p.new {
    position: absolute;
    top: 0;
    left: -.1rem;
    font-family: "good-times", sans-serif;
    color: #ec3838;
    font-size: 1rem;
    font-weight: bold;
}
@media screen and (max-width: 767px) {
    .youtube_slider_item .movie_link p.new {
        top: -0.7rem;
        left: 0;
        font-size: 1.6rem;
    }
}
.youtube_slider_item .movie_link p.date {
    position: absolute;
    bottom: 2.8rem;
    right: -2.8rem;
    transform: rotate(-90deg);
    font-family: "good-times", sans-serif;
    color: #fff;
    font-size: 0.85rem;
    font-weight: bold;
    letter-spacing: .04rem;
}
.youtube_slider_item.new_item .movie_link p.date {
    position: absolute;
    bottom: 2.8rem;
    right: -2.9rem;
    color: #ec3838;
    letter-spacing: .04rem;
}
@media screen and (max-width: 767px) {
    .youtube_slider_item .movie_link p.date {
        font-size: 0.9rem;
        letter-spacing: 0;
        bottom: 2.7rem;
        right: -2.7rem;
    }
    .youtube_slider_item.new_item .movie_link p.date {
        bottom: 2.7rem;
        right: -2.9rem;
        letter-spacing: 0;
    }
    .youtube_slider_item.youtube01 .movie_link p.date {
        bottom: 2.7rem;
        right: -2.8rem;
    }
}
.youtube_slider_item .movie_description {
    opacity: 0;
    visibility: hidden; /* これ追加 */
    transform: translateY(10px); /* 少し下からフェードアップ */
    transition: opacity 0.5s ease, transform 0.5s ease, visibility 0.5s;
}
.youtube_slider_item.swiper-slide-active .movie_description {
    opacity: 1;
    visibility: visible; /* これで表示 */
    transform: translateY(0); /* 上に戻る */
}
.youtube_slider_item .movie_description {
    margin: 30px 3.8rem 5px;
    position: relative;
}
@media screen and (max-width: 767px) {
    .youtube_slider_item .movie_description {
        margin: 20px 2.5rem 0;
    }
}
.youtube_slider_item .movie_description h3 {
    color: #fff;
    font-size: 0.8rem;
    line-height: 1.5;
    font-weight: 900;
    margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
    .youtube_slider_item .movie_description h3 {
        font-size: 1.3rem;
    }
}
.youtube_slider_item.swiper-slide-active .movie_description p {
    color: #fff;
    font-size: 0.7rem;
    line-height: 1.4;
    font-weight: 400;
}
@media screen and (max-width: 767px) {
    .youtube_slider_item.swiper-slide-active .movie_description p {
        font-size: .9em;
        line-height: 1.7;
    }
}
.youtube_slider_item .movie_description .line_right {
    position: absolute;
    right: -1.6rem;
    top: 49%;
    transform: translateY(-50%);
    background-color: #fff;
    width: 2px;
    /* height: 90%; */
    height: 0;
    opacity: 0;
    transition: height 0.2s ease, opacity 0.2s ease;
}
.youtube_slider_item .movie_description .line_right:before {
    content: '';
    background: #fff;
    position: absolute;
    top: -.7rem;
    right: -.12rem;
    width: .35rem;
    height: .35rem;
    border-radius: 50%;
}
.youtube_slider_item .movie_description .line_right:after {
    content: '';
    background: #fff;
    position: absolute;
    bottom: -.7rem;
    right: -.12rem;
    width: .35rem;
    height: .35rem;
    border-radius: 50%;
}
@media screen and (max-width: 767px) {
    .youtube_slider_item .movie_description .line_right {
        width: 1px;
    }
    .youtube_slider_item .movie_description .line_right:before {
        right: -.15rem;
        width: .4rem;
        height: .4rem;
    }
    .youtube_slider_item .movie_description .line_right:after {
        right: -.15rem;
        width: .4rem;
        height: .4rem;
    }
}
.youtube_slider_item .movie_description .line_left {
    position: absolute;
    left: -1.6rem;
    top: 49%;
    transform: translateY(-50%);
    background-color: #fff;
    width: 2px;
    /* height: 90%; */
    height: 0;             
    opacity: 0;
    transition: height 0.2s ease, opacity 0.2s ease;
}
.youtube_slider_item .movie_description .line_left:before {
    content: '';
    background: #fff;
    position: absolute;
    top: -.65rem;
    left: -.11rem;
    width: .35rem;
    height: .35rem;
    border-radius: 50%;
}
.youtube_slider_item .movie_description .line_left:after {
    content: '';
    background: #fff;
    position: absolute;
    bottom: -.7rem;
    left: -.11rem;
    width: .35rem;
    height: .35rem;
    border-radius: 50%;
}
.youtube_slider_item.swiper-slide-active .movie_description p {
    text-align: justify;
    text-justify: inter-ideograph;
}
@media screen and (max-width: 767px) {
    .youtube_slider_item .movie_description .line_left {
        width: 1px;
    }
    .youtube_slider_item .movie_description .line_left:before {
        left: -.15rem;
        width: .4rem;
        height: .4rem;
    }
    .youtube_slider_item .movie_description .line_left:after {
        left: -.15rem;
        width: .4rem;
        height: .4rem;
    }
}
.youtube_slider_item .movie_link img.play {
    position: absolute;
    top: 53%;
    left: 50%;
    transform: translate(-50%, 45%); /* 下にオフセット */
    width: 4rem !important;
    opacity: 0;
    transition: opacity 0.2s ease, transform 0.2s ease; /* transformも追加 */
}
.movie_link:hover img.play {
    opacity: 1;
    transform: translate(-50%, -50%); /* 真ん中に戻す */
}

button.showmore_trigger {
    background: unset;
    border: unset;
}
button.showmore_trigger {
    position: relative;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    height: 100%;
    color: #000;
    transition: color .3s ease;
    cursor: pointer;
}
button.showmore_trigger .line {
    position: absolute;
    top: 50%;
    height: 1.5px;
    width: 0;
    background: repeating-linear-gradient(
        to right,
        #fff,
        #fff 3px,
        transparent 4px,
        transparent 8px
    );
    opacity: 0;
}
button.showmore_trigger .line.left {
    left: 50%;
    transform: translateY(-50%);
    transform-origin: left center; /* 左から伸ばす */
}
button.showmore_trigger .line.left:before {
    content: '';
    background: #fff;
    position: absolute;
    top: -.11rem;
    right: -.12rem;
    width: .35rem;
    height: .35rem;
    border-radius: 50%;
}
button.showmore_trigger .line.right {
    right: 50%;
    transform: translateY(-50%);
    transform-origin: right center; /* 右から伸ばす */
}
button.showmore_trigger .line.right:before {
    content: '';
    background: #fff;
    position: absolute;
    top: -.11rem;
    left: -.12rem;
    width: .35rem;
    height: .35rem;
    border-radius: 50%;
}
button.showmore_trigger .bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    transition: color .4s ease;
}
button.showmore_trigger .bg svg path {
    fill: #fff;
}
button.showmore_trigger:hover .bg svg path {
    fill: #000;
    stroke: #fff;
    stroke-width: 2px;
}
button.showmore_trigger span.text {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: .03em;
    line-height: 1;
    color: #000;
    z-index: 1;
    font-family: "good-times", sans-serif;
}
@media screen and (max-width: 767px) {
    button.showmore_trigger .bg {
        width: 20.35rem;
        height: 3.8rem;
    }
    button.showmore_trigger span.text {
        font-size: 1.3rem;
    }
}
button.showmore_trigger:hover span.text {
    color: #fff;
}
.documentary_more {
    position: relative;
    width: 65vw;
    margin: 6rem auto 0;
}
@media screen and (max-width: 767px) {
    .documentary_more {
        width: calc(100% - 10vw);
    }
    button.showmore_trigger .line {
        height: 1px;
        background: repeating-linear-gradient(to right, #fff, #fff 2px, transparent 3px, transparent 5px);
    }
}
.showmore_content {
    max-height: 0;
    transition: max-height 0.5s ease, opacity 0.5s ease;
    opacity: 0;
}
.showmore_content.open {
    max-height: 100%; /* コンテンツの高さに応じて調整 */
    opacity: 1;
}
.documentary_more_wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 3rem;
    row-gap: 1.2rem;
    max-width: 65vw;
    padding: 70px 4rem 0;
}
@media screen and (max-width: 767px) {
    .documentary_more_wrap {
        max-width: 70vw;
        margin: 0 auto;
        padding: 40px 0 0;
        margin-bottom: 9rem;
        grid-template-columns: 1fr;
    }
}
.documentary_more_item .movie_link {
    position: relative;
    /* padding: 1.4rem 0 0 0; */
    display: block;
    cursor: pointer;
    transition: transform 0.5s ease;
    text-align: center;
}
@media screen and (max-width: 767px) {
    .documentary_more_item .movie_link img {
        width: 97%;
    }
}
.documentary_more_item .movie_link p.no {
    position: absolute;
    top: .6rem;
    left: -.9rem;
    transform: rotate(-90deg);
    font-family: "good-times", sans-serif;
    color: #fff;
    font-size: .9rem;
    font-weight: bold;
}
@media screen and (max-width: 767px) {
    .documentary_more_item .movie_link p.no {
        top: 1rem;
        left: -1.5rem;
        font-size: 1.4rem;
    }
}
.documentary_more_item .movie_link img.play {
    position: absolute;
    top: 53%;
    left: 50%;
    transform: translate(-50%, 45%);
    width: 4rem !important;
    opacity: 0;
    transition: opacity 0.2s ease, transform 0.2s ease;
}
.documentary_more_item .movie_link:hover img.play {
    opacity: 1;
    transform: translate(-50%, -50%);
}
.documentary_more_item .movie_link p.date {
    position: absolute;
    bottom: 2.2rem;
    right: -2.2rem;
    transform: rotate(-90deg);
    font-family: "good-times", sans-serif;
    color: #fff;
    font-size: 0.65rem;
    font-weight: bold;
    letter-spacing: .04rem;
}
@media screen and (max-width: 767px) {
    .documentary_more_item .movie_link p.date {
        bottom: 3rem;
        right: -2.9rem;
        font-size: .9rem;
    }
}
.documentary_more_item .movie_description {
    margin: 15px 1rem 15px;
    position: relative;
}
@media screen and (max-width: 767px) {
    .documentary_more_item .movie_description {
        margin: 12px 2rem 15px;
    }
}
.documentary_more_item .movie_description .line_right {
    position: absolute;
    right: -13px;
    top: 49%;
    transform: translateY(-50%);
    background-color: #fff;
    width: 1px;
    height: 90%;
}
.documentary_more_item .movie_description .line_right:before {
    content: '';
    background: #fff;
    position: absolute;
    top: -.7rem;
    right: -.12rem;
    width: .35rem;
    height: .35rem;
    border-radius: 50%;
}
.documentary_more_item .movie_description .line_right:after {
    content: '';
    background: #fff;
    position: absolute;
    bottom: -.7rem;
    right: -.12rem;
    width: .35rem;
    height: .35rem;
    border-radius: 50%;
}
.documentary_more_item .movie_description .line_left {
    position: absolute;
    left: -15px;
    top: 49%;
    transform: translateY(-50%);
    background-color: #fff;
    width: 1px;
    height: 90%;
}
.documentary_more_item .movie_description .line_left:before {
    content: '';
    background: #fff;
    position: absolute;
    top: -.65rem;
    left: -.11rem;
    width: .35rem;
    height: .35rem;
    border-radius: 50%;
}
.documentary_more_item .movie_description .line_left:after {
    content: '';
    background: #fff;
    position: absolute;
    bottom: -.7rem;
    left: -.11rem;
    width: .35rem;
    height: .35rem;
    border-radius: 50%;
}
.documentary_more_item .movie_description h3 {
    color: #fff;
    font-size: 0.8rem;
    line-height: 1.5;
    font-weight: 900;
    margin-bottom: 7px;
}
.documentary_more_item .movie_description p {
    color: #fff;
    font-size: 0.7rem;
    line-height: 1.4;
    font-weight: 400;
}
@media screen and (max-width: 767px) {
    .documentary_more_item .movie_description h3 {
        font-size: 1.2rem;
    }
    .documentary_more_item .movie_description p {
        font-size: 1rem;
        line-height: 1.6;
    }
}
.documentary_more span.line_bottom {
    position: absolute;
    bottom: -3rem;
    left: 50%;
    transform: translateX(-50%);
    height: 1.5px;
    width: 100%;
    background: repeating-linear-gradient(
    to right,
    #fff 0 3px,      /* 白線 3px */
    transparent 3px 6px /* 透明部分 3px */
  );
}
.documentary_more span.line_bottom:before {
    content: '';
    background: #fff;
    position: absolute;
    top: -.11rem;
    left: -.12rem;
    width: .35rem;
    height: .35rem;
    border-radius: 50%;
}
.documentary_more span.line_bottom:after {
    content: '';
    background: #fff;
    position: absolute;
    top: -.11rem;
    right: -.12rem;
    width: .35rem;
    height: .35rem;
    border-radius: 50%;
}
@media screen and (max-width: 767px) {
    .documentary_more span.line_bottom {
        height: 1px;
        background: repeating-linear-gradient(to right, #fff, #fff 2px, transparent 3px, transparent 5px);
    }
}
.documentary_wrap .channel {
    position: relative;
    margin: 6rem auto 0;
    display: flex;
    justify-content: center;
}
.documentary_wrap .channel .link {
    position: relative;
    display: contents;
    width: 100%;
    height: 100%;
    cursor: pointer;
    transition: all 0.5s;
}
.documentary_wrap .channel .link .bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgb(255, 255, 255);
    transition: color 0.4s;
    /* width: 100%;
    max-width: 22rem; */
}
.documentary_wrap .channel .link .bg svg path {
    fill: rgb(255, 255, 255);
}
.documentary_wrap .channel .link .text {
    display: flex;
    align-items: center;
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    line-height: 1;
    color: rgb(236, 56, 56);
    z-index: 1;
    font-family: good-times, sans-serif;
}
.documentary_wrap .channel .link:hover .text  {
    color: #fff;
}
.documentary_wrap .channel .link .text .youtube_logo {
    display: flex;
    justify-items: center;
    justify-content: center;
    width: 1.3rem;
    height: 1.3rem;
    margin-right: 0.2rem;
    object-fit: contain;
}
.documentary_wrap .channel .link .text .youtube_logo svg path {
    fill: rgb(236, 56, 56);
}
.documentary_wrap .channel .link:hover .text .youtube_logo svg path {
    fill: #fff;
}
.documentary_wrap .channel .link .text .small {
    font-family: YakuHanJP, "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", Meiryo, sans-serif;
    font-size: .65rem;
    margin-left: 3px;
}
.documentary_wrap .channel .link:hover .bg svg path {
    fill: #000;
    stroke: #fff;
    stroke-width: 2px;
}
@media screen and (max-width: 767px) {
    .documentary_wrap .channel .link .bg {
        width: 20.35rem;
        height: 3.8rem;
    }
    .documentary_wrap .channel .link .text {
        font-size: 1.1rem;
    }
    .documentary_wrap .channel .link .text .youtube_logo {
        width: 1.6rem;
        height: 1.5rem;
    }
    .documentary_wrap .channel .link .text .youtube_logo svg {
        object-fit: contain;
    }
    .documentary_wrap .channel .link .text .small {
        font-size: .8rem;
        margin-left: 1px;
    }
}

/* aboutAmime */
section#aboutAnime {
    position: relative;
    width: 100%;
    height: max-content;
    min-height: 100vh;
    z-index: 100;
    padding: 5rem 0 5.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
section#aboutAnime:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .7);
    z-index: 10;
}
iframe#animeMovie {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    height: 100%;
    min-width: 100%;
    z-index: -1;
    pointer-events: none;
    object-fit: cover;
    aspect-ratio: auto 100;
}
.about_anime_area {
    max-width: 54rem;
    position: relative;
    width: 65vw;
    z-index: 100;
}
.about_anime_box {
    position: relative;
    padding: 2.5rem 5.5rem;
}
.about_anime_area:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../img/aboutAnime_txt_bk.png) no-repeat;
    background-size: 100% 100%;
}
.about_anime_box_bk img {
    opacity: .85;
}
.about_anime_box_bk img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
h3.about_anime_ttl {
    position: relative;
    width: 26rem;
    margin: 0 auto 2rem;
}
.about_anime_wrap {
    position: relative;
    display: flex;
    gap: 2rem;
}
.about_anime_wrap .about_anime_img {
    width: 40rem;
}
p.about_anime_txt {
    position: relative;
    font-size: .75rem;
    line-height: 1.45rem;
}
p.about_anime_txt span.info {
    display: block;
    font-size: .75rem;
    line-height: 1.45rem;
    margin-top: 1.2rem;
}
p.about_anime_txt span a {
    text-decoration: underline;
}
p.about_anime_txt span.midashi {
    display: block;
    font-size: 1rem;
    font-weight: 700;
}
.about_anime_wrap.comment {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid;
}
p.about_anime_txt span.midashi {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: .35rem;
}
p.about_anime_txt.small {
    font-size: .53rem;
    line-height: .9rem;
    margin-top: .5rem;
}
.about_anime_box_bk_txt {
    font-size: .92rem;
    font-weight: 700;
    letter-spacing: .03em;
    line-height: 1;
    color: #fff;
    z-index: 1;
    font-family: "good-times", sans-serif;
    transform: rotate(-90deg);
    display: inline-block;
    position: absolute;
    left: -6rem;
    top: 6.9rem;
}
p.about_anime_box_copylight {
    position: absolute;
    bottom: -1.2rem;
    right: 2.3rem;
    font-size: .55rem;
    color: #fff;
}
@media screen and (min-width: 1500px) {
    p.about_anime_box_copylight {
        position: absolute;
        bottom: -1.2rem;
        right: 2.6rem;
    }
}
@media screen and (max-width: 767px) {
    section#aboutAnime {
        height: 100%;
        padding: 5rem 0 10rem;
    }
    .about_anime_area {
        max-width: 90%;
        width: 90%;
        position: relative;
        top: unset;
        left: unset;
        transform: unset;
        margin: 0 auto;
    }
    .about_anime_area:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url(../img/aboutAnime_txt_bk_sp.png) no-repeat;
        background-size: 100% 100%;
    }
    .about_anime_box {
        padding: 4rem 3.5rem 3.5rem;
    }
    .about_anime_box_bk img {
        height: 100%!important;
    }
    .about_anime_box_bk_txt {
        font-size: 1.1rem;
        left: -8rem;
        top: 8.5rem;
    }
    h3.about_anime_ttl {
        width: 27rem;
        margin: 0 auto 2rem .5rem;
    }
    .about_anime_wrap {
        display: block;
    }
    .about_anime_wrap.about {
        left: .6rem;
        display: block;
    }
    .about_anime_wrap .about_anime_img {
        width: 100%;
        margin: 0 auto;
        max-width: 400px;
    }
    p.about_anime_txt {
        font-size: 1.3rem;
        line-height: 1.8em;
        margin-top: 1.7rem;
    }
    .about_anime_wrap.comment p.about_anime_txt {
        margin-bottom: 1.7rem;
        margin-top: unset;
    }
    .about_anime_wrap.comment p.about_anime_txt.small {
        margin-top: .8rem;
        margin-bottom: unset;
    }
    p.about_anime_txt span.info {
        font-size: 1.25rem;
        line-height: 1.6em;
        margin-top: 1.2rem;
    }
    .about_anime_wrap.comment {
        margin-top: 2.5rem;
        padding-top: 2.5rem;
    }
    p.about_anime_txt span.midashi {
        font-size: 1.5rem;
        margin-bottom: .5rem;
    }
    p.about_anime_txt.small {
        font-size: 1rem;
        line-height: 1.4rem;
        margin-top: .8rem;
    }
    p.about_anime_box_copylight {
        position: absolute;
        bottom: -2.2rem;
        right: 2rem;
        font-size: .9rem;
        color: #fff;
    }
}

/*engineer*/
main#top #engineer {
    position: relative;
    background-color: rgba(0, 0, 0, .7);
    padding: 3.45rem 0 7rem;
}
main#top #engineer h2.title {
    position: relative;
    left: 50%;
    margin: 0px 0 0 -18rem;
    width: 0;
    height: 6.25rem;
    overflow: hidden;
    -webkit-transition: width .4s ease;
    transition: width .4s ease;
}
main#top #engineer h2.title {
    height: 9.1rem;
}
main#top #engineer h2.title.active {
    width: 35.65rem;
}
main#top #engineer h2.title .inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 35.65rem;
    height: 100%;
}
main#top #engineer .message_area {
    margin: 5.2rem auto 0;
    width: 72rem;
}
main#top #engineer .message_area .message {
    position: relative;
    width: 100%;
    opacity: 0;
    -webkit-transform: translateY(2.5rem);
    transform: translateY(2.5rem);
    -webkit-transition: .4s ease .4s;
    transition: .4s ease .4s;
}
main#top #engineer .message_area .message.active {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}
main#top #engineer .message_area .message h3.title {
    margin: 0 0 0 0;
    width: 24.25rem;
}
main#top #engineer .message_area .message .image {
    position: absolute;
    top: 0;
    /* right: 0; */
    left: 0;
    right: auto;
    width: 39rem;

}
main#top #engineer .message_area .image .engineer_image {
    clip-path: url(#engineer_image_shape);
}
main#top #engineer .message_area .message svg {
    position: absolute;
    pointer-events: none;
}
main#top #engineer .message_area .message .text_area {
    position: relative;
    top: 0;
    /* right: 0; */
    right: unset;
    left: 50%;
    margin: 0 0 0 5.45rem;
    width: 28.95rem;
}
main#top #engineer .message_area .message .text_area .message_ico {
    position: absolute;
    bottom: 0;
    /* left: -3rem; */
    left: auto;
    right: 0;
    font-size: 2.1rem;
    font-weight: 400;
    letter-spacing: .03em;
    line-height: 1;
    color: #ec3838;
}
main#top #engineer .message_area .message h3.title {
    margin: 0 0 0 0;
    width: 24.25rem;
}
main#top #engineer .message_area .message .text_area .midashi {
    /* margin: 1.35rem 0 0 2.3rem; */
    margin: 1.35rem 0 0 0;
    width: 23rem;
    font-size: 1.4rem;
    font-weight: 900;
    letter-spacing: .03em;
    line-height: 1.4em;
    color: #c5c5c5;
}
main#top #engineer .message_area .message .text_area p.sub {
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1.7647058824;
    /* margin: 1rem 0 0 .2rem; */
    margin: 1rem 0 0 0;
}
main#top #engineer .message_area .message .text_area .comment {
    /* margin: 1.25rem 0 0 2.3rem; */
    margin: 1.25rem 0 0 0;
    width: 23rem;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.7647058824;
}
main#top #engineer .message_area .message .text_area .profile {
    /* margin: 1.45rem 0 0 2.3rem; */
    margin: 1.45rem 0 0 0;
    width: 23rem;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.7857142857;
}
@media screen and (max-width: 767px) {
    main#top #engineer {
        padding: 9.85rem 0 7rem;
    }
    main#top #engineer h2.title.active {
        width: 29.65rem;
    }
    main#top #engineer h2.title {
        height: 8.1rem;
        margin: 0 0 0 -14.5rem;
    }
    main#top #engineer h2.title .inner {
        width: 29.65rem;
    }
    main#top #engineer .message_area {
        margin: 0 auto;
        width: 37.5rem;
    }
    main#top #engineer .message_area .message {
        margin: 3.6rem auto 0;
    }
    main#top #engineer .message_area .message h3.title {
        margin: 0 auto 0;
        width: 16.15rem;
    }
    main#top #engineer .message_area .message .image {
        position: relative;
        margin: 3.35rem auto;
        width: 26.5rem;
    }
    main#top #engineer .message_area .message .text_area {
        margin: 0 auto;
        left: unset;
        width: 26.5rem;
    }
    main#top #engineer .message_area .message .text_area .message_ico {
        bottom: auto;
        top: 0.3rem;
        right: auto;
        left: -4.05rem;
    }
    main#top #engineer .message_area .message .text_area .comment {
        margin: 1.9rem 0 0;
        width: 100%;
        font-size: 1.4rem;
    }
    main#top #engineer .message_area .message p.sub {
        font-size: 1.1rem;
        text-align: center;
        font-weight: 600;
        letter-spacing: 0;
        line-height: 1.7647058824;
        max-width: 26.5rem;
        margin: 1rem auto 0;
    }
    main#top #engineer .message_area .message .text_area .midashi {
        margin: 2.5rem 0 0 0;
        font-size: 1.8rem;
        line-height: 1.4em;
    }
}

/* ambassador */
main#top #ambassador {
    position: relative;
    background-color: rgba(0, 0, 0, .7);
    padding: 3.45rem 0 7rem;
}
main#top #ambassador h2.title {
    position: relative;
    left: 50%;
    margin: 0px 0 0 -18rem;
    width: 0;
    height: 6.25rem;
    overflow: hidden;
    -webkit-transition: width .4s ease;
    transition: width .4s ease;
}
main#top #ambassador h2.title {
    height: 9.1rem;
}
main#top #ambassador h2.title.active {
    width: 35.65rem;
}
main#top #ambassador h2.title .inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 35.65rem;
    height: 100%;
}
.ambassador_area {
    margin: 5.2rem auto 0;
}
.ambassador_slider {
    gap: 3rem;
}
.ambassador_slider_item {
    transform: scale(.7) !important;
    transition: transform 0.5s;
}
.ambassador_slider_item.swiper-slide-active {
    transform: scale(1) !important;
}
.ambassador_slider_item h3.title {
    width: 22.25rem;
    margin: 0 auto 1rem;
}
.ambassador_slider_item .image .ambassador_image {
    clip-path: url(#ambassador_image_shape);
}
.ambassador_slider_item svg {
    position: absolute;
    top: 0;
}
.ambassador_slider_item .image {
    position: relative;
}
.ambassador_slider_item_wrap .image .message_ico.vrl.eng {
    position: absolute;
    top: 2rem;
    left: -2rem;
    font-size: 1.6rem;
    font-weight: 400 !important;
    letter-spacing: .03em;
    line-height: 1;
    color: #ec3838;
}
.ambassador_slider_item .text_area {
    margin-top: 1.8rem;
}
.ambassador_slider_item .text_area p.comment {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.7647058824;
}
.ambassador_slider_item .text_area p.profile {
    margin: .8rem 0 0 0;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.7857142857;
}
@media screen and (max-width: 767px) {
    .ambassador_area {
        margin: 3.2rem auto 0;
    }
    main#top #ambassador h2.title.active {
        width: 29.65rem;
    }
    main#top #ambassador h2.title {
        height: 7.5rem;
    }
    main#top #ambassador h2.title {
        margin: 0px 0 0 -15rem;
    }
    main#top #ambassador h2.title .inner {
        width: 29.65rem;
    }
    .ambassador_slider_item h3.title {
        width: 16.15rem;
        margin: 0 auto 1.5rem;
    }
    .ambassador_slider_item_wrap .image .message_ico.vrl.eng {
        position: absolute;
        top: 1.4rem;
        left: -1.8rem;
        font-size: 1.4rem;
    }
    .ambassador_slider_item .text_area p.comment {
        margin: 2rem 0 0;
        width: 100%;
        font-size: 1.4rem;
    }
    .ambassador_slider_item .text_area p.profile {
        margin: 2.25rem 0 0 0;
        width: 100%;
        font-size: 1.2rem;
    }
}    

/* --------------- Footer ---------------- */

/* information */

main#top #information {
    /* padding: 9.5rem 0 9.25rem; */
    background: #ececec url(../img/info_bg_new.png) no-repeat;
    background-size: cover;
    
}
main#top #information #audition {
    background: #fff;
    height: 38.8rem;
    border: 2px solid #000;
    padding: 1.8rem;
}
@media screen and (max-width: 767px) {
    main#top #information {
        /* padding: 15.5rem 0 13.5rem; */
        background-position: center center;
    }
    main#top #information #audition {
        height: 28.5rem;
    }
    main#top #information #audition {
        border: 1px solid #000;
    }
}
main#top #information ul.info_list li {
    color: #000;
}
