@charset "UTF-8";

body {
    background-color: #F1FAF7;
    font-family: "Noto Sans JP", sans-serif;
}

#mouse-stalker {
    pointer-events: none;
    position: fixed;
    top: -10px;
    left: -10px;
    width: 20px;
    height: 20px;
    background: rgba(0, 165, 160, 0.5);
    border-radius: 50%;
    transform: translate(0, 0);
    transition: transform 0.2s;
    transition-timing-function: ease-out;
    z-index: 999;
}


*,
body,
.indicator ul {
    margin: 0;
    padding: 0;
}

#carouselExample,
.carousel slide {
    display: none;
}

.indicator li {
    list-style: none;
}

.Res_slide {
    display: none;
}

/* ↓ スライドの外枠 */
.slide-wrapper {
    width: 100%;
    height: auto;
    /* max-width: 300vh; */
    position: relative;
    overflow: hidden;
    /* はみ出したスライドを隠す */
}

/*  ↓ スライド（コンテンツ） */
.slide {
    /*スライド全体 */
    width: 300%;
    height: 100%;
    display: flex;
    transition: all 0.3s;
}

.slide_flexbox {
    /* スライド */
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
}

.slide1 {
    /* スライドさせるために必要なクラス */
    transform: translateX(0);
}

.slide2 {
    /* スライドさせるために必要なクラス */
    transform: translateX(-33.33%);
}

.slide3 {
    /* スライドさせるために必要なクラス */
    transform: translateX(-66.66%);
}

.slide_item {
    width: 100%;
    height: auto;
    position: relative;
    top: 0;
    right: 0;
    z-index: 0;
}

.slide_item img {
    display: block;
    width: 100%;
    height: auto;
    margin: 0 auto;
    margin-right: 0;
    padding-bottom: 0;

}


.slide_itembox {
    width: 100%;
    height: auto;
    position: absolute;
    top: 0;
    left: 10%;
}


.slide_txtwp {
    flex-direction: column;
    width: 40%;
    position: relative;
    top: 5%;
    left: 5%;
    z-index: 1;
}

.slide_txt {
    flex-direction: column;
    z-index: 1;
    width: 35%;
    position: relative;
    top: 5%;
    right: -80px;
    z-index: 1;
}

.slide_textY {
    font-size: 45px;
    text-shadow: 0 4px 4px #F9E493;
    font-weight: bold;
    width: 100%;
    height: auto;

}

.slide_textY img {
    width: 28%;
}

.slide_textB {
    font-size: 50px;
    text-shadow: 0 4px 4px #B0B0FF;
    font-weight: bold;
    width: 80%;
    height: auto;
    padding-right: 0;
}

.slide_textP {
    font-size: 50px;
    text-shadow: 0 4px 4px #FEC1E0;
    font-weight: bold;
    padding-right: 10px;
}

/* ↓ 左右のボタン */
.next {
    position: absolute;
    width: 15px;
    height: 15px;
    right: 10px;
    bottom: 50%;
    z-index: 10;
    cursor: pointer;
    border-top: solid 3px #000;
    border-right: solid 3px #000;
    -webkit-transform: rotate(45deg) translateY(50%);
    transform: rotate(45deg) translateY(50%);
}

.prev {
    position: absolute;
    width: 15px;
    height: 15px;
    left: 15px;
    bottom: 50%;
    z-index: 10;
    cursor: pointer;
    border-top: solid 3px #000;
    border-right: solid 3px #000;
    -webkit-transform: rotate(-135deg) translateY(-50%);
    transform: rotate(-135deg) translateY(-50%);
}


/* ここまで */
#carousel-item {
    display: flex;
}

.pc-menu {
    width: 100%;
    padding-top: 1%;
    display: flex;
    justify-content: space-between;
    font-size: 24px;
    color: #0F9D58;
    background-color: #FEFFF9;
    align-items: center;
    position: sticky;
    top: 0px;
    left: 0px;
    z-index: 1;
    margin-top: -36px;

}

main nav p {
    margin-left: 5px;
}


.Main {
    max-width: 1200px;
    margin: 0 auto;
    background-color: #F1FAF7;
}


main nav ul {
    width: 100%;
    display: flex;
    justify-content: space-around;

}

main nav img {
    margin: 0 auto;
}


.pc-menu ul {
    display: flex;
    gap: 30px;

}

.pc-menu ul li a {
    color: #0F9D58;
    text-decoration: none;
}

.pc-menu ul li a:hover {
    color: #ff6600;
    /* ホバー時のリンクの色 */

}

/* ここまで */



footer {
    background-color: #A5D6A7;
    text-align: center;
    line-height: 1.8em;
    height: auto;
}

footer p {
    margin-bottom: 0;
}

@media screen and (max-width:1392px) {
    .pc-menu {
        flex-direction: column;

    }

    .pc-menu ul {

        gap: 5px;
        font-size: 16px;
    }
}

@media screen and (max-width:767px) {
    .Main {
        max-width: 515px;

    }

    #carouselExample,
    .carousel slide {
        display: block;
        width: 100%;
    }

    .slide,
    #slide {
        display: none;
    }

    .next {
        display: none;
    }

    .prev {
        display: none;
    }

}

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

    .slide,
    #slide {
        display: none;
    }

    .next {
        display: none;
    }

    .prev {
        display: none;
    }

}