/* バナー全体のコンテナ：1000pxに拡大 */
.recnad-banner-container {
    max-width: 1000px;
    margin: 20px auto;
    border-radius: 12px;
    overflow: hidden;
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", sans-serif;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    background-color: #fff;
}

/* メインビジュアルエリア */
.recnad-main-visual {
    display: flex;
    height: 320px; /* 横幅に合わせて高さを調整 */
    text-decoration: none;
    color: inherit;
}

/* 左側：スタジオ画像エリア */
.recnad-visual-left {
    flex: 1.3;
    background-image: url('https://recnad.jp/images/recnadtokyo_studio3.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 30px;
}

.recnad-visual-left::before {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 50%, rgba(0,0,0,0.4) 100%);
}

.recnad-day-labels {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 10px;
}

.recnad-day-labels span {
    background: rgba(255,255,255,0.9);
    color: #333;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* 右側：テキストエリア */
.recnad-visual-right {
    flex: 1;
    background-color: #f8f9fa;
    padding: 40px 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 1px solid #eee;
}

.recnad-banner-title {
    margin: 0;
    font-size: 2.2rem;
    line-height: 1.2;
    color: #222;
    font-weight: bold;
}

.recnad-banner-title small {
    display: block;
    font-size: 1.2rem;
    color: #666;
    margin-top: 8px;
    letter-spacing: 0.1em;
}

/* カテゴリタグのバランス調整 */
.recnad-category-tags {
    margin-top: 25px;
    display: flex;
    gap: 10px;
}

.recnad-tag {
    font-size: 0.9rem;
    padding: 5px 15px;
    border-radius: 4px;
    color: #fff;
    font-weight: 800;
    letter-spacing: 0.05em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.tag-kids { background-color: #ee5253; }
.tag-family { background-color: #3498db; }
.tag-pro { background-color: #ff9f43; }

/* 下部：ボタンエリア */
.recnad-cta-footer {
    padding: 20px;
    text-align: center;
    background: #fff;
}

.recnad-cta-text {
    font-weight: bold;
    color: #ee5253;
    margin-bottom: 10px;
    display: block;
}

.recnad-btn {
    display: inline-block;
    background-color: #333;
    color: #fff;
    padding: 12px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: 0.3s;
}

.recnad-btn:hover {
    background-color: #000;
    transform: translateY(-2px);
}

/* スマホ対応 */
@media (max-width: 850px) {
    .recnad-main-visual { flex-direction: column; height: auto; }
    .recnad-visual-left { height: 220px; }
    .recnad-visual-right { padding: 30px 20px; align-items: center; text-align: center; }
    .recnad-banner-title { font-size: 1.8rem; }
}