/* 基本設定 */
html, body {
    height: 100%;
    overflow-y: scroll;
    font-family: sans-serif;
    background-color: #fff;
    font-family: 'Noto Sans JP';
    scrollbar-color: #288EB1 #e0e0e0;
    scrollbar-width: thin;
    line-height: 1.2;
    font-size: 1.3vw;
}

main {
    margin: 0;
    padding: 0;
}

.scroller {
    height: 100dvh;
    overflow-y: scroll;
    scroll-behavior: smooth;
    scroll-snap-type: y proximity;
}

.scroller section {
    height: 100dvh;
    top: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    overflow: hidden;
    position: sticky;
    margin-bottom: 300px;
}

.scroller section:nth-child(13) {
    margin-bottom: 0;
}

.scroller section:last-child {
    margin-bottom: 0;
}

/* セクションごとの固定 */
section {
    scroll-snap-align: start;
    background-color: #eee;
}

.section__box {
    position: relative;
    width: 100%;
    height: 100dvh;
}

/* 各コンテンツブロック */
.content-block {
    width: 100%;
    height: 100dvh;
    box-sizing: border-box;
    position: relative;
}

.content-block.show {
    opacity: 1;
    transform: translateY(0);
}

/* 画像 */
.content-block img {
    max-width: 100%;
    height: auto;
}



@media screen and (min-width: 768px) {
    .sp-only {
        display: none !important;
    }
}

/* 768px以下のとき */
@media screen and (max-width: 767px) {
    .pc-only {
        display: none !important;
    }
}


/* humberger */


.hamburger-btn {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1001;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

/* SVGアイコンスタイル */
.hamburger-icon {
    width: 30px;
    height: 30px;
    fill: none;
    stroke: #333;
    stroke-width: 6;
    stroke-linecap: round;
    transition: all 0.3s ease;
}

.line {
    transition: all 0.3s ease;
    transform-origin: 58% 50%;
}

/* 開いたときの変形（×になる） */
.hamburger-btn.open .line.top {
    transform: translateY(20px) rotate(45deg);
}

.hamburger-btn.open .line.middle {
    opacity: 0;
}

.hamburger-btn.open .line.bottom {
    transform: translateY(-20px) rotate(-45deg);
}

.hamburger-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 250px;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
    padding: 60px 20px;
    transition: right 0.3s ease;
    z-index: 1000;
}

.hamburger-menu.active {
    right: 0;
}

.hamburger-menu ul {
    list-style: none;
    padding: 0;
}

.hamburger-menu li {
    margin-bottom: 20px;
}

.hamburger-menu a {
    color: #333;
    text-decoration: none;
    font-size: 18px;
}


/* fixed-contact-btn */


.fixed-contact-btn {
    display: flex;
    align-items: center;
    flex-direction: row;
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background: #288EB1;
    color: #fff;
    padding: 20px 8px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    text-decoration: none;
    border-radius: 10px 0 0 10px;
    z-index: 999;
    font-weight: 600;
    box-shadow: -2px 2px 6px rgba(0, 0, 0, 0.15);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
@media screen and (max-width: 767px) {
.fixed-contact-btn {
	justify-content: center;
    position: fixed;
    top: initial;
    right: 0;
	left:0;
	bottom:0;
    transform: initial;
    writing-mode: horizontal-tb;
    border-radius: 10px 10px 0 0;
}
}

.fixed-contact-btn img {
    width: 20px;
    margin-bottom: 5px;
}
@media screen and (max-width: 767px) {
.fixed-contact-btn img {
    width: 20px;
    margin:0 10px 0 0;
}
}

.fixed-contact-btn.show {
    opacity: 1;
    pointer-events: auto;
}

.fixed-contact-btn.hide {
    opacity: 0;
    pointer-events: none;
}

.hamburger-contact {
    display: flex;
    align-items: center;
    width: 200px;
    margin: 50px auto 0;
    background: #288EB1;
    justify-content: center;
    border-radius: 30px;
    color: white !important;
    padding: 10px 3px;
}

.hamburger-contact img {
    width: 35px;
    margin-right: 10px;
}

@media screen and (max-width:768px) {
    .fixed-contact-btn {
        font-size: 16px;
    }
}





/* section_v1 */


.section__v1 {
    background-image: url(../img/sec_v1_bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    position: relative;
}

.sec__v1--logo {
    position: absolute;
    bottom: 10%;
    right: 20px;
    width: 20vw;
}

.sec__v1--logo img {
    width: 100%;
}

.sec__v1--text {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 20%;
    left: 11%;
}

.sec__v1--text img {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-out;
    width: 50%;
    margin-bottom: 3%;
}

/* 表示状態 */
.sec__v1--text img.show {
    opacity: 1;
    transform: translateY(0);
}

/* 順番ディレイ（1枚目〜） */
.sec__v1--text img:nth-child(1) {
    transition-delay: 0.7s;
}

.sec__v1--text img:nth-child(2) {
    transition-delay: 1.4s;
}

.sec__v1--sp {
    display: none;
}


.c-scroll {
    position: absolute;
    z-index: 996;
    bottom: 5%;
    left: 10%;
    transition: bottom .2s ease-in-out;
}

.c-scroll:hover {
    bottom: 4%;
}

.c-scroll a {
    display: block;
    width: 4em;
    height: 7em;
}

.c-scroll::before {
    transition: bottom .2s ease-in-out;
    content: "";
    position: absolute;
    bottom: .5em;
    left: calc(50% + .5px);
    height: 1em;
    width: .25em;
    background-color: #288EB1;
    -webkit-clip-path: polygon(0 100%, 0 0, 100% 0);
    clip-path: polygon(0 100%, 0 0, 100% 0);
}

.c-scroll span {
    position: absolute;
    bottom: 4em;
    left: 30%;
    color: #288EB1;
    display: inline-block;
    transform: rotate(90deg);
    line-height: 1;
}

.c-scroll::after {
    transition: bottom .2s ease-in-out;
    content: "";
    position: absolute;
    bottom: .5em;
    left: 50%;
    height: 6em;
    width: 1px;
    background-color: #288EB1;
}

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

    .section__v1 {
        background-image: none;
        background-color: #F4F9F2;
    }

    .sec__v1--text {
        top: 10%;
        left: 4vw;
    }

    .sec__v1--text img:nth-child(1) {
        width: 60vw;
    }

    .sec__v1--text img:nth-child(2) {
        width: 55vw;
        margin-top: 10vw;
    }

    .sec__v1--sp {
        display: block;
        position: absolute;
        bottom: 0;
        width: 100vw;
        max-width: 300px;
        right: 0;
        z-index: -2;
    }

    .sec__v1--logo {
        width: 40vw;
        left: 4vw;
        bottom: 30%;
    }

    .sec__v1--sp img {
        width: 100%;
    }

    .c-scroll {
        left: 4vw;
        bottom: 30vw;
    }

    .c-scroll.sp-only {
        pointer-events: none;
    }

    .c-scroll.sp-only img {
        width: 30px;
    }

    .c-scroll::before {
        content: none;
    }

    .c-scroll::after {
        content: none;
    }

    .c-scroll:hover {
        bottom: 0%;
    }

}


/* section_v2 */


.section__v2 {
    background-image: url(../img/sec_v2_bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
    position: relative;
}

.sec__v2--top {
    position: absolute;
    width: 60vh;
    max-width: 350px;
    top: -1px;
    right: 0;
    left: 0;
    margin: 0 auto;
}

.sec__v2--top img {
    width: 100%;
}

.sec__v2--text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
}

.sec__v2--bottom {
    position: absolute;
    bottom: 5%;
    right: 5%;
    width: 50%;
    max-width: 600px;
}

.sec__v2--bottom img {
    width: 100%;
}

/* sec__v2 アニメーション用 */

.section__v2 .fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-out;
}

.section__v2 .fade-in.show {
    opacity: 1;
    transform: translateY(0);
}

.sec__v2--text img:nth-child(1) {
    width: 100%;
    margin: 0 auto 30px;
}

.sec__v2--text img:nth-child(2) {
    width: 600px;
}

.section__v2 .fi1 {
    transition-delay: 0.3s;
}

.section__v2 .fi2 {
    transition-delay: 0.8s;
}

.section__v2 .fi3 {
    transition-delay: 1.3s;
}

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

    .sec__v2--top {
        width: 70%;
    }

    .sec__v2--text {
        top: 45%;
        width: 90%;
    }

    .sec__v2--text img:nth-child(1) {
        width: 100%;
    }

    .sec__v2--text img:nth-child(2) {
        width: 100%;
        margin: 0 auto 30px;
    }
	
    .sec__v2--text img:nth-child(3) {
        width: 100%;
        margin: 0 auto 40px;
    }

    .sec__v2--bottom {
        bottom: 15vh;
        right: 5%;
        width: 90%;
    }

}


/* section_v3 */


.sec__v3--text {
    width: 880px;
    margin: 0 auto;
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: 500;
}

.sec__v3--text img {
    width: 620px;
    margin: 0 0 20px;
}

.sec__text {
    font-size: 1.1vw;
}

.sec__v3--text .sec__text {
    font-size: 1.1vw;
}

.sec__v3--text .sec__subheading {
    font-size: 28px;
    font-weight: 600;
    padding: 30px 0;
}

.sec__v3--bg01 {
    position: absolute;
    top: 30%;
    left: 10%;
    width: 600px;
    z-index: -1;
}

.sec__v3--bg02 {
    position: absolute;
    top: 0;
    right: 0;
    width: 26vw;
    z-index: -1;
}

.sec__v3--text .fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-out;
}

.sec__v3--text .fade-in.show {
    opacity: 1;
    transform: translateY(0);
}

.sec__v3--text .fi1 {
    transition-delay: 0.3s;
}

.sec__v3--text .fi2 {
    transition-delay: 0.6s;
}

.sec__v3--text .fi3 {
    transition-delay: 0.9s;
}

.sec__v3--text .fi4 {
    transition-delay: 1.2s;
}

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

    .sec__v3--text {
        width: 90%;
        top: 47%;
    }

    .sec__v3--bg02 {
        width: 38vw;
    }

    .sec__v3--text img {
        width: 60.5vw;
    }

    .section__v3 .sec__text {
        font-size: 3.2vw;
    }

    .sec__v3--text .sec__subheading {
        font-size: 4.2vw;
        padding: 20px 0;
    }

    .sec__v3--bg01 {
        top: auto;
        left: -10%;
        bottom: 60px;
        width: 80vw;
        z-index: -1;
    }

}


/* section_v4 */



.sec__v4--text {
    width: 880px;
    margin: 0 auto;
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: 500;
}

.sec__v4--text .sec__subheading {
    font-size: 28px;
    font-weight: 600;
    padding: 30px 0;
}

.sec__v4--bg03 {
    position: absolute;
    top: 30%;
    right: 10%;
    width: 600px;
    z-index: -1;
}

.sec__v4--bg04 {
    position: absolute;
    bottom: 60px;
    left: 0%;
    width: 28.5vw;
    z-index: -1;
}

.sec__v4--bg05 {
    position: absolute;
    bottom: 60px;
    right: 0%;
    width: 450px;
}

.sec__v4--text .sec__text:nth-child(1) {
    padding: 20px;
}

.sec__v4--text .sec__text:nth-child(2) {
    padding-left: 40px;
    padding-bottom: 30px;
}

.sec__v4--text .sec__text:nth-child(3) {
    padding-left: 120px;
    padding-bottom: 30px;
}

.sec__v4--text .sec__text:nth-child(4) {
    padding-left: 170px;
    padding-bottom: 30px;
}

.sec__v4--text .sec__text:nth-child(5) {
    padding-left: 210px;
    padding-bottom: 30px;
}

.sec__v4--text .fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-out;
}

.sec__v4--text .fade-in.show {
    opacity: 1;
    transform: translateY(0);
}

.sec__v4--text .fi1 {
    transition-delay: 0.3s;
}

.sec__v4--text .fi2 {
    transition-delay: 0.6s;
}

.sec__v4--text .fi3 {
    transition-delay: 0.9s;
}

.sec__v4--text .fi4 {
    transition-delay: 1.2s;
}

.sec__v4--text .fi5 {
    transition-delay: 1.5s;
}

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

    .sec__v4--text {
        width: 95%;
        top: 40%;
    }

    .sec__v4--text .sec__subheading {
        font-size: 4.2vw;
        padding: 0 0 25px;
    }

    .section__v4 .sec__text {
        font-size: 3.5vw;
    }

    .sec__v4--text .sec__text:nth-child(2),
    .sec__v4--text .sec__text:nth-child(3),
    .sec__v4--text .sec__text:nth-child(4),
    .sec__v4--text .sec__text:nth-child(5) {
        padding-left: 0;
        padding-bottom: 10px;
    }

    .sec__v4--bg03 {
        top: 0;
        right: -10%;
        left: 20%;
        width: 300px;
    }

    .sec__v4--bg04 {
        width:36vw;
    }

    .sec__v4--bg05 {
        width: 45vw;
    }

}




/* section_v5 */


.section__v5 {
    background-image: url(../img/sec_v5_bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
    position: relative;
}

.sec__v5--top {
    position: absolute;
    width: 400px;
    top: -1px;
    right: 0;
    left: 0;
    margin: 0 auto;
}

.sec__v5--top img {
    width: 100%;
}


.sec__v5--text {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    display: flex;
    flex-direction: column;
    color: white;
}

.sec__v5--text img {
    width: 550px;
    margin: 0 auto;
}

.sec__v5--text .sec__subheading {
    font-size: 2vw;
    font-weight: 600;
    padding: 15px 0;
}

.sec__v5--text .sec__text {
    padding-bottom: 15px;
    font-size: 1.1vw;
    font-weight: 500;
}

.sec__v5--text .fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-out;
}

.sec__v5--text .fade-in.show {
    opacity: 1;
    transform: translateY(0);
}

.sec__v5--text .fi1 {
    transition-delay: 0.3s;
}

.sec__v5--text .fi2 {
    transition-delay: 1.0s;
}

.sec__v5--text .fi3 {
    transition-delay: 1.7s;
}

.sec__v5--text .fi4 {
    transition-delay: 2.4s;
}

.sec__v5--text .fi5 {
    transition-delay: 3.1s;
}

.sec__v5--logo {
    position: absolute;
    top: 1vw;
    left: 1vw;
    width: 250px;
}


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

    .section__v5 {
        background-position: 65%;
    }

    .sec__v5--text {
        width: 90%;
    }

    .sec__v5--text .sec__subheading {
        font-size: 4vw;
    }

    .sec__v5--text .sec__text {
        font-size: 3.2vw;
    }

    .sec__v5--logo {
        width: 150px;
    }

}


/* section__v6 */


.section__v6 {
    background-image: url(../img/sec_v5_bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
    position: relative;
}

.sec__v6--top {
    position: absolute;
    width: 400px;
    top: -1px;
    right: 0;
    left: 0;
    margin: 0 auto;
}

.sec__v6--top img {
    width: 100%;
}

.sec__v6--text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    display: flex;
    flex-direction: column;
    color: white;
}

.sec__v6--text img {
    width: 100%;
    margin: 0 auto;
}

.sec__v6--text .sec__subheading {
    font-size: 28px;
    font-weight: 600;
    padding: 30px 0;
}

.sec__v6--text .sec__text {
    padding-bottom: 20px;
    font-size: 1.1vw;
    font-weight: 500;
    line-height: 1.2;
}

.sec__v6--text .sec__text span {
    font-size: 1.35vw;
    font-weight: 700;
}

.sec__v6--text .fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-out;
}

.sec__v6--text .fade-in.show {
    opacity: 1;
    transform: translateY(0);
}

.sec__v6--text .fi1 {
    transition-delay: 0.3s;
}

.sec__v6--text .fi2 {
    transition-delay: 1.0s;
}

.sec__v6--text .fi3 {
    transition-delay: 1.7s;
}

.sec__v6--text .fi4 {
    transition-delay: 2.4s;
}

.sec__v6--text .fi5 {
    transition-delay: 3.1s;
}

.sec__v6--text .fi6 {
    transition-delay: 3.8s;
}

.sec__v6--text .fi7 {
    transition-delay: 4.5s;
}

.sec__v6--text .fi8 {
    transition-delay: 5.2s;
}

.sec__v6--logo {
    position: absolute;
    top: 1vw;
    left: 1vw;
    width: 250px;
}

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

    .section__v6 {
        background-position: 65%;
    }

    .sec__v6--text {
        width: 90%;
    }

    .sec__v6--text .sec__text {
        font-size: 3.2vw;
    }

    .sec__v6--text .sec__text span {
        font-size: 3.8vw;
    }
    .sec__v6--text .sec__text span.t-c {
        margin: 1.5em auto 0 auto;
		text-align: center;
		display: block;
    }	

    .sec__v6--text img {
        width: 100%;

    }

    .sec__v6--logo {
        width: 150px;
    }

}



/* section__v7 */


.section__v7 {
    background-image: url(../img/sec_v7_bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
    position: relative;
}

.sec__v7--top {
    position: absolute;
    width: 400px;
    top: -1px;
    right: 0;
    left: 0;
    margin: 0 auto;
}

.sec__v7--top img {
    width: 100%;
}

.section__v7 .content-block img.fi-img1,
.section__v7 .content-block img.fi-img2,
.section__v7 .content-block img.fi-img3 {
	width: auto !important;
    height: 26vh;
}
.section__v7 .content-block img.fi-img3 {
	width: auto !important;
    height: 36vh;
}

.sec__v7--text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    display: flex;
    flex-direction: column;
    color: #595749;
}

.sec__v7--text img {
    width: 100%;
    margin: 0 auto;
}

.sec__v7--text .sec__subheading {
    font-size: 28px;
    font-weight: 600;
    padding: 30px 0;
}

.sec__v7--text .sec__text {
    padding-bottom: 30px;
    font-size: 1vw;
    font-weight: 500;
}

.sec__v7--text .sec__text span {
    font-size: 1.4vw;
}

.sec__v7--text .fi1 {
    font-size: 2.2vw;
    padding-left: 37%;
    font-weight: 600;
}

.sec__v7--text .fi2 {
    font-size: 1.7vw;
    padding-left: 30%;
    font-weight: 600;
}

.sec__v7--text .fi3,
.sec__v7--text .fi4,
.sec__v7--text .fi5,
.sec__v7--text .fi6 {
    padding-left: 16%;
}

.section__v7 .content-block img.fi-img1 {
    position: absolute;
    top: 1%;
    left: 10%;
    z-index: -1;
    width: 24%;
}

.section__v7 .content-block img.fi-img2 {
    position: absolute;
    bottom: 42%;
    left: 3%;
    margin: auto;
    z-index: -2;
    width: 21%;
}

.section__v7 .content-block img.fi-img3 {
    position: absolute;
    bottom: 3%;
    left: -5%;
    z-index: -1;
    width: 34%;
}

/* フェードイン共通設定 */
.section__v7 .fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-out;
}

.section__v7 .fade-in.show {
    opacity: 1;
    transform: translateY(0);
}

/* フェードイン遅延タイミング */
.sec__v7--text .fi1 {
    transition-delay: 0.0s;
}

.sec__v7--text .fi2 {
    transition-delay: 0.8s;
}

.sec__v7--text .fi3 {
    transition-delay: 1.1s;
}

.sec__v7--text .fi4 {
    transition-delay: 1.4s;
}

.sec__v7--text .fi5 {
    transition-delay: 1.7s;
}

.sec__v7--text .fi6 {
    transition-delay: 2.0s;
}

.section__v7 .fi-img1 {
    transition-delay: 2.2s;
}

.section__v7 .fi-img2 {
    transition-delay: 2.6s;
}

.section__v7 .fi-img3 {
    transition-delay: 3.0s;
}

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

    .section__v7 {
        background-image: url(../img/sec_v7_bg-sp.jpg);
    }

    .sec__v7--text {
        width: 94vw;
        background: #ffffffad;
        padding: 3vw;
    }

    .sec__v7--text .sec__text {
        font-size: 3.2vw;
        padding-bottom: 20px;
    }
    .sec__v7--text .sec__text:first-child {
        font-size: 3.2vw;
        padding: 20px 0;
    }

    .sec__v7--text .fi1,
    .sec__v7--text .fi2,
    .sec__v7--text .fi3,
    .sec__v7--text .fi4,
    .sec__v7--text .fi5,
    .sec__v7--text .fi6 {
        padding-left: 0%;
    }

    .sec__v7--text .fi1 {
        font-size: 5vw;
    }

    .sec__v7--text .fi2 {
        font-size: 3.8vw;
    }

    .sec__v7--text .sec__text span {
        font-size: 3.2vw;
        font-weight: 600;
    }

    .section__v7 .content-block img.fi-img1 {
        top: 3%;
        left: 2%;
        width: 55vw !important;
        height: auto !important;
    }

    .section__v7 .content-block img.fi-img2 {
        bottom: 60px;
        left: auto;
        right: 5%;
        width: 46vw !important;
        height: auto !important;
    }

    .section__v7 .content-block img.fi-img3 {
        bottom: auto;
        top: 2vh;
        left: -15vw;
        width: 80vw !important;
        height: auto !important;
    }

    .section__v7 .content-block img.fi-img4 {
        position: absolute;
        bottom: 12%;
        left: 1%;
        z-index: -1;
        width: 62vw;
    }

    .section__v7 .content-block img.fi-img5 {
        position: absolute;
        bottom: 60px;
        right: 0;
        z-index: -2;
        width: 38vw;
    }

    .sec__v7--text .fi6 {
        transition-delay: 0.0s;
    }

    .sec__v7--text .fi7 {
        transition-delay: 0.8s;
    }

    .sec__v7--text .fi8 {
        transition-delay: 1.6s;
    }

    .section__v7 .fi-img3 {
        transition-delay: 2.4s;
    }

    .section__v7 .fi-img4 {
        transition-delay: 3.2s;
    }

    .section__v7 .fi-img5 {
        transition-delay: 3.5s;
    }


}

/* section__v8 */


.section__v8 .content-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.section__v8 .content-block .top__text {
    font-size: 3vw;
    font-weight: 600;
    color: #33596c;
    margin-bottom: 20px;
}

.section__v8 .content-block img {
    max-width: 700px;
    width: 100%;
}

.section__v8 .content-block .bottom__text {
    font-size: 2vw;
    font-weight: 500;
    color: #33596c;
    text-align: center;
    margin-top: 30px;
}


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

    section.section__v8 {
        position: relative;
        height: auto;
        margin-bottom: 0px;
    }

    .section__v8 .content-block {
        height: 100dvh;
    }


    .section__v8 .content-block .top__text {
		font-size: 7vw;
        padding: 45px 0 0 0;
    }

    .section__v8 .content-block .bottom__text {
        font-size: 5vw;
        padding-bottom: 80px;
		margin-top: 20px;

    }

    .section__v8 .content-block img {
        max-width: 1000px;
        width: 70vw;
        margin-bottom: 30px;
    }

    .section__v8 .content-block img :nth-last-child {
        margin-bottom: 0;
    }
}


/* section__v9 */


.section__v9 {
    background-image: url(../img/sec_v9_bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
    position: relative;
}

.sec__v9--top {
    max-width: 500px;
    width: 60vh;
    margin: 0 auto;
}

.sec__v9--top img {
    width: 100%;
}

.sec__v9--items {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 30px;
}

.sec__v9--itembox img {
    max-width: 220px;
    width: 30vh;
}

.sec__v9--itembox {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: white;
    font-size: 1.3vw;
    gap: 30px;
}

.section__v9 .fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-out;
}

.section__v9 .fade-in.show {
    opacity: 1;
    transform: translateY(0);
}

.section__v9 .fi-img1 {
    transition-delay: 0.2s;
}

.section__v9 .fi-img2 {
    transition-delay: 1.0s;
}

.section__v9 .fi-img3 {
    transition-delay: 1.8s;
}

.section__v9 .fi1 {
    transition-delay: 0.6s;
}

.section__v9 .fi2 {
    transition-delay: 1.4s;
}

.section__v9 .fi3 {
    transition-delay: 2.2s;
}



/* section__v10 */


.section__v10 {
    background-image: url(../img/sec_v9_bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
    position: relative;
}

.section__v10 .sec__v10--top {
    max-width: 500px;
    width: 60vh;
    margin: 0 auto;
}

.section__v10 .sec__v10--top img {
    width: 100%;
}

.section__v10 .sec__text {
	color: #fff;
	font-size: 2.4vw;
	font-weight: 600;
	text-align: center;
	margin: 0.6em auto 0;
}
.section__v10 .sec__subheading {
	color: #fff;
	font-size: 1.9vw;
	font-weight: 500;
	text-align: center;
	margin: 0 auto;
}

.sec__v10--items {
	display: flex;
	align-items: center;
	justify-content: space-around;
	width: 80%;
	margin: 20px auto 0;
}
.sec__v10--items .sec__v10--items--left,
.sec__v10--items .sec__v10--items--center, 
.sec__v10--items .sec__v10--items--right {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 35%;
}
.sec__v10--items .sec__v10--items--center {
	width: 25%;
}

.sec__v10--items .sec__v10--textbox {
	font-size: 1.65vw;
    font-weight: 500;
    background: #fff;
    border-radius: 12px;
    padding: 0.5em 1em;
    width: 84%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.sec__v10--items p {
	color: #fff;
	font-size: 1.25vw;
}
.sec__v10--items p + p {
	margin-top: 0.75em;
}
.sec__v10--items .sec__v10--items--right p {
	font-size: 1.35vw;
}
.sec__v10--items img {
	width: 100%;
}
.sec__v10--items img.photo {
	width: 70%;
}

.sec__v10--items01 {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 30px;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    left: 0;
    right: 0;
    width: 100%;
    align-items: center;
    color: white;
}

.itembox-top img {
    width: 180px;
    /* margin: 0 auto; */
}

.itembox-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.itembox-top p {
    font-size: 1.5vw;
    font-weight: 500;
}

.itembox-top p span {
    font-size: 2.1vw;
}

.itembox-bottom img {
    width: 180px;
}

.itembox-bottom img:nth-child(1) {
    width: 20px;
    padding-top: 20px;
}

.itembox-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
}

.section__v10 .fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-out;
}

.section__v10 .fade-in.show {
    opacity: 1;
    transform: translateY(0);
}

.section__v10 .fi1 {
    transition-delay: 0.3s;
}

.section__v10 .fi2 {
    transition-delay: 0.6s;
}

.section__v10 .fi3 {
    transition-delay: 0.9s;
}

.section__v10 .fi4 {
    transition-delay: 1.8s;
}

.section__v10 .fi5 {
    transition-delay: 2.1s;
}

.section__v10 .fi6 {
    transition-delay: 2.4s;
}

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

    section.section__v9 {
        position: relative;
        height: auto;
        margin-bottom: 0;
        background: linear-gradient(90deg, rgb(102 166 188), rgb(69 99 115));
    }

    .section__v9 {
        background-attachment: fixed;
    }

    .section__v9 .content-block {
        height: auto;
        color: white;
    }

    .sec__v9--top {
        width: 100%;
    }

    .sec__v9--items {
        flex-direction: column;
    }

    .sec__v9--itembox {
        font-size: 4.5vw;
        width: 90%;
        margin: 0 auto;
    }

    .sec__v9--itembox img {
        width: 33vw;
    }

    .itembox-top img {
        width: 40vw;
    }

    .sec__v10--itembox .itembox-top p {
        font-size: 4.2vw;
    }

    .sec__v10--itembox .itembox-top p span {
        font-size: 5.5vw;
    }

    .itembox-bottom img {
        width: 32vw;
    }

    .sec__v10--itembox.sp-only {
        font-size: 4.5vw;
        width: 90%;
        margin: 0 auto 50px;
    }

}


/* section__11 */


.section__v11 {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
    position: relative !important;
    margin-bottom: 0 !important;
}

.sec__v11--imagebox img:nth-child(1) {
    width: 640px;
    padding-left: 7vw;
}

.sec__v11--imagebox img:nth-child(2) {
    width: 500px;
    padding-left: 16vw;
}

.sec__v11--imagebox {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translate(-50%, 0);
    z-index: 2;
}

.sec__v11--bottom {
    width: 320px;
    position: absolute;
    bottom: 3%;
    right: 10%;
    z-index: 1;
}

.sec__v11--bg {
    width: 85vw;
    position: absolute;
    left: 0;
    bottom: 0;
}

.section__v11 .fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-out;
}

.section__v11 .fade-in.show {
    opacity: 1;
    transform: translateY(0);
}

.section__v11 .fi1 {
    transition-delay: 0.4s;
}

.section__v11 .fi2 {
    transition-delay: 0.8s;
}

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

    .sec__v11--imagebox {
        width: 90%;
    }

    .sec__v11--bottom {
        width: 33vw;
        bottom: 60px;
        right: 5%;
    }

    .sec__v11--bg {
        width: 175vw;
        left: -35vw;
		bottom: 60px;
    }

    .sec__v11--imagebox img:nth-child(1) {
        width: 86vw;
		padding: 0;
    }

    .sec__v11--imagebox img:nth-child(2) {
        width: 65vw;
        padding-left: 20vw;
    }
}


/* section__12 */


.section__v12 {
    background-color: #315568;
    position: relative;
    min-height: 100dvh;
}

.section__v12 .content-block {
    min-height: 100dvh;
}

.sec__v12--items {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
}

.sec__v12--imagebox {
    position: relative;
    height: 100%;
    width: 100%;
}

.sec__v12--imagebox img:nth-child(1) {
    width: 2100px;
    max-width: max-content;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.sec__v12--imagebox img:nth-child(2) {
    width: 35vw;
    max-width: 450px;
    position: absolute;
	top: 10px;
    left: 18%;
    z-index: -20;
}

.sec__v12--imagebox img:nth-child(3) {
    width: 65vh;
    position: absolute;
	top: 10px;
    right: 18%;
}

.sec__v12--textbox {
    display: flex;
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    flex-direction: row-reverse;
}

.sec__v12--btnbox {
    display: flex;
	justify-content: space-around; 
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
	justify-content: space-around; 
	gap: 10px;
	white-space: nowrap;
}
.sec__v12--btnbox a,
.sec__v12--btnbox div {
	display: flex;
	align-items: center;
	background: #fff;
	border-radius: 5px;
	font-size: 14px;
	font-weight: 500;
	padding: 6px 10px;
}
.sec__v12--btnbox a span,
.sec__v12--btnbox div span {
	font-size: 50px;
}
.sec__v12--btnbox a p,
.sec__v12--btnbox div p {
	margin-left: 10px;
}
@media screen and (max-width: 768px) {
.sec__v12--btnbox a span,
.sec__v12--btnbox div span {
	font-size: 24px;
}
}

.sec__v12-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    align-content: center;
    background: white;
    width: 220px;
    font-size: 20px;
    font-weight: 500;
    color: #595749;
    letter-spacing: 2.1px;
    margin-left: 10px;
}


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

    .sec__v12--items {
        width: 90vw;
    }

    .sec__v12-btn {
        width: 50%;
        font-size: 3.5vw;
        letter-spacing: 2px;
        float: left;
        height: 40px;
    }

    .sec__v12--imagebox img:nth-child(1) {
        width: 1370px;
    }

    .sec__v12--imagebox img:nth-child(2) {
        width: 87vw;
        right: 0;
        top: 20vw;
    }

    .sec__v12--imagebox img:nth-child(3) {
        width: 98vw;
        top: 80vw;
        right: 0;
        left: 0;
    }

    .sec__v12--textbox {
        align-items: center;
        gap: 5px;
        bottom: 5px;
        width: 100%;

    }

    .sec__v12--textbox p {
        font-size: 9px;
        text-align: center;
    }

}


/* top */


.top__section {
    position: relative;
    height: 100dvh;
    background: linear-gradient(90deg, #F7FAF4, #F0F5EC);
}


.top__section .logo {
    display: flex;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    flex-direction: column;
    align-items: center;
    width: 20vw;
}

.top__section .logo img {
    width: 100%;
}

.top__section .logo a {
    margin-top: 30px;
    font-size: 16px;
    font-weight: 500;
    width: 180px;
    background-color: white;
    line-height: 3;
    text-align: center;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.top__section .logo a:hover {
    background-color: #f2f2f2;
}

.top__section .contact__btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: rgba(255, 255, 255, 0.95);
    color: #333;
    padding: 10px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #ccc;
    transition: background 0.3s ease;
}

.top__section .contact__btn:hover {
    background-color: #f2f2f2;
}

.top__section .contact__btn a {
    color: inherit;
    text-decoration: none;
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
}

.top__section .contact__btn img {
    width: 16px;
    height: auto;
    pointer-events: none;
}

@media screen and (max-width: 768px) {
    .top__section .logo {
        width: 60vw;
    }

    .top__section .contact__btn {
        bottom: 30vw;
    }
}


/* contact */


.contact__section {
    position: relative;
    height: auto;
    background: linear-gradient(90deg, #F7FAF4, #F0F5EC);
}

/* 全体のフォームスタイル */
.contact__section {
    padding: 40px 20px;
    background-color: #f9f9f9;
    font-family: "Helvetica Neue", sans-serif;
}

.contact {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* 各フィールドのラベルと入力欄 */
.wpcf7-form p {
    margin-bottom: 20px;
}

.wpcf7-form label {
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
    color: #333;
}

.wpcf7-form .required {
    color: #ffffff;
    margin-left: 5px;
    font-size: 0.9em;
    background: red;
    padding: 3px;
}

/* 入力欄共通 */
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 400;
    transition: border-color 0.3s;
    margin-top: 10px;
    max-width: 570px;
}

.wpcf7-form input:focus,
.wpcf7-form textarea:focus {
    border-color: #0073e6;
    outline: none;
}

/* テキストエリアの高さ調整 */
.wpcf7-form textarea {
    resize: vertical;
    min-height: 120px;
}

/* 送信ボタン */
.wpcf7-submit {
    background-color: #288EB1;
    color: white;
    border: none;
    padding: 14px 24px;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
    text-align: center;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .contact {
        padding: 20px;
    }

    .wpcf7-form input[type="text"],
    .wpcf7-form input[type="email"],
    .wpcf7-form input[type="tel"],
    .wpcf7-form textarea {
        width: 90%;
    }

}

.contact__heading {
    text-align: center;
    margin-bottom: 30px;
}

.contact__heading h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 10px;
    font-family: 'Noto Sans JP';
    font-weight: 500;
}

.contact__subtext {
    font-size: 16px;
    color: #666;
}

.back-to-home {
    text-align: center;
    margin: 40px 0;
}

.back-to-home a {
    display: inline-block;
    background-color: white;
    color: #1c1c1c;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.back-to-home a:hover {
    background-color: rgb(204, 204, 204);
}

input[type="checkbox"] {
    appearance: auto;
    -webkit-appearance: checkbox;
    -moz-appearance: checkbox;
    width: 16px;
    height: 16px;
    vertical-align: middle;
    margin-right: 6px;
    cursor: pointer;
}

.wpcf7-form p:nth-child(7) {
    text-align: center !important;
}

a.privacy {
    font-size: 17px;
    color: #242424;
}

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

    .wpcf7-form label {
        font-size: 4vw;
    }

    .wpcf7-form .required {
        font-size: 4vw;
    }

    .wpcf7 form .wpcf7-response-output {
        font-size: 4vw;
    }

}


/* privacy policy */


/* プライバシーポリシー用 */
.privacy-policy {
    background-color: #f9f8f6;
    padding: 80px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.privacy-policy .content-block {
    background: #ffffff;
    padding: 40px 30px;
    max-width: 880px;
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    line-height: 1.8;
    font-size: 16px;
    color: #333;
}

.privacy-policy h1 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #333;
    text-align: center;
    font-family: 'Noto sans JP';
}

.privacy-policy h2 {
    font-size: 20px;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #444;
    border-left: 4px solid #0066cc;
    padding-left: 10px;
    font-family: 'Noto sans JP';
}

.privacy-policy p,
.privacy-policy ul {
    margin-bottom: 20px;
}

.privacy-policy ul {
    padding-left: 20px;
    list-style: disc;
}

.close-window-btn {
    top: 20px;
    right: 20px;
    background: #fff;
    color: #333;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 6px;
    text-decoration: none;
    z-index: 1000;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    transition: background 0.3s ease;
    margin-top: 50px;
}

.close-window-btn:hover {
    background: #c5c5c5;
    ;
}


/* footer */


/* フッター基本スタイル */
.site-footer {
    background-color: #333;
    color: #fff;
    padding: 30px 20px;
    font-size: 14px;
}

.site-footer .footer-inner {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 5px;
}

.site-footer .privacy-link a {
    color: #ccc;
    font-size: 13px;
    text-decoration: underline;
}

.site-footer .privacy-link a:hover {
    color: #fff;
}

.site-footer .copyright {
    color: #fff;
    font-size: 14px;
}

@media screen and (max-width: 768px) {
    .site-footer .footer-inner {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}



/* --------------------------------------------
splide設定 
 -------------------------------------------- */

/* splide設定 */
.splide .splide__track .splide__slide img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 20px;
}

.splide .splide__track .splide__slide figure figcaption {
  font-size: var(--font-size-base);
  margin-top: 0.35em;
}

/* 矢印全般の設定 */
.splide .splide__arrows .splide__arrow {
  position: absolute;
  top: calc(50% - 15px);
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s;
}

.splide .splide__arrows .splide__arrow--prev {
  left: 40px;
  transform: translateY(-50%) scale(-1, 1);
}

.splide .splide__arrows .splide__arrow--next {
  right: 40px;
}

.splide .splide__arrows .splide__arrow--prev,
.splide .splide__arrows .splide__arrow--next {
  z-index: 100;
}

.splide .splide__arrows .arrow_btn {
  background-color: transparent;
  transition: 0.2s;
}

.splide .splide__arrows .arrow_btn::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  color: #288EB1;
  line-height: 1;
  width: 40px;
  height: 40px;
  border: 5px solid #288EB1;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateX(-25%) rotate(45deg);
}

.splide .splide__arrows .arrow_btn:hover::before {
  opacity: 0.65;
}

.splide .splide__arrows .arrow_btn:disabled::before {
  border-color: #fff;
}

.splide .splide__arrows.gr .arrow_btn::before {
  color: #fff;
  border-color: #fff;
}

.splide.single {
  width: 1480px;
  margin: 0 auto;
}

.splide.single .splide__track {
  position: relative;
}

.splide.single .splide__track .splide__list .splide__slide {
  width: 1160px;
  height: 660px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.splide.single .splide__track .splide__list .splide__slide {
  width: 1160px;
  height: 660px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.splide.single .splide__track .splide__list .splide__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

.splide.single .splide__track .splide__list .splide__slide .slide-box {
	width: 86%;
	height: 84%;
	padding: 20px 5%;
	margin: 0 auto;
	background: #fff;
	border-radius: 30px;
	text-align: center;
}

.splide.single .splide__track .splide__list .splide__slide .slide-box .slide-num {
	font-size: 9vw;
	font-weight: 600;
	color: #999;
	margin:0 auto 1em;
}

.splide.single .splide__track .splide__list .splide__slide .slide-box .slide-ttl {
	font-size: 5vw;
	margin: 0 auto 1em;
}

.splide.single .splide__track .splide__list .splide__slide .slide-box ul {
    list-style-position: outside;
    margin: 40px auto 0 auto;
    width: fit-content;
    max-width: 80%;
}
.splide.single .splide__track .splide__list .splide__slide .slide-box ul li {
    list-style-type: disc;
    margin: 0 0 1em 0;
    font-size: 4vw;
    text-align: left;
}
.splide.single .splide__track .splide__list .splide__slide .slide-box ul li:last-child {
	margin: 0;	
}

.splide.single .splide__arrows .splide__arrow--prev {
  left: -100px;
}

.splide.single .splide__arrows .splide__arrow--next {
  right: -100px;
}

/* Mobile Portrait Size to Mobile Landscape Size */
@media only screen and (max-width: 768px) {
  .splide .splide__track .splide__slide img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 20px;
  }

  .splide .splide__track .splide__slide figure figcaption {
    font-size: var(--font-size-base);
    margin-top: 0.35em;
  }

  .splide .splide__arrows .splide__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s;
  }

  .splide .splide__arrows .splide__arrow--prev {
    left: 10px;
    transform: translateY(-50%) scale(-1, 1);
  }

  .splide .splide__arrows .splide__arrow--next {
    right: 10px;
  }

  .splide .splide__arrows .splide__arrow--prev,
  .splide .splide__arrows .splide__arrow--next {
    z-index: 100;
  }

  .splide .splide__arrows .arrow_btn {
    background-color: transparent;
    transition: 0.2s;
  }

  .splide .splide__arrows .arrow_btn::before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    color: #288EB1;
    line-height: 1;
    width: 20px;
    height: 20px;
    border: 5px solid #288EB1;
    border-left: 0;
    border-bottom: 0;
    box-sizing: border-box;
    transform: translateX(-25%) rotate(45deg);
  }

  .splide.single {
    width: 1480px;
    margin: 0 auto;
  }

  .splide.single .splide__track {
    position: relative;
	padding: 0;
  }

  .splide.single .splide__track .splide__list .splide__slide {
    width: 1160px;
    height: 660px;
  }

  .splide.single .splide__track .splide__list .splide__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
  }

  .splide.single .splide__arrows .splide__arrow--prev {
    left: -30px;
    top: 50%;
  }

  .splide.single .splide__arrows .splide__arrow--next {
    right: -30px;
    top: 50%;
  }
}

