@import "reset.css";

/* //////////////////
PC・SP共通
////////////////// */

* {
    --font-shippori-mincho: "Shippori Mincho", serif;
    --font-montserrat: "Montserrat", sans-serif;
    --font-noto-sans-jp: "Noto Sans JP", sans-serif;
    --font-libre-baskerville: "Libre Baskerville", serif;
    --font-myriad-pro: "myriad-pro", sans-serif;

    --bg-color: #fff;
}

#topic_250725 {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    text-align: center;
    color: #383838;
}

#topic_250725 .index {
    background-color: transparent !important;
    border: none !important;
    padding: 0px;
    text-align: center;
}

#topic_250725 img {
    width: 100%;
}

#topic_250725 li {
    list-style: none;
}

#topic_250725 p {
    font-size: 13px;
    line-height: 2;
    letter-spacing: 0.08em;
}

#topic_250725 a:hover {
    text-decoration: none !important;
}

#topic_250725 .fadeIn_up {
    opacity: 0;
    transition: 1s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

#topic_250725 .fadeIn_up.is-show {
    opacity: 1;
}

#topic_250725 .fadeIn_up_delay {
    opacity: 0;
    transition: 1s 0.5s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

#topic_250725 .fadeIn_up_delay.is-show {
    opacity: 1;
}

#topic_250725 .fadeIn_up {
    opacity: 0;
    transition: 1s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

#topic_250725 .fadeIn_up.is-show {
    opacity: 1;
}

#topic_250725 .zoomOut_fade {
    overflow: hidden;
    > * {
        scale: 1.1;
        opacity: 0;
        transition: opacity .6s ease-in, scale 3s ease-out;
    }
}

#topic_250725 .zoomOut_fade.is-show {
    > * {
        scale: 1;
        opacity: 1;
    }
}

#topic_250725 .block {
    display: block;
}

#topic_250725 .relative.item_img.block {
    transition: all 0.2s ease-out;
}

#topic_250725 .relative.item_img.block:hover {
    opacity: 0.8;
}

.red {
    color: #ff5757;
}

a .red {
    text-decoration: underline;
    text-decoration-color: #ff5757;
}

a:hover .red {
    text-decoration: none;
}

/* //////////////////
PC・SP共通
////////////////// */

/* //////////////////
PC共通
////////////////// */

#topic_250725 .center {
    text-align: center;
}

#topic_250725 .relative {
    position: relative;
}

#topic_250725 .absolute {
    position: absolute;
}

#topic_250725 .multiply {
    mix-blend-mode: multiply;
}

#topic_250725 .txt_left {
    text-align: left;
}

#topic_250725 .margin-center {
    margin: 0 auto;
}

#topic_250725 .flex {
    display: flex;
    gap: 80px;
}

#topic_250725 .flex.justify-center {
    justify-content: center !important;
}

#topic_250725 .flex.reverse {
    flex-direction: row-reverse;
}

#topic_250725 .flex-1 {
    flex: 1;
}

#topic_250725 .items {
    overflow-x: hidden;
    background-color: var(--bg-color);
    margin-bottom: 80px;
}

#topic_250725 .items .banner_wrap {
    padding: 0;
}

#topic_250725 .items .banner {
    max-width: 100%;
    margin: 0 auto;
}

#topic_250725 .items .banner .banner_kv {
    display: flex;
    position: relative;
    opacity: 0;
    clip-path: inset(0 100% 0 0);
    transition: clip-path 800ms ease-in-out, opacity 1150ms ease-in-out;

    > div {
        overflow: hidden;
        img {
            scale: 1.05;
            transition: scale 2600ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }
    }

    > picture {
        position: absolute;
        width: 100%;
        transition: opacity 2000ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
        opacity: 0;

        img {
            width: 100%;
        }

        &:nth-of-type(1) {
            width: 29.733%;
            left: 50%;
            translate: -48.5% 0;
            bottom: 39.128125%;
            z-index: 3;
            transition-delay: 1000ms;
        }
        &:nth-of-type(2) {
            width: 51.72%;
            left: 50%;
            translate: -50% 0;
            bottom: 19.375%;
            transition-delay: 1500ms;
        }
        &:nth-of-type(3) {
            width: 21.15%;
            left: 50%;
            translate: -50% 0;
            bottom: 9.76%;
            transition-delay: 2000ms;
        }
        &:nth-of-type(4) {
            width: 10.54%;
            top: 4.84%;
            left: 2.15%;
            transition-delay: 2500ms;
        }
        &:nth-of-type(5) {
            width: 11.09%;
            top: 4.84%;
            right: 2.15%;
            transition-delay: 2500ms;
        }
    }

    @media screen and (max-width: 768px) {
        display: block;

        > picture {

            &:nth-of-type(1) {
                width: 52.03%;
                bottom: 54.73%;
            }
            &:nth-of-type(2) {
                width: 83.53%;
                bottom: 45.32%;
            }
            &:nth-of-type(3) {
                width: 54.15%;
                bottom: 39.45%;
            }
            &:nth-of-type(4) {
                width: 23.65%;
                top: 3.21%;
                left: 50%;
                translate: -50% 0;
            }
            &:nth-of-type(5) {
                width: 22.49%;
                top: auto;
                bottom: 3.21%;
                left: 50%;
                right: auto;
                translate: -50% 0;
            }
        }
    }

    &.is-show {
        clip-path: inset(0 0 0 0);
        opacity: 1;

        > div {
            img {
                scale: 1;
            }
        }

        > picture {
            opacity: 1;
        }
    }
}

#topic_250725 .items .banner .slider {
    overflow: hidden;
    aspect-ratio: 1564 / 640;
}

#topic_250725 .items .banner p {
    font-size: 12px;
    line-height: 2.5;
    letter-spacing: 0.12em;
    text-align: center;
    font-weight: 350;
    margin: 96px auto;
}

#topic_250725 .items .banner .cta {
    margin-top: -48px;
    margin-bottom: 96px;
    display: block;
    width: max-content;
    margin-inline: auto;
    transition: all .2s ease-out;

    img {
        width: auto;
    }

    &:hover {
        opacity: .8;
    }
    @media screen and (max-width: 768px) {
        margin-top: -40px;
        margin-bottom: 64px;
    }
}
#topic_250725 .items .banner .off {
    margin-bottom: 40px;
    img {
        width: auto;
    }
    @media screen and (max-width: 768px) {
        margin-bottom: 26px;
    }
}

#topic_250725 .items .banner .anchor {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 96px;

    a {
        position: relative;
        display: block;
        max-width: 300px;
        overflow: hidden;

        ._img {
            transition: all .4s ease-out;
            
            img {
                scale: 1.05;
                transition: all 1.6s ease-out .3s;
            }
        }

        ._text {
            position: absolute;
            bottom: 21px;
            width: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 12px;
            
            span {
                font-family: var(--font-shippori-mincho);
                font-size: 18px;
                font-weight: 500;
                color: #fff;
                letter-spacing: .12em;
            }

            img {
                width: auto;
            }

        }
        &.is-show {
            ._img {
                img {
                    scale: 1;
                }
            }
        }
        &:hover {
            ._img {
                scale: 1.05;
            }
        }
    }
}

#topic_250725 .items .banner #scroll_txt {
    width: auto;
    margin-bottom: 24px;
}

#topic_250725 .items .banner ._line {
    width: 1px;
    height: 80px;
    margin-inline: auto;
    background-color: #383838;
}

#topic_250725 .title_img span {
    font-family: "Crimson Text", serif;
    font-size: 30px;
    position: absolute;
    top: 52%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#topic_250725 h3.title {
    font-family: "Crimson Text", serif;
    font-size: 46px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 3.7px;
    margin-bottom: 100px;
}

#topic_250725 .subtitle {
    display: block;
    font-family: "Crimson Text", serif;
    font-size: 30px;
    font-weight: 500;
    letter-spacing: 2.4px;
    margin-top: 15px;
}

#topic_250725 .icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin: 40px auto 150px;
}

#topic_250725 .icons a {
    transition: all 0.2s ease-out;
}

#topic_250725 .icons a:hover {
    opacity: 0.5;
}

#topic_250725 .icons img {
    width: 40px;
}

#topic_250725 h4.title {
    font-family: "Noto Serif JP", serif;
    font-size: 25px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 2px;
    margin-bottom: 80px;
}

#topic_250725 h4.title img {
    height: 25px;
    margin-bottom: 30px;
}

#topic_250725 h4.title span {
    display: block;
}

#topic_250725 h4.title span a {
    text-decoration: none;
    transition: all 0.2s ease-out;
}

#topic_250725 h4.title span a:hover {
    opacity: 0.8;
}

#topic_250725 h4.title a {
    text-decoration: none;
}

#topic_250725 .items .item_info {
    font-family: var(--font-montserrat);
    margin-top: 40px;
    max-width: 100%;
}

#topic_250725 .items .item_info ul {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

#topic_250725 .items .item_info ul li {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 0.08em;
    line-height: 1;
}

#topic_250725 .items .item_info ul li a {
    text-decoration: underline;
    display: flex;
    gap: 12px;
    align-items: center;
    text-align: left;
}

#topic_250725 .items .item_info ul li:not(:last-child) a > span::after {
    content: ",";
}

/* ページトップ */

#topic_250725 .pagetop {
    height: 50px;
    width: 50px;
    position: fixed;
    right: 25px;
    bottom: 100px;
    background: #fff;
    border: solid 1px #bbbbbb;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3;

    -webkit-animation: fadeIn 1s ease 0.5s 1 forwards;
    animation: fadeIn 1s ease 0.5s 1 forwards;
    opacity: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

#topic_250725 .pagetop_arrow {
    height: 10px;
    width: 10px;
    border-top: 2px solid #bbbbbb;
    border-right: 2px solid #bbbbbb;
    transform: translateY(20%) rotate(-45deg);
}

/* ページトップ */

/* サーチエリア */

#topic_250725 .search-ttl {
    font-family: "Libre Baskerville", serif !important;
    font-size: 2.8rem !important;
    line-height: 2.3rem !important;
    letter-spacing: 0.24em !important;
    text-align: center;
    font-weight: 400;
}

#topic_250725 .search-area .search-list {
    font-family: "Montserrat", "Noto Sans JP";
    display: block;
    position: relative;
    text-align: left;
    margin-bottom: 120px;
}

#topic_250725 .search-area .search-list > ul {
    max-width: 980px;
    margin: auto;
    padding: 65px 0 0;
}

#topic_250725 .search-area .search-list > ul > li > dl {
    display: flex;
    margin-bottom: 2px;
    justify-content: center;
}

#topic_250725 .search-area .search-list > ul > li > dl > dt {
    margin-right: 56px;
    font-size: 12px;
}

#topic_250725 .search-area .search-list > ul > li > dl > dd > ul ~ ul {
    margin-left: 62px;
}

#topic_250725 .search-area .search-list > ul > li > dl > dd {
    display: flex;
}

#topic_250725 .search-area .search-list > ul > li > dl > dd > ul > li ~ li {
    margin-top: 38px;
}

#topic_250725 .search-area .search-list > ul > li > dl > dd > ul > li dt {
    font-size: 12px;
    line-height: 1.2rem;
    font-weight: 700;
}

#topic_250725 .search-area .search-list > ul > li > dl > dd > ul > li dd {
    margin-top: 19px;
    font-size: 14px;
}

#topic_250725 .search-area .search-list > ul > li {
    font-size: 14px;
    line-height: 1;
    letter-spacing: 0em;
    margin-top: 16px;
}

#topic_250725 .search-area .search-list > ul > li > dl > dd > ul > li li {
    letter-spacing: 0.08em;
    line-height: 1;
}

#topic_250725 .search-area .search-list > ul > li > dl > dd > ul > li li ~ li {
    margin-top: 14px;
}

#topic_250725 .search-area .search-list a {
    text-decoration: none !important;
}

/* サーチエリア */

/* itemarchive */
#topic_250725 .archive_wrapper {
    background-color: #ffffff;
}

#topic_250725 .itemarchive {
    width: 805px;
    margin: 0 auto;
    padding-top: 100px;
    padding-bottom: 80px;
}

#topic_250725 .itemarchive .ttl {
    margin: 0 auto;
    margin-bottom: 64px;
}

#topic_250725 .itemarchive .ttl h2 {
    font-family: "Libre Baskerville", serif;
    font-size: 2.8rem;
    line-height: 2.3rem;
    letter-spacing: 0.24em;
    text-align: center;
    font-weight: 400;
}

#topic_250725 .itemarchive .itemlist {
    font-family: var(--font-montserrat);
    margin: 0 auto;
}

#topic_250725 .itemarchive .itemlist .itemname {
    margin-bottom: 28px;
}

#topic_250725 .itemarchive .itemlist .itemname h3 {
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    line-height: 32px;
    letter-spacing: 0.08em;
    text-align: left;
    font-weight: 500;
}

#topic_250725 .itemarchive .itemlist .box {
    border-top: solid 1px #d9d9d9;
    display: flex;
    padding: 32px 0;
}

#topic_250725 .itemarchive .itemlist .box .left-img {
    float: left;
    display: flex;
    align-items: center;
}

#topic_250725 .itemarchive .itemlist .box .left-img .itemimg {
    height: 172px;
}

#topic_250725 .itemarchive .itemlist .box .left-img .itemimg img {
    height: 100%;
    width: auto;
}

#topic_250725 .itemarchive .itemlist .box .left-img .name {
    margin-left: 24px;
}

#topic_250725 .itemarchive .itemlist .box .left-img .name h5 {
    font-size: 16px;
    line-height: 28px;
    letter-spacing: 0.08em;
    text-align: left;
    font-weight: 400;
}

#topic_250725 .itemarchive .itemlist .box .left-img .name h5 span {
    font-family: "Montserrat", sans-serif;
}

#topic_250725 .itemarchive .itemlist .box .btn {
    width: 275px;
    height: 60px;
    display: block;
    margin: auto 0 auto auto;
}

/* itemarchive */

/* //////////////////
PC共通
////////////////// */

/* //////////////////
SP共通
////////////////// */

@media screen and (max-width: 1199px) {
    #topic_250725 .flex {
        gap: 40px !important;
    }
}

@media screen and (max-width: 768px) {
    #topic_250725 .flex {
        display: block;
    }

    #topic_250725 .flex.reverse {
        flex-direction: column;
    }

    #topic_250725 .items a:hover {
        text-decoration: none;
    }

    #topic_250725 .items .txt_info {
        width: 325px;
    }

    #topic_250725 .items .banner_wrap {
        padding: 0;
    }

    #topic_250725 .index .banner .slider {
        aspect-ratio: 375 / 560;
    }

    #topic_250725 .index .banner p {
        margin: 80px auto;
        max-width: 400px;
        padding: 0 25px;
    }

    #topic_250725 .items .banner .anchor {
        padding-inline: 25px;
        gap: 26px;
        flex-direction: column;
        align-items: center;
        margin-bottom: 64px;
        a {
            max-width: 325px;
            ._text {
                gap: 16px;
                bottom: 22px;

                span {
                    font-size: 19.5px;
                }
                img {
                    width: 14px;
                }
            }
        }
    }

    #topic_250725 .items .banner #scroll_txt {
        width: 44px;
    }

    #topic_250725 .items .banner ._line {
        height: 54px;
    }

    #topic_250725 .items p {
        font-size: 13px;
        line-height: 24px;
        letter-spacing: 0.08em;
        text-align: left;
        font-weight: 300;
        box-sizing: border-box;
    }

    /* #topic_250725 .items .item_info {
        margin-top: 30px;
    } */

    #topic_250725 .items .item_info ul {
        flex-direction: row;
        gap: 10px;
    }

    #topic_250725 .items .item_info ul li {
        width: calc(50% - 5px);
        font-size: 10px;
        line-height: 1.8;
    }

    #topic_250725 .items .item_info ul li a img {
        width: 90px;
    }

    #topic_250725 .items .item_info ul li:not(:last-child) a span::after {
        content: "";
    }

    /* ページトップ */

    #topic_250725 .pagetop {
        height: 44px;
        width: 44px;
        right: 8px;
        bottom: 80px;
    }

    /* ページトップ */

    /* itemarchive */

    #topic_250725 .itemarchive {
        width: calc(100% - 50px);
        margin: 0 auto;
        padding-top: 50px;
        padding-bottom: 50px;
    }

    #topic_250725 .itemarchive .ttl {
        margin: 0 auto;
        margin-bottom: 24px;
    }

    #topic_250725 .itemarchive .ttl h2 {
        font-family: "Libre Baskerville", serif;
        font-size: 1.7rem;
        line-height: 1.7rem;
        letter-spacing: 0.16em;
        text-align: center;
        font-weight: 400;
    }

    #topic_250725 .itemarchive .itemlist {
        margin: 0 auto;
    }

    #topic_250725 .itemarchive .itemlist .itemname {
        margin-bottom: 14px;
    }

    #topic_250725 .itemarchive .itemlist .itemname h3 {
        font-family: "Montserrat", sans-serif;
        font-size: 16px;
        line-height: 28px;
        letter-spacing: 0.08em;
        text-align: left;
        font-weight: 500;
    }

    #topic_250725 .itemarchive .itemlist .box {
        border-top: solid 1px #d9d9d9;
        display: flex;
        padding: 24px 0;
    }

    #topic_250725 .itemarchive .itemlist .box .left-img {
        float: left;
    }

    #topic_250725 .itemarchive .itemlist .box .left-img .itemimg {
        height: 92px;
    }

    #topic_250725 .itemarchive .itemlist .box .left-img .itemimg img {
        height: 100%;
    }

    #topic_250725 .itemarchive .itemlist .box .left-img .name {
        margin-left: 20px;
    }

    #topic_250725 .itemarchive .itemlist .box .left-img .name h5 {
        font-size: 13px;
        line-height: 20px;
        letter-spacing: 0.08em;
        text-align: left;
        margin-top: 16px;
    }

    #topic_250725 .itemarchive .itemlist .box .left-img .name h5 span {
        font-family: "Montserrat", sans-serif;
    }

    #topic_250725 .itemarchive .itemlist .box .btn {
        /* width: 140px; */
        width: 112px;
        height: auto;
        display: block;
        margin: auto 0 auto auto;
    }

    /* itemarchive */
}

@media screen and (max-width: 370px) {
    #topic_250725 .items .item_info ul li a img {
        width: 70px;
    }
}

/* //////////////////
SP共通
////////////////// */

@media screen and (max-width: 980px) {
    /* サーチエリア */

    #topic_250725 .search-ttl {
        font-family: "Libre Baskerville", serif !important;
        font-size: 1.7rem !important;
        line-height: 1.7rem !important;
        letter-spacing: 0.16em !important;
        text-align: center;
        font-weight: 400 !important;
        margin-bottom: 25px;
    }

    /* サーチエリア */

    /*アコーディオン全体*/

    #topic_250725 .accordion-area {
        list-style: none;
        width: 100%;
        max-width: 980px;
        margin: 0 auto 80px;
        border-bottom: 1px solid #ccc;
    }

    #topic_250725 .accordion-area a {
        text-decoration: none !important;
    }

    #topic_250725 .accordion-area section {
        border-top: 1px solid #ccc;
    }

    /*アコーディオン全体*/

    /*アコーディオンタイトル*/

    #topic_250725 .accordion-title {
        position: relative;
        /*+マークの位置基準とするためrelative指定*/
        cursor: pointer;
        font-size: 13px !important;
        font-weight: 400 !important;
        padding: 20px 0 20px 40px !important;
        transition: all 0.5s ease;
        text-align: left !important;
        display: block !important;
        background: #fff !important;
    }

    /*アコーディオンタイトル*/

    /*アイコンの＋と×*/

    #topic_250725 .accordion-title::before,
    #topic_250725 .accordion-title::after {
        content: "";
        position: absolute;
        right: 24px;
        top: 0;
        bottom: 0;
        margin: auto 0;
        background-color: #232323;
        width: 10px;
        height: 1px;
        transition: all 0.3s;
    }

    #topic_250725 .accordion-title::after {
        transform: rotate(90deg);
    }

    /*　closeというクラスがついたら形状変化　*/

    #topic_250725 .accordion-title.close::after {
        transform: rotate(90deg);
    }

    #topic_250725 .accordion-title.close::before {
        transform: rotate(180deg);
    }

    #topic_250725 .accordion-title.close::after {
        transform: rotate(180deg);
    }

    #topic_250725 .direct-link {
        padding: 20px 0px 20px 40px !important;
        text-align: left;
        font-size: 13px !important;
        font-weight: 400 !important;
        cursor: pointer;
        display: block !important;
        border-top: 1px solid #ccc;
        background: #fff !important;
    }

    /*アイコンの＋と×*/

    /*アコーディオンで現れるエリア*/

    #topic_250725 .accordion-box {
        display: none;
        /*はじめは非表示*/
        background: #fafafa;
        padding: 3%;
    }

    #topic_250725 .accordion-box {
        padding: 0 0px 0px 0px;
        font-size: 13px;
        border-top: 1px solid #d9d9d9;
        text-align: left;
        display: none;
        cursor: pointer;
    }

    #topic_250725 .accordion-box a {
        text-decoration: none !important;
        margin-left: 25px;
    }

    #topic_250725 .accordion-box ul {
        font-size: 13px;
        padding: 0;
    }

    #topic_250725 .accordion-box li {
        padding: 20px 0 20px 40px;
        border-top: 1px solid #d9d9d9;
    }

    #topic_250725 .accordion-box .list-top {
        padding: 20px 0 20px 40px;
        border-top: 0px;
    }

    /*アコーディオンで現れるエリア*/
}

/* //////////////////
変更箇所はここから
////////////////// */

/*PC個別*/
#topic_250725 .wrapper {
    padding-bottom: 200px;
}

#topic_250725 [id*="group"] {
    padding-block: 120px;
}

#topic_250725 #group01 {
    background-color: #F5F5F0;
}

#topic_250725 #group02 {
    background-color: #EBE9E2;

    [class*="section_"] .style_01 .item_credit {
        & li {
            & a {
                img {
                    background-color: #951F1F;
                }
            }
        }
    }
    .section_slider .slider_outer .swiper-button-next, 
    .section_slider .slider_outer .swiper-button-prev {
        color: #951F1F;
    }

    [class*="section_"] .style_02 {
        & .sc_header {
            & button {
                &::before, &::after {
                    background-color: #951F1F;
                }
            }
        }
    }
}

#topic_250725 .img_xl {
    max-width: 600px;
}

#topic_250725 .img_lg {
    max-width: 560px;
}

#topic_250725 .img_lgs {
    max-width: 490px;
}

#topic_250725 .img_md {
    max-width: 460px;
}

#topic_250725 .img_sm {
    max-width: 380px;
}

#topic_250725 .img_xs {
    max-width: 305px;
}

#topic_250725 .img_lg .slick-slide {
    width: 560px;
    height: max-content;
}

#topic_250725 .img_lgs .slick-slide {
    width: 490px;
    height: max-content;
}

#topic_250725 .img_md .slick-slide {
    width: 460px;
    height: max-content;
}

#topic_250725 .img_sm .slick-slide {
    width: 380px;
    height: max-content;
}

#topic_250725 .img_xs .slick-slide {
    width: 275px;
    height: max-content;
}

#topic_250725 .item_txt {
    max-width: 530px;
    text-align: left;
}

#topic_250725 [class*="section_"]:not(:last-child) {
    margin-bottom: var(--mb, 144px);
}

#topic_250725 [class*="section_"] h2.title {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 45px;
    margin-bottom: 100px;
}

#topic_250725 [class*="section_"] h2.title img {
    position: relative;
    width: auto;
}

#topic_250725 [class*="section_"] h2.title > div {
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: left;
}

#topic_250725 [class*="section_"] h2.title span {
    display: block;
    font-family: var(--font-shippori-mincho);
    font-size: 20px;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 1.2px;
}

#topic_250725 [class*="section_"] h2.title .separator {
    height: 12px;
}

#topic_250725 [class*="section_"] h2.title p {
    font-family: var(--font-shippori-mincho);
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 1.92px;
    background: #4f7bb0;
    color: #fff;
    line-height: 1;
    display: inline-block;
    padding: 4px 4px 8px 6px;
}

#topic_250725 [class*="section_"] h2.title p.sp {
    display: none;
}

#topic_250725 [class*="section_"] .style_01 > [class*="img_"] {
    position: relative;
    margin: 0 auto;
}

#topic_250725 [class*="section_"] .style_01 .flex {
    gap: 64px;
    justify-content: center;
    align-items: flex-start;
}

#topic_250725 [class*="section_"] .style_01 .flex .item_img {
    height: fit-content;
}
#topic_250725 [class*="section_"] .style_01 .flex a.item_img {
    transition: all .2s ease-out;
    display: block;

    &:hover {
        opacity: .8;
    }
}

#topic_250725 [class*="section_"] .w-bdr {
    border: 1px solid #383838;
}

@media screen and (max-width: 768px) {
    #topic_250725 [class*="section_"] .w-bdr {
        border-color: #38383880;
    }
}

#topic_250725 [class*="section_"] .style_01 .item_txt {
    max-width: 100%;
    margin-top: 56px;
}

/* #topic_250725 [class*="section_"] .style_01 .flex .item_txt {
    max-width: 318px;
} */

#topic_250725 [class*="section_"] .style_01 .item_txt p {
    text-align: left;
    font-size: 13px;
    font-weight: 400;
    line-height: 2;
    letter-spacing: 0.12em;
    text-align: left;
}
#topic_250725 [class*="section_"] .style_01 .item_txt p span {
    color: #7cabc0;
}

#topic_250725 [class*="section_"] .style_01 .sc_title {
    margin-bottom: 56px;
}

#topic_250725 [class*="section_"] .style_01 .sc_text {
    width: auto;
    position: absolute;
}

#topic_250725 [class*="section_"] .style_01 .sc_txt {
    margin-bottom: 56px;
}
#topic_250725 [class*="section_"] .style_01 .sc_txt p {
    position: relative;
    color: #231815;
    font-size: 24px;
    font-weight: 500;
    letter-spacing: .12em;
    line-height: 1.1;
    background: linear-gradient(180deg, #FFF 0%, #FFF 55%, #EEF37E 56%, #EEF37E 100%);
    width: max-content;
}
#topic_250725 [class*="section_"] .style_01 .sc_txt p:not(:first-child) {
    margin-top: 14px;
}

#topic_250725 [class*="section_"] .sc_logo,
#topic_250725 [class*="section_"] .sc_hor,
#topic_250725 [class*="section_"] .sc_img,
#topic_250725 [class*="section_"] .sc_num {
    width: auto;
    position: absolute;
    z-index: 2;
}

#topic_250725 [class*="section_"] .sc_hor {
    max-width: 63px;
}

#topic_250725 [class*="section_"] .sc_num {
    max-width: 95px;
}

#topic_250725 [class*="section_"] .style_01 .sc_sample {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

#topic_250725 [class*="section_"] .style_01 .sc_sample .txt {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-direction: column;
}
#topic_250725 [class*="section_"] .style_01 .sc_sample .txt .top {
    display: flex;
    gap: 16px;
    align-items: center;
}
#topic_250725 [class*="section_"] .style_01 .sc_sample .txt .top span {
    letter-spacing: 0.03em;
    line-height: 2;
}

#topic_250725 [class*="section_"] .style_01 .sc_sample .txt .top img {
    width: auto;
}

#topic_250725 [class*="section_"] .style_01 .sc_sample .txt .bottom {
    padding: 10px 12px;
    background-color: #3a3a3a;
    font-weight: 500;
    text-align: center;
    font-size: 20px;
    letter-spacing: 0.38em;
    color: #fff;
}

#topic_250725 [class*="section_"] .style_01 .sc_sample > img {
    max-width: 177px;
}

#topic_250725 [class*="section_"] .style_01 .item_credit {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 56px;
    margin-top: 32px;

    li  {
        a {
            display: flex;
            align-items: center;
            font-size: 14px !important;
            letter-spacing: .08em;
            text-decoration: none;

            img {
                width: 20px;
                margin-right: 12px;
            }

            p {
                margin-right: 16px;
                font-size: 14px;
            }

            span {
                display: block;
                margin-right: 16px;
                font-family: var(--font-montserrat);
                font-weight: 500;
            }

            div {
                font-size: 11px;
                font-family: var(--font-montserrat);
                border: 1px solid;
                border-radius: 100px;
                width: 56px;
                font-weight: 500;
                padding-block: 2px 1px;
                display: flex;
                justify-content: center;
                align-items: center;
                color: #000;
                transition: all 0.2s ease-out;
            }

            &:hover {
                p, span {
                    text-decoration: underline;
                }
                div {
                    background-color: #000;
                    color: #fff;
                    border-color: #000;
                }
            }
        }
    }

    @media screen and (max-width: 768px) {
        margin-top: 35px;
        gap: 11px;
    }
}

#topic_250725 [class*="section_"] .style_02 {
    background-color: #fff;
    max-width: 865px;
    border-radius: 24px;
    padding: 40px;
    margin-inline: auto;
    margin-top: 80px;
    position: relative;

    .sc_header {
        padding-bottom: 40px;
        h3 {
            font-size: 24px;
            font-weight: 500;
            letter-spacing: .08em;
        }

        button {
            position: absolute;
            top: 20px;
            right: 15px;
            height: 18px;
            width: 18px;
            padding: 0;
            background-color: transparent;
            border: none;

            &::before,
            &::after {
                content: "";
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                background-color: #5784E7;
                transition: all 0.2s ease-out;
            }
            
            &::before {
                width: 100%;
                height: 1px;
            }
            &::after {
                width: 1px;
                height: 100%;
            }

            &.is-show {
                &::after {
                    opacity: 0;
                }
            }
        }
    }

    .sc_body {
        display: flex;
        gap: 56px;

        @media screen and (min-width: 769px) {
            display: flex !important;
        }

        ._left {
            flex: 1;
        }
        ._right {
            width: 39.77%;

            ul {
                margin-top: 40px;
                li {
                    padding-block: 14px;
                    display: flex;
                    align-items: flex-start;
                    gap: 10px;
                    
                    &:not(:last-child) {
                        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='345' height='2' viewBox='0 0 345 2' fill='none'%3E%3Cpath d='M0.5 0.666504H344.5' stroke='%23383838' stroke-dasharray='1 3'/%3E%3C/svg%3E");
                        background-repeat: repeat-x;
                        background-size: auto 2px;
                        background-position: bottom;
                    }

                    img {
                        width: auto;
                        margin-top: 2px;
                    }
                    p {
                        font-size: 14px;
                        line-height: 1.5;
                        letter-spacing: .08em;
                        text-align: left;

                        span {
                            font-size: 12px;
                            display: inline-block;
                        }
                    }
                }
            }
        }
    }

    @media screen and (max-width: 768px) {
        border-radius: 12px;
        padding: 12.5px;
        margin-top: 35px;
        max-width: 410px;

        .sc_header {
            padding-block: 5px;
            h3 {
                font-size: 16px;
                translate: 0 -1px;
            }
        }

        .sc_body {
            flex-direction: column;
            gap: 12px;
            padding-bottom: 24px;
            padding-top: 13px;

            ._right {
                width: 100%;

                ul {
                    margin-top: 10px;
                    li {
                        img {
                            width: 16px;
                        }
                    }
                }
            }
        }
    }
}

#topic_250725 [class*="section_"] .style_01 .item_credit {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 56px;
    margin-top: 32px;

    li  {
        a {
            img {
                background-color: #5784E7;
            }
        }
    }

    @media screen and (max-width: 768px) {
        margin-top: 35px;
    }
}

/* Special */
#topic_250725 .section_01 .style_01 .sc_title {
    img {
        width: auto;
    }
}
#topic_250725 .section_01 .style_01 .sc_text {
    rotate: -8.93deg;
    bottom: 36px;
    left: -37px;
    @media screen and (max-width: 768px) {
        bottom: 22px;
        left: 4px;
    }
}

#topic_250725 .section_02 .style_01 .flex {
    max-width: 1264px;
    margin-inline: auto;
    .item_txt {
        margin-top: 32px;
    }
    .sc_text {
        top: 41px;
        left: 29px;
    }
    > :nth-child(2) {
        margin-top: 40px;
    }
}

#topic_250725 .section_03 .style_01 .flex {
    .item_txt {
        margin-top: 32px;
    }
    .sc_text {
        top: 51px;
        left: 37px;
    }
}

#topic_250725 .section_04 .style_01 .flex {
    max-width: 1264px;
    margin-inline: auto;
    .item_txt {
        margin-top: 32px;
    }
    .sc_text {
        top: 50px;
        left: 40px;
    }
    > :nth-child(2) {
        margin-top: 115px;
    }
}

#topic_250725 .section_05 .style_01 .flex {
    max-width: 1264px;
    margin-inline: auto;
    .item_txt {
        margin-top: 32px;
    }
    .sc_text {
        top: 41px;
        left: 29px;
    }
    > :nth-child(1) {
        flex: 1;
    }
    > :nth-child(2) {
        margin-top: 340px;
        width: 39.557%;
    }
}

#topic_250725 .section_06 .style_01 .flex {
    .item_txt {
        margin-top: 32px;
    }
    .sc_text {
        bottom: 51px;
        right: 40px;
    }
}

#topic_250725 .section_07 .style_01 .flex {
    max-width: 1118px;
    margin-inline: auto;
    gap: 88px;
    .item_txt {
        margin-top: 32px;
    }
    .sc_text {
        top: 50px;
        left: 40px;
    }
    > :nth-child(2) {
        margin-top: 122px;
    }
}

#topic_250725 .section_08 .style_01 .sc_title {
    img {
        width: auto;
    }
}
#topic_250725 .section_08 .style_01 .sc_text {
    rotate: -8.93deg;
    bottom: 60px;
    left: -79px;
    @media screen and (max-width: 768px) {
        bottom: 22px;
        left: 4px;
    }
}

#topic_250725 .section_09 .style_01 .flex {
    .item_txt {
        margin-top: 32px;
    }
    .sc_text {
        top: 41px;
        left: 29px;
    }
}

#topic_250725 .section_10 .style_01 .flex {
    max-width: 1164px;
    margin-inline: auto;
    gap: 88px;
    .item_txt {
        margin-top: 32px;
    }
    > :nth-child(2) {
        margin-top: 26px;
    }
}

#topic_250725 .section_11 .style_01 .flex {
    .item_txt {
        margin-top: 32px;
    }
    .sc_text {
        top: 51px;
        left: 42px;
    }
}

#topic_250725 .section_12 .style_01 .flex {
    max-width: 1088px;
    margin-inline: auto;
    gap: 88px;
    .item_txt {
        margin-top: 32px;
    }
    .sc_text {
        top: 41px;
        left: 29px;
    }
    > :nth-child(2) {
        margin-top: 102px;
    }
}

#topic_250725 .section_slider {
    padding-top: 48px !important;
}

#topic_250725 .section_slider h3 {
    margin-bottom: 56px;
    text-align: center;
}
#topic_250725 .section_slider h3 img {
    width: auto;
}
#topic_250725 .section_slider .slider_outer {
    max-width: 1114px;
    margin: 0 auto;
    --swiper-navigation-size: 22px;
    --swiper-navigation-color: #fff;
    --swiper-navigation-sides-offset: -36px;
    --swiper-navigation-top-offset: 243px;
}
#topic_250725 .section_slider .slider_outer .swiper-button-next,
#topic_250725 .section_slider .slider_outer .swiper-button-prev {
    width: 40px;
    height: 40px;
    color: #5784E7;
    transition: all 0.2s;
}
#topic_250725 .section_slider .slider_outer .swiper-button-next:hover,
#topic_250725 .section_slider .slider_outer .swiper-button-prev:hover {
    opacity: 0.8;
}
#topic_250725 .section_slider .slider_outer .swiper-button-next::after {
    margin-left: 4px;
}
#topic_250725 .section_slider .slider_outer .swiper-button-prev::after {
    margin-right: 4px;
}
#topic_250725 .section_slider .slider_wrap {
    box-sizing: border-box;
    overflow: hidden;
}
#topic_250725 .section_slider .swiper-wrapper {
    height: max-content;
}
#topic_250725 .section_slider .style_01 .flex {
    gap: 0;
    align-items: center;
    flex-direction: column;
    width: 100%;
}
#topic_250725 .section_slider .style_01 .flex .item_txt {
    max-width: 100%;
}
#topic_250725 .section_slider .style_01 .item_txt {
    margin-top: 0;
}
#topic_250725 .section_slider .style_01 .item_txt p {
    font-size: 13px;
    line-height: 2;
    letter-spacing: 0.08em;
    font-weight: 400;
}
#topic_250725 .section_slider .style_01 .item_txt ._profile > img {
    max-width: 80px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 50%;
}
#topic_250725 .section_slider .style_01 .item_txt ._profile {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
}
#topic_250725 .section_slider .style_01 .item_txt ._profile > div p {
    line-height: 1;
}
#topic_250725 .section_slider .style_01 .item_txt ._profile > div a {
    margin-top: 10px;
    display: inline-block;
    transition: all 0.2s;
    text-decoration: none !important;
}
#topic_250725 .section_slider .style_01 .item_txt ._profile > div a:hover {
    opacity: 0.8;
}
#topic_250725 .section_slider .style_01 .item_txt ._profile > div img {
    max-width: 27px;
}
#topic_250725 [class*="section_"] .style_01 .item_txt ._info {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 16px;
    margin-top: 32px;

    @media screen and (max-width: 768px) {
        margin-top: 24px;
    }
}
#topic_250725 [class*="section_"] .style_01 .item_txt ._info {
    font-family: var(--font-montserrat);
    color: #000;
    font-size: 11px;
    letter-spacing: 0.08em;
    line-height: 1;
    text-decoration: none;

    &:hover {
        opacity: .8;
    }
}
/* #topic_250725 .section_slider .style_01 .item_txt ._info a:not(:last-child)::after {
    content: ",";
} */

#topic_250725 .section_banner {
    background-color: #fff;
    padding: 120px 25px 0 !important;
}
#topic_250725 .section_banner .item_banner p {
    font-size: 18px;
    line-height: 30px;
    letter-spacing: 0.05em;
    font-weight: 400;
    text-align: center;
}
#topic_250725 .section_banner .item_banner .banners {
    max-width: 965px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

#topic_250725 .section_banner .item_banner .banners a:hover {
    opacity: 0.75;
}

@media screen and (min-width: 769px) {
    #topic_250725 [class*="section_"] {
        padding: 0 25px;
    }

    /* Special */
}

@media screen and (min-width: 981px) {
    /* Special */
}

@media screen and (min-width: 1200px) {
    /* Special */
}

@media screen and (max-width: 980px) {
    #topic_250725 .img_xl {
        max-width: 480px;
    }

    #topic_250725 .img_lg {
        max-width: 480px;
    }

    #topic_250725 .img_lgs {
        max-width: 460px;
    }

    #topic_250725 .img_md {
        max-width: 400px;
    }

    #topic_250725 .img_sm {
        max-width: 320px;
    }

    #topic_250725 .img_xs {
        max-width: 275px;
    }

    #topic_250725 [class*="section_"] .style_01 .flex {
        flex-direction: column;
        align-items: center;
        gap: 0;
        max-width: 460px;
        margin-inline: auto;
    }
    #topic_250725 [class*="section_"] .style_01 .flex .item_txt {
        max-width: 460px;
        margin-top: 24px;
    }

    /* Special */
    #topic_250725 .section_slider .slider_outer {
        max-width: 380px;
    }
    #topic_250725 .section_slider .slider_wrap {
        padding: 0;
        overflow: inherit;
        border: none;
    }
    #topic_250725 .section_slider .style_01 .item_txt ._profile {
        display: none;
    }
    #topic_250725 .section_slider .style_01 .flex .head_profile {
        display: flex;
    }

    /* Special */
}

@media screen and (max-width: 768px) {
    #topic_250725 .wrapper {
        padding-bottom: 80px;
    }

    #topic_250725 [id*="group"] {
        padding-block: 64px 91px;
    }

    #topic_250725 .img_xl {
        max-width: 460px;
        margin: 0 auto;
    }

    #topic_250725 .img_lg {
        max-width: 460px;
        margin: 0 auto;
    }

    #topic_250725 .img_lgs {
        max-width: 460px;
        margin: 0 auto;
    }

    #topic_250725 .img_md {
        max-width: 460px;
        margin: 0 auto;
    }

    #topic_250725 .img_sm {
        max-width: 460px;
        margin: 0 auto;
    }

    #topic_250725 .img_xs {
        max-width: 460px;
        margin: 0 auto;
    }

    #topic_250725 .item_txt {
        padding: 0 25px;
        max-width: 460px !important;
        margin: 0 auto;
        width: 100%;
        box-sizing: border-box;
    }

    #topic_250725 [class*="section_"] .sc_hor {
        max-width: 62px;
    }

    #topic_250725 [class*="section_"] .sc_num {
        max-width: 95px;
    }

    #topic_250725 [class*="section_"]:not(:last-child) {
        margin-bottom: var(--sp-mb, 72px);
    }

    #topic_250725 [class*="section_"] .sp_right {
        padding-left: 25px;
    }

    #topic_250725 [class*="section_"] .sp_left {
        padding-right: 25px;
    }

    #topic_250725 [class*="section_"] .sp_lgs_right {
        padding-left: 43px;
    }

    #topic_250725 [class*="section_"] .sp_lgs_left {
        padding-right: 43px;
    }

    #topic_250725 [class*="section_"] .sp_lgs_right {
        padding-left: 50px;
    }

    #topic_250725 [class*="section_"] .sp_lg_left {
        padding-right: 50px;
    }

    #topic_250725 [class*="section_"] .sp_xl_right {
        padding-left: 85px;
    }

    #topic_250725 [class*="section_"] .sp_xl_left {
        padding-right: 85px;
    }

    #topic_250725 [class*="section_"] .img_sm.sp_right {
        padding-left: 55px;
    }

    #topic_250725 [class*="section_"] .img_sm.sp_left {
        padding-right: 55px;
    }

    #topic_250725 [class*="section_"] h2.title {
        margin-bottom: 40px;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    #topic_250725 [class*="section_"] h2.title > div {
        text-align: center;
    }

    #topic_250725 [class*="section_"] h2.title span {
        font-size: 14px;
        letter-spacing: 0.84px;
    }

    #topic_250725 [class*="section_"] h2.title .separator {
        height: 8px;
    }

    #topic_250725 [class*="section_"] h2.title p {
        font-size: 20px;
        line-height: 1;
        letter-spacing: 1.2px;
        padding: 3px 2px 6px 4px;
    }

    #topic_250725 [class*="section_"] h2.title p.sp {
        display: inline-block !important;
    }

    #topic_250725 [class*="section_"] h2.title p.pc {
        display: none;
    }

    #topic_250725 .items .item_info {
        max-width: 100%;
        margin-top: 40px;
    }

    #topic_250725 [class*="section_"] .item_txt {
        margin-top: 40px;
    }

    #topic_250725 [class*="section_"] .style_01 .item_txt {
        margin-top: 24px;
    }

    #topic_250725 [class*="section_"] .style_01 .item_txt p {
        text-align: justify;
        font-size: 13px;
        font-weight: 350;
    }

    #topic_250725 [class*="section_"] .style_01 .flex .item_img {
        box-sizing: border-box;
    }

    #topic_250725 [class*="section_"] .style_01 .flex > div:nth-child(2) {
        margin-top: 40px;
    }

    #topic_250725 [class*="section_"] .style_01 .sc_logo {
        width: 140px;
    }

    #topic_250725 [class*="section_"] .style_01 .sc_sample {
        position: relative;
        flex-direction: row;
        inset: 0;
        margin-top: -13px;
        justify-content: center;
    }
    #topic_250725 [class*="section_"] .style_01 .sc_sample > img {
        max-width: 136px;
    }
    #topic_250725 [class*="section_"] .style_01 .sc_sample .txt {
        align-items: flex-start;
    }
    #topic_250725 [class*="section_"] .style_01 .sc_sample .txt .top {
        gap: 10px;
    }
    #topic_250725 [class*="section_"] .style_01 .sc_sample .txt .top img {
        width: 23px;
    }
    #topic_250725 [class*="section_"] .style_01 .sc_sample .txt .top span {
        font-size: 13px;
    }
    #topic_250725 [class*="section_"] .style_01 .sc_sample .txt .bottom {
        font-size: 16px;
        padding: 7px 7px 9px 11px;
    }

    #topic_250725 [class*="section_"] .style_01 .sc_title {
        margin-bottom: 35px;
        
    }
    #topic_250725 [class*="section_"] .style_01 .sc_txt p {
        font-size: 16px;
    }
    #topic_250725 [class*="section_"] .style_01 .sc_txt {
        margin-bottom: 24px;
    }
    #topic_250725 [class*="section_"] .style_01 .sc_txt p:not(:first-child) {
        margin-top: 10px;
    }

    /* Special */
    #topic_250725 .section_02 .style_01 .flex {
        .sc_text {
            top: 26px;
            left: 12px;
        }
        > :nth-child(2) {
            margin-top: 42px;
        }
    }

    #topic_250725 .section_03 .style_01 .flex {
        .sc_text {
            top: 26px;
            left: 12px;
        }
    }

    #topic_250725 .section_04 .style_01 .flex {
        .sc_text {
            top: 26px;
            left: 12px;
        }
        > :nth-child(2) {
            margin-top: 42px;
            .item_img,
            .item_txt {
                padding-inline: 44px 16px;
            }
        }
    }

    #topic_250725 .section_05 .style_01 .flex {
        .sc_text {
            top: 26px;
            left: 12px;
        }
        > :nth-child(2) {
            margin-top: 42px;
            width: 100%;
        }
    }

    #topic_250725 .section_06 .style_01 .flex {
        .item_txt {
            margin-top: 32px;
        }
        .sc_text {
            bottom: 34px;
            right: 26px;
        }
    }

    #topic_250725 .section_07 .style_01 .flex {
        .sc_text {
            top: 26px;
            left: 25px;
        }
        > :nth-child(2) {
            margin-top: 72px;
            .item_img,
            .item_txt {
                padding-inline: 12.5px;
            }
        }
    }

    #topic_250725 .section_09 .style_01 .flex {
        .sc_text {
            top: 26px;
            left: 12px;
        }
    }

    #topic_250725 .section_10 .style_01 .flex {
        > :nth-child(2) {
            margin-top: 40px;
        }
    }

    #topic_250725 .section_11 .style_01 .flex {
        .item_txt {
            margin-top: 32px;
        }
        .sc_text {
            top: 36px;
            left: 22px;
        }
    }

    #topic_250725 .section_12 .style_01 .flex {
        .sc_text {
            top: 27px;
            left: 63px;
        }
        > :nth-child(1) {
            .item_img {
                padding-inline: 44px 16px;
            }
        }
        > :nth-child(2) {
            margin-top: 72px;
        }
    }

    #topic_250725 .section_slider {
        padding-top: 0 !important;
    }

    #topic_250725 .section_slider h3 {
        margin-bottom: 32px;
        padding-inline: 25px;
    }
    /* #topic_250725 .section_slider h3 img {
        max-width: 100%;
    } */
    #topic_250725 .section_slider .slider_outer {
        --swiper-navigation-top-offset: 44%;
        --swiper-navigation-size: 24px;
        --swiper-navigation-sides-offset: -12px;
    }
    #topic_250725 .section_slider .slider_outer .swiper-button-next,
    #topic_250725 .section_slider .slider_outer .swiper-button-prev {
        height: 25px;
        width: 25px;
    }
    #topic_250725 .section_slider .slider_outer .swiper-button-next::after {
        margin-left: 2px;
    }
    #topic_250725 .section_slider .slider_outer .swiper-button-prev::after {
        margin-right: 2px;
    }
    #topic_250725 .section_slider .style_01 .flex > div:nth-child(2) {
        margin-top: 32px;
        padding: 0;
    }
    #topic_250725 .section_slider .style_01 .item_txt {
        margin-top: 24px;
        padding: 0;
    }
    #topic_250725 .section_slider .style_01 .item_txt p {
        font-size: 13px;
        text-align: left;
    }

    #topic_250725 .section_banner {
        padding: 90px 25px 0 !important;
    }
    #topic_250725 .section_banner .item_banner p {
        font-size: 16px;
    }
    #topic_250725 .section_banner .item_banner .banners {
        margin-top: 30px;
        gap: 30px;
    }
}

@media screen and (max-width: 460px) {
    /* Special */

    #topic_250725 .section_slider .slider_outer {
        padding: 0 49px;
        --swiper-navigation-top-offset: calc(75vw - 74px);
        --swiper-navigation-sides-offset: 35px;
    }
}

/* //////////////////
ここまで
////////////////// */

.pc {
    display: block;
}

.sp {
    display: none;
}

@media only screen and (max-width: 768px) {
    .pc {
        display: none;
    }

    .sp {
        display: block;
    }

    .pc-only {
        display: none !important;
    }
}

@media only screen and (min-width: 769px) {
    .sp-only {
        display: none !important;
    }
}

@media only screen and (max-width: 980px) {
    .mdup-only {
        display: none !important;
    }
}
@media only screen and (min-width: 981px) {
    .md-only {
        display: none !important;
    }
}

/* aos custom */
[data-aos="in-up-custom"] {
    opacity: 1;
    transition-property: transform, opacity;
    transform: translateY(100%);
}

[data-aos="in-up-custom"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

[data-aos="in-up-2-custom"] {
    opacity: 1;
    transition-property: transform, opacity;
    transform: translateY(140px);
}

[data-aos="in-up-2-custom"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

[data-aos="wipe-custom"] {
    transition-property: height !important;
    height: 100% !important;
}

[data-aos="wipe-custom"].aos-animate {
    height: 0 !important;
}

body[data-aos-easing="ease-custom"] [data-aos],
[data-aos][data-aos][data-aos-easing="ease-custom"] {
    transition-timing-function: cubic-bezier(0.35, 0.24, 0.08, 0.97);
}

body[data-aos-easing="ease-wipe-custom"] [data-aos],
[data-aos][data-aos][data-aos-easing="ease-wipe-custom"] {
    transition-timing-function: cubic-bezier(0.87, 0, 0.13, 1);
}

body[data-aos-easing="fadeinup"] [data-aos],
[data-aos][data-aos][data-aos-easing="fadeinup"] {
    transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
