@charset "utf-8";

.cont_bg {
    background-color: #fff;
}

/* コンテンツタイトル */
.cont_title {
    padding-left: clamp(0px, 7.3vw, 80px);
    display: flex;
    align-items: flex-end;
    flex-wrap: wrap;
    color: var(--color-main);
}

.cont_title .text_1 {
    font-size: clamp(0px, 9.1vw, 100px);
    font-weight: normal;
    font-family: var(--font-en);
    letter-spacing: -0.05em;
    line-height: 1;
    font-style: oblique;
    margin-right: 0.3em;
}

.cont_title .text_2 {
    font-size: clamp(0px, 1.8vw, 20px);
    font-weight: var(--font-w-bl);
    line-height: 1;
    margin-bottom: 0.8em;
}

#history .cont_title,
#top5news .cont_title,
#character .cont_title {
    color: #fff;
}

@media screen and (max-width: 768px) {
    .cont_title {
        padding-left: 5dvw;
    }

    .cont_title .text_1 {
        font-size: 10.1dvw;
    }

    .cont_title .text_2 {
        font-size: 3dvw;
    }
}

/* Read More */
.more a {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0 clamp(0px, 1.4vw, 15px);
}

.more a p {
    font-size: clamp(0px, 1.6vw, 18px);
    font-family: var(--font-en);
    letter-spacing: -0.05em;
    line-height: 1;
    font-style: oblique;
    color: var(--color-main);
    position: relative;
    transition: color 0.4s;
}

.more a p::before {
    content: "";
    width: clamp(0px, 5vw, 55px);
    height: 1px;
    background-color: var(--color-main);
    position: absolute;
    bottom: -0.2em;
    left: 0;
    right: 0;
    margin: auto;
    transition: background 0.4s;
}

.more a .arrow {
    width: clamp(0px, 5.5vw, 60px);
    background-color: var(--color-main);
    border-radius: 50%;
    transition: background 0.4s;
}

.more a:hover p {
    color: var(--color-brown);
}

.more a:hover p::before,
.more a:hover .arrow {
    background-color: var(--color-brown);
}

.more a .arrow img {
    width: 100%;
}

@media screen and (max-width: 768px) {
    .more a {
        gap: 0 3dvw;
    }

    .more a p {
        font-size: 5.3dvw;
    }

    .more a p::before {
        width: 16.5dvw;
    }

    .more a .arrow {
        width: 16.5dvw;
    }
}

/* 記事リスト */
.article_list {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: clamp(0px, 3.2vw, 35px) 0;
}

.article_list li {
    width: calc(100% / 3);
}

.article_list li .article_img {
    width: 100%;
    height: clamp(0px, 27.3vw, 300px);
    overflow: hidden;
    position: relative;
}

.article_list li a .article_img::before {
    content: "";
    width: 100%;
    height: 100%;
    background-color: #231815;
    mix-blend-mode: multiply;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.4s;
}

.article_list li a:hover .article_img::before {
    opacity: 0.7;
}

.article_list li .article_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article_list li .article_icon {
    font-family: var(--font-en);
    font-size: clamp(0px, 1.8vw, 20px);
    letter-spacing: -0.05em;
    line-height: 1;
    font-style: oblique;
    color: #fff;
    background-color: var(--color-main);
    display: inline-block;
    padding: 0.1em 0.5em 0.1em 0.2em;
    margin: clamp(0px, 1.6vw, 18px) 0 clamp(0px, 0.9vw, 10px) clamp(0px, 2.3vw, 25px);
}

.article_list li .article_text {
    font-size: clamp(0px, 1.55vw, 17px);
    font-weight: var(--font-w-b);
    line-height: 1.4em;
    margin: 0  clamp(0px, 2.3vw, 25px);
}

@media screen and (max-width: 768px) {
    .article_list {
        width: 90%;
        margin: 0 auto;
        gap: 9dvw 0;
    }

    .article_list li {
        width: calc(100% / 2);
    }

    .article_list li .article_img {
        height: 37dvw;
    }
    
    .article_list li .article_icon {
        font-size: 4.2dvw;
        margin: 2dvw 0 1.5dvw 3dvw;
    }

    .article_list li .article_text {
        font-size: 3.5dvw;
        letter-spacing: 0;
        margin: 0  3dvw;
    }
}


/* ===============================================
   mv
=============================================== */
#mv {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.movie_wrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
}

.movie_wrap video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.scroll_down {
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 2em;
    margin: auto;
    display: flex;
    justify-content: center;
}

.wavy_text span {
    font-size: clamp(0px, 1.3vw, 14px);
    letter-spacing: 0.05em;
    line-height: 1;
    color: #fff;
    position: relative;
    display: inline-block;
    animation: wave 2s infinite;
    animation-delay: calc(0.1s * var(--i));
}

.wavy_text_arrow {
    position: absolute;
    top: 1.8em;
    left: 50%;
    width: 10px;
    height: 10px;
    border-left: 1px solid #fff;
    border-bottom: 1px solid #fff;
    transform: translate(-50%, -50%) rotate(-45deg);
    animation: float 2s infinite;
}

@keyframes wave {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes float {
    0%, 100% { transform: translateY(-20%) rotate(-45deg); }
    50% { transform: translateY(20%) rotate(-45deg); }
}

@media screen and (max-width: 768px) {
    #mv,
    .movie_wrap {
        height: calc(100dvh - 18dvw);
    }

    .wavy_text span {
        font-size: 4dvw;
    }
}


/* ===============================================
   menu
=============================================== */
#top_menu {
    width: 100%;
    padding: clamp(0px, 15.5vw, 170px) 0 clamp(0px, 18.2vw, 200px);
    display: flex;
    justify-content: center;
}

@media screen and (max-width: 768px) {
    #top_menu {
        padding: 0 0 10dvw;
    }
}


/* ===============================================
   event
=============================================== */
#event {
    width: 100%;
    text-align: center;
    padding-bottom: clamp(0px, 21.8vw, 240px);
}

#event .more {
    width: 100%;
    display: flex;
    justify-content: center;
    padding-top: clamp(0px, 2.3vw, 25px);
}

@media screen and (max-width: 768px) {
    #event {
        padding-bottom: 14.5dvw;
    }

    #event .more {
        padding-top: 5dvw;
    }
}


/* ===============================================
   slide
=============================================== */
.scroll-infinity__wrap {
    display: flex;
    overflow: hidden;
}

.scroll-infinity__list {
    display: flex;
    list-style: none;
    padding: 0
}

.scroll-infinity__item {
    width: 30vw;
}

.scroll-infinity__item.col2 {
    width: 60vw;
}

.scroll-infinity__item > img {
    width: 100%;
}

@keyframes infinity-scroll-left {
    from { transform: translateX(0); }
    to { transform: translateX(-100%); }
}

.scroll-infinity__list--left {
    animation: infinity-scroll-left 30s infinite linear 0.5s both;
}

@keyframes infinity-scroll-right {
    from { transform: translateX(-100%); }
    to { transform: translateX(0%); }
}

.scroll-infinity__list--right{
    animation :infinity-scroll-right 30s infinite linear 0.5s both;
}

@media screen and (max-width: 768px) {
    .scroll-infinity__item {
        width: 40vw;
    }
}


/* ===============================================
   about
=============================================== */
#about {
    width: 100%;
    padding: clamp(0px, 12.7vw, 140px) 0;
    background: url("../img/top/about_bg.png") no-repeat top center / cover;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about_title {
    font-size: clamp(0px, 2.8vw, 31px);
    margin-bottom: 1.8em;
    position: relative;
    z-index: 1;
}

#about p {
    font-size: clamp(0px, 1.55vw, 17px);
    line-height: 2.9em;
    position: relative;
    z-index: 1;
}

#about .img_wrap {
    width: 1920px;
    max-width: 124.2%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
}

#about .img_wrap img {
    position: absolute;
}

#about .img_wrap .img_all {
    width: clamp(1366px, 100vw, 1920px);
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

#about .img_wrap .img_1 {
    width: clamp(0px, 11.8vw, 130px);
    top: clamp(0px, 22.7vw, 250px);
    left: clamp(0px, 18.2vw, 200px);
}

#about .img_wrap .img_2 {
    width: clamp(0px, 26.4vw, 290px);
    top: clamp(0px, 23.6vw, 260px);
    right: 0;
}

#about .img_wrap .img_3 {
    width: clamp(0px, 19.5vw, 215px);
    top: clamp(0px, 59.1vw, 650px);
    left: 0;
}

#about .img_wrap .img_4 {
    width: clamp(0px, 19.5vw, 215px);
    top: clamp(0px, 64.5vw, 710px);
    right: clamp(0px, 10.9vw, 120px);
}

@media screen and (max-width: 768px) {
    #about {
        padding: 11dvw 0 47dvw;
        background-image: url("../img/top/about_bg_sp.png");
    }

    .about_title {
        font-size: 8dvw;
        line-height: 1.4em;
        font-weight: 800;
        margin-bottom: 0.8em;
    }

    #about p {
        font-size: 3.5dvw;
        line-height: 1.7em;
    }

    #about .img_wrap {
        width: 100%;
    }

    #about .img_wrap .img_1 {
        width: 15dvw;
        top: 173dvw;
        left: 10dvw;
    }

    #about .img_wrap .img_2 {
        width: 25dvw;
        top: 176dvw;
        right: 10dvw;
    }

    #about .img_wrap .img_3 {
        width: 20dvw;
        top: 183dvw;
        left: 30dvw;
    }

    #about .img_wrap .img_4 {
        width: 20dvw;
        top: 110dvw;
        right: 0;
        left: 0;
        margin: auto;
    }
}


/* ===============================================
   thanks
=============================================== */
#thanks {
    padding: clamp(0px, 18.2vw, 200px) 0 clamp(0px, 9.1vw, 100px);
}

#thanks .cont_title {
    margin-bottom: clamp(0px, 5.5vw, 60px);
}

.thanks_list {
    width: clamp(0px, 79.1vw, 870px);
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 0 clamp(0px, 15%, 135px);
}

.thanks_list li {
    width: 42.5%;
}

.thanks_list li .thanks_text_area {
    width: 100%;
    margin-top: clamp(0px, 1.4vw, 15px);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.thanks_list li .thanks_text_area .text {
    flex: 1;
    margin-right: clamp(0px, 0.9vw, 10px);
}

.thanks_list li .thanks_text_area .text p {
    font-size: clamp(0px, 1.55vw, 17px);
    font-weight: var(--font-w-b);
    line-height: 1.8em;
    margin-bottom: 1em;
}

.thanks_list li .thanks_text_area .text .name {
    font-size: clamp(0px, 1.8vw, 20px);
    font-weight: var(--font-w-b);
    line-height: 1;
}

.thanks_list li .thanks_text_area .text .name small {
    font-size: 0.75em;
    margin-right: 1em;
}

.thanks_list li .thanks_text_area .more a {
    flex-direction: column;
    align-items: center;
}

.thanks_list li .thanks_text_area .more a p {
    font-size: clamp(0px, 1.3vw, 14px);
    margin-top: 0.3em;
}

.thanks_list li .thanks_text_area .more a p::before {
    display: none;
}

@media screen and (max-width: 768px) {
    #thanks {
        padding: 13dvw 0 8dvw;
    }

    #thanks .cont_title {
        margin-bottom: 4dvw;
    }

    .thanks_list {
        width: 90%;
        flex-direction: column;
        gap: 4.5dvw 0;
    }

    .thanks_list li {
        width: 100%;
        display: flex;
        justify-content: space-between;
    }
    
    .thanks_list li .thanks_img {
        width: 40dvw;
    }

    .thanks_list li .thanks_text_area {
        width: 45dvw;
        margin-top: 0;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .thanks_list li .thanks_text_area .text {
        width: 100%;
        margin-right: 0;
        margin-bottom: 5dvw;
        flex: none;
    }

    .thanks_list li .thanks_text_area .text p {
        font-size: 3.4dvw;
        margin-bottom: 0.8em;
    }

    .thanks_list li .thanks_text_area .text .name {
        font-size: 4dvw;
    }
    
    .thanks_list li .thanks_text_area .more a p {
        font-size: 3.7dvw;
    }
}


/* ===============================================
   topics
=============================================== */
#topics {
    padding: clamp(0px, 9.1vw, 100px) 0 clamp(0px, 18.2vw, 200px);
}

#topics .cont_title {
    margin-bottom: clamp(0px, 6.4vw, 70px);
}

#topics .more {
    margin-top: clamp(0px, 5.9vw, 65px);
}

@media screen and (max-width: 768px) {
    #topics {
        padding: 8dvw 0 20dvw;
    }

    #topics .cont_title {
        margin-bottom: 5.5dvw;
    }

    #topics .more {
        margin-top: 9dvw;
    }
}


/* ===============================================
   history
=============================================== */
#history {
    padding: clamp(0px, 10vw, 110px) 0 clamp(0px, 18.2vw, 200px);
    background: url("../img/top/history_bg.png") no-repeat top center / cover;
}

#history .inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: clamp(0px, 12.7vw, 140px);
}

#history .more {
    padding-right: clamp(0px, 12.7vw, 140px);
}

#history .more a p {
    color: #fff;
}

#history .more a p::before {
    background-color: #fff;
}

#history .more a .arrow {
    border: 1px solid #fff;
}

#history .cont_img {
    width: 100%;
    aspect-ratio: 2000 / 500;
    /*height: clamp(0px, 31vw, 340px);*/
    overflow: hidden;
}

#history .cont_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media screen and (max-width: 768px) {
    #history {
        padding: 6dvw 0 28.5dvw;
        background: url("../img/top/history_bg.png") no-repeat top center / cover;
    }

    #history .inner {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        margin-bottom: 7dvw;
    }

    #history .more {
        padding-right: 0;
        position: absolute;
        top: 56.5dvw;
        left: 0;
        right: 0;
        margin: auto;
    }

    #history .cont_img {
        aspect-ratio: 1000 / 342;
    }

    #history .cont_img img {
        object-position: left center;
    }
}


/* ===============================================
   partners
=============================================== */
#partners {
    padding: clamp(0px, 15.5vw, 170px) 0 clamp(0px, 18.2vw, 200px);
}

#partners .cont_title {
    margin-bottom: clamp(0px, 5.5vw, 60px);
}

#partners .cont_title img {
    width: clamp(0px, 17.7vw, 195px);
}

#partners .more {
    margin-top: clamp(0px, 5.9vw, 65px);
}

@media screen and (max-width: 768px) {
    #partners {
        padding: 16dvw 0 20dvw;
    }

    #partners .cont_title {
        margin-bottom: 5dvw;
    }
    
    #partners .cont_title img {
        width: 19.5dvw;
    }

    #partners .more {
        margin-top: 9dvw;
    }
}


/* ===============================================
   top5news
=============================================== */
#top5news {
    width: 100%;
    padding-bottom: clamp(0px, 16.4vw, 180px);
    position: relative;
}

#top5news .cont_title_area {
    width: 100%;
    height: clamp(0px, 72.7vw, 800px);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

#top5news .cont_title {
    width: 1100px;
    max-width: 100%;
    padding: clamp(0px, 5vw, 55px) 0 0 clamp(0px, 7.3vw, 80px);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 3;
}

/*#top5news .cont_title .text_1 {
    font-size: clamp(0px, 9.1vw, 100px);
    font-weight: normal;
    font-family: var(--font-en);
    letter-spacing: -0.05em;
    line-height: 1;
    font-style: oblique;
    margin-right: 0.3em;
}

#top5news .cont_title .text_2 {
    font-size: clamp(0px, 1.8vw, 20px);
    font-weight: var(--font-w-bl);
}*/

.top5news_menu {
    width: 220px;
    max-width: 20%;
    aspect-ratio: 220 / 260;
    border: 1px solid var(--color-main);
    background-color: #fff;
    color: var(--color-main);
}

.top5news_menu:hover {
    background-color: var(--color-main);
    color: #fff;
}

.top5news_menu:not(:first-of-type) {
    border-left: 0;
}

.top5news_menu::before {
    content: "";
    width: 100%;
    height: clamp(0px, 49.1vw, 540px);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    transition: opacity 0.5s;
    opacity: 0;
    pointer-events: none;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.top5news_menu:hover::before {
    opacity: 1;
}

.top5news_menu.nb1::before {
    background-color: aqua;
}
.top5news_menu.nb2::before {
    background-color: #ccc;
}
.top5news_menu.nb3::before {
    background-color: #003c83;
}
.top5news_menu.nb4::before {
    background-color: #3ba820;
}
.top5news_menu.nb5::before {
    background-color: #eace47;
}

.top5news_menu::after {
    content: "";
    width: 100%;
    height: clamp(0px, 49.1vw, 540px);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url("../img/top/top5news_bg_01.jpg");
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
}

.top5news_menu .menu_inner {
    width: 100%;
    height: 100%;
    padding-bottom: clamp(0px, 3.6vw, 40px);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 3;
}

.top5news_menu .menu_inner .nb {
    width: clamp(0px, 5.5vw, 60px);
    position: absolute;
    top: clamp(-40px, -3.6vw, 0px);
    left: 0;
    right: 0;
    margin: auto;
}

.top5news_menu .menu_inner p {
    font-size: clamp(0px, 1.55vw, 17px);
    text-align: center;
    font-weight: var(--font-w-b);
    line-height: 1.8em;
}

.top5news_menu .menu_inner .arrow {
    width: clamp(0px, 5.5vw, 60px);
    aspect-ratio: 1 / 1;
    background-color: var(--color-main);
    border-radius: 50%;
    position: absolute;
    bottom: clamp(0px, 1.4vw, 15px);
    left: 0;
    right: 0;
    margin: auto;
    z-index: 1;
    transition: background 0.4s;
}

.top5news_menu .menu_inner .arrow::before {
    content: "";
    width: clamp(0px, 5.5vw, 60px);
    height: clamp(0px, 5.5vw, 60px);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    mask-position: center center;
    mask-repeat: no-repeat;
    mask-size: contain;
    mask-image: url("../img/arrow_white.svg");
    -webkit-mask-image: url("../img/arrow_white.svg");
    background: #fff;
}

.top5news_menu .menu_inner:hover .arrow {
    background-color: #fff;
}

.top5news_menu .menu_inner:hover .arrow::before {
    background: var(--color-main);
}

@media screen and (max-width: 768px) {
    #top5news {
        padding-bottom: 18dvw;
    }

    #top5news .cont_title_area {
        width: 90%;
        height: inherit;
        margin: 0 auto;
        background-color: var(--color-main);
        padding: 2px;
        flex-wrap: wrap;
        gap: 2px;
    }

    #top5news .cont_title {
        width: calc(50% - 1px);
        aspect-ratio: 450 / 770;
        padding: 0 0 0 5.5dvw;
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
    }
    
    #top5news .cont_title .text_2 {
        margin: 1em 0 1.5em;
    }
    
    .top5news_menu {
        width: calc(50% - 1px);
        max-width: 100%;
        aspect-ratio: 450 / 770;
        border: 0;
        position: relative;
    }
    
    .top5news_menu::before {
        height: 35dvw;
        opacity: 1;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center center;
    }
    
    .top5news_menu.nb1::before {
        background-image: url("../img/top/top5news_bg_01_sp.jpg");
    }
    .top5news_menu.nb2::before {
        background-image: url("../img/top/top5news_bg_02_sp.jpg");
    }
    .top5news_menu.nb3::before {
        background-image: url("../img/top/top5news_bg_03_sp.jpg");
    }
    .top5news_menu.nb4::before {
        background-image: url("../img/top/top5news_bg_01_sp.jpg");
    }
    .top5news_menu.nb5::before {
        background-image: url("../img/top/top5news_bg_02_sp.jpg");
    }

    .top5news_menu::after {
        display: none;
    }

    .top5news_menu .menu_inner {
        padding: 29.5dvw 0 0;
        flex-direction: column;
        justify-content: flex-start;
    }

    .top5news_menu .menu_inner .nb {
        width: 8dvw;
        position: relative;
        top: 0;
        margin: 0 0 2.5dvw;
    }

    .top5news_menu .menu_inner p {
        font-size: 4dvw;
        line-height: 1.5em;
        margin-bottom: 0.5em;
    }

    .top5news_menu .menu_inner .arrow {
        width: 15dvw;
        position: relative;
        bottom: 0;
        margin: 0;
    }

    .top5news_menu .menu_inner .arrow::before {
        width: 15dvw;
        height: 15dvw;
    }
}


/* ===============================================
   staff
=============================================== */
#staff {
    padding-bottom: clamp(0px, 18.2vw, 200px);
}

#staff .cont_title {
    margin-bottom: clamp(0px, 3.6vw, 40px);
}

#staff .cont_title .text_1 {
    width: 100%;
    margin-bottom: 0.3em;
}

#staff .more {
    margin-top: clamp(0px, 5.9vw, 65px);
}

@media screen and (max-width: 768px) {
    #staff {
        padding-bottom: 19dvw;
    }

    #staff .cont_title {
        margin-bottom: 5.5dvw;
    }
    
    #staff .cont_title .text_2 {
        margin-bottom: 0;
    }

    #staff .more {
        margin-top: 9dvw;
    }
}


/* ===============================================
   character
=============================================== */
#character {
    width: 100%;
    padding: clamp(0px, 6.7vw, 80px) 0;
    margin-bottom: clamp(0px, 18.2vw, 200px);
    background-color: #e60012;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

#character .cont_title {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: clamp(0px, 2.1vw, 25px);
}

#character .cont_title .text_1 {
    margin: 0 0 0.2em;
}

#character .cont_title .text_2 {
    margin: 0;
}

.character_title {
    font-size: clamp(0px, 2.8vw, 31px);
    letter-spacing: 0.05em;
    margin-bottom: clamp(0px, 3.3vw, 40px);
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(0px, 2.5vw, 30px);
}

.character_title img {
    max-width: 10vw;
    margin-bottom: 0.5em;
}

.character_summary {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(0px, 5.8vw, 70px);
    margin-bottom: clamp(0px, 6.7vw, 80px);
}

.character_summary .text_1 {
    font-size: clamp(0px, 1.9vw, 23px);
    line-height: 2.7em;
    letter-spacing: 0.05em;
    text-align: left;
}

.character_summary .img_area {
    width: clamp(0px, 45vw, 540px);
}

#character .more a .arrow {
    border: 1px solid #fff;
}

#character .more a p {
    color: #fff;
}

#character .more a p::before {
    background-color: #fff;
}

@media screen and (max-width: 768px) {
    #character {
        padding: 15dvw 0 16dvw;
        margin-bottom: 16dvw;
    }

    #character .cont_title {
        margin-bottom: 6dvw;
    }
    
    #character .cont_title .text_1 {
        margin-right: 0.3em;
    }

    .character_title {
        font-size: 6.4dvw;
        line-height: 1.6em;
        letter-spacing: 0.05em;
        margin-bottom: 7dvw;
        gap: 4.5dvw;
        flex-direction: column;
        align-items: center;
        white-space: nowrap;
    }

    .character_title img {
        width: 27dvw;
        max-width: 27dvw;
        margin-bottom: 0;
    }

    .character_summary {
        flex-direction: column-reverse;
        align-items: center;
        gap: 6dvw;
        margin-bottom: 7dvw;
    }

    .character_summary .text_1 {
        font-size: 3.5dvw;
        line-height: 2em;
        letter-spacing: 0;
        text-align: center;
    }

    .character_summary .img_area {
        width: 75dvw;
    }
}
