@charset "UTF-8";

/* ========================================
   共通
======================================== */
body.archive-case-page,
body.archive-voice-page,
body.single-case-page,
body.single-voice-page,
body.tax-case_category,
body.tax-voice_category {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background: #f9f9f9;
}

.mu-archive *,
.mu-single *,
.mu-taxonomy * {
    box-sizing: border-box;
}

.mu-archive a,
.mu-single a,
.mu-taxonomy a {
    color: #000;
    text-decoration: none;
    transition: 0.3s ease;
}

.mu-archive img,
.mu-single img,
.mu-taxonomy img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

.inner {
    max-width: 1200px;
    width: calc(100% - 40px);
    margin: 0 auto;
}

/* ========================================
   上部
======================================== */
.mu-page-hero {
    padding: 2vw 0 24px;
}

.mu-page-hero__sub {
    display: inline-block;
    margin: 0 0 10px;
    font-size: 14px;
    color: #fff;
    letter-spacing: 0.08em;
    padding: 3px 16px;
    background-color: #0c3349;
    border-radius: 30px;
    border-radius: 20px;
}

.mu-page-hero__title {
    line-height: 1.3;
    margin: 0 0 10px;
    font-size: 30px;
    color: #333;
}

.mu-page-hero__lead {
    font-size: 15px;
    color: #666;
    margin: 0;
}

.mu-detail-meta {
    margin-top: 14px;
    margin-bottom: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.mu-detail-meta span {
    display: inline-block;
    background: #0c3349;
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
}

/* ========================================
   カテゴリナビ
======================================== */
.mu-tax-nav {
    margin-bottom: 26px;
}

.mu-tax-nav__list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.mu-tax-nav__list li {
    list-style: none;
}

.mu-tax-nav__list a {
    display: inline-block;
    background: #fff;
    border: 1px solid #ddd;
    color: #333;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 14px;
}

.mu-tax-nav__list a:hover {
    opacity: 0.8;
}

/* ========================================
   一覧 / カテゴリ 共通 2カラム
======================================== */
.mu-card-section {
    padding-bottom: 8vw;
}

.mu-card-grid,
.mu-card-grid--voice {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px;
}

.mu-card,
.mu-card--voice {
    background: #fff;
    border: 1px solid #eee;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .06);
    overflow: hidden;
    height: 100%;
}

.mu-card__link {
    display: block;
    height: 100%;
    padding: 20px;
}

.mu-card__thumb,
.mu-card__thumb--voice {
    margin-bottom: 18px;
    overflow: hidden;
    background: #eee;
}

.mu-card__thumb img,
.mu-card__thumb--voice img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.mu-card__content {
    min-width: 0;
}

.mu-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}

.mu-card__meta span {
    font-size: 12px;
    color: #666;
    background: #f3f3f3;
    padding: 4px 10px;
    border-radius: 20px;
}

.mu-card__title {
    font-size: 22px;
    line-height: 1.5;
    margin: 0 0 12px;
    font-weight: bold;
    color: #333;
}

.mu-card__excerpt {
    font-size: 14px;
    line-height: 1.9;
    color: #333;
    margin: 0;
}

.mu-voice-name {
    margin: 0 0 10px;
    color: #666;
    font-size: 13px;
}

.mu-rating {
    display: flex;
    gap: 3px;
    margin-bottom: 12px;
    font-size: 15px;
    color: #ccc;
}

.mu-rating .is-active {
    color: #f4b400;
}

.mu-case-score {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.mu-case-score span {
    background: #eef3f7;
    color: #333;
    padding: 4px 9px;
    border-radius: 20px;
    font-size: 12px;
}

/* ========================================
   ページネーション
======================================== */
.mu-pagination {
    margin-top: 40px;
    text-align: center;
}

.mu-pagination .page-numbers {
    display: inline-block;
    padding: 8px 12px;
    margin: 5px;
    background: #0073aa;
    color: #fff;
    border-radius: 5px;
}

.mu-pagination .page-numbers:hover,
.mu-pagination .page-numbers.current {
    background: #005a87;
}

.mu-empty {
    text-align: center;
    color: #666;
    padding: 60px 20px;
}

/* ========================================
   詳細 2カラム共通
======================================== */
main.mu-single-container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto 10vw auto;
    gap: 30px;
}

.mu-single-main {
    width: 70%;
}

.mu-single-sidebar {
    width: 26%;
}

.mu-single-main-image {
    margin-bottom: 25px;
}

.mu-single-main-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.mu-section-box {
    box-shadow: 5px 8px 12px #ccc;
    padding: 24px;
    margin-bottom: 28px;
    background: #fff;
}

.mu-section-box h2 {
    margin: 10px 0 20px 0;
    background-color: #0c3349;
    color: #fff;
    padding: 10px;
    font-size: 17px;
}

.mu-section-box h3 {
    margin-bottom: 20px;
    margin-top: 10px;
    font-size: 1.2rem;
    border-left: 2px solid #0c3349;
    padding-left: 10px;
}

.mu-section-box p,
.mu-section-box li,
.mu-section-box div {
    line-height: 2;
    font-size: 15px;
    color: #333;
}

.mu-section-box ul,
.mu-section-box ol {
    padding: 0;
    margin: 0;
}

.mu-section-box li {
    list-style: none;
    padding: 8px 0;
}

.mu-back-link {
    margin-top: 30px;
    text-align: center;
}

.mu-back-link a {
    display: inline-block;
    padding: 12px 24px;
    background: #333;
    color: #fff;
    border-radius: 5px;
}
h2{
    text-align: left;
}
/* ========================================
   サイドバー
======================================== */
.mu-sidebar-box {
    background: #fff;
    padding: 20px;
    margin-bottom: 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,.08);
}

.mu-sidebar-box__title {
    margin: 0 0 15px;
    font-size: 16px;
    font-weight: bold;
    border-left: 2px solid #0c3349;
       background: #eeeeee;
    padding: 10px;
}

.mu-sidebar-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mu-sidebar-list li {
    border-bottom: 1px solid #ddd;
    padding: 12px 0;
}

.mu-sidebar-list li:last-child {
    border-bottom: none;
}

.mu-sidebar-list a {
    color: #333;
}

.mu-sidebar-meta dt {
    font-weight: bold;
    margin-bottom: 4px;
}

.mu-sidebar-meta dd {
    margin: 0 0 14px;
    color: #555;
    font-size: 14px;
}

.mu-sidebar-cta a {
    display: block;
    text-align: center;
    color: #fff;
    border-radius: 5px;
}

.mu-sidebar-cta a:hover {
    opacity: .85;
}

/* ========================================
   Before / After
======================================== */
.mu-before-after {
    display: flex;
    gap: 24px;
    margin-bottom: 28px;
}

.mu-before-after__col {
    width: 50%;
    background: #fff;
    box-shadow: 5px 8px 12px #ccc;
    padding: 24px;
}

.mu-before-after__col h2 {
    margin: 10px 0 20px 0;
    background-color: #0c3349;
    color: #fff;
    padding: 10px;
    font-size: 17px;
}

.mu-before-after__col img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    margin-bottom: 15px;
}
nav.mu-breadcrumb{
    display: block;
}

.mu-case-cvalue {
    display: inline-block;
    margin-top: 15px;
    background: #eef3f7;
    color: #333;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
}
.mu-voice-archive .mu-card-grid--voice,
.mu-taxonomy-voice .mu-card-grid--voice {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 26px !important;
}

.mu-voice-archive .mu-card-grid--voice > .mu-card--voice,
.mu-taxonomy-voice .mu-card-grid--voice > .mu-card--voice {
    width: auto !important;
    margin: 0 !important;
    float: none !important;
}

@media screen and (max-width: 1024px) {
    .mu-voice-archive .mu-card-grid--voice,
    .mu-taxonomy-voice .mu-card-grid--voice {
        grid-template-columns: 1fr !important;
    }
}

/* ========================================
   テーブル
======================================== */
.mu-section-box table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.mu-section-box th,
.mu-section-box td {
    border: 1px solid #ddd;
    padding: 10px;
    font-size: 14px;
    line-height: 1.8;
}

.mu-section-box th {
    background: #f3f3f3;
}

/* ========================================
   レスポンシブ
======================================== */
@media screen and (max-width: 1024px) {
    .mu-card-grid,
    .mu-card-grid--voice {
        grid-template-columns: 1fr;
    }

    main.mu-single-container {
        flex-direction: column;
    }

    .mu-single-main,
    .mu-single-sidebar {
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .mu-page-hero {
        padding-top:  5vw;
    }

    .inner {
        width: calc(100% - 30px);
    }

    .mu-card__thumb img,
    .mu-card__thumb--voice img {
        height: 220px;
    }

    .mu-card__title {
        font-size: 18px;
    }

    .mu-single-main-image img {
        height: 300px;
    }

    .mu-before-after {
        flex-direction: column;
    }

    .mu-before-after__col {
        width: 100%;
    }

    .mu-before-after__col img {
        height: 220px;
    }

    main.mu-single-container {
        padding: 15px;
    }
    .mu-back-link{
        display: none;
    }
}

/* ========================================
   一覧ページ 外枠2カラム
======================================== */
.mu-archive-body {
    padding-bottom: 8vw;
}

.mu-archive-layout {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
}

.mu-archive-main {
    width: 70%;
    min-width: 0;
}

.mu-archive-sidebar {
    width: 26%;
}

.mu-archive-sidebar .mu-sidebar-box {
    background: #fff;
    padding: 20px;
    margin-bottom: 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,.08);
}

/* 一覧内のカードグリッドは左カラム内で2列 */
.mu-archive-main .mu-card-grid,
.mu-archive-main .mu-card-grid--voice {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px;
}

.mu-archive-main .mu-card,
.mu-archive-main .mu-card--voice {
    width: auto;
    margin: 0;
    float: none;
}

section{
    padding: 0;
}

@media screen and (max-width: 1024px) {
    .mu-archive-layout {
        flex-direction: column;
    }

    .mu-archive-main,
    .mu-archive-sidebar {
        width: 100%;
    }

    .mu-archive-main .mu-card-grid,
    .mu-archive-main .mu-card-grid--voice {
        grid-template-columns: 1fr;
    }
}