@charset "UTF-8";

/*=========================================================全体レイアウトのためのCSS*/

/* ボディ・共通*/

body {
    background-color: #ebe9e9;
    color: #333;
}

h1 {
    height: 80px;
}


@font-face {
    font-family: "myfont";
    src: url("tsunagi-gothic.ttf") format("truetype");
}

.main-title,
.sub-title {
    font-family: "myfont";
}

.main-title {
    margin: 0 auto 20px;
    font-size: 30px;
}

.sub-title {
    font-size: 20px;
    margin-bottom: 20px;
}

a {
    color: #ccc;
    text-decoration: none;
}

p {
    font-size: 16px;
    margin-bottom: 20px;
}

@media screen and (min-width:767px) {
    .main-title {
        margin: 0 auto 20px;
        font-size: 60px;
    }

    .sub-title {
        font-size: 30px;
        margin-bottom: 20px;
    }
}

/* ヘッダー */

h1 img {
    width: 80px;
    align-items: center;
}

/* トップのビデオ */

.top-video {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    margin-bottom: 50px;
}

@media screen and (min-width:767px) {
    .top-video {
        margin-bottom: 150px;
    }
}

/* メイン */

main {
    padding: 0 20px;
    font-weight: bold;
}

main,
footer {
    text-align: center;
}

@media screen and (min-width:767px) {
    main {
        max-width: 1000px;
        margin: 0 auto;
        padding: 0 50px;
    }
}

/* 水族館について */

.about {
    margin-bottom: 50px;
}

.concept {
    margin-bottom: 50px;
}

.description p span {
    display: inline-block;
}

@media screen and (min-width:767px) {
    .about {
        margin-bottom: 100px;
    }

    .concept {
        margin-bottom: 150px;
    }
}

/* 会場案内 */

.floor-announce {
    margin-bottom: 50px;
}

.floor-img {
    width: 80%;
    padding: 20px;
    opacity: 0;
}

.blur {
    animation-name: blurAnime;
    animation-duration: 3s;
    animation-fill-mode: forwards;
}

@keyframes blurAnime {
    from {
        filter: blur(10px);
        transform: scale(3);
        opacity: 0;
    }

    to {
        filter: blur(0);
        transform: scale(1);
        opacity: 1;
    }
}


@media screen and (min-width:767px) {
    .wrap {
        display: flex;
        align-items: center;
        text-align: center;
        gap: 60px;
    }

    .floor-1,
    .floor-2,
    #area-4,
    #area-5 {
        width: 50%;
    }

    .floor-img {
        width: 60%;
    }
}

.price-image,
.news-image {
    width: 50%;
    padding: 20px;
    animation: fuwafuwa 3s infinite;
}

@keyframes fuwafuwa {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(15px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* 詳しくはこちらボタン */

a.btn {
    display: flex;
    justify-content: center;
    vertical-align: middle;
    text-decoration: none;
    margin: 30px auto;
    width: 10em;
    height: 2em;
    color: #fff;
    cursor: pointer;
    transition: all 0.85s cubic-bezier(.17, .67, .14, .93);
    transform-style: preserve-3d;
    transform-origin: 100% 50%;
}

a.btn:hover {
    transform: rotateX(-90deg);
}

a.btn .side {
    box-sizing: border-box;
    position: absolute;
    bottom: 0;
    display: inline-block;
    width: 13em;
    text-align: center;
    padding: 0.3rem 2rem;
    font-weight: bold;
    letter-spacing: 2px;
}

a.btn .top {
    background: #b4e12b;
    color: #fff;
    transform: rotateX(90deg) translate3d(0, 0, 2em);
}

a.btn .front {
    background: #27acd9;
    color: #fff;
    transform: translate3d(0, 0, 2em);
}

/* アクセス */

.map {
    margin-bottom: 100px;
}

.access {
    margin-bottom: 30px;
}

.gmap {
    height: 0;
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
}

.gmap iframe {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    padding: 0 60px 0;
}

@media screen and (min-width:767px) {
    .gmap iframe {
        height: 80%;
        width: 100%;
    }
}