/*
  motsu-nail.css
  motsu.O! NAIL 特集ページ
  対応ページ: /motsu-nail
  header.php の is_page() 配列に作成後のページIDを追加すること
*/

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

.motsu-page {
    font-family: 'Noto Sans JP', 'Hiragino Sans', sans-serif;
    font-weight: 300;
    color: #2A2A2A;
    background: #FAF9F7;
    line-height: 1.9;
    font-size: 16px;
}

.motsu-inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px 80px;
}

/* HERO */
.motsu-hero {
    padding: 64px 0 48px;
    text-align: center;
    border-bottom: 1px solid #D4CCE2;
    margin-bottom: 56px;
}

.motsu-hero__label {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 0.2em;
    color: #7B6B8E;
    border: 1px solid #7B6B8E;
    padding: 4px 14px;
    margin-bottom: 28px;
}

.motsu-hero h1 {
    font-family: 'Noto Serif JP', 'Hiragino Mincho ProN', serif;
    font-size: clamp(20px, 4.5vw, 32px);
    font-weight: 400;
    line-height: 1.7;
    color: #2A2A2A;
    margin-bottom: 16px;
}

.motsu-hero__banner {
    display: block;
    width: 100%;
    border-radius: 2px;
    margin: 20px 0 28px;
}

.motsu-info-logo {
    display: block;
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin: 0 auto 20px;
}

.motsu-hero__sub {
    font-size: 13px;
    color: #7B6B8E;
    letter-spacing: 0.05em;
}

/* SECTIONS */
.motsu-sec {
    margin-bottom: 64px;
}

.motsu-sec h2 {
    font-family: 'Noto Serif JP', 'Hiragino Mincho ProN', serif;
    font-size: clamp(16px, 2.8vw, 21px);
    font-weight: 400;
    line-height: 1.6;
    color: #2A2A2A;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid #D4CCE2;
    border-left: none;
    background: none;
    padding-left: 0;
}

.motsu-sec p {
    margin-bottom: 18px;
    font-size: 15px;
    line-height: 1.95;
}

.motsu-sec p:last-child { margin-bottom: 0; }

/* QUOTE */
.motsu-quote {
    background: #F2EEF7;
    border-left: 3px solid #7B6B8E;
    padding: 24px 28px;
    margin: 32px 0;
    font-family: 'Noto Serif JP', 'Hiragino Mincho ProN', serif;
    font-size: 15px;
    line-height: 2.1;
    color: #3D3351;
}

.motsu-quote__tag {
    display: block;
    margin-top: 14px;
    font-size: 13px;
    color: #7B6B8E;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
}

/* CAROUSEL */
.motsu-carousel-wrap {
    margin-bottom: 64px;
}

.motsu-carousel-label {
    font-size: 11px;
    letter-spacing: 0.2em;
    color: #7B6B8E;
    text-align: center;
    margin-bottom: 20px;
}

.motsu-carousel-outer {
    position: relative;
    overflow: hidden;
    border-radius: 2px;
    background: #EDE8F2;
}

.motsu-carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.motsu-carousel-slide {
    min-width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: #EDE8F2;
    color: #9B89A8;
}

.motsu-carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.motsu-placeholder-label {
    margin-top: 12px;
    font-size: 12px;
    letter-spacing: 0.05em;
}

.motsu-carousel-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 20px;
}

.motsu-carousel-btn {
    background: none;
    border: 1px solid #D4CCE2;
    color: #7B6B8E;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.motsu-carousel-btn:hover {
    background: #7B6B8E;
    color: white;
    border-color: #7B6B8E;
}

.motsu-dots {
    display: flex;
    gap: 8px;
    align-items: center;
}

.motsu-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #D4CCE2;
    cursor: pointer;
    transition: background 0.3s;
}

.motsu-dot.is-active {
    background: #7B6B8E;
}

/* FEATURE GRID */
.motsu-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin-top: 8px;
}

.motsu-feature-box {
    padding: 24px 20px;
    border: 1px solid #D4CCE2;
    border-radius: 2px;
}

.motsu-feature-box__num {
    font-size: 11px;
    letter-spacing: 0.12em;
    color: #7B6B8E;
    margin-bottom: 10px;
}

.motsu-feature-box h3 {
    font-family: 'Noto Serif JP', 'Hiragino Mincho ProN', serif;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 10px;
    line-height: 1.7;
    color: #2A2A2A;
    background: none;
    padding: 0;
    border: none;
}

.motsu-feature-box p {
    font-size: 13px;
    color: #555;
    line-height: 1.85;
    margin-bottom: 0;
}

/* RECOMMEND LIST */
.motsu-recommend {
    list-style: none;
    padding: 0;
}

.motsu-recommend li {
    padding: 13px 0 13px 22px;
    border-bottom: 1px solid #EDE8F2;
    font-size: 14px;
    position: relative;
    line-height: 1.7;
}

.motsu-recommend li::before {
    content: '─';
    position: absolute;
    left: 0;
    color: #7B6B8E;
}

/* REVIEWS */
.motsu-rating {
    text-align: center;
    padding: 10px 0 20px;
    font-size: 13px;
    color: #7B6B8E;
}

.motsu-review {
    padding: 22px 24px;
    background: #F2EEF7;
    border-radius: 2px;
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.85;
    font-style: italic;
    color: #3D3351;
}

.motsu-review__meta {
    display: block;
    margin-top: 10px;
    font-style: normal;
    font-size: 12px;
    color: #9B89A8;
}

/* INFO TABLE */
.motsu-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    margin-top: 16px;
}

.motsu-table th {
    text-align: left;
    padding: 13px 16px;
    background: #EDE8F2;
    color: #7B6B8E;
    font-weight: 500;
    width: 28%;
    vertical-align: top;
    line-height: 1.7;
    border-bottom: 1px solid #FAF9F7;
}

.motsu-table tr:last-child th {
    border-bottom: none;
}

.motsu-table td {
    padding: 13px 16px;
    border-bottom: 1px solid #D4CCE2;
    vertical-align: top;
    line-height: 1.85;
}

.motsu-table tr:last-child td {
    border-bottom: none;
}

/* PR BANNER */
.motsu-pr-banner {
    display: block;
    width: 100%;
    border-radius: 2px;
    margin: 24px 0;
}

/* SALON PHOTOS */
.motsu-salon-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin: 16px 0 24px;
}

.motsu-salon-grid img {
    width: 100%;
    display: block;
    border-radius: 2px;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

/* CTA */
.motsu-cta-group {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.motsu-cta-group--center {
    justify-content: center;
    margin-top: 32px;
}

.motsu-btn {
    display: inline-flex;
    align-items: center;
    padding: 13px 24px;
    text-decoration: none;
    font-size: 13px;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    letter-spacing: 0.05em;
    transition: all 0.2s;
    border-radius: 2px;
}

.motsu-btn--primary {
    background: #7B6B8E;
    color: white !important;
}

.motsu-btn--primary:hover { background: #6A5A7D; }

.motsu-btn--secondary {
    background: none;
    color: #7B6B8E !important;
    border: 1px solid #7B6B8E;
}

.motsu-btn--secondary:hover {
    background: #7B6B8E;
    color: white !important;
}

/* CLOSING */
.motsu-closing {
    text-align: center;
    padding: 52px 28px;
    background: #EDE8F2;
    border-radius: 2px;
    margin-top: 64px;
}

.motsu-closing p {
    font-family: 'Noto Serif JP', 'Hiragino Mincho ProN', serif;
    font-size: 15px;
    color: #3D3351;
    line-height: 2.3;
    margin-bottom: 0;
}

@media (min-width: 601px) {
    .motsu-carousel-outer {
        max-width: 380px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 600px) {
    .motsu-inner { padding: 0 16px 60px; }
    .motsu-hero { padding: 40px 0 32px; }
    .motsu-cta-group { flex-direction: column; }
    .motsu-btn { justify-content: center; text-align: center; }
    .motsu-table th { width: 35%; }
}
