@charset "UTF-8";

html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Arial', sans-serif;
            height: 100vh;
            margin: 0;
            background-color: #ffffff;
            user-select: none
        }
        
        .section-spacer {
            height: 80px;
            margin-top: -80px;
            visibility: hidden;
        }
        
        /* Menu Bar Styles */
        #menuBar {
            width:100%;
            height: 80px;
            background-color: #fff;
            display: flex;
            align-items: center;
            position: fixed;
            top: 0;
            z-index: 1000; /* 他の要素より前面に表示させる */
        }
        
        #menuBar img {
            max-height: 80px;
            width: auto;
        }

        #menuLinks {
            margin-left: auto;
            margin-right: 50px;
        }

        #menuLinks p {
            font-size: 20px;
            color: #414141;
            position: relative;
            display: inline-block;
            padding: 10px 30px;
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            font-family: Tsukushi A Round Gothic;
        }

        /* Hover Animation for Menu Links */
        #menuLinks p::before {
            content: "";
            position: absolute;
            bottom: -3px;
            left: 15%;
            width: 0;
            height: 3px;
            background-color: #000;
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        #menuLinks p:hover::before {
            width: 70%;
        }

        /* Header Image Animation */
        .headerImageContainer {
            position: relative;
        }

        .headerImageContainer img {
            width: 100%;
            height: auto;
        }

        .headerImageOverlay {
            position: absolute;
            top: 80px;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(255, 255, 255, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            animation: fadeIn 2s forwards 0.5s;
        }

        .headerImageOverlay span {
            font-family: Tsukushi A Round Gothic;
            font-size: 90px;
            color: rgba(255, 255, 255, 0.8);
            font-weight: 600;
            opacity: 0;
            animation: fadeIn 2s forwards 2.5s;
        }


/*フッター*/
.site-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid #bdc3c7;
    position: relative;
    bottom: 0;
    width: 100%;
}

.footer-content p {
    margin: 0;
    font-size: 14px;
}

/* General Image Styles */
        .imageContainer {
            position: relative;
            cursor: pointer;
            margin: 0 10px;
            flex: 1;
            max-width: calc(100% / 3 - 20px);
        }

        .imageContainer img {
            display: block;
            border-radius: 10px;
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .imageOverlay {
            position: absolute;
            border-radius: 10px;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(255, 255, 255, 0.7);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.8s;
        }

        .imageContainer:hover .imageOverlay {
            opacity: 1;
        }

        .imageOverlay span {
            font-size: 24px;
            color: #333;
        }
