/* =======================================================
   日本空手道松濤會 市川支部 — Laravel 版 追加スタイル
   （style.css を上書きせず、必要な分だけ追加しています）
   ======================================================= */

/* ---------- ヒーロー スライダー ---------- */
.banner.banner-slider {
    background: #fff !important;
    padding: 0;
    min-height: 0;
}

.banner-slides {
    opacity: 0;
    transition: opacity .35s ease;
}

.banner-slides.slick-initialized {
    opacity: 1;
}

.banner-slide {
    position: relative;
    min-height: 560px;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex !important;
    align-items: center;
}

.banner-slide__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.banner-slide__inner {
    position: relative;
    z-index: 2;
    width: 100%;
}

.banner-slide .block {
    padding: 90px 0 110px;
}

.banner-slide .block h2 {
    font-size: 46px;
    line-height: 1.25;
    color: #223a66;
    font-weight: 700;
}

.banner-slide .block p {
    color: #444;
    font-size: 16px;
    line-height: 1.9;
}

.banner-slide--center .block {
    text-align: center;
}

.banner-slide--center .block .divider {
    margin-left: auto;
    margin-right: auto;
}

.banner-slide--right .block {
    text-align: right;
}

.banner-slide--right .block .divider {
    margin-left: auto;
}

/* テキストのフェードアップ演出 */
.banner-slide .block > * {
    opacity: 0;
    transform: translateY(26px);
}

.banner-slide.slick-current .block > * {
    animation: bannerFadeUp .8s cubic-bezier(.22, .61, .36, 1) forwards;
}

.banner-slide.slick-current .block > *:nth-child(1) { animation-delay: .10s; }
.banner-slide.slick-current .block > *:nth-child(2) { animation-delay: .22s; }
.banner-slide.slick-current .block > *:nth-child(3) { animation-delay: .34s; }
.banner-slide.slick-current .block > *:nth-child(4) { animation-delay: .46s; }
.banner-slide.slick-current .block > *:nth-child(5) { animation-delay: .58s; }

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

/* ゆっくりズーム (Ken Burns) */
.banner-slide__bg {
    position: absolute;
    inset: 0;
    background-position: center center;
    background-size: cover;
    transform: scale(1);
}

.banner-slide.slick-current .banner-slide__bg {
    animation: bannerZoom 9s ease-out forwards;
}

@keyframes bannerZoom {
    from { transform: scale(1); }
    to   { transform: scale(1.09); }
}

/* 矢印 */
.banner-slider .slick-arrow {
    position: absolute;
    top: 50%;
    z-index: 5;
    width: 52px;
    height: 52px;
    margin-top: -26px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, .85);
    color: #223a66;
    font-size: 22px;
    line-height: 52px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .12);
    transition: all .3s ease;
    cursor: pointer;
    opacity: 0;
}

.banner-slider:hover .slick-arrow {
    opacity: 1;
}

.banner-slider .slick-arrow:hover {
    background: #e12454;
    color: #fff;
}

.banner-slider .slick-prev { left: 24px; }
.banner-slider .slick-next { right: 24px; }

/* ドット */
.banner-slider .slick-dots {
    position: absolute;
    bottom: 28px;
    left: 0;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
    z-index: 5;
}

.banner-slider .slick-dots li {
    display: inline-block;
    margin: 0 6px;
}

.banner-slider .slick-dots li button {
    width: 34px;
    height: 4px;
    padding: 0;
    border: 0;
    border-radius: 4px;
    background: rgba(34, 58, 102, .28);
    text-indent: -9999px;
    overflow: hidden;
    cursor: pointer;
    transition: all .3s ease;
}

.banner-slider .slick-dots li.slick-active button {
    width: 54px;
    background: #e12454;
}

@media (max-width: 991px) {
    .banner-slide { min-height: 460px; }
    .banner-slide .block h2 { font-size: 34px; }
    .banner-slide .block { padding: 70px 0 90px; }
    .banner-slider .slick-arrow { display: none !important; }
}

@media (max-width: 575px) {
    .banner-slide { min-height: 420px; }
    .banner-slide .block h2 { font-size: 26px; }
    .banner-slide .block p { font-size: 14px; }
    .banner-slide .block { padding: 55px 0 75px; }
    .banner-slide__overlay { background: rgba(255, 255, 255, .88) !important; }
}

/* ---------- ニュース ---------- */
.news-card {
    display: block;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 2px 14px rgba(0, 0, 0, .06);
    overflow: hidden;
    margin-bottom: 26px;
    transition: transform .3s ease, box-shadow .3s ease;
}

.news-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .1);
    text-decoration: none;
}

.news-card__body { padding: 26px 28px; }

.news-card__meta {
    font-size: 13px;
    color: #8a8a8a;
    margin-bottom: 8px;
}

.news-card__cat {
    display: inline-block;
    padding: 2px 12px;
    margin-left: 10px;
    border-radius: 40px;
    background: #f4f6f9;
    color: #223a66;
    font-size: 12px;
}

.news-card__title {
    color: #223a66;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.news-card:hover .news-card__title { color: #e12454; }

.news-card__excerpt {
    color: #6f6f6f;
    font-size: 15px;
    line-height: 1.85;
    margin: 0;
}

.news-card__thumb {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.news-content {
    font-size: 16px;
    line-height: 2;
    color: #444;
    word-break: break-word;
}

.news-content img { max-width: 100%; height: auto; border-radius: 4px; }
.news-content h2 { font-size: 26px; margin: 32px 0 14px; color: #223a66; }
.news-content h3 { font-size: 21px; margin: 26px 0 12px; color: #223a66; }
.news-content ul, .news-content ol { padding-left: 1.4em; margin-bottom: 1.2em; }
.news-content a { color: #e12454; text-decoration: underline; }
.news-content blockquote {
    border-left: 4px solid #e12454;
    padding: 6px 0 6px 18px;
    margin: 22px 0;
    color: #666;
}

.news-meta { color: #8a8a8a; font-size: 14px; }

/* ---------- 固定ページ ---------- */
.page-body {
    font-size: 16px;
    line-height: 2;
    color: #444;
}

.page-body h3 {
    color: #223a66;
    margin: 30px 0 12px;
    font-size: 20px;
}

/* ---------- お知らせ (トップ) の空状態 ---------- */
.np-empty {
    padding: 34px 0;
    color: #999;
    text-align: center;
}

/* ---------- アラート ---------- */
.site-alert {
    border-radius: 4px;
    padding: 16px 20px;
    margin-bottom: 26px;
    font-size: 15px;
}

.site-alert--success { background: #eaf7ef; color: #1f7a45; border: 1px solid #bfe6cd; }
.site-alert--error   { background: #fdecef; color: #a3243c; border: 1px solid #f5c2cd; }

/* ---------- スキップリンク (アクセシビリティ / SEO) ---------- */
.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 9999;
    padding: 10px 18px;
    background: #223a66;
    color: #fff;
}

.skip-link:focus { left: 0; color: #fff; }

/* ---------- パンくず ---------- */
.breadcrumb-bar {
    background: #f7f8fa;
    padding: 14px 0;
    font-size: 13px;
}

.breadcrumb-bar a { color: #223a66; }
.breadcrumb-bar span { color: #8a8a8a; }

/* ---------- 市川少年空手道育成会 紹介（トップ） ---------- */
.youth-club-intro-section {
    background: #f4f9fc !important;
}

.youth-club-intro-section .branch-intro-text:last-of-type {
    font-weight: 600;
    color: #223a66;
}

/* ---------- 松濤會 市川支部のご案内（2カラムカード） ---------- */
.dojo-guide-section {
    padding: 80px 0;
    background: #fff;
}

.dojo-guide-card {
    height: 100%;
    padding: 40px 34px;
    background: #fff;
    border: 1px solid #eef1f6;
    border-radius: 8px;
    box-shadow: 0 4px 24px rgba(34, 58, 102, .06);
    transition: transform .3s ease, box-shadow .3s ease;
}

.dojo-guide-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(34, 58, 102, .12);
}

.dojo-guide-card .dojo-guide-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    margin-bottom: 22px;
    border-radius: 50%;
    background: #f4f9fc;
    color: #e12454;
    font-size: 28px;
}

.dojo-guide-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #223a66;
    margin-bottom: 18px;
}

.dojo-guide-card p {
    font-size: 15.5px;
    line-height: 2;
    color: #6F8BA4;
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .dojo-guide-section { padding: 60px 0; }
    .dojo-guide-card { padding: 32px 26px; }
}
