@charset "utf-8";

@media (min-width: 768px) {
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
}

img {
    width: 100%;
    vertical-align: bottom;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

/* header */

header {
    width: 100%;
    height: 100px;
    background-color: #003b73;
    display: flex;
    justify-content: space-between;
    position: fixed;
    z-index: 1111111;
}

header h1 img {
    width: 150px;
}

.sp-header {
    position: sticky;
    width: 100%;
    height: 100px;
    background-color: #003b73;
    display: flex;
    justify-content: space-between;
    z-index: 9999;
    transition: 0.6s;
    border-bottom: #ffffff39 solid 1px;
}

/* ham */

.ham {
    width: 50px;
    height: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    position: fixed;
    top: 30px;
    right: 10px;
    z-index: 1000000;
}

.ham span {
    width: 100%;
    height: 5px;
    background-color: rgb(255, 255, 255);
    display: block;
    transition: 0.7s;
}

.ham.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.ham.active span:nth-child(2) {
    transform: translateY(-8px) rotate(-45deg);
}
.sp-nav {
    width: 100%;
    height: 100vh;
    background-color: #003b73;
    position: fixed;
    top: 100px;
    left: 0;
    display: flex;
    z-index: -1;
    opacity: 0;
    transition: 0.7s;
    pointer-events: none;
    display: block;
    background-attachment: fixed;
}

.sp-nav ul {
    list-style: none;
    padding: 0 20px;
}

.sp-nav ul li {
    border-bottom: 1px solid rgba(255, 253, 253, 0.656);
}

.sp-nav ul li:hover {
    background-color: #e2e4e63a;
}

.sp-nav ul li a {
    color: #ffffff;
}

.sp-nav ul li {
    padding: 20px;
    font-size: 1em;
}

.sp-nav.active {
    opacity: 1;
    z-index: 100000000;
    pointer-events: all;
}

.pc-nav {
    display: none;
    width: 100%;
}
.pc-nav ul {
    display: flex;
}

.pc-nav ul li {
    border-left: 1px solid rgb(151, 162, 211);
    padding: 0 15px;
}
.pc-nav ul li a {
    color: #ffffff;
    font-size: 0.9em;
}

.pc-nav ul li:first-child {
    border-left: none;
}

.PC-hero {
    display: none;
}

@media (min-width: 768px) {
    .PC-hero {
        display: block;
    }

    .sp-header {
        display: none;
    }
    .sp-nav {
        display: none;
    }
    .ham span {
        display: none;
    }

    .pc-nav {
        display: block;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    header {
        align-items: center;
    }
    .pc-nav ul li a {
        padding: 0 5px 5px;
    }

    .pc-nav ul li a:hover {
        background: linear-gradient(transparent 40%, #ffffff6d 70%);
        border-radius: 50%;
    }
}

/* hero */
.sp-img {
    padding-top: 100px;
    height: 195vw;
    object-fit: cover;
}

.pc-img {
    display: none;
}

@media (min-width: 768px) {
    .sp-img {
        display: none;
    }
    .pc-img {
        display: block;
        padding-top: 100px;
        object-fit: cover;

        height: 50vw;
    }
    .hero {
        position: relative;
        height: 103vh;
    }

    .hero svg {
        position: absolute;
        bottom: -5px;
    }
}

/* about */
main {
    background-color: #003b73;
    color: #ffffff;
}

.grd-1 {
    background: linear-gradient(0deg, #00aaff, #003b73);
}

.about h2 {
    font-size: 1.5em;
    font-weight: bold;
    border-bottom: #ffffff7f solid 1px;
    width: fit-content;
    margin: 40px auto 2px;
    padding: 0 30px;
}

.about h2::first-letter {
    font-size: 1.8em;
    color: #ede3be;
}

.about .about-2 {
    text-align: center;
    font-size: 0.8em;
    margin-bottom: 20px;
}

.about p {
    text-align: center;
    padding: 0 20px 20px;
    line-height: 1.7;
}

.syousai {
    position: relative;
}

.syousai .kawauso2 {
    width: 200px;
    position: relative;
    top: -7px;
}

.about {
    position: relative;
}

.sp-kirakira .kirakira {
    width: 10%;
    animation: kirakira 2.5s ease-in-out infinite alternate;
    position: absolute;
    left: 50px;
    top: 80px;
}

.sp-kirakira .kirakira2 {
    width: 20%;
    animation: kirakira2 4s ease-in-out infinite alternate;
    position: absolute;
    top: 440px;
    left: 30px;
}

.sp-kirakira .kirakira3 {
    width: 10%;
    animation: kirakira3 3s ease-in-out infinite alternate;
    position: absolute;
    left: 10px;
    top: 300px;
}

.sp-kirakira .kirakira4 {
    width: 10%;
    animation: kirakira4 2s ease-in-out infinite alternate;
    position: absolute;
    right: 50px;
    top: 50px;
}

.sp-kirakira .kirakira5 {
    width: 10%;
    animation: kirakira5 3.5s ease-in-out infinite alternate;
    position: absolute;
    right: 10px;
    top: 220px;
}

.sp-kirakira .kirakira6 {
    width: 10%;
    animation: kirakira6 4s ease-in-out infinite alternate;
    position: absolute;
    right: 60px;
    top: 500px;
}

@keyframes kirakira {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes kirakira2 {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes kirakira3 {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@keyframes kirakira4 {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes kirakira5 {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes kirakira6 {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@media (min-width: 768px) {
    .sp-kirakira {
        display: none;
    }

    .about p {
        font-size: 1.3em;
        opacity: 0.9;
        width: 800px;
        margin: 0 auto 20px;
        line-height: 2;
    }

    .about h2 {
        margin-top: 0;
    }

    .about-box-pc {
        margin-top: 250px;
    }

    .about-box-pc h3 {
        text-align: center;
        font-size: 2em;
    }

    .flex-about {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 100px;
    }

    .about-item {
        width: 35%;
    }

    .about-item .namber {
        left: 48%;
    }

    .about-item p {
        width: fit-content;
        padding: 0;
    }

    .about-box-pc .flex-about .about-item p {
        margin: 20px auto;
    }

    .about-box-pc .flex-about .about-item img {
        border-radius: 10px;
    }

    /* .about-box-pc .syousai {
        
        margin: 70px auto 0;
        padding: 10px 30px;
        background-color: #d6ebffd3;
        border-radius: 8px;
    } */

    .about-box-pc .syousai a {
        color: #274598;
        padding-top: 100px;

        margin: 70px auto 0;
        padding: 20px 120px;
        background-color: #d6ebffd3;
        border-radius: 8px;
    }

    .about-box-pc .syousai a:hover {
        color: white;
        background-color: #003b73;
    }
}

.sample {
    overflow: hidden;

    margin: 30px auto 0;
    width: 100%;
    height: 200px;
    background-color: #00aaff;
}

.sample svg use {
    fill: #003b73;
    animation: wave linear 4s infinite;
}

.sample svg use:nth-of-type(2),
.sample svg use:nth-of-type(3) {
    opacity: 0.2;
}

.sample svg use:nth-of-type(2) {
    animation-duration: 5s;
}

.sample svg use:nth-of-type(3) {
    animation-duration: 3s;
}

@keyframes wave {
    from {
        transform: translate(0);
    }
    to {
        transform: translate(-50%);
    }
}

.about-box {
    width: 100%;
}

.about-box h3 {
    width: fit-content;
    margin: 0 auto;
    padding: 10px 20px 8px;
    position: relative;
    background: linear-gradient(transparent 40%, #a7d6ff96 100%);
    border-radius: 50%;
}

.about-box img {
    width: 70%;
    display: block;
    margin: 0 auto;
    border-radius: 10px;
}

.about-item {
    position: relative;
    margin: 40px 0 0;
}

.about-item .namber {
    background-color: rgb(255, 255, 255);
    width: 0.1em;
    padding-right: 25px;
    padding-left: 15px;
    font-size: 1.2em;
    height: 2em;
    display: block;
    font-weight: bold;

    border-radius: 75%;
    position: absolute;
    left: 45%;
    top: -40px;
    color: #00aaff;
    text-shadow: #00d0ff81 2px 2px 0;
}

.about-item p {
    margin: 20px 0 0;
    text-shadow: #6adef981 2px 2px 0;
}

.about-box-pc {
    display: none;
}

@media (min-width: 768px) {
    .about-box-pc {
        display: block;
        padding-bottom: 200px;
    }

    .about-box {
        display: none;
    }

    .about-box-pc h3 {
        width: fit-content;
        margin: 50px auto;
        padding: 10px 20px 8px;
        position: relative;
        background: linear-gradient(transparent 40%, #a7d6ff96 100%);
        border-radius: 50%;
    }
}

.sample-1 {
    overflow: hidden;
    margin: 0 auto;
    width: 100%;
    height: 200px;
    background-color: #003b73;
}

.sample-1 svg use {
    fill: #00aaff;
    animation: wave linear 4s infinite;
}

.sample-1 svg use:nth-of-type(2),
.sample-1 svg use:nth-of-type(3) {
    opacity: 0.2;
}

.sample-1 svg use:nth-of-type(2) {
    animation-duration: 5s;
}

.sample-1 svg use:nth-of-type(3) {
    animation-duration: 3s;
}

@keyframes wave {
    from {
        transform: translateX(0);
    }
    to {
        transform: translate(-50%);
    }
}
.pc-wave {
    display: none;
}

.pc-wave2 {
    display: none;
}

@media (min-width: 768px) {
    .sample-1,
    .sample {
        display: none;
    }
    .pc-wave {
        display: block;
    }
    .pc-wave2 {
        display: block;
    }
}

.about-box a {
    background-color: rgba(251, 251, 130, 0.919);
    color: #ffffff;

    text-shadow: #429befc5 2px 2px 0;
    width: fit-content;
    padding: 10px 60px 15px 80px;
    border-radius: 20px;
}

.about-box a:hover {
    background-color: rgb(250, 173, 199);
}

.syousai {
    margin-top: 50px;
    padding-bottom: 50px;
    text-align: center;
}

/* gyally */

.slick-dots li button:before {
    font-size: 20px !important;
}

.slick-dots {
    bottom: -40px !important;
}

.slider {
    width: 90%;
    margin: 50px auto;
    font-size: 20px;
}

.slider img {
    height: 400px;
    width: 100%;
    object-fit: cover;
}

.gallery h2 {
    font-size: 2em;
    text-align: center;
}
.gallery h2::first-letter {
    font-size: 1.8em;
    color: #5de7ff;
}

.gallery-pc {
    display: none;
}

.osusume-pc {
    display: none;
}
.gallery {
    position: relative;
    padding-bottom: 300px;
}

.gallery .syoyaruzo2 {
    width: 200px;
    position: absolute;
    top: 630px;
}

.gallery .ikusikanai2 {
    position: absolute;
    width: 200px;
    right: 0;
    top: 730px;
}

@media (min-width: 768px) {
    .gallery-pc .syoyaruzo {
        width: 350px;
        position: absolute;
        top: 100px;
    }

    .gallery-pc .ikusikanai {
        position: absolute;
        width: 300px;
        right: 0;
        top: 450px;
    }

    .gallery {
        display: none;
    }

    .gallery-pc {
        display: block;
        position: relative;
    }
    .slider-for {
        width: 800px;
        margin: 80px auto 10px;
    }
    .slider-for img {
        height: 70vh;
    }

    .slider-nav {
        width: 70%;
        margin: 0 auto;
    }

    .slider-nav img {
        width: 100%;
        padding: 0 20px 0;
        object-fit: cover;
        height: 150px;
    }

    .slider-nav p {
        text-align: center;
        color: #89d2fabf;
        text-shadow: 1px 2px 3px #fbfbfbb0;
        padding-bottom: 5px;
    }

    .gallery-pc h2 {
        font-size: 2.5em;
        text-align: center;
    }

    .gallery-pc h2::first-letter {
        font-size: 2em;
        color: #5de7ff;
    }

    .gallery-pc .kirakira {
        width: 6%;
        animation: kirakira 3s ease-in-out infinite alternate;
        position: absolute;
        left: 100px;
        top: 300px;
    }
    .gallery-pc .kirakira2 {
        width: 6%;
        animation: kirakira2 2s ease-in-out infinite alternate;
        position: absolute;
        top: 650px;
        left: 50px;
    }

    @keyframes kirakira {
        0% {
            opacity: 0;
        }
        100% {
            opacity: 1;
        }
    }

    @keyframes kirakira2 {
        0% {
            opacity: 0;
        }
        100% {
            opacity: 1;
        }
    }
    .gallery-pc .kirakira3 {
        width: 3%;
        animation: kirakira3 3.5s ease-in-out infinite alternate;
        position: absolute;
        top: 500px;
        left: 250px;
    }

    @keyframes kirakira3 {
        0% {
            opacity: 1;
        }
        100% {
            opacity: 0;
        }
    }
    .gallery-pc .kirakira4 {
        width: 4%;
        animation: kirakira4 3s ease-in-out infinite alternate;
        position: absolute;
        top: 260px;
        right: 50px;
    }

    .gallery-pc .kirakira4 img {
        opacity: 0.8;
    }
    .gallery-pc .kirakira6 img {
        opacity: 0.6;
    }
    .gallery-pc .kirakira1 img {
        opacity: 0.7;
    }
    .gallery-pc .kirakira2 img {
        opacity: 0.8;
    }

    @keyframes kirakira4 {
        0% {
            opacity: 1;
        }
        100% {
            opacity: 0;
        }
    }
    .gallery-pc .kirakira5 {
        width: 6%;
        animation: kirakira4 4s ease-in-out infinite alternate;
        position: absolute;
        top: 350px;
        right: 250px;
    }

    @keyframes kirakira5 {
        0% {
            opacity: 0;
        }
        100% {
            opacity: 1;
        }
    }
    .gallery-pc .kirakira6 {
        width: 3%;
        animation: kirakira4 2.5s ease-in-out infinite alternate;
        position: absolute;
        top: 600px;
        right: 150px;
    }

    @keyframes kirakira6 {
        0% {
            opacity: 0;
        }
        100% {
            opacity: 1;
        }
    }

    .osusume-pc {
        background-color: #00aaff;
        width: 100%;
        height: 330px;
        position: relative;
    }

    .pc-wave svg {
        position: absolute;
        bottom: -1px;
    }

    .osusume-pc img {
        width: 500px;
        position: absolute;
        top: -250px;
    }

    .osusume-pc .kawauso {
        width: 400px;
        position: absolute;
        right: 0;
        top: -350px;
    }

    .osusume-pc {
        display: block;
    }
}

/* information */

.information-pc {
    display: none;
}

.info-wrap {
    width: 90%;
    margin: 0 auto;
    padding-top: 50px;
    padding-bottom: 50px;
    border-radius: 20px;
}

.information-sp h2 {
    margin: 100px 0 30px;
    font-size: 2em;
    text-align: center;
}

.information-sp h2::first-letter {
    font-size: 1.8em;
    color: #79fe6f;
}

.information-sp .sp-box1 {
    width: 80%;
    background-color: rgba(0, 255, 255, 0.484);
    margin: 0 auto 100px;
    text-align: center;
    border-radius: 70px 8px 8px 8px;
}

.information-sp .sp-box1 img {
    border-radius: 70px 8px 0 0;
}

.information-sp .sp-box1 h3 {
    padding: 20px;
    font-size: 1.4em;
}

.information-sp .sp-box1 p {
    padding-bottom: 20px;
}

.information-sp .sp-box2 {
    width: 80%;
    background-color: rgba(255, 192, 203, 0.753);
    margin: 0 auto;
    text-align: center;
    border-radius: 70px 8px 8px 8px;
    margin-bottom: 100px;
}

.information-sp .sp-box2 img {
    border-radius: 70px 8px 0 0;
}

.information-sp .sp-box2 h3 {
    padding: 20px;
    font-size: 1.4em;
}

.information-sp .sp-box2 p {
    padding-bottom: 20px;
}

.information-sp .sp-box3 {
    width: 80%;
    background-color: rgba(255, 255, 139, 0.645);
    margin: 0 auto;
    text-align: center;
    border-radius: 70px 8px 8px 8px;
    margin-bottom: 100px;
}

.information-sp .sp-box3 img {
    border-radius: 70px 8px 0 0;
}

.information-sp .sp-box3 h3 {
    padding: 20px;
    font-size: 1.4em;
}

.information-sp .sp-box3 p {
    padding-bottom: 20px;
}

.information-sp .sp-box4 {
    width: 80%;
    background-color: rgba(255, 126, 104, 0.86);
    margin: 0 auto;
    text-align: center;
    border-radius: 70px 8px 8px 8px;
    margin-bottom: 100px;
}

.information-sp .sp-box4 img {
    border-radius: 70px 8px 0 0;
}

.information-sp .sp-box4 h3 {
    padding: 20px;
    font-size: 1.4em;
}

.information-sp .sp-box4 p {
    padding-bottom: 20px;
}

.information-sp .sp-box4 a {
    color: white;
}

.information-sp .sp-box5 {
    width: 80%;
    background-color: rgba(232, 143, 248, 0.76);
    margin: 0 auto;
    text-align: center;
    border-radius: 70px 8px 8px 8px;
    margin-bottom: 100px;
}

.information-sp .sp-box5 img {
    border-radius: 70px 8px 0 0;
}

.information-sp .sp-box5 h3 {
    padding: 20px;
    font-size: 1.4em;
}

.information-sp .sp-box5 p {
    padding-bottom: 20px;
}

@media (min-width: 768px) {
    .information-sp {
        display: none;
    }

    .information-pc h2 {
        margin: 100px 0 30px;
        font-size: 2em;
        text-align: center;
    }

    .information-pc h2::first-letter {
        font-size: 1.8em;
        color: #79fe6f;
    }

    .information-pc .maru {
        width: 300px;
        height: 300px;
        border-radius: 50%;
    }

    .information-pc .maru h3 {
        text-align: center;
        font-size: 1.6em;
        padding-top: 80px;
    }

    .information-pc .maru p {
        text-align: center;
        padding: 20px;
        font-size: 1.2em;
    }

    .information-pc {
        width: 90%;
        margin: 0 auto;
        position: relative;
        height: 100vh;
        display: block;
    }

    .frog2 {
        transform-origin: center bottom;
        animation: yurayura 3s linear infinite;
        width: 150px;
        position: absolute;
        left: 0px;
        bottom: 70px;
    }

    .frog3 {
        transform-origin: center bottom;
        animation: yurayura 3s linear infinite;
        width: 150px;
        position: absolute;
        right: 0;
        bottom: 70px;
    }

    .information-pc .maru1 {
        position: absolute;
        top: 120px;
        left: 0;
        background-color: rgb(145, 186, 255);
          background-position: right;
    }

    .information-pc .maru1:hover {
        background: url(../img/kura.jpg);
        background-size: cover;
        background-repeat: no-repeat;
        background-color: rgba(0, 255, 255, 0.484);
        color: #00000000;
    }

    .information-pc .maru2 {
        position: absolute;
        left: 240px;
        top: 350px;
        background-color: pink;
          background-position: right;
    }

    .information-pc .maru2:hover {
        background: url(../img/samemappinng.jpg);
        background-size: cover;
        background-repeat: no-repeat;

        color: #00000000;
    }

    .information-pc .maru3 {
        position: absolute;
        right: 0;
        left: 0;
        margin: auto;
        background-color: rgb(220, 220, 132);
          background-position: right;
    }

    .information-pc .maru3:hover {
        background: url(../img/japan.jpg);
        background-size: cover;
        background-repeat: no-repeat;
        color: #00000000;
    }

    .information-pc .maru4 {
        position: absolute;
        top: 350px;
        right: 235px;
        background-color: rgb(254, 108, 82);
    }

    .information-pc .maru4:hover {
        background: url(../img/cafe.jpg);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: right;
        color: #00000000;
    }

    .information-pc .maru5 {
        position: absolute;
        right: 0;
        background-color: rgb(232, 143, 248);
    }

    .information-pc .maru5:hover {
        background: url(../img/omiyage.jpg);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: right;
        color: #00000000;
    }

    .information-pc .maru4 a {
        color: white;
    }

    .information-pc .maru4 a:hover{
        color: #00000000;
        
    }
}

/* EVENT */

.EVENT h2 {
    text-align: center;
    font-size: 2em;
    margin-bottom: 20px;
    margin-top: 30px;
}

.EVENT h2::first-letter {
    font-size: 1.8em;
    color: orange;
}

.EVENT dl {
    background-color: #ffffffb4;
    width: 85%;
    margin: 0 auto;
    border-radius: 8px;
    padding: 15px;
    color: #253050;
    position: relative;
}
.EVENT dl dt {
    font-size: 15px;
}

.EVENT dl dd {
    border-bottom: 1px dashed gray;
    padding-bottom: 10px;
    font-size: 14px;
}

.EVENT dl dd:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.EVENT span {
    width: fit-content;
    background-color: rgb(120, 171, 230);
    padding: 5px 10px;
    font-size: 0.7em;
    border-radius: 10px;
    margin-right: 10px;
    color: #ffffff;
}

.EVENT dl .new {
    background-color: rgb(210, 210, 125);
    padding: 5px 15px;
}

.frog {
    transform-origin: center bottom;
    animation: yurayura 2s linear infinite;
    width: 70px;
    position: absolute;
    right: 15px;
    bottom: -10px;
}

@keyframes yurayura {
    0%,
    100% {
        transform: rotate(10deg);
    }
    50% {
        transform: rotate(-10deg);
    }
}

.EVENT a {
    color: #4873df;
    width: fit-content;

    padding: 15px 100px;
    background-color: #d6ebffe4;
    border-radius: 8px;
    display: block;
    margin: 30px auto 100px;
    font-weight: bold;
}

.EVENT a:hover {
    color: white;
    background-color: #9bcfff;
}

.EVENT-pc {
    display: none;
}

@media (min-width: 768px) {
    .EVENT {
        display: none;
    }

    .EVENT-pc {
        display: block;
    }

    .EVENT-pc h2 {
        text-align: center;
        font-size: 2em;
        margin-bottom: 20px;
        margin-top: 30px;
    }

    .EVENT-pc h2::first-letter {
        font-size: 1.8em;
        color: orange;
    }

    .EVENT-pc dl dt {
        font-size: 17px;
    }

    .EVENT-pc dl dd {
        border-bottom: 1px dashed gray;
        padding-bottom: 10px;
        font-size: 16px;
        padding-top: 10px;
    }

    .EVENT-pc dl dd:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .EVENT-pc span {
        width: fit-content;
        background-color: rgb(120, 171, 230);
        padding: 5px 10px;
        font-size: 0.8em;
        border-radius: 10px;
        margin-right: 10px;
        color: #ffffff;
    }

    .EVENT-pc dl .new {
        background-color: rgb(210, 210, 125);
        padding: 5px 15px;
    }

    .EVENT-pc dl {
        background-color: #ffffffbd;
        width: 50%;
        margin: 0 auto 50px;
        border-radius: 8px;
        padding: 20px;
        color: #253050;
        position: relative;
    }

    .frog {
        transform-origin: center bottom;
        animation: yurayura 2s linear infinite;
        width: 150px;
        position: absolute;
        right: 15px;
        bottom: -10px;
    }

    .EVENT-pc {
        width: 100%;
        background: url(../img/PChero.jpg);
        background-size: cover;
        background-attachment: fixed;
    }
    .pc-iruka img {
        width: 600px;
        position: relative;
    }

    .access-nami {
        position: absolute;
    }

    .access-nami {
        background-color: #003b73;
        z-index: 111111;
    }

    .pc-wave2 {
        position: relative;
        bottom: -10px;
    }

    .EVENT-pc a {
        color: #1a566b;
        width: fit-content;

        padding: 20px 150px;
        background-color: #9ef9f9c8;
        border-radius: 8px;
        display: block;
        margin: 30px auto 100px;
        font-weight: bold;
        font-size: 19px;
    }
}
.EVENT-pc a:hover {
    color: #d4ebf6;
    background-color: #003b73c3;
}
/* ACCESS */
.ACCESS {
    background: linear-gradient(0deg, #66ccff, #00aaff);
    padding-bottom: 20px;
    width: 100%;
    margin: 0 auto;
    z-index: 2000;
}

.ACCESS h2 {
    padding-top: 50px;
    text-align: center;
}

.ACCESS h2::first-letter {
    font-size: 1.8em;
    color: #e9f087;
}

.ACCESS .map {
    text-align: center;
    margin: 30px 0;
}

.ACCESS .map-ad {
    width: 320px;
    margin: 0 auto;
}

.ACCESS .map-ad p {
    margin-bottom: 30px;
}

.access-flex .maru-box {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #87d4fb;
    position: relative;
    text-align: center;
}

.access-flex {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
}

.access-flex .maru-item {
    width: 70%;
    padding-top: 10px;
    padding-right: 10px;
}

.maru-box p {
    display: block;
    position: absolute;

    top: 30px;
    right: 0;
    left: 0;
    margin: auto;
}

.maru-item a {
    color: rgb(255, 235, 83);
}

.map-pc {
    display: none;
}

.pc-nami {
    display: none;
}

.pc-table {
    display: none;
}

.pc-table-box {
    display: none;
}

@media (min-width: 768px) {
    .map-pc {
        display: block;
    }

    .map-flex {
        display: flex;
        width: 90%;
        margin: 0 auto;
    }
    .ACCESS .map {
        display: none;
    }

    .sp-nami {
        display: none;
    }
    .pc-nami {
        display: block;
    }

    .access-flex .maru-item {
        width: 70%;
        padding-top: 10px;
        padding-right: 10px;
    }

    .ACCESS .map-ad {
        width: 40%;
        margin: 0 auto;
    }

    .ACCESS .map-ad p {
        margin: 15px 10px;
    }

    .access-flex .maru-box {
        width: 100px;
        height: 100px;
        border-radius: 50%;
        background-color: #87d4fb;
        position: relative;
        text-align: center;
    }

    .maru-box p {
        display: block;
        position: absolute;

        top: 25px;
        right: 0;
        left: 0;
        margin: auto;
        padding: 0;
    }

    .pc-table {
        display: block;
        border-collapse: collapse;
    }

    .pc-table th,
    td {
        border: #ffffff 1px solid;
        padding: 5px 40px;
        font-size: 1.1em;
        text-align: center;
    }

    .pc-table th {
        padding: 5px 60px;
    }

    .maru-item {
        display: none;
    }

    .access-flex {
        margin-top: 40px;
        display: flex;
        justify-content: space-around;
        align-items: center;
        margin-bottom: 50px;
    }

    .pc-table-box {
        display: block;
    }

    .ACCESS h2 {
        padding-top: 0;
        padding-bottom: 50px;
        text-align: center;
        font-size: 1.8em;
    }

    .ACCESS h2::first-letter {
        font-size: 2em;
        color: #e9f087;
    }
}

/* toppage */

.top-page {
    width: 100px;
    position: fixed;
    bottom: 10px;
    right: 0;
}

.top-page a {
    color: #ffffff;
    font-weight: bold;
    font-size: 0.8em;
}

/* footer */

footer .footer-top p {
    color: wheat;
    font-size: 0.8em;
}

footer .footer-top {
    text-align: center;
    background-color: #66ccff;
    padding-top: 20px;
    padding-bottom: 30px;
}

footer .footer-top a {
    color: #ffffff;

    font-size: 2em;
}

.footer-center {
    padding-top: 20px;
    display: flex;
    background-color: #66ccff;
    justify-content: center;
    padding-bottom: 20px;
}

.footer-center img {
    width: 140px;
    object-fit: contain;
}

.footer-center a {
    color: #ffffff;

    font-size: 0.7em;
}

.footer-center ul li {
    border-left: 1px solid white;
    border-right: 1px solid white;
    padding: 0 10px;
    margin-bottom: 10px;
    font-size: 0.7em;
}

.footer-center ul li:nth-child(3) {
    border-left: none;
}
.footer-center ul li:nth-child(2) {
    border-left: none;
}

.footer-center ul {
    display: flex;
    flex-wrap: wrap;
    width: 280px;
}

footer .footer-bottom {
    text-align: center;

    background-color: #66ccff;
    color: #ffffff;
}

footer .footer-bottom p {
    border-top: 1px solid white;
    width: 95%;
    margin: 0 auto;
    font-size: 0.5em;
    padding: 5px 0;
}

@media (min-width: 768px) {
    .top-page {
        width: 150px;
    }

    .top-page a {
        color: #ffffff;
        font-weight: bold;
        font-size: 1.2em;
    }
    footer .footer-top a {
        font-size: 4.5em;
        padding-bottom: 20px;
    }

    footer .footer-top p {
        color: wheat;
        font-size: 1.3em;
        padding-top: 50px;
        padding-bottom: 20px;
        font-weight: bold;
    }

    .footer-center img {
        width: 300px;
    }

    .footer-center a {
        color: #ffffff;

        font-size: 1.5em;
    }

    .footer-center ul li {
        margin: 10px 0 30px;
        padding: 5px 15px 0;
        display: inline-block;
    }

    .footer-center ul {
        width: 500px;
        padding-left: 50px;
        padding-top: 30px;
    }

    footer .footer-bottom {
        text-align: center;

        background-color: #66ccff;
        color: #ffffff;
    }

    footer .footer-bottom p {
        border-top: 1px solid white;
        width: 95%;
        margin: 0 auto;
        font-size: 1em;
        padding: 10px 0;
    }
}

/*===========
inview
===========*/

.box-2 img {
    border-radius: 50%;
}

.box-2 {
    width: 80%;
    margin: 10vh 0;
    transition: 4s;
    transform: translateX(-180px);
    opacity: 0;
}

.slide-in {
    transform: translateX(40px);
    opacity: 1;
}

.box-pc-2 {
    display: none;
}

.box-pc {
    display: none;
}
.box-pc-3 {
    display: none;
}

.sp-box1 {
    transition: 1s;
    transform: translateX(-180px);
    opacity: 0;
}

.slide-in-sp-box1 {
    transform: translateX(0px);
    opacity: 1;
    box-shadow: 10px 10px 15px -10px;
}

.sp-box2 {
    transition: 1s;
    transform: translateX(-180px);
    opacity: 0;
}

.slide-in-sp-box2 {
    transform: translateX(0px);
    opacity: 1;
    box-shadow: 10px 10px 15px -10px;
}

.sp-box3 {
    transition: 1s;
    transform: translateX(-180px);
    opacity: 0;
}

.slide-in-sp-box3 {
    transform: translateX(0px);
    opacity: 1;
    box-shadow: 10px 10px 15px -10px;
}

.sp-box4 {
    transition: 1s;
    transform: translateX(-180px);
    opacity: 0;
}

.slide-in-sp-box4 {
    transform: translateX(0px);
    opacity: 1;
    box-shadow: 10px 10px 15px -10px;
}

.sp-box5 {
    transition: 1s;
    transform: translateX(-180px);
    opacity: 0;
}

.slide-in-sp-box5 {
    transform: translateX(0px);
    opacity: 1;
    box-shadow: 10px 10px 15px -10px;
}

.sllid-p {
    transition: 1.5s;
    transform: translateX(0px);
    opacity: 0;
}

.slide-in-sllid-p {
    transform: translateX(0px);
    opacity: 1;
}

@media (min-width: 768px) {
    .box-2,
    .slide-in {
        display: none;
    }
    .box-pc-2 {
        display: block;
        width: 25%;
    }
    .about {
        position: relative;
    }

    .box-pc {
        display: block;
        width: 25%;
        transition: 1s;
        transform: translateX(-180px);
        opacity: 0;
    }
    .box-pc img {
        border-radius: 50%;
        box-shadow: 0 0 15px 5px #efefff9c;
    }

    .slide-in-pc {
        transform: translateX(40px);
        opacity: 0.8;
        position: absolute;
        top: 30px;
    }

    .box-pc-2 {
        display: block;
        width: 25%;
        transition: 2s;
        transform: translateX(180px);
        opacity: 0;
    }
    .box-pc-2 img {
        border-radius: 50%;
        box-shadow: 0 0 15px 5px #afb1f09c;
    }

    .slide-in-pc-2 {
        transform: translateX(-40px);
        opacity: 0.8;
        position: absolute;
        top: 250px;
        right: 0;
    }

    .box-pc-3 {
        display: block;
        width: 25%;
        transition: 4s;
        transform: translateX(-180px);
        opacity: 0;
    }
    .box-pc-3 img {
        border-radius: 50%;
        box-shadow: 0 0 15px 5px #dac0f79c;
    }

    .slide-in-pc-3 {
        transform: translateX(40px);
        opacity: 0.8;
        position: absolute;
        top: 620px;
    }

    .maru1 {
        transition: 2s;
        transform: translateX(0px);
        opacity: 0;
    }

    .slide-in-maru1 {
        transform: translateX(0px);
        opacity: 1;
    }

    .maru2 {
        transition: 3s;
        transform: translateX(0px);
        opacity: 0;
    }

    .slide-in-maru2 {
        transform: translateX(0px);
        opacity: 1;
    }

    .maru3 {
        transition: 2s;
        transform: translateX(0px);
        opacity: 0;
    }

    .slide-in-maru3 {
        transform: translateX(0px);
        opacity: 1;
    }

    .maru4 {
        transition: 3s;
        transform: translateX(0px);
        opacity: 0;
    }

    .slide-in-maru4 {
        transform: translateX(0px);
        opacity: 1;
    }

    .maru5 {
        transition: 2s;
        transform: translateX(0px);
        opacity: 0;
    }

    .slide-in-maru5 {
        transform: translateX(0px);
        opacity: 1;
    }

    .kawauso {
        transition: 3s;
        transform: translateY(150px);
        opacity: 0;
    }

    .slide-in-kawauso {
        transform: translateY(0px);
        opacity: 1;
    }

    .iruka {
        transition: 3s;
        transform: translateY(150px);
        opacity: 0;
    }

    .slide-in-iruka {
        transform: translateY(0px);
        opacity: 1;
    }
}

.ikusikanai {
    transition: 5s;
    transform: translateX(150px);
    opacity: 0;
}

.slide-in-ikusikanai {
    transform: translateX(0px);
    opacity: 1;
}

.syoyaruzo {
    transition: 2s;
    transform: translateX(-150px);
    opacity: 0;
}

.slide-in-syoyaruzo {
    transform: translateX(0px);
    opacity: 1;
}

.ikusikanai2 {
    transition: 5s;
    transform: translateX(50px);
    opacity: 0;
}

.slide-in-ikusikanai2 {
    transform: translateX(0px);
    opacity: 1;
}

.syoyaruzo2 {
    transition: 2s;
    transform: translateX(-50px);
    opacity: 0;
}

.slide-in-syoyaruzo2 {
    transform: translateX(0px);
    opacity: 1;
}

.kawauso2 {
    transition: 2s;
    transform: translateY(-20px);
    opacity: 0;
}

.slide-in-kawauso2 {
    transform: translateY(0px);
    opacity: 1;
}
