@charset "UTF-8";

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    color: #454545;
    -webkit-font-smoothing: antialiased;
    background-color: #fff;
}

p {
    line-height: 1.5;
}

li {
    list-style-type: none;
}

address {
    font-style: normal;
}

a {
    font-family: "Noto Sans JP", sans-serif;
    text-decoration: none;
    color: #454545;
}

img {
    max-width: 100%;
}

.wrapper {
    width: 90%;
    margin: 0 auto;
}

.cont-ttl {
    font-size: 3rem;
    font-family: "Holtwood One SC", serif;
}

.photo-deco {
    border: 10px solid #f1f1f1;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.15);
}


.grass-bg {
    position: relative;
    z-index: -999;
    width: 100%;
    background-image: url(../img/grass.webp);
    background-size: 100% auto;
    background-repeat: repeat-y;
    background-position: top center;
}

.sp-ttl,
.acs-ttl {
    color: #F2B705;
    text-align: center;
    background-size: auto 100%;
    background-position: center;
    padding: 130px 0;
}

.sp-ttl {
    background-image: url(../img/sp/ttl-bg.svg);
}

.acs-ttl {
    background-image: url(../img/acs/ttl-bg.svg);
}

.sp-ttl .cont-ttl {
    width: fit-content;
    letter-spacing: 0.12em;
    margin: 0 auto 10px;
    padding-bottom: 10px;
    background-image: url(../img/white-line.svg);
    background-position: bottom center;
}





.drawer-nav {
    width: 350px;
    aspect-ratio: 1/1;
    padding: 25px 0;
    position: fixed;
    top: 60px;
    right: 60px;
    opacity: 0;
    transform: translateX(400px);
    transition: opacity .8s ease, transform .8s ease;
    z-index: 5;
    background: #f2b705f7;
    border-radius: 50%;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.15);
}

.drawer-nav-inner::after {
    content: "";
    display: block;
    width: 400px;
    aspect-ratio: 10/5;
    background-image: url(../img/menu-cloud.svg);
    position: absolute;
    bottom: -120px;
    left: -30px;
    rotate: -5deg;
}

.drawer-nav.hm-active {
    opacity: 1;
    transform: translateX(0);
}

.drawer-nav-inner {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.drawer-nav-menu {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.drawer-nav-item {
    padding-left: 20px;
    display: flex;
    gap: 15px;
}

.drawer-nav-item a {
    font-size: 1.25rem;
    color: #fff;
    transition: color 0.6s ease;
}

.drawer-nav-item:hover a {
    color: #07B94E;
}

.drawer-nav-item::before {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    content: "";
    width: 35px;
    aspect-ratio: 1/1;
}

.top::before {
    background-image: url(../img/top-icon.svg);
}

.model::before {
    background-image: url(../img/model-icon.svg);
}

.special::before {
    background-image: url(../img/island-icon.svg);
}

.access::before {
    background-image: url(../img/access-icon.svg);
}


.drawer-btn {
    position: fixed;
    top: 40px;
    right: 40px;
    width: 65px;
    aspect-ratio: 1/1;
    border: none;
    cursor: pointer;
    z-index: 999;
    background-color: #07b94ec8;
    border-radius: 50%;
}

.drawer-btn>span {
    display: block;
    position: absolute;
    top: 50%;
    right: -8px;
    width: 2.625rem;
    height: 1px;
    border-radius: 1rem;
    background-color: #fff;
    transform: translateX(-50%);
}

.drawer-btn>span:first-child {
    transform: translate(-50%, calc(-50% - .5rem));
    transition: transform .4s ease;
}


.drawer-btn>span:last-child {
    transform: translate(-50%, calc(-50% + .5rem));
    transition: transform .4s ease;
}

.drawer-btn.hm-active>span:first-child {
    transform: translate(-50%, -50%) rotate(-45deg);
}


.drawer-btn.hm-active>span:last-child {
    transform: translate(-50%, -50%) rotate(45deg);
}

.map-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    background-color: #ffffffb1;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.15);
    color: #f2b705;
    width: 140px;
    aspect-ratio: 1/1;
    border-radius: 30px;
    font-size: .875rem;
    font-family: "Holtwood One SC", serif;
}

.map {
    width: 80%;
    aspect-ratio: 40/35;
    margin: 0 auto;
}

.map-btn {
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.map-btn.is-show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.map-cont {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100dvh;
    background-color: #fff;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transform: translateX(100%);
    transition: opacity .8s ease, transform .8s ease;
}

.map-cont.is-show {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
}

.close-btn {
    position: fixed;
    bottom: 50px;
    right: 50px;
    width: 70px;
    aspect-ratio: 1/1;
    background-color: #07b94ea5;
    border-radius: 50%;
}

.close-btn>span {
    display: block;
    width: 2.625rem;
    height: 2px;
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 1rem;
    background-color: #fff;
}

.close-btn>span:first-child {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.close-btn>span:last-child {
    transform: translate(-50%, -50%) rotate(45deg);
}

.map-flex {
    display: flex;
    flex-direction: row-reverse;
    height: 100%;
}

.map-right {
    width: 75%;
    height: auto;
    min-height: 100%;
    background-image: url(../img/model/map-bg.webp);
    background-position: center;
    background-size: cover;
    text-align: center;
}

.map-right img {
    height: 100%;
    aspect-ratio: 95/77;
    object-fit: contain;
}

.map-left {
    width: 25%;
    background-image:
        url(../img/model/map-list-bg-01.webp),
        url(../img/model/map-list-bg-02.webp);
    background-position:
        left -120px top -120px,
        right -40px bottom -40px;
    background-size:
        350px auto,
        320px auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom: env(safe-area-inset-bottom);
}

.map-model {
    background: #ffffffdb;
    border-radius: 5px;
    padding: 20px;
}

.map-ttl {
    margin-bottom: 30px;
}

.map-ttl .cont-ttl {
    font-size: 2rem;
    color: #f2b705;
    letter-spacing: 0.12em;
    background-image: url(../img/white-line.svg);
    background-position: bottom center;
    line-height: 1.4;
    width: fit-content;
}

.map-sub-ttl {
    color: #f2b705;
    font-size: 1.25rem;
}

.model-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.map-point {
    background-color: #ffffffb1;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.15);
    color: #f2b705;
    border-radius: 50%;
    width: 40px;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.model-list-item {
    display: flex;
    align-items: center;
    gap: 30px;
}

.list-ttl {
    color: #07B94E;
    font-weight: bold;
}

.list-time {
    display: flex;
    gap: 30px;
}

.arrow-img {
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.time-item {
    display: flex;
    gap: 20px;
}

.list-walk::before,
.list-bike::before {
    content: "";
    display: block;
    width: 25px;
    aspect-ratio: 4/2;
    position: relative;
}

.list-walk,
.list-bike {
    display: flex;
    align-items: center;
}

.list-bike::before {
    background-image: url(../img/model/bike.svg);
}

.list-walk::before {
    background-image: url(../img/model/walk.svg);
}

#top {
    position: relative;
    padding-top: 70px;
}

.garland {
    width: 100%;
    position: absolute;
    top: 0;
    opacity: .7;
}

.garland-sp {
    display: none;
}

.top-island {
    width: 100%;
    animation: rotate 150s linear infinite;
}

.island-cont {
    height: 70dvh;
    overflow: hidden;
    padding-top: 100px;
    margin-top: -160px;
}

.hero {
    width: 95%;
    margin: 40px auto 20px;
    position: relative;
    z-index: 1;
}

.hero-sp {
    display: none;
}

.welcome {
    position: relative;
    font-size: 5rem;
    font-family: "Holtwood One SC", serif;
    color: #f4f4f4;
    width: 100%;
    text-align: center;
    padding: 100px;
    background-image: url(../img/top/ttl-bg.svg);
    background-size: auto 100%;
    background-position: center;
    margin-top: -200px;
}

.kamome-01 {
    width: 200px;
    aspect-ratio: 7/4;
    position: absolute;
    top: 420px;
    left: 50px;
    rotate: 10deg;
    animation: up-down 5s linear infinite;
}

.kamome-02 {
    width: 150px;
    aspect-ratio: 7/4;
    position: absolute;
    top: 450px;
    right: 100px;
    rotate: 10deg;
    animation: up-down 4s linear infinite;
}

.wave {
    position: absolute;
    width: 100%;
    bottom: 100px;
    left: 0;
    z-index: -1;
}

.swiper .swiper-wrapper {
    transition-timing-function: linear;
}




#concept {
    padding-top: 150px;
    background-image: url(../img/concept/sky.webp);
    background-size: 80%;
    background-position: top center;
    position: relative;
    margin-top: 20px;
}

.concept-cont {
    width: 90%;
    margin: 0 auto;
}

.concept-main,
.concept-sup {
    width: 65%;
}

.concept-main {
    margin-top: 30px;
    font-weight: bold;
}

.concept-sup {
    margin-top: 10px;
}

.concept-ttl {
    font-size: 1.75rem;
    margin-top: 80px;
    padding-top: 40px;
}

.concept-ttl span {
    font-size: 2.25rem;
    color: #07B94E;
    font-weight: bold;
}

.concept-wave {
    position: absolute;
    width: 100%;
    bottom: -150px;
    left: 0;
    z-index: -1;
}

.huwahuwa {
    width: 60%;
    margin: 150px 30px 90px auto;
    animation: up-down 7s linear infinite;
}








.model-ttl {
    width: fit-content;
    letter-spacing: 0.12em;
    margin: 250px auto 110px;
    color: #07B94E;
    padding-bottom: 5px;
    background-image: url(../img/line.svg);
    background-position: bottom center;
}

.model-cont {
    width: 80%;
    margin: 0 auto;
    max-width: 1024px;
}

.model-spot-img {
    display: none;
}

.model-desc {
    position: relative;
    display: flex;
    justify-content: space-between;
    background-image: url(../img/model/road-rev.webp);
    background-size: contain;
    background-position: center 80px;
    padding-bottom: 130px;
}

.model-desc.rev {
    flex-direction: row-reverse;
    background-image: url(../img/model/road.webp);
    padding-bottom: 80px;
    margin-bottom: 60px;
}

.start {
    position: relative;
}

.start::before {
    content: "";
    display: block;
    width: 200px;
    aspect-ratio: 200/120;
    background-image: url(../img/model/model-start.svg);
    background-size: cover;
    position: absolute;
    top: -100px;
    left: -80px;
}

.model-left {
    position: relative;
    width: 45%;
}

.model-right {
    width: 45%;
    position: relative;
}

.model-right img {
    transform: rotate(3deg);
}

.model-right.rev img {
    transform: rotate(-3deg);
}

.model-right::before {
    content: "";
    display: block;
    position: absolute;
    width: 40px;
    aspect-ratio: 1/1;
    background-image: url(../img/model/photo-pickup.svg);
    top: -50px;
    left: -30px;
}

.model-right.rev::before {
    content: "";
    display: block;
    position: absolute;
    width: 40px;
    aspect-ratio: 1/1;
    background-image: url(../img/model/photo-pickup-rev.svg);
    top: -53px;
    left: auto;
    right: -35px;
}

.chack-img::before {
    content: "";
    display: block;
    position: absolute;
    width: 40px;
    aspect-ratio: 1/1;
    background-image: url(../img/model/photo-pickup-rev.svg);
    top: 10px;
    right: -45px;
}

.chack-img.rev::before {
    background-image: url(../img/model/photo-pickup.svg);
    right: auto;
    left: -40px;
}

.model-cont-ttl {
    font-size: 1.5rem;
    width: fit-content;
    color: #07B94E;
    background-color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.15);
}

.lunch,
.goal {
    width: 80%;
    max-width: 1024px;
    margin: 60px auto 0;
    position: relative;
    padding-bottom: 60px;
}

.model-item {
    text-align: center;
    border-top: 10px solid #3CC5CE;
    background-image: url(../img/model/model-item-line.svg);
    background-position: bottom;
    padding: 20px 0 30px;
    margin-bottom: 150px;
}

.model-item-ttl {
    font-family: "Holtwood One SC", serif;
    font-size: 2rem;
    color: #07B94E;
}


.model-sup {
    padding: 20px;
    margin-top: 20px;
    line-height: 1.7;
    position: relative;
}

.model-sup::after {
    display: block;
    content: "";
    width: 70px;
    aspect-ratio: 1/1;
    background-image: url(../img/model/model-sup-line.webp);
    background-size: cover;
    position: absolute;
    top: -10px;
    left: -10px;
}

.model-sup::before {
    display: block;
    content: "";
    width: 70px;
    aspect-ratio: 1/1;
    background-image: url(../img/model/model-sup-line-rev.webp);
    background-size: cover;
    position: absolute;
    bottom: -10px;
    right: 0;
}

.point-name {
    display: flex;
    align-items: center;
    gap: 30px;
}

.point {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 80px;
    aspect-ratio: 1/1;
    background-color: #fff;
    border: 4px solid #f2b705;
    border-radius: 50%;
    font-size: 2rem;
    color: #f2b705;
}

.model-time {
    width: fit-content;
    position: absolute;
    bottom: 24%;
    right: 28%;
    display: flex;
    z-index: 1;
}

.model-time.rev {
    left: 20%;
    bottom: 15%;
}

.walk,
.bicycle {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    aspect-ratio: 1/1;
    border: 3px solid #fff;
    border-radius: 50%;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.15);
    color: #fff;
}

.walk {
    background-color: #3CC5CE;
}

.bicycle {
    background-color: #07B94E;
    position: absolute;
    right: -80px;
}

.cat-img {
    width: 150px;
    position: absolute;
    bottom: 70px;
    left: 28%;
    z-index: -2;
}

.chackpoint {
    width: 80%;
    margin: 50px auto 0;
    transform: rotate(-3deg) translateX(-20px);
    letter-spacing: 0.1rem;
}

.chackpoint.rev {
    top: -100px;
    left: auto;
    right: 50px;
    transform: rotate(3deg);
}

.chack-ttl {
    position: relative;
    display: flex;
    width: fit-content;
    line-height: 1.5;
    font-size: 1.5rem;
    font-family: "Holtwood One SC", serif;
    font-weight: bold;
    color: #f2b705;
    border-bottom: 4px solid #f2b705;
    margin: 0 auto 15px;
}

.chack-ttl::before {
    content: "";
    display: block;
    width: 30px;
    aspect-ratio: 1/1;
    margin-right: 5px;
    position: relative;
    background-image: url(../img/model/musimegane.svg);
}

.chack-sup {
    position: absolute;
    bottom: 20px;
    left: -40px;
    color: #07B94E;
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
}

.chack-sup.rev {
    left: auto;
    right: -20px;
}

.chack-sup span {
    display: inline-block;
    padding: 0 5px;
    background-color: #fff;
    margin-bottom: 5px;
    border-radius: 5px;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.15);
}

.model-right.sub {
    z-index: 2;
}

.model-right-sub {
    width: 50%;
    margin-top: -60px;
    margin-left: -40px;
    transform: rotate(-8deg);
}

.model-right-sub::before {
    content: "";
    display: block;
    position: absolute;
    width: 30px;
    aspect-ratio: 1/1;
    background-image: url(../img/model/photo-pickup.svg);
    top: -35px;
    left: -25px;
}

.chackpoint.sub {
    top: -50px;
    left: 0;
}

/* sp */
#special {
    overflow: hidden;
}

.sp-bg {
    position: relative;
    z-index: -1;
    background-color: #B1E8EB;
    padding-bottom: 200px;
}

.sp-consept {
    position: relative;
}

.sp-consept.next {
    margin-top: 100px;
}

.sp-sup {
    position: relative;
    top: 80px;
    left: 0;
    width: fit-content;
    padding: 150px;
    background-image: url(../img/sp/sp-concept-bg.svg);
    background-size: 100% 100%;
    z-index: 2;
}

.sp-sup.rev {
    top: 200px;
    left: auto;
    margin: 0 0px 0 auto;
}

.sp-cont-ttl {
    width: fit-content;
    font-size: 1.75rem;
    color: #07B94E;
    padding-bottom: 6px;
    background-image: url(../img/line.svg);
    background-position: bottom center;
}

.sp-sup p {
    padding-top: 20px;
    line-height: 250%;
}

.sp-island-01 {
    position: absolute;
    top: 140px;
    right: -10%;
    width: 70%;
    max-width: 1100px;
    animation: rotate 150s linear infinite;
}

.island-01-slider {
    position: absolute;
    top: -40px;
}

.island-01-slider img {
    width: 100%;
    aspect-ratio: 16/11;
    object-fit: cover;
}


.sp-island-02 {
    position: absolute;
    top: 100px;
    left: -20%;
    width: 80%;
    max-width: 1400px;
    animation: rotate 150s linear infinite;
}

.island-02-slider {
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translate(-50%);
    width: 100%;
}

.island-02-slider .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.island-02-slider img {
    width: 80%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

#special .kamome-02 {
    width: 190px;
    top: auto;
    bottom: 40px;
    right: 220px;
}




.acs-ttl .cont-ttl {
    font-size: 5rem;
}

.acs-cont {
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 50px;
    position: relative;
    z-index: 2;
    padding: 100px 0;
}

.acs-left {
    width: 50%;
}

.acs-left iframe {
    width: 100%;
    aspect-ratio: 6/3;
    border-radius: 100px;
    border: 10px solid #f1f1f1;
}

.acs-right {
    width: 30%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.acs-sub-ttl {
    font-size: 2rem;
    color: #F2B705;
    font-family: "Holtwood One SC", serif;
    width: fit-content;
    letter-spacing: 0.12em;
    background-image: url(../img/white-line.svg);
    background-position: bottom center;
    line-height: 1.4;
}

.acs-right h3 {
    color: #07B94E;
    font-weight: bold;
    margin-bottom: 10px;
    margin-top: 10px;
    font-size: 1.5rem;
    padding: 0 0.5em;
    border-left: solid 5px #07B94E;
}

.acs-right address {
    margin-bottom: 10px;
}

.acs-right a {
    font-weight: bold;
}

footer {
    background-image: url(../img/footer-bg.svg);
    background-size: cover;
}

.footer-menu {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 100px;
    margin: 0 auto;
}

.footer-menu li a {
    display: inline-block;
    color: #fff;
    padding: 5px;
    border-radius: 10px;
    font-size: 1.25rem;
    transition: color 0.6s ease, background-color 0.6s ease;
}

.footer-menu li a:hover {
    color: #07B94E;
    background-color: #ffffffdb;
}


@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes up-down {
    0% {
        transform: translate(0, 0);
    }

    25% {
        transform: translate(8px, -15px);
    }

    50% {
        transform: translate(0, -40px);
    }

    75% {
        transform: translate(-8px, -15px);
    }

    100% {
        transform: translate(0, 0);
    }
}

@media (max-width: 1280px) {
    .welcome {
        font-size: 3.5rem;
        padding: 80px 0;
        margin-top: -180px;
    }

    .map-left {
        width: 35%;
    }

    .acs-ttl .cont-ttl {
        font-size: 4rem;
    }

    .huwahuwa {
        margin-top: 100px;
    }
}

@media (max-width: 1024px) {

    .sp-ttl,
    .acs-ttl {
        padding: 100px 0;
    }


    .cont-ttl {
        font-size: 2.5rem;
    }

    /* top */

    .welcome {
        font-size: 3rem;
    }

    .kamome-01 {
        width: 120px;
        top: 350px;
        left: 30px;
    }

    .kamome-02 {
        width: 80px;
        top: 380px;
        right: 40px;
    }

    /* concept */
    .concept-ttl {
        font-size: 1.5rem;
        margin-top: 0;
    }

    .concept-ttl span {
        font-size: 2rem;
        margin-right: 3px;
    }

    .concept-main,
    .concept-sup {
        width: 85%;
    }

    .concept-main {
        margin-top: 10px;
    }


    /* model */
    .map-model {
        padding: 20px 10px;
    }

    .map-ttl .cont-ttl {
        font-size: 1.5rem;
    }

    .start::before {
        width: 130px;
        top: -60px;
        left: -60px;
    }

    .model-cont-ttl {
        font-size: 1.25rem;
    }

    .point {
        font-size: 1.5rem;
        width: 60px;
    }

    .chack-ttl {
        font-size: 1.25rem;
    }

    .chack-sup {
        font-size: 1rem;
        left: -30px;
    }


    .sp-consept.next {
        margin-top: 50px;
    }

    .sp-sup {
        top: 30px;
        background-size: 95% 100%;
        padding: 90px 120px;
    }

    .sp-sup.rev {
        top: 90px;
    }

    .sp-cont-ttl {
        font-size: 1.5rem;
    }

    .island-01-slider {
        position: absolute;
        top: -80px;
    }

    .sp-consept.next {
        margin-top: 0px;
    }

    .sp-island-02 {
        top: 50px;
        left: -40%;
        width: 110%;
    }

    .island-02-slider img {
        width: 90%;
    }

    #special .kamome-02 {
        width: 140px;
        bottom: 70px;
    }

    .acs-ttl .cont-ttl {
        font-size: 3rem;
    }

    .acs-right h3 {
        font-size: 1.25rem;
    }

}



@media screen and (max-width: 1024px) and (min-height: 900px) {
    .map-cont {
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .map-flex {
        height: 100%;
        flex-direction: column;
    }

    .map-right {
        width: 100%;
        height: 50%;
        min-height: unset;
    }

    .map-left {
        width: 100%;
        height: 50%;
    }

    .map-model {
        width: 90%;
    }

    .model-list {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .model-list-item {
        width: 50%;
    }

    .map-ttl {
        margin-bottom: 15px;
    }

    .model-list {
        gap: 15px;
    }
}


@media (max-width: 768px) {
    .hero {
        margin-top: 10px;
    }

    .island-cont {
        height: 50dvh;
    }

    .kamome-01 {
        top: 250px;
    }

    .kamome-02 {
        top: 300px;
    }

    .welcome {
        font-size: 2rem;
        padding: 60px 0;
        margin-top: -150px;
    }

    #concept {
        padding-top: 100px;
    }

    .concept-ttl {
        font-size: 1rem;
    }

    .concept-ttl span {
        font-size: 1.5rem;
    }

    .concept-wave {
        bottom: -80px;
    }

    .map-model {
        padding: 10px;
    }

    .map-ttl .cont-ttl {
        font-size: 1.25rem;
    }

    .map-ttl {
        margin-bottom: 5px;
    }

    .map-sub-ttl {
        font-size: 1rem;
    }

    .model-list {
        gap: 5px;
    }

    .arrow-img {
        width: 30px;
        margin-left: 5px;
    }

    .model-list-item {
        gap: 15px;
    }

    .list-ttl {
        font-size: 0.875rem;
    }

    .list-bike,
    .list-walk {
        line-height: 1;
    }

    .model-ttl {
        margin-top: 150px;
    }

    .start::before {
        left: -35px;
    }


    .model-cont {
        width: 90%;
    }

    .model-cont-ttl {
        padding: 10px;
        box-shadow: 0 2px 2px rgba(0, 0, 0, 0.15);
    }

    .point-name {
        gap: 15px;
    }

    .point {
        width: 50px;
    }

    .lunch,
    .goal {
        padding-bottom: 0px;
    }

    .sp-sup {
        padding: 90px 40px;
        left: 20px;
    }

    .sp-sup.rev {
        padding: 90px;
        right: -20px;
        top: 40px;
    }

    .sp-sup p {
        padding-top: 10px;
        line-height: 225%;
    }

    .sp-cont-ttl {
        font-size: 1.25rem;
    }

    .sp-island-01 {
        top: 100px;
        right: -20%;
        width: 85%;
    }

    .sp-island-02 {
        width: 120%;
        top: 40px;
        left: -50%;
    }

    .sp-consept.next {
        margin-top: 40px;
    }

    #special .kamome-02 {
        width: 100px;
        right: 120px;
    }

    .sp-bg {
        padding-bottom: 170px;
    }

    .island-02-slider img {
        width: 95%;
    }

    .acs-ttl .cont-ttl {
        font-size: 2.5rem;
    }

    .sp-ttl,
    .acs-ttl {
        padding: 70px 0;
    }

    .acs-left iframe {
        aspect-ratio: 1/1;
    }

    address {
        font-size: 0.875rem;
    }

    .acs-right {
        width: 37%;
    }

    .footer-menu {
        gap: 10px;
    }

    .footer-menu li a {
        font-size: 1rem;
    }
}

@media (max-width: 700px) {
    .map-cont {
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .map-flex {
        height: 100%;
        flex-direction: column;
    }

    .map-right {
        width: 100%;
        height: 50%;
        min-height: unset;
    }

    .map-left {
        width: 100%;
        height: 50%;
    }

    .map-model {
        width: 90%;
    }

    .model-list {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .model-list-item {
        width: 50%;
    }

    .map-ttl {
        margin-bottom: 15px;
    }

    .model-list {
        gap: 15px;
    }
}


@media (max-width: 560px) {

    .drawer-btn {
        width: 50px;
        top: 20px;
        right: 20px;
    }

    .drawer-btn>span {
        width: 30px;
        right: -5px;
    }

    .drawer-btn>span:first-child {
        transform: translate(-50%, calc(-50% - .3rem));
    }


    .drawer-btn>span:last-child {
        transform: translate(-50%, calc(-50% + .3rem));
    }

    .drawer-nav {
        width: 250px;
        top: 50px;
        right: 10px;
        box-shadow: 0 2px 2px rgba(0, 0, 0, 0.15);
    }

    .drawer-nav-inner::after {
        width: 250px;
        bottom: -80px;
        left: 0px;
        rotate: -12deg;
    }

    .drawer-nav-menu {
        gap: 10px;
    }

    .drawer-nav-item {
        padding-left: 10px;
        display: flex;
        gap: 10px;
    }

    .drawer-nav-item a {
        font-size: 1rem;
    }

    .sp-ttl,
    .acs-ttl {
        padding: 50px 0;
    }

    .map-left {
        background-position:
            left -80px top -90px,
            right 0px bottom -40px;
        background-size:
            220px auto,
            250px auto;
    }

    .list-time {
        gap: 0;
    }

    .time-item {
        gap: 5px;
    }

    .model-list-item {
        gap: 5px;
    }

    .map-point {
        width: 28px;
    }

    #top {
        overflow-x: hidden;
    }

    .island-cont {
        height: 70svh;
    }

    .top-island {
        position: relative;
        top: 30px;
        left: -25%;
        width: 150%;
    }

    .wave {
        bottom: 25%;
        width: 150%;
    }

    .kamome-01 {
        width: 50px;
        top: 100px;
        left: 3px;
    }

    .kamome-02 {
        width: 40px;
        top: 110px;
        right: 20px;
    }

    .welcome {
        padding: 40px 0;
        font-size: 1.5rem;
        margin-top: -90px;
    }

    .hero {
        display: none;
    }

    .hero-sp {
        display: block;
        width: 100%;
        position: relative;
        top: -20px;
    }

    .garland {
        display: none;
    }

    .garland-sp {
        display: block;
        width: 100%;
        position: absolute;
        top: 0;
        opacity: .7;
    }

    #concept {
        padding-top: 50px;
    }

    .concept-main,
    .concept-sup {
        width: 100%;
        margin-top: 20px;
    }

    .concept-main,
    .concept-sup {
        font-size: 0.875rem;
    }

    .concept-wave {
        bottom: -40px;
    }

    .model-ttl {
        margin: 90px auto;
    }

    .cont-ttl {
        font-size: 1.75rem;
    }

    .map-btn {
        bottom: 10px;
        right: 10px;
        width: 120px;
    }

    .close-btn {
        width: 40px;
        bottom: 30px;
        right: 50px;
    }

    .close-btn>span {
        width: 20px;
    }

    .map {
        width: 90px;
    }

    .map-model {
        width: 100%;
    }

    .model-desc,
    .model-desc.rev {
        padding-bottom: 220px;
        background-position: center bottom;
    }

    .model-right {
        display: none;
    }

    .model-spot-img {
        display: block;
        margin-top: 20px;
    }

    .model-left,
    .model-right {
        width: 90%;
        margin: 0 auto;
    }

    .start::before {
        width: 100px;
        top: -50px;
        left: -30px;
    }

    .chackpoint,
    .chackpoint.rev {
        width: 100%;
        margin-top: 20px;
        transform: translateX(0px);
    }

    .chack-sup {
        left: auto;
        right: 15px;
    }

    .chack-img::before,
    .chack-img.rev::before {
        display: none;
    }

    .model-time {
        bottom: 50px;
        left: 25%;
    }

    .model-time.rev {
        bottom: 0;
        left: 45%;
    }

    .model-item {
        margin-bottom: 50px;
    }

    .sp-bg {
        padding-bottom: 300px;
    }

    .sp-sup {
        width: 100%;
        aspect-ratio: 7/4;
        padding: 10px 0;
        padding-left: 15%;
        left: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        background-image: url(../img/sp/sp-concept-sp.webp);
    }

    .sp-sup.rev {
        padding: 0;
        padding-left: 18%;
    }

    .island-01-slider {
        top: 220px;
    }

    .sp-island-01 {
        top: 280px;
        right: -50%;
        width: 140%;
    }

    .sp-consept.next {
        margin-top: 370px;
    }

    .island-02-slider {
        top: 140px
    }

    .island-02-slider img {
        aspect-ratio: 4/3;
    }

    .sp-island-02 {
        top: 280px;
        left: -30%;
    }

    #special .kamome-02 {
        width: 70px;
        right: 60px;
        bottom: 40px;
    }

    .acs-cont {
        flex-direction: column;
        padding-top: 40px;
    }


    .acs-ttl .cont-ttl {
        font-size: 1.75rem;
    }

    .acs-left,
    .acs-right {
        width: 90%;
        margin: 0 auto;
    }

    .acs-right {
        width: 70%;
    }

    .acs-sub-ttl {
        font-size: 1.75rem;
    }

    footer {
        background-image: url(../img/footer-bg-sp.svg);
        background-position: top center;
    }

    .footer-menu {
        flex-direction: column;
        gap: 15px;
        padding: 50px 100px;
    }

    .footer-menu li:first-child {
        margin-top: 30px;
    }

    .footer-menu li {
        width: fit-content;
        position: relative;
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-menu li a {
        font-size: 1.25rem;
    }
}

@media (max-width: 490px) {

    .sp-cont-ttl {
        font-size: 1.2rem;
    }

    .sp-sup p {
        font-size: 0.875rem;
        line-height: 2;
    }
}

@media (max-width: 375px) {
    .wave {
        bottom: 35%;
    }
}