@charset "UTF-8";

/* モバイル */

/* 背景 */
body {
    background-image: url(../img/bg01.webp);
    color: #333333;
    background-attachment: fixed;
    z-index: 1;
    font-family: 'Noto Sans JP', sans-serif;
    transition: .7s;
    line-height: 1.5;
}

.bg01 {
    background-image: url(../img/bg01.webp);
}

.bg02 {
    background-image: url(../img/bg02.webp);
}

.bg03 {
    background-image: url(../img/bg03.webp);
}

.bg04 {
    background-image: url(../img/bg04.webp);
}

h1 {
    font-size: 45px;
    color: #fff;
    padding-top: 700px;
    font-family: 'Fugaz One', 'Noto sans jp';
}

h2 {
    font-family: 'Fugaz One', 'Noto sans jp';
    font-size: 40px;
    text-align: center;
    padding-bottom: 32px;
}

h3 {
    font-family: 'Fugaz One', 'Noto sans jp';
    font-size: 32px;
    padding-top: 8px;
    padding-bottom: 16px;
    text-align: center;
    color: #FF0005;
}


/* ナビ */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: transparent;
    height: 200px;
    z-index: 10;
}

.header-inner {
    padding-top: 10px;
    padding-left: 20px;
    padding-right: 0px;
    height: 200px;
    position: relative;
}

.header-logo {
    width: 300px;
    height: auto;
}

.mobile-site-menu,
.toggle-menu-button {
    display: none;
}

.nav_wrapper {
    position: fixed;
    z-index: 5;
    width: 100%;
    top: 50%;
    right: -50px;
    text-align: center;
    transform: translateY(-50%);
}

.nav_list {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: calc((100% - 450px) / 4);
    z-index: 5;
}

.nav_list li {
    margin-bottom: 10px;
    background-color: #fff;
    border-radius: 10px;
    border: solid 5px #FF0005;
}

.nav_list a {
    display: inline-block;
    width: 200px;
    padding: 20px 40px;
    font-weight: 700;
    color: #333;
}

.current {
    background-color: #FF0005 !important;
}

.current a {
    color: #fff !important;
}


/* コンテンツ */

.fv-text {
    font-size: 20px;
    color: #fff;
    font-family: 'M Plus 1p', 'Noto sans jp';
    font-weight: 700;
    margin-top: -10px;
}

.lead {
    font-family: 'M Plus 1p', 'Noto sans jp';
    font-weight: 800;
    text-align: center;
    padding-bottom: 8px;
}

.lead-text {
    font-family: 'M Plus 1p', 'Noto sans jp';
    font-weight: 600;
    text-align: center;
}

.article {
    max-width: 500px;
    margin: 0 auto;
    position: relative;
}

.section {
    padding-top: 80px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 60px;
}

#sec01 {
    height: 900px;
    background-image: url(../img/fv02.webp);
    background-repeat: no-repeat;
    background-size: cover;
}

#sec02,
#sec03,
#sec04 {
    background-color: #fff;
}

#sec02 {
    padding-top: 80px;
    padding-bottom: 60px;
}

#sec02 h2 {
    letter-spacing: 5%;
    color: #FD61CB;
    text-shadow:
        1px 1px 0px #333,
        -1px 1px 0px #333,
        1px -1px 0px #333,
        -1px -1px 0px #333,
        4px 4px 0px rgba(255, 204, 0, 0.8);
}

#sec03 h2 {
    letter-spacing: 5%;
    color: #FF7864;
    text-shadow:
        1px 1px 0px #333,
        -1px 1px 0px #333,
        1px -1px 0px #333,
        -1px -1px 0px #333,
        4px 4px 0px rgba(255, 204, 0, 0.8);
}

#sec04 h2 {
    letter-spacing: 5%;
    color: #B7B3FF;
    text-shadow:
        1px 1px 0px #333,
        -1px 1px 0px #333,
        1px -1px 0px #333,
        -1px -1px 0px #333,
        4px 4px 0px rgba(255, 204, 0, 0.8);
}

.menu-list li {
    padding: 32px 0;
}

.menu-list li img {
    border-radius: 20px;
    border: 3px solid #333;
}

.concept {
    border-radius: 20px;
    margin-top: 10px;
    margin-bottom: 20px;
}

.concept-lead {
    font-family: 'M Plus 1p', 'Noto sans jp';
    font-size: 20px;
    font-weight: 800;
    text-align: center;
    padding-bottom: 8px;
}

.link-button-area {
    text-align: center;
    padding-top: 80px;
}

.link-button {
    background-color: #FF0005;
    display: inline-block;
    min-width: 300px;
    line-height: 60px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 500;
    transition: 0.6s;
    letter-spacing: 5%;
}

.link-button-area a {
    font-family: 'M Plus 1p', 'Noto sans jp';
    font-weight: 600;
    color: #fff;
    border: 3px solid #FF0005;
}

.link-button-area a:hover {
    color: #FF0005;
    border: 3px solid #FF0005;
    background-color: #fff;
    transform: scale(105%);
}

.map-container {
    position: relative;
    width: 100%;
    padding-top: 100%;
    /* 16:9のアスペクト比を維持 */
    height: 0;
    overflow: hidden;
}

.map-container iframe {
    position: absolute;
    padding: 40px 10px;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.footer {
    padding-top: 20px;
    padding-bottom: 8px;
    text-align: center;
    background-color: #23A9E0;
}

.footer img {
    width: 80px;
}

.sns {
    width: 120px;
    display: flex;
    margin: 0 auto;
    justify-content: space-around;
    padding-top: 10px;
    padding-bottom: 10px;
}

.sns a {
    width: 40px;
}

.copyright {
    color: #fff;
    font-size: 12px;
}

@media screen and (max-width: 600px) {
    h1 {
        padding-top: 650px;
    }
}

@media screen and (max-width: 600px) {
    .article {
        max-width: none;
        width: 100%;
    }
}

@media (max-width: 1000px) {

    .nav_wrapper {
        display: none;
    }



    .header-inner {
        height: 80px;
        padding-left: 10px;

    }

    .toggle-menu-button {
        display: block;
        position: fixed;
        top: 20px;
        right: 15px;
        z-index: 30;
        width: 60px;
        height: 60px;
        background-image: url(../img/site-menu.webp);
        background-size: 100%;
        background-position: center;
        background-repeat: no-repeat;
        background-color: transparent;
        border: none;
        border-radius: 0;
        outline: none;
        cursor: pointer;
    }

    /* メニューが開いているとき：画像を消して×印を表示 */
    .toggle-menu-button.is-open {
        background-image: none;
    }

    .toggle-menu-button.is-open::before,
    .toggle-menu-button.is-open::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 36px;
        height: 4px;
        background-color: #FF0005;
        border-radius: 2px;
    }

    .toggle-menu-button.is-open::before {
        transform: translate(-50%, -50%) rotate(45deg);
    }

    .toggle-menu-button.is-open::after {
        transform: translate(-50%, -50%) rotate(-45deg);
    }

    /* ドロップダウンメニュー */
    .mobile-site-menu {
        display: none;
        position: fixed;
        top: 100px;
        left: 0;
        right: 0;
        z-index: 20;
        background-color: transparent;
        padding-top: 30px;
        padding-bottom: 50px;
        text-align: center;
    }

    .mobile-site-menu.is-show {
        display: block;
    }

    .mobile-site-menu .site-menu ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .mobile-site-menu .site-menu li {
        margin-bottom: 16px;
    }

    .mobile-site-menu .site-menu a {
        display: inline-block;
        width: 200px;
        padding: 14px 0;
        font-weight: 700;
        font-size: 16px;
        color: #333;
        background-color: #fff;
        border-radius: 10px;
        border: solid 4px #FF0005;
        text-decoration: none;
    }

    .mobile-site-menu .site-menu a:hover {
        background-color: #FF0005;
        color: #fff;
    }
}