@charset "UTF-8";

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
    background: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

.sp_br {
    display: none;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

.header {
    width: 100%;
    position: relative;
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.95) 0%, rgba(192, 57, 43, 0.95) 100%),
        url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9IiNlNzRjM2MiLz48L3N2Zz4=');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 80px 30px;
    margin-bottom: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    text-align: center;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.header::before {
    content: '';
    position: absolute;
    top: -30%;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../../images/fukutsu_build.JPG');
    opacity: .8;
    z-index: 1;
    background-repeat: no-repeat;
    background-size: cover;
}

.header-content {
    position: relative;
    z-index: 2;
}

.header h1 {
    font-size: 3em;
    margin-bottom: 15px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 0.8s ease-out;
}

.header .subtitle {
    font-size: 1.5em;
    opacity: 0.98;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.breadcrumb {
    font-size: 14px;
    margin: 1em 0;
}

.breadcrumb ol {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 0.5em;
    margin-left: 10px;
}

.breadcrumb li {
    display: flex;
    align-items: center;

}

.breadcrumb li a {
    display: inline-block;
    color: black;
    font-weight: 400;
    transition: .5s;
    position: relative;
}



.welcome-box {
    background: white;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.welcome-box h2 {
    color: #e74c3c;
    font-size: 2em;
    margin-bottom: 15px;
    text-align: center;
}

.event-info {
    background: white;
    color: #333;
    border: 3px solid #e74c3c;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    font-size: 1.4em;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.events-title {
    color: #333;
    text-align: center;
    font-size: 2.2em;
    margin-bottom: 25px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.event-info h2 {
    font-size: 1.8em;
}

.event-info strong {
    font-size: 1.5em;
    display: block;
    margin: 10px 0;
}

.qr-section {
    background: white;
    color: #333;
    border-top: 5px solid #e74c3c;
    padding: 40px 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.qr-section h2 {
    color: #e74c3c;
    font-size: 2.2em;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.qr-section p {
    color: #666;
    font-size: 1.2em;
    margin-bottom: 25px;
    opacity: 0.95;
}

.qr-box {
    background: white;
    padding: 30px;
    border-radius: 15px;
    max-width: 800px;
    width: 85%;
    margin: 0 auto;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.qr-box h3 {
    color: #e74c3c;
    font-size: 1.6em;
    margin-bottom: 20px;
}

.qr-image {
    width: 280px;
    height: 280px;
    margin: 20px auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.qr-button {
    display: inline-block;
    background: #e74c3c;
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
    margin-top: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.qr-button:hover {
    transform: translateY(-3px);
    background: #c0392b;
    /* hover */
    box-shadow: 0 8px 20px rgba(231, 76, 60, 0.4);
}

.qr-items {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
    text-align: left;
}

.qr-items h4 {
    color: #e74c3c;
    margin-bottom: 15px;
    font-size: 1.2em;
}

.qr-items ul {
    list-style: none;
    padding-left: 0;
}

.qr-items li {
    padding: 8px 0;
    padding-left: 30px;
    position: relative;
    color: #333;
}

.qr-items li:before {
    content: "✓";
    position: absolute;
    left: 5px;
    color: #27ae60;
    font-weight: bold;
    font-size: 1.2em;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.event-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.event-name {
    position: relative;
    border-bottom: 3px solid #e74c3c;
    margin-bottom: 10px;
}

/* イベント内容BG */
.bg {
    width: 100%;
    aspect-ratio: 362/ 228;
    object-fit: cover;
}

.event-name::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    z-index: 10;
}

.event-card h3 {
    position: absolute;
    top: 25px;
    left: 25px;
    color: #c0392b;
    /* より濃い赤 */
    text-shadow:
        2px 2px 4px rgba(255, 255, 255, 0.8),
        -1px -1px 2px rgba(255, 255, 255, 0.5);
    font-size: 1.5em;
    font-weight: 900;
    /* 太字で視認性アップ */
    margin-bottom: 15px;
    padding-bottom: 10px;
    z-index: 100;
}

.event-card .icon {
    font-size: 3em;
    text-align: center;
    margin-bottom: 15px;
}

.event-card p {
    margin: 25px;
}

.event-schedule-box {
    background: #f8f9fa;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.event-schedule-box h4 {
    color: #e74c3c;
    font-size: 1.4em;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 3px solid #e74c3c;
    display: flex;
    align-items: center;
    gap: 10px;
}

.schedule {
    background: white;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 20px;
    color: #e74c3c;
    margin: 20px 0 15px;
}

.schedule-grid .schedule-item {
    margin: 0;
}

.schedule h3 {
    color: #e74c3c;
    font-size: 1.8em;
    margin-bottom: 20px;
    text-align: center;
}

.schedule h4 {
    color: #e74c3c;
    margin: 20px 0 15px;
}

.schedule-item {
    background: #f8f9fa;
    padding: 15px 20px;
    margin: 10px 0;
    border-radius: 10px;
    border-left: 5px solid #e74c3c;
}

.schedule-item strong {
    color: #e74c3c;
    font-size: 1.1em;
    display: block;
    margin-bottom: 5px;
}

.important-notes {
    background: #fff9e6;
    border-left: 5px solid #ffc107;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.important-notes h3 {
    color: #ff9800;
    font-size: 1.5em;
    margin-bottom: 15px;
    text-align: center;
}

.important-notes ul {
    list-style: none;
    padding-left: 0;
}

.important-notes li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.important-notes li:before {
    content: "⚠️";
    position: absolute;
    left: 0;
}

.access {
    padding: 40px 81px;
}

.access-address {
    text-align: left;
}

.access-map {
    position: relative;
    width: 100%;
    aspect-ratio: 8/5;
    overflow: hidden;
}

.access-map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.contact {
    background: white;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.contact h3 {
    color: #e74c3c;
    font-size: 1.5em;
    margin-bottom: 15px;
}

.contact-info {
    font-size: 1.1em;
    line-height: 2;
}

.contact-info a {
    color: #3498db;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.tel {
    color: #333 !important;

}

@media (max-width: 768px) {
    .sp_br {
        display: block;
    }

    .event-info {
        padding: 15px;
    }

    .event-info h2 {
        font-size: 1.2em;
    }

    .header h1 {
        font-size: 2em;
    }

    .header {
        min-height: 215px;
        padding: 60px 20px;
    }

    .header::before {
        top: 0%;
        left: -33%;
    }

    .header .subtitle {
        font-size: 1.2em;
    }

    .event-info strong {
        font-size: 1.0em;
    }

    .events-title {
        font-size: 1.8em;
    }

    .events-grid {
        grid-template-columns: 1fr;
    }

    .event-card h3 {
        font-size: 8vw;
    }

    .qr-box {
        padding: 10px;
    }

    .qr-box h3 {
        font-size: 1.4em;
    }

    .qr-section h2 {
        font-size: 1.8em;
    }

    .qr-image {
        max-width: 150px;
        max-height: 150px;
        width: 100%;
        height: 100%;

    }

    .qr-items ul {
        font-size: 10px;
    }

    .schedule-grid {
        grid-template-columns: 1fr;
    }

    .access {
        padding: 15px
    }

    .access-address {
        font-size: 12px;
    }

}