body {
    font-family: 'Noto Sans JP', sans-serif;
    background-color: #FDFBF8;
    color: #4a4a4a;
}
.c-white {
    color: #fff;
} 
.lh-12 {
    line-height: 1.2!important;
} 
.lh-15 {
    line-height: 1.5!important;
}  
.bg-hero {
    background-color: #EAE6E1;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.55)),
        url('../images/bg_dendo_sp.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    __background-attachment: fixed;
}

@media (min-width: 768px) {
    .bg-hero {
        background-image: 
            linear-gradient(rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.55)),
            url('../images/bg_dendo.jpg');
    }
}

.tab-active {
    border-color: #8B6B61;
    color: #8B6B61;
    background-color: #FDFBF8;
}

.tab-inactive {
    border-color: transparent;
    color: #6b7280;
}
.c-red{
    background-color: #cc0000!important;
}

/* アスペクト比設定 */
.aspect-w-16 {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
}

.aspect-w-16 iframe,
.aspect-w-16 img,
.aspect-w-16 > div {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.btn-primary {
    background-color: #8B6B61;
    color: white;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #795548;
}

.btn-secondary {
    background-color: #FDFBF8;
    color: #8B6B61;
    border: 1px solid #8B6B61;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background-color: #8B6B61;
    color: #FDFBF8;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: #5D4037;
}

.section-subtitle {
    font-size: 1.25rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #6b7280;
}

.chart-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    height: 400px;
}

@media (min-width: 768px) {
    .chart-container {
        height: 450px;
    }
}

[data-tab-content] {
    display: none;
}

[data-tab-content].active {
    display: block;
}

.fade-in {
    animation: fadeIn 0.8s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.smooth-scroll {
    scroll-behavior: smooth;
}
