
        .kaisei-harunoumi-regular {
            font-family: "Kaisei HarunoUmi", serif;
            font-weight: 400;
            font-style: normal;
        }

        :root {
            --primary-burgundy: #b11226;
            --primary-green: #006b3c;
            --accent-white: #ffffff;
            --text-dark: #212121;
            --text-white: #ffffff;
            --light-gray: #f9f9f9;
        }

        body {
            font-family: 'Noto Sans JP', sans-serif;
            background-color: var(--light-gray);
            color: var(--text-dark);
            margin: 0;
            padding: 0;
        }

        header {
            background-color: var(--accent-white);
            color: var(--accent-white);
            padding: 20px;
            text-align: center;
        }

        header h1 {
            font-family: 'Sawarabi Mincho', serif;
            margin: 0;
            font-size: 2.5rem;
            color:var(--text-white);
            animation: fadeIn 2s ease-in-out;
        }

        .container {
            padding: 40px 20px;
        }

        .section-title {
            font-size: 1.6rem;
            font-weight: bold;
            color: var(--primary-burgundy);
            margin-top: 40px;
            text-align: center;
        }

        .highlight-box {
            background-color: var(--accent-white);
            border: 2px solid var(--primary-green);
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            margin-bottom: 30px;
        }

        .card-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
        }

        .card {
            background: var(--accent-white);
            border-radius: 8px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        }

        .card-body {
            padding: 20px;
            text-align: center;
        }

        .card-title {
            font-size: 1.2rem;
            font-weight: bold;
            color: var(--primary-burgundy);
        }

        footer {
            background-color: var(--accent-white);
            color: var(--primary-green);
            text-align: center;
            padding: 10px;
        }
        .team-section {
            display: none;
        }

        .team-section.active {
            display: block;
        }

        /* スライドショーのアイテム */
        .uk-slideshow-items img {
            width: 100%; /* 横幅100% */
            height: auto; /* 縦幅は自動調整 */
            object-fit: contain; /* 縦横比を保ちながら収める */
        }

        /* スライドショーの横幅設定 */
        .uk-slideshow {
            max-width: 1000px; /* PCでは最大1000px */
            margin: 0 auto; /* 中央に配置 */
        }

        /* キャプションのスタイル */
        .uk-position-bottom-center {
            position: absolute;
            bottom: 10px; /* 下から10px */
            left: 50%;
            transform: translateX(-50%);
            background-color: rgba(0, 0, 0, 0.5); /* 半透明の背景 */
            color: white;
            padding: 5px;
            font-size: 16px;
            z-index: 10;
        }

        /* スマホ用メディアクエリ */
        @media (max-width: 600px) {
            .uk-slideshow {
                width: 100%; /* スマホでは横幅100vw */
            }
        }

.notice-container {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background-color: #fff;
    padding: 20px 0px;
    border: 2px solid #ceb7b7; /* burgundy色 */
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.notice-title {
    font-size: 2.2rem;
    color: #0072FF;
    margin-bottom: 10px;
}

.notice-description {
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
    margin-bottom: 20px;
}

.notice-button {
    display: inline-block;
    text-decoration: none;
    background-color: #0072FF;
    width: 62%;
    min-width: 375px;
    color: #fff;
    padding: 10px 18px;
    border-radius: 5px;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.notice-button:hover {
    background-color: #188bd8;
}


.uk-lightbox .uk-lightbox-item img {
  touch-action: manipulation; /* ジェスチャー操作を可能にする */
  user-select: none; /* 不要な選択操作を防ぐ */
}

.pswp__button--close {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    color: red !important; /* 確認用に赤色 */
    background-color: yellow !important; /* 背景色を黄色に */
    z-index: 10000 !important;
    position: relative; /* 必要なら調整 */
    width: 40px; /* サイズ調整 */
    height: 40px;
    border: 2px solid black; /* 境界線を明確に */
    border-radius: 50%; /* ボタンを丸くする */
    align-items: center;
    justify-content: center;
}
.pswp__button--close:hover {
    background-color: rgba(255, 0, 0, 0.8); /* ホバー時に赤色に変更 */
    cursor: pointer; /* カーソルを変更 */
}