﻿@charset "utf-8";

body {
    overflow-x: hidden;
}

#main-v {
    width: 100%;
}

#wave-container {
    margin-top: -40px;
    overflow-x: hidden;
}

#wave-top {
    display: block;
}

#wave-bottom {
    display: block;
    transform: scale(1, -1);
    margin-left: -500px;
}

.infinite-slider .swiper-wrapper {
    transition-timing-function: linear;
}

.swiper {
    width: 1900px;
    height: 658px;
}

.slide-container {
    display: grid;
    height: 658px;
    grid-template-columns: 280px 260px 540px 460px 310px;
    grid-template-rows: repeat(4, 152px);
    gap: 10px;
    padding: 10px 5px;
}

.slide-container img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    transition-duration: 0.1s;
}

.slide-container img:hover {
    animation: poyo .6s ease 0s 1 normal running none;
}

@keyframes poyo {

    from,
    to {
        transform: none;
    }

    10% {
        transform: scale(1.01);
    }

    80% {
        transform: scale(.999);
    }
}

.slide-01 {
    grid-column: span 2;
    grid-row: span 2;
}

.slide-02 {
    grid-row: span 4;
}

.slide-03 {
    grid-row: span 2;
}

.slide-04 {}

.slide-05 {
    grid-area: 2/5/5/5;
}

.slide-06 {}

.slide-07 {}

.slide-08 {
    grid-row: span 2;
}

.slide-09 {
    grid-column: span 2;
}

.main-v-imgs {
    position: relative;
}

.main-v-imgs-bg {
    position: relative;
    background: #FFF4F4;
}

img.main-v-hagitama {
    position: absolute;
    width: 12%;
    bottom: 10%;
    right: 13%;
    z-index: 2;
    pointer-events: none;
    filter: drop-shadow(1px 2px 2px #333);
}

.main-v-row {
    display: flex;
    gap: 2%;
}

.information-box {
    height: 500px;
}

.about-map-box {
    margin: 3% 0;
}

.about-map {
    display: block;
    position: relative;
    overflow: hidden;
}

.map-hagitama {
    position: absolute;
    right: 17%;
    bottom: -100%;
    width: 13%;
    transition-duration: 0.5s;
    animation: poyooon 1.2s linear 0s infinite;
}

.map-hagitama-hukidasi {
    position: absolute;
    right: 2%;
    bottom: -100%;
    width: 15%;
    transition-duration: 0.5s;
}

.map-filter {
    opacity: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgb(255 255 255 / 50%);
    top: 0;
    left: 0;
    color: #d4599f;
    font-size: 8em;
    display: flex;
    align-items: center;
    justify-content: center;
    transition-duration: 0.2s;
}

.about-map:hover .map-filter {
    opacity: 1;
}

.about-map:hover .map-hagitama {
    bottom: 5%;
}

.about-map:hover .map-hagitama-hukidasi {
    bottom: 20%;
}

.map-filter i:hover {
    transform: scale(1.1);
}

.map-filter i {
    transition-duration: 0.2s;

}

@keyframes poyooon {
    0% {
        transform: scale(1.0, 1.0) translate(0%, 0%);
    }

    10% {
        transform: scale(1.05, 0.95) translate(0%, 2%);
    }

    40% {
        transform: scale(1.1, 0.9) translate(0%, 5%);
    }

    50% {
        transform: scale(1.0, 1.0) translate(0%, 0%);
    }

    60% {
        transform: scale(0.95, 1.05) translate(0%, -30%);
    }

    75% {
        transform: scale(0.95, 1.05) translate(0%, -10%);
    }

    85% {
        transform: scale(1.1, 0.9) translate(0%, 5%);
    }

    100% {
        transform: scale(1.0, 1.0) translate(0%, 0%);
    }
}

.center-sub-title {
    font-size: 1.4em;
    font-weight: 500;
    line-height: 1.4em;
    width: 15em;
    text-align: center;
    margin: auto;
    margin-top: 2%;
    position: relative;
}

.center-sub-title::before,
.center-sub-title::after {
    position: absolute;
    content: "";
    background: url(../img/bracket.png) no-repeat;
    background-size: contain;
    width: 1em;
    height: 3.5em;
    top: -0.3em;
}

.center-sub-title::before {
    left: 0;
}

.center-sub-title::after {
    right: 0;
    transform: rotate(180deg);
}

.about-introduce-box {
    position: relative;
    padding: 2%;
}

.introduce-bg {
    background-color: #FCCACA;
    position: absolute;
    top: 125px;
    width: 106%;
    left: -3%;
    height: 360px;
    z-index: -1;
    border-radius: 10px;
}

.introduce-contents {
    display: flex;
    justify-content: space-between;
    margin-top: 4%;
}

.introduce {
    width: 30%;
}

.introduce-1 {
    z-index: 9;
}

.introduce-2 {
    z-index: 8;
}

.introduce-3 {
    z-index: 7;
}

.introduce-image-box {
    position: relative;
}

.introduce-image {
    border-radius: 10px;
}

.introduce-hagitama {
    position: absolute;
    right: 0;
    bottom: 5px;
    z-index: -1;
    transition-duration: 0.2s;
    filter: drop-shadow(1px 1px 2px #333);
}

.introduce-image:hover~.introduce-hagitama {
    transform: rotate(22deg);
    right: -60%;
}

.introduce-title {
    font-weight: 500;
    font-size: 1.2em;
    text-align: center;
    padding: 5% 0;
    border-bottom: solid 1px #D4599F;
    margin-bottom: 5%;
}

.introduce p {
    margin-bottom: 3%;
    font-size: 0.95em;
}

.schedule-box {
    display: flex;
    align-items: center;
    gap: 5%;
}

.schedule-calendar {
    width: 55%;
}

#calendar {
    width: 100%;
    height: 500px;
}


.center-info-box {
    width: 45%;

}

.center-info-logo {
    margin: auto;
    display: block;
    width: 160px;
}

.center-info {
    margin: 7% 0;
}

.center-info p {
    margin-bottom: 2%;
}

.schedule-btn-1 a,
.schedule-btn-2 a {
    padding: 2% 12%;
    width: 100%;
}

.schedule-btn-2 {
    margin-top: 3%;
}

.schedule-btn-2 a {
    color: #5974D4;
    border: solid 1px #5974D4;
}

.schedule-btn-2 a:hover {
    background: #5974D4;
}

.link-box {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    padding: 0 20px;
}

.link-box a {
    width: 23.6%;
    display: block;
}

.link-box a:hover {
    opacity: 0.8;
}

.link-box img {
    border: solid 1px #ddd;
    width: 100%;
}