@charset "utf-8";

/* 色の変数　　color: var(--blue); */
:root {
    --white: #fff;
    --white02: rgba(255, 255, 255, 0.5);
    --black: #0a0d0d;
    --black02: rgba(0, 0, 0, 0.5);
    --red01: #b1063a;
    --red02: #e51712;
    --red03: #e61711;
    --red04: #c31723;
    --brown01: #c59e61;
    --gray: #f4f4f4;

    --gra01: linear-gradient(90deg, var(--red01) 5%, var(--red02) 25%, var(--red03) 75%, var(--red01) 95%);

    --shadow01: 5px 5px 0 rgba(0, 0, 0, 0.2);
    --shadow02: 10px 10px 0 rgba(0, 0, 0, 0.2);

    /* ぼかし */
    --blur: blur(10px);

    /* 書式 */
    --zenKaku: "Zen Kaku Gothic Antique", sans-serif;

    /* 文字サイズ */
    --font17: clamp(13px, 0.37vw + 11.8px, 17px);
    --font19: clamp(14.53px, 0.414vw + 13.2px, 19px);
    --font21: clamp(16.06px, 0.457vw + 14.6px, 21px);
    --font23: clamp(17.59px, 0.501vw + 15.99px, 23px);
    --font24: clamp(18px, 0.501vw + 16.99px, 24px);
    --font26: clamp(18px, 0.741vw + 15.63px, 26px);
    --font30: clamp(19px, 1.019vw + 15.74px, 30px);
    --font36: clamp(20px, 1.481vw + 15.26px, 36px);
    --font60: clamp(33.33px, 2.468vw + 25.43px, 60px);

    /* ウェイト */
    --weight500: 500;
    --weight700: 700;

    /* 行間 */
    --lineHight175: 1.75;
    --lineHight20: 2.0;

    /* 文字間 */
    --fontSpace020: 0.02em;
    --fontSpace050: 0.05em;
    --fontSpace100: 0.1em;
    --fontSpace200: 0.2em;

    /* トランジションの変数　 */
    --transitionBase01: all 0.3s ease-in-out;
    --transitionBase02: all 0.5s ease-in-out;

    /* 角丸の変数　 */
    --borderRadius01: 500px;
    --borderRadius10: 10px;
    --borderRadius20: 20px;
    --borderRadius30: 30px;
    --borderRadiusCircle: 50%;

    --opacity07: .7;
}


@media screen and (max-width: 768px) {
    :root {
        --opacity07: 1;
    }


}

@media screen and (max-width: 480px) {
    :root {
        --borderRadius20: 10px;
        --borderRadius30: 15px;
    }
}



/*******************************************
common
*******************************************/

body {
    color: var(--black);
    font-family: var(--zenKaku);
    font-weight: var(--weight500);
    font-size: var(--font17);
    line-height: var(--lineHight120);

    a,
    .hamburger,
    .btn,
    .pagiBtn,
    .aco-click {
        transition: var(--transitionBase01);

        &:hover {
            opacity: var(--opacity07);
        }
    }
}

p {
    text-align: justify;
    font-size: var(--font17);
    line-height: var(--lineHight175);
}

.section {
    position: relative;
    background: var(--gra01);
}

.section__inner {
    position: relative;
    width: min(100%, 980px);
    margin: 0 auto;

    padding: clamp(50px, 10%, 135px) 0;
}

.section__ttlOuter {
    position: relative;
    width: fit-content;
    margin: 0 auto max(6.12%, 30px);
    font-size: var(--font36);
}

.section__ttl {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;

    .en {
        font-size: 1em;
        letter-spacing: 0;
        height: 1.111em;
        padding: 0 10px 3px;
        background-color: var(--red01);
        margin-bottom: 0.3em;
    }

    .ja {
        font-size: 2.22em;
        font-weight: 900;
        color: var(--white);
        letter-spacing: var(--fontSpace020);
    }
}

.fukidashi {
    position: absolute;
    bottom: 0;
    right: 0;
    transform: translate(102%, -8%);
    aspect-ratio: 240/170;
    width: 6.66em;
    z-index: 1;
}

.fukidashi__inner {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;

    &::before {
        position: absolute;
        content: "";
        background-image: url(../img/common/fukidashi01.svg);
        background-repeat: no-repeat;
        background-size: contain;
        width: 100%;
        height: 100%;
    }

    .txt {
        position: relative;
        font-size: 0.583em;
        color: var(--white);
        line-height: 1.523;
        text-align: center;
        transform: translateY(5%);
    }
}

.fukidashi02 {
    .fukidashi__inner {
        &::before {
            background-image: url(../img/common/fukidashi02.svg);
        }

        .txt {
            color: var(--red01);
        }

    }
}

.thin {
    letter-spacing: -0.5em;
}

.under-line01 {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.4em;
    text-decoration-color: var(--black01);
}

.show {
    opacity: 1 !important;
    visibility: visible !important;
}

.label {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: var(--red04);
    color: var(--white);
    letter-spacing: 0.25em;
    line-height: 1;
    height: 1.6em;
}

.txtBg {
    position: relative;

    &::before {
        position: absolute;
        content: "KAGOSHIMA\AOHSHO";
        white-space: pre;
        bottom: 2.5%;
        left: 0.5%;
        font-size: max(7.57142857vw, 35px);
        color: var(--white);
        line-height: 0.83;
        letter-spacing: 0.04em;

    }
}

.txtBg-right {
    &::before {
        bottom: 1%;
        left: auto;
        right: 0.5%;
        text-align: right;
    }
}

.section-parts {
    position: absolute;
    right: 0;
    bottom: 0;
    width: clamp(100px, 27vw, 376px);
    transform: translate(-6%, -7%);
}

.section-container {
    position: relative;
}

.human-parts {
    position: absolute;
    top: 0;
    left: 0;
    width: clamp(100px, 23vw, 321px);
    transform: translate(-3%, -100%);
}

.shadowBox {
    background-color: var(--white);
    overflow: hidden;
    border-radius: var(--borderRadius20);
    box-shadow: var(--shadow02);
}

.push {
    display: inline-block;
}



@media screen and (max-width:1024px) {

    .section__inner {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
}

@media screen and (max-width:768px) {

    .fukidashi {
        bottom: auto;
        top: 0;
        transform: translate(50%, -60%);
        width: min(5.6em, 120px);
    }

    .fukidashi__inner {

        .txt {
            font-size: 0.5em;
        }
    }
}

@media screen and (max-width:480px) {
    .section__ttlOuter {
        font-size: 5vw;
    }

    .section__ttl {
        .ja {
            font-size: 1.8em;
        }
    }
}




/*******************************************
btn
*******************************************/
.btn-outer {
    width: min(100%, 300px);
    height: 90px;
    margin: 0 auto;
}

.btn {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: var(--red01);
    background-color: var(--white);
    font-size: var(--font23);
    width: 100%;
    height: 100%;
    border-radius: var(--borderRadius01);
    transition: var(--transitionBase01);
    cursor: pointer;
    box-shadow: var(--shadow01);

    &::before {
        content: "";
        position: absolute;
        mask-image: url(../img/common/arrow.svg);
        mask-repeat: no-repeat;
        mask-size: contain;
        top: 50%;
        right: 5%;
        width: 1.347em;
        aspect-ratio: 31/7;
        transform: translateY(-50%);
        background-color: var(--red01);
    }

    &:hover {
        opacity: 1 !important;
        transform: translate(5px, 5px);
        box-shadow: 0px 0px 0 rgba(0, 0, 0, 0.2);
    }
}





@media screen and (max-width: 768px) {
    .btn-outer {
        height: 70px;
    }

    .btn {
        &:hover {
            transform: translate(0px, 0px);
            box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.2);
        }
    }
}

@media screen and (max-width: 480px) {
    .btn-outer {
        height: 60px;
    }
}



/*******************************************
追従ボタン
*******************************************/
.main__inner {
    position: relative;
}

.topReturn {
    position: fixed;
    bottom: 2%;
    right: 2%;
    width: 60px;
    aspect-ratio: 1;
    opacity: 0;
    visibility: hidden;
    z-index: 90;
    transition: var(--transitionBase01);



    a {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 100%;
        border-radius: var(--borderRadiusCircle);
        background-color: var(--black);
        border: 1px solid var(--black);

        &::before,
        &:after {
            position: absolute;
            content: "";
            top: 50%;
            left: 50%;
            width: 30%;
            height: 2px;
            background-color: var(--white);
            transition: var(--transitionBase01);
        }

        &::before {
            transform: translate(-83%, -50%) rotate(-45deg);
        }

        &::after {
            transform: translate(-17%, -50%) rotate(45deg);
        }
    }

}


@media screen and (max-width: 768px) {
    .topReturn {
        width: 40px;
        height: 40px;
        bottom: calc(60px + 2%);
    }
}




/*******************************************
header
*******************************************/
.header {
    position: fixed;
    top: 20px;
    left: 0;
    width: 100%;
    display: flex;
    align-items: flex-start;
    padding: 0 20px;
    height: 95px;
    z-index: 95;
    transition: var(--transitionBase01);
}

.bg-white {
    background-color: transparent;
}

.header-left {
    flex: 1;
}

.header__logo {
    margin-right: 10px;
    font-size: 15px;
    width: 14em;

    a {
        display: block;
    }

    .txt {
        font-size: 1em;
        margin-top: 10px;
    }
}


.hamburger {
    position: relative;
    display: block;
    width: 70px;
    aspect-ratio: 1;
    cursor: pointer;
    z-index: 100;
    background-color: var(--black);
    border-radius: var(--borderRadiusCircle);

    .line {
        position: absolute;
        width: 40%;
        height: 2px;
        left: 50%;
        transform: translate(-50%, -50%);
        transition: var(--transitionBase01);
        background-color: var(--white);

        &:nth-of-type(1) {
            top: 35%;
        }

        &:nth-of-type(2) {
            top: 50%;
        }

        &:nth-of-type(3) {
            top: 65%;
        }
    }
}

.headerNav {
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 95;
    transform: translateX(100%);
    background-color: var(--black02);
    backdrop-filter: blur(10px);
    transition: var(--transitionBase01);
    opacity: 0;
    visibility: hidden;
    transform: none;
}

.headerNav__list {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: min(50%, 500px);
    height: 100%;
    padding: clamp(80px, 10svh, 100px) clamp(30px, 5%, 50px) 2vh;
    margin-left: auto;
    background-color: var(--white);
    background: var(--gra01);
    transform: translateX(101%);
    transition: var(--transitionBase02);
}

.headerNav__item {
    margin: 0 0 5svh;
    color: var(--white);
    font-size: var(--font19);

    &:nth-last-child(2) {
        margin: 0;
    }

    &:last-child {
        margin: 8svh 0 0;
    }
}

.btn-outer-header {
    width: min(100%, 300px);
}




.active {

    .line {
        background-color: var(--white);

        &:nth-of-type(1) {
            top: 50%;
            transform: translate(-50%, -50%) rotate(45deg);
        }

        &:nth-of-type(2) {
            opacity: 0;
        }

        &:nth-of-type(3) {
            top: 50%;
            transform: translate(-50%, -50%) rotate(-45deg);
        }
    }

    .headerNav {
        opacity: 1;
        visibility: visible;
    }

    .headerNav__list {
        transform: translateX(0);
    }
}





@media screen and (max-width:1024px) {
    .header {
        position: absolute;
        top: 1%;
        padding: 0 10px;
        height: auto;
    }

    .header__logo {
        font-size: 13px;
    }



    .bg-white {
        backdrop-filter: initial;
    }

    .hamburger {
        position: fixed;
        top: 1%;
        right: 2%;
    }
}


@media screen and (max-width:768px) {

    .hamburger {
        width: 50px;
    }


}

@media screen and (max-width:480px) {

    .header {
        padding: 0 0 0 5px;
    }

    .header__logo {
        font-size: 10px;

        .txt {
            margin-top: 3px;
        }
    }

    .hamburger {
        width: 40px;
    }

    .headerNav__list {
        width: 70%;
    }
}




/*******************************************
entryBox
*******************************************/
.entryBtn-fixed {
    position: fixed;
    right: 2%;
    top: 50%;
    transform: translateY(-50%);
    width: min(10.715vw, 150px);
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: var(--transitionBase01);
}

.entryBtn__link {
    width: 100%;
    transition: var(--transitionBase01);
}

@media screen and (max-width:768px) {
    .entryBtn-fixed {
        right: 50%;
        top: auto;
        bottom: 2%;
        transform: translateX(50%);
        flex-direction: row;
        width: clamp(250px, 50%, 350px);
        gap: 20px;
        /* opacity: 0;
        visibility: hidden; */
    }
}

@media screen and (max-width:480px) {
    .entryBtn-fixed {
        gap: 10px;
    }
}


/*******************************************
mv
*******************************************/
.mv {
    position: relative;
    aspect-ratio: 1400/750;
}

.mv__bg {
    width: 100%;
    height: 100%;

    video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: top;
    }
}

.mv__ttl {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, -44%);
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 1.643vw;
    width: 42.6em;

    .txt {
        width: 91.34%;
        font-size: 1em;
        letter-spacing: var(--fontSpace200);
        height: 1.3em;
    }
}

@media screen and (max-width:768px) {
    .mv {
        aspect-ratio: 750/800;
    }

    .mv__ttl {
        font-size: 2.35vw;

        .txt {
            font-size: min(1.5em, 20px);
        }
    }
}


/*******************************************
map
*******************************************/
.map {
    .section__inner {
        padding: clamp(60px, 7.5%, 105px) 0 clamp(120px, 27%, 360px);
    }

    .fukidashi {
        transform: translate(108%, -20%);
    }
}

.map-parts01 {
    bottom: auto;
    left: 0;
    right: auto;
    transform: translate(-57%, -45%);
}

.map-parts02 {
    transform: translate(46%, -69%);
}

.mapFlex {
    display: flex;
    justify-content: flex-start;

    .img {
        width: min(100%, 450px);
        padding-top: 4.5%;
    }
}

.mapFlex__right {
    flex: 1;
    margin: 0 auto 0 3.57%;
}

.map__detail {
    margin: 0 auto clamp(20px, 10%, 50px);

    &:last-child {
        margin-bottom: 0;
    }

    &:first-child {
        .btn-outer {
            margin: 0;
        }
    }

    dt {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        text-align: center;
        border: 1px solid var(--white);
        font-size: var(--font23);
        height: 2.173em;
        color: var(--white);
        font-weight: var(--weight500);
        margin-bottom: 0.65em;
    }
}

.mapBtn__list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px 30px;

    .btn-outer {
        width: calc((100% - 30px)/2);
    }
}

@media screen and (max-width:1024px) {
    .map-parts01 {
        transform: translate(0, -45%);
    }

    .map-parts02 {
        transform: translate(0, -75%);
    }

    .mapFlex {
        flex-direction: column;
        align-items: center;

        .img {
            padding: 0;
            margin-bottom: 30px;
            width: min(100%, 300px);
        }
    }

    .mapFlex__right {
        margin: 0 auto;
    }
}

@media screen and (max-width:768px) {
    .mapFlex__right {
        width: min(100%, 400px);
    }

    .map-parts02 {
        right: auto;
        left: 0;
        bottom: 1%;
        transform: none;
    }
}

@media screen and (max-width:480px) {
    .map {
        .fukidashi {
            transform: translate(85%, -70%);
        }
    }



    .mapFlex {
        .img {
            width: min(80%, 250px);
        }
    }

    .mapBtn__list {
        gap: 15px;

        .btn-outer {
            width: calc((100% - 15px)/2);
        }
    }
}

@media screen and (max-width:374px) {
    .mapBtn__list {
        width: min(100%, 250px);
        margin: 0 auto;

        .btn-outer {
            width: 100%;
        }
    }
}


/*******************************************
ページネーション
*******************************************/
.paginationFlex {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: max(5%, 40px);
    gap: 10px;
}

.pagiDot {
    width: fit-content !important;


    .swiper-pagination-bullet {
        background-color: var(--white);
        opacity: 1;
        width: 14px;
        height: auto;
        aspect-ratio: 1;
        margin: 0 7px !important;
        transition: var(--transitionBase01);
    }

    .swiper-pagination-bullet-active {
        background-color: var(--red01);

    }
}

.pagiBtn {
    position: relative;
    width: 40px;
    aspect-ratio: 1;
    background-color: var(--red01);
    border-radius: var(--borderRadiusCircle);
    cursor: pointer;

    display: none;

    &::before,
    &::after {
        position: absolute;
        content: "";
        top: 50%;
        left: 50%;
        background-color: var(--white);
        width: 30%;
        height: 2px;
    }

    &::before {
        transform-origin: bottom right;
        transform: translate(-65%, -33%) rotate(45deg);
    }

    &::after {
        transform-origin: top right;
        transform: translate(-65%, -67%) rotate(-45deg);
    }

}

.prevBtn {
    transform: rotate(180deg);
}

/*******************************************
point
*******************************************/
.point {
    background-image: url(../img/point/bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top right;

    .section__ttl {
        .ja {
            color: var(--red01);
        }
    }
}

.pointSwiper {
    overflow: visible;
    width: min(100%, 500px);
    margin: 0 auto;

}

.pointSwiper__list {
    .swiper-slide {
        position: relative;
        height: auto;
        padding: 35px 30px;

        .number {
            position: absolute;
            top: 0;
            left: 0;
            width: min(18%, 88px);
            transform: translate(15%, 25%);
        }
    }
}

.pointFlex {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;

    .icon {
        width: max(27.5%, 50px);
        margin-top: 55px;
    }
}

.point__detail {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: 30px;

    dt {
        color: var(--red01);
        font-size: var(--font26);
        text-align: center;
        margin-bottom: 20px;
        line-height: 1.23;
        height: calc(1.23em * 2);
        ;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    dd {
        width: min(100%, 263px);
        margin: 0 auto;
    }
}


@media screen and (max-width:768px) {


    .pointSwiper {
        width: min(100%, 300px);
    }

    .pointSwiper__list {
        .swiper-slide {
            padding: 15px 15px 20px;
        }
    }

    .pointFlex {
        flex-direction: column;
        align-items: center;

        .icon {
            width: 20%;
            margin-top: 0;
            margin-bottom: 10px;
        }
    }

    .point__detail {
        margin: 0;

        dt {
            margin-bottom: 10px;
        }
    }
}



/*******************************************
staff
*******************************************/
.staff {
    .section__inner {
        padding-bottom: clamp(50px, 16.9%, 70px);
    }
}

.staffSwiper {
    overflow: visible;
}

.staffSwiper__list {
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 35px 50px;

    .swiper-slide {
        width: calc((100% - 50px)/2);
        padding: 30px 15px;
        height: auto;
        min-height: 300px;
    }
}

.staffSwiper__ttl {
    display: block;
    text-align: center;
    font-size: var(--font30);
    letter-spacing: var(--fontSpace100);
    font-weight: var(--weight700);
    margin-bottom: 25px;
}

.staffSwiperFlex {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.staffSwiperFlex__item {
    width: calc((100% - 30px)/2);

    .ttl {
        font-size: var(--font24);
        letter-spacing: initial;
        height: 1.33em;
        padding-bottom: 1px;
        margin-bottom: 25px;
    }

    &:first-child {
        .ttl {
            letter-spacing: -0.1em;
        }
    }
}

.staffSwiper__data {
    .img {
        width: min(100%, 171px);
        margin: 0 auto;
    }

    p {
        font-size: var(--font19);
        line-height: 1.26;
        text-align: center;
        margin-top: 10px;
        white-space: nowrap;
    }
}



.staffBox {
    background-color: var(--white);
    border-radius: var(--borderRadius20);
    overflow: hidden;
    margin-top: max(13.776%, 40px);

    .ttl {
        text-align: center;
        background-color: var(--brown01);
        color: var(--white);
        padding: 0.92em 0;
        font-size: var(--font30);
        letter-spacing: var(--fontSpace100);

        span {
            display: block;
        }
    }
}

.staffBox__inner {
    padding: 45px 50px 55px;
}

.staffBox__txt {
    font-size: var(--font19);
    margin-bottom: max(4.54%, 20px);
}

.staffBoxGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 45px 40px;
}

.staffBoxGrid__item {
    background-color: var(--gray);
    display: flex;
    flex-direction: column;
}

.staffBoxGrid__item03 {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: flex-start;
    gap: 25px;
    padding: 0 0 30px 25px;

    .img {
        padding-top: 35px;
        width: clamp(250px, 45.15%, 386px);
    }
}

.staffBoxGrid__detail {
    flex: 1;

    dt {
        background-color: var(--brown01);
        text-align: center;
        padding: 0.425em 0;
        font-size: var(--font30);
        color: var(--white);
        font-weight: var(--weight500);
    }

    dd {
        padding: 20px 25px 25px;
    }
}

.paginationFlex-staff {
    display: none;
}

.loopSwiper__list {
    transition-timing-function: linear;
}


.loopSwiper01 {
    overflow: visible;
    margin-top: max(7.2%, 40px);
}

@media screen and (max-width:1024px) {
    .staffSwiper {
        width: min(100%, 500px);
    }

    .staffSwiper__list {
        flex-wrap: nowrap;
        justify-content: initial;
        gap: initial;

        .swiper-slide {
            width: initial;
            height: auto;
            min-height: initial;
        }
    }

    .paginationFlex-staff {
        display: flex;
    }
}

@media screen and (max-width:768px) {
    .staffSwiper {
        width: min(100%, 300px);
    }

    .staffSwiperFlex {
        flex-direction: column;
    }

    .staffSwiperFlex__item {
        width: 100%;
        min-height: 171.8px;
    }

    .staffBox {
        width: min(100%, 500px);
        margin-left: auto;
        margin-right: auto;
    }

    .staffBoxGrid {
        display: block;
        width: min(100%, 400px);
        margin: 0 auto;
    }

    .staffBoxGrid__item {
        margin-bottom: 30px;

        &:last-child {
            margin-bottom: 0;
        }
    }

    .staffBoxGrid__item03 {
        flex-direction: column-reverse;
        padding: 0 0 30px;
        gap: 0;

        .img {
            margin: 0 auto;
            padding: 0;
        }
    }

}

@media screen and (max-width:480px) {
    .staffSwiperFlex__item {
        min-height: 138.95px;
    }

    .staffSwiper__data {
        .img {
            width: max(35%, 50px);
        }
    }

    .staffBox__inner {
        padding: 20px 4% 8%;
    }

    .staffBoxGrid {
        width: min(100%, 250px);
    }

    .staffBoxGrid__item03 {
        padding: 0 0 10px;

        .img {
            width: 90%;
        }
    }

    .staffBoxGrid__detail {
        dd {
            padding: 10px 1em 15px;
        }
    }
}



/*******************************************
question
*******************************************/
.question {
    background-image: url(../img/question/bg.png);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: top center;

    .fukidashi {
        right: auto;
        left: 0;
        transform: translate(-110%, -25%);
    }

    .section__ttl {
        .ja {
            color: var(--red01);
        }
    }

    .section__inner {
        padding: clamp(50px, 10%, 115px) 0 clamp(50px, 10%, 125px);
    }
}

.section-container-question {
    .human-parts {
        left: auto;
        right: 0;
    }
}


.aco-container {
    transition: var(--transitionBase02);
    overflow: hidden;
}

.aco-click {
    position: relative;
    cursor: pointer;
    transition: var(--transitionBase02);

    &::before,
    &::after {
        position: absolute;
        content: "";
        top: 50%;
        right: 2%;
        width: 1.42em;
        height: 2px;
        background-color: var(--red01);
        transform: translateY(-50%);
        transition: var(--transitionBase02);
    }

    &::after {
        transform: translateY(-50%) rotate(90deg);
    }
}

.aco-box {
    max-height: 0;
    transition: var(--transitionBase02);
}

.aco-container.open {
    .aco-click {
        &::before {
            transform: translateY(-50%) rotate(180deg);
        }

        &::after {
            transform: translateY(-50%) rotate(360deg);
        }
    }
}

.questionDetail__item {
    margin-bottom: 40px;
    font-size: var(--font21);

    &:last-child {
        margin-bottom: 0;
    }

    dt,
    .dd-inner {
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 20px 15px;

        p {
            flex: 1;

        }
    }

    dt {
        background-color: var(--white);
        padding-right: 1.6em;

        p {
            font-size: 1em;
            padding-top: 0.3em;
            color: var(--red01);
        }
    }

    dd {
        p {
            padding-top: 0.5em;
        }
    }

    .q-icon,
    .a-icon {
        position: relative;
        font-size: 1em;
        width: 2.285em;
        aspect-ratio: 1;
        border-radius: var(--borderRadiusCircle);
        background-color: var(--red01);
        margin-right: 15px;

        &::before {
            position: absolute;
            content: "Q";
            top: 50%;
            left: 50%;
            transform: translate(-50%, -55%);
            font-size: 1em;
            color: var(--white);
            font-weight: var(--weight500);
        }
    }

    .a-icon {
        background-color: var(--black);

        &::before {
            content: "A";
        }
    }




}

@media screen and (max-width:1024px) {
    .question {
        background-size: 180%;
    }
}


@media screen and (max-width:480px) {
    .question {
        background-size: 200%;
    }

    .questionDetail__item {
        font-size: 15px;
        margin-bottom: 25px;

        dt,
        .dd-inner {
            padding: 10px 5px;
        }

        dt {
            padding-right: 1.5em;

            &::before,
            &::after {
                width: 1em;
            }

            p {
                padding-top: 0.1em;
            }
        }

        dd {
            p {
                padding-top: 0.25em;
            }
        }

        .q-icon,
        .a-icon {
            width: 1.8em;
            margin-right: 5px;
        }
    }
}


/*******************************************
entry
*******************************************/
.entry {
    .section__inner {
        padding: clamp(30px, 5%, 65px) 0 clamp(100px, 11%, 150px);
    }

    .section__ttl {
        width: 100vw;
    }
}

.entry__ttl {
    font-size: var(--font60);
    letter-spacing: var(--fontSpace020);
    height: 2.083em;
    background-color: var(--red01);
    font-weight: var(--weight500);
}

.entry__txt {
    font-size: var(--font19);
    text-align: center;
    color: var(--white);
}

.flow-container {
    margin: max(6%, 25px) auto max(12.76%, 40px);
}

.flowBox {
    display: flex;
    justify-content: flex-start;
    gap: 5px;
    margin-bottom: 50px;

    &:last-child {
        margin-bottom: 0;
    }
}

.flowBox__type {
    font-size: var(--font21);
    width: 10.6em;
    aspect-ratio: 223/120;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--red01);
    color: var(--white);
}

.flowList {
    flex: 1;
    display: flex;
    justify-content: flex-start;
    counter-reset: step;


}

.flowList__item {
    position: relative;
    width: calc((100% / 3) + 1px);
    background-color: var(--white);
    font-size: var(--font26);
    margin-left: -1px;

    &:first-child {
        margin: 0;
    }


    &:last-child {

        &::before,
        &:after {
            display: none;
        }
    }

    &::before {
        position: absolute;
        content: "";
        width: 5px;
        height: 120%;
        top: 50%;
        right: 0;
        background-color: var(--red02);
        transform: translateY(-50%) rotate(-25deg);
        z-index: 1;
    }

}

.flowBo02 {
    .flowList__item::before {
        transform: translateY(-50%) rotate(-20deg);
    }
}


.flowList__itemInner {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    counter-increment: step;


    &::before {
        position: absolute;
        content: "STEP." counter(step);
        top: 0;
        left: 0;
        font-size: 0.96em;
        letter-spacing: var(--fontSpace050);
        color: #ebadb1;
        transform: translate(10%, 5%);
    }
}

.flowList__item:not(:first-child) {
    .flowList__itemInner::before {
        transform: translate(-7%, 5%);
    }
}

.searchBox {
    width: min(100%, 840px);
    margin: 0 auto;
}

.searchBox__ttl {
    text-align: center;
    color: var(--white);
    font-size: 42px;

    span {
        position: relative;
        font-weight: var(--weight700);
        display: block;
        width: fit-content;
        margin: 0 auto;

        &::before,
        &::after {
            position: absolute;
            content: "";
            left: -4%;
            bottom: 0;
            width: 5px;
            height: 80%;
            background-color: var(--white);
            transform: rotate(-20deg);
        }

        &::after {
            right: -4%;
            left: auto;
            transform: rotate(20deg);
        }
    }
}

.searchList {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    margin: max(5%, 25px) auto max(10.6%, 50px);
    gap: 45px 35px;
}

.searchList__item {
    width: calc(((100% - 45px)/2) + 5px);

    &.open {
        .btn-outer-search {


            .btn {
                &::before {
                    transform: translateY(-50%) rotate(180deg);
                }

            }
        }
    }
}

.searchList__item-inner {
    width: calc(100% - 5px);
    padding-bottom: 7px;
}

.btn-outer-search {
    width: 100%;

    &::before,
    &::after {
        display: none;
    }

    .btn {
        align-items: flex-start;
        padding: 0 1.03em;

        &::before {
            mask-image: url(../img/common/arrow02.svg);
            aspect-ratio: 18/10;
            width: 0.782em;
            transition: var(--transitionBase01);
        }

        &:hover {
            transform: translate(0px, 0px);
            box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.2);
        }
    }
}

.searchList-sub-outer {
    padding-bottom: 10px;
}

.searchList-sub {
    width: calc(100% - 10px);
    border-radius: var(--borderRadius10);
    background-color: transparent;

    li {
        border-bottom: 1px solid var(--white);

        &:last-child {
            border-bottom: none;
        }
    }

    .btn {
        border-radius: initial;
        background-color: var(--red01);
        color: var(--white);
        align-items: flex-start;
        text-align: left;
        padding: 1.5em 1.21em;
        box-shadow: initial;

        &::before {
            background-color: var(--white);
        }

        &:hover {
            transform: translate(0px, 0px);
            box-shadow: initial;
            opacity: var(--opacity07) !important;
        }

        .small {
            font-size: 0.739em;
        }
    }
}

.loopSwiper02 {
    overflow: visible;
}

.loopSwiper02__list {
    .swiper-slide02 {
        margin-top: max(6%, 10px);
    }
}


.block375 {
    display: none;
}



@media screen and (max-width:1024px) {
    .flow-container {
        width: min(100%, 700px);
    }

    .flowBox__type {
        width: 6em;
        aspect-ratio: 115/90;
    }
}

@media screen and (max-width:768px) {
    .flow-container {
        width: min(100%, 500px);
        display: flex;
        gap: 10px;
        overflow: hidden;
    }

    .flowBox {
        flex-direction: column;
        width: calc((100% - 10px)/2);
    }

    .flowBox__type {
        width: 100%;
        aspect-ratio: initial;
        padding: 1em 0;
    }

    .flowList {
        flex-direction: column;

    }

    .flowList__item {
        width: 100%;
        height: 70px;
        margin: 0 0 50px !important;
        overflow: visible;

        &:last-child {
            margin-bottom: 0 !important;

            .flowList__itemInner {
                .txt {
                    transform: translateY(0%);
                }

            }
        }

        &::before {
            display: none;
        }

        &::after {
            position: absolute;
            content: "";
            top: 100%;
            left: 50%;
            transform: translate(-50%, -1%);
            display: inline-block;
            width: 100%;
            aspect-ratio: 10/1.5;
            background-color: var(--white);
            clip-path: polygon(0 0, 100% 0%, 50% 100%);
            z-index: 0;
        }

    }

    .flowList__itemInner {
        z-index: 1;

        .txt {
            transform: translateY(40%);
        }



        &::before {
            font-size: 0.8em;
            transform: translate(10%, 5%) !important;
        }
    }


}

@media screen and (max-width:768px) {
    .searchBox__ttl {
        font-size: max(5.5vw, 25px);
    }


    .searchList {
        display: block;
        width: min(100%, 300px);
        margin-left: auto;
        margin-right: auto;
    }

    .searchList__item {
        width: calc(100% + 5px);
        margin-bottom: 30px;

        &:last-child {
            margin-bottom: 0;
        }
    }
}

@media screen and (max-width:480px) {
    .searchBox__ttl {
        & span {

            &::before,
            &::after {
                width: 2.5px;
            }
        }
    }
}


@media screen and (max-width:375px) {
    .flowList__item {
        margin-bottom: 40px !important;
    }

    .searchBox__ttl {
        line-height: 1.5;

        & span {

            &::before,
            &::after {
                height: 50%;
            }

            &::before {
                left: -7%;
            }

            &::after {
                right: -7%;
            }
        }
    }

    .block375 {
        display: block;
    }

}



/*******************************************
footer
*******************************************/

.footer {
    background-color: var(--red01);
    padding: 50px 0;
    position: relative;
    font-size: 15px;
    color: var(--white);
    font-weight: var(--weight500);
}

.footer-nav {
    margin: 0 auto 15px;
    display: flex;
    justify-content: center;
    gap: 30px;

    a {
        position: relative;

        &:hover {
            opacity: var(--opacity07);
        }
    }

    a:not(:first-child):before {
        position: absolute;
        content: "";
        width: 1px;
        height: 100%;
        background-color: var(--white);
        top: 50%;
        left: -14px;
        transform: translate(50%, -50%);
    }
}


.copyright {
    text-align: center;
}

@media screen and (max-width:1024px) {
    .footer {
        padding-bottom: 100px;
    }
}


@media screen and (max-width:511px) {

    .footer {

        font-size: 12px;

        .inner {
            padding: 0 15px;
        }
    }

    .footer-nav {
        flex-wrap: wrap;
        column-gap: 30px;
        row-gap: 10px;


        & a:last-child::before {
            display: none;
        }

        & a:not(:first-child):before {
            left: -14px;
        }
    }
}