@charset 'UTF-8';

/*==============================
  dynoc-sheet / page.css
  ダイノックシート施工 固定ページスタイル
==============================*/

/* --- 変数 --- */
:root {
    --dc-blue: #3a81c4;
    --dc-blue-light: #f5f9fc;
    --dc-pink: #db7a9d;
    --dc-title: #4e4e4e;
    --dc-text: #4e4e4e;
    --dc-border: #c8daee;
    --dc-inner: 1600px;
    --dc-bg-gray: #f8f8f8;
}

/* --- 共通ユーティリティ --- */
.dc-inner {
    width: 100%;
    max-width: var(--dc-inner);
    margin: 0 auto;
    padding: 0 20px;
}

/* --- セクション基本 --- */
.dc-section {
    padding: 56px 0;
}
@media print, screen and (min-width: 768px) {
    .dc-section {
        padding: 88px 0;
    }
}

.dc-text--blue {
    color: var(--dc-blue) !important;
}

.dc-section--blue {
    background-color: var(--dc-blue-light);
}

.dc-section--consult {
    background-color: var(--dc-blue-light);
    margin-top: 100px;
}

/* --- セクションタイトル --- */
.dc-section-title {
    text-align: center;
    margin-bottom: 40px;
}
.dc-section-title h3 {
    display: inline-block;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--dc-title);
    padding-bottom: 18px;
    position: relative;
}
.dc-section-title h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background-color: var(--dc-blue);
    border-radius: 2px;
}
@media print, screen and (min-width: 768px) {
    .dc-section-title {
        margin-bottom: 56px;
    }
    .dc-section-title h3 {
        font-size: 24px;
    }
    .dc-section-title h3::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        max-width: 490px;
        height: 1px;
        background-color: var(--dc-blue);
        border-radius: 2px;
    }
}

.dc-section-title--left {
    text-align: left;
}
.dc-section-title--left h3 {
    display: block;
}
.dc-section-title--left h3::after {
    left: 0;
    transform: none;
}

/* --- セクションリード --- */
.dc-section-lead {
    width: 100%;
    max-width: 980px;
    font-size: 16px;
    line-height: 1.9;
    color: var(--dc-text);
    margin: 0 auto 32px;
    text-align: center;
}

/* --- 区切り線 --- */
.dc-divider {
    border: none;
    border-top: 1px solid var(--dc-border);
    margin: 0;
}

/* ============================================================
   MV / メインビジュアル
   ============================================================ */
.dc-mv {
    display: flex;
    flex-direction: column;
    position: relative;
}
@media print, screen and (min-width: 768px) {
    .dc-mv {
        flex-direction: row;
        min-height: 580px;
    }
}

.dc-mv__left {
    background-color: #fff;
    padding: 40px 20px;
    display: flex;
    align-items: center;
    order: 2;
}
@media print, screen and (min-width: 768px) {
    .dc-mv__left {
        order: 1;
        width: 42%;
        flex-shrink: 0;
        padding: 72px 48px 72px max(20px, calc((100vw - var(--dc-inner)) / 2 + 20px));
    }
}

.dc-mv__text {
    width: 100%;
    max-width: 560px;
}

.dc-mv__title {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--dc-title);
    margin-bottom: 20px;
}
@media print, screen and (min-width: 768px) {
    .dc-mv__title {
        font-size: 40px;
        margin-bottom: 28px;
    }
}

.dc-mv__body {
    font-size: 16px;
    line-height: 2;
    color: var(--dc-text);
}

.dc-mv__right {
    order: 1;
    overflow: hidden;
}
@media print, screen and (min-width: 768px) {
    .dc-mv__right {
        order: 2;
        flex: 1;
    }
}

.dc-mv__right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    min-height: 260px;
}
@media print, screen and (min-width: 768px) {
    .dc-mv__right img {
        min-height: 580px;
    }
}

/* ============================================================
   利用ケース (4カード)
   ============================================================ */
.dc-cases__lead {
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    color: var(--dc-blue);
    margin-bottom: 24px;
    line-height: 1.7;
}
@media print, screen and (min-width: 768px) {
    .dc-cases__lead {
        font-size: 24px;
        margin-bottom: 150px;
    }
}

.dc-cases__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    position: relative;
}
@media print, screen and (min-width: 768px) {
    .dc-cases__grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
}
.dc-cases__grid::before {
    content: '';
    width: 275px;
    height: 143px;
    display: block;
    position: absolute;
    top: -143px;
    left: 50%;
    transform: translateX(-50%);
    background: url('../../img/dynoc/illust-case.png') no-repeat center / contain;
}

.dc-cases__card {
    border: solid 1px var(--dc-blue);
    border-radius: 10px;
    padding: 24px 16px;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.7;
    color: var(--dc-blue);
    min-height: 88px;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media print, screen and (min-width: 768px) {
    .dc-cases__card {
        padding: 32px 24px;
        font-size: 22px;
        min-height: 112px;
    }
}

/* ============================================================
   スプリットレイアウト (画像 | テキスト)
   ============================================================ */
.dc-split {
    display: flex;
    flex-direction: column;
    gap: 28px;
    align-items: flex-start;
}
@media print, screen and (min-width: 768px) {
    .dc-split {
        flex-direction: row;
        gap: 64px;
        align-items: center;
    }
}

.dc-split__image {
    width: 100%;
    overflow: hidden;
    flex-shrink: 0;
}
@media print, screen and (min-width: 768px) {
    .dc-split__image {
        width: 55%;
    }
}

.dc-split__image img {
    width: 100%;
    height: auto;
    display: block;
}

.dc-split__text {
    flex: 1;
}

.dc-split__text p {
    font-size: 16px;
    line-height: 2;
    color: var(--dc-text);
    margin-bottom: 1.4em;
}
.dc-split__text p:last-child {
    margin-bottom: 0;
}

/* ============================================================
   施工場所 6アイテムグリッド
   ============================================================ */
.dc-areas {
    display: flex;
    flex-direction: column;
}
@media print, screen and (min-width: 768px) {
    .dc-areas {
        display: grid;
        grid-template-columns: 1fr 1fr;
        column-gap: 48px;
    }
}

.dc-area-item {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    padding: 30px;
    background-color: var(--dc-bg-gray);
    margin-bottom: 45px;
}
@media print, screen and (min-width: 768px) {
    .dc-area-item {
        flex-direction: row;
    }
}

.dc-area-item__text {
    flex: 1;
    padding-top: 0;
}
@media print, screen and (min-width: 768px) {
    .dc-area-item__text {
        padding-top: 35px;
    }
}

.dc-area-item__name {
    width: 100%;
    font-size: 18px;
    font-weight: 700;
    color: var(--dc-text);
    display: inline-block;
    padding-bottom: 10px;
    margin-bottom: 12px;
    border-bottom: 1px solid var(--dc-pink);
}
@media print, screen and (min-width: 768px) {
    .dc-area-item__name {
        font-size: 22px;
    }
}

.dc-area-item__body {
    font-size: 16px;
    line-height: 1.85;
    color: var(--dc-text);
}

.dc-area-item__image {
    width: 100%;
    height: 100%;
    flex-shrink: 0;
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    justify-content: center;
}
@media print, screen and (min-width: 768px) {
    .dc-area-item__image {
        width: auto;
        height: 100%;
        display: block;
    }
}

.dc-area-item__image img {
    height: 100%;
    display: block;
    object-fit: cover;
}

/* ============================================================
   コールアウトボックス (注意書き・相談促進)
   ============================================================ */
.dc-callout-wrap {
    background-color: #fff;
}

.dc-callout {
    background-color: var(--dc-blue-light);
    border-radius: 10px;
    padding: 32px 24px;
    text-align: center;
}
.dc-callout p {
    font-size: 16px;
    line-height: 2;
    color: var(--dc-text);
}
@media print, screen and (min-width: 768px) {
    .dc-callout {
        padding: 44px 64px;
    }
}

/* ============================================================
   キッチン詳細セクション (繰り返しブロック)
   ============================================================ */
.dc-detail {
    padding: 48px 0;
    border-bottom: 1px solid #e5e5e5;
}
.dc-detail:last-child {
    border-bottom: none;
}
@media print, screen and (min-width: 768px) {
    .dc-detail {
        padding: 64px 0;
    }
}

.dc-detail__title {
    font-size: 20px;
    font-weight: 700;
    color: var(--dc-text);
    display: inline-block;
    padding-bottom: 12px;
    margin-bottom: 20px;
}
@media print, screen and (min-width: 768px) {
    .dc-detail__title {
        font-size: 24px;
    }
}

.dc-detail__body {
    font-size: 16px;
    line-height: 2;
    color: var(--dc-text);
    margin-bottom: 1.2em;
}
.dc-detail__body:last-child {
    margin-bottom: 0;
}

.dc-detail .dc-split {
    align-items: normal;
}
.dc-detail .dc-split .dc-split__image {
    width: 100%;
    margin: 0 auto;
}
@media print, screen and (min-width: 768px) {
    .dc-detail .dc-split .dc-split__image {
        width: 30%;
    }
}

/* ============================================================
   チェックリスト
   ============================================================ */
.dc-checklist {
    list-style: none;
    padding: 0;
    margin: 16px 0 20px;
}

.dc-checklist__item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.7;
    color: var(--dc-text);
    padding: 7px 0;
}

.dc-checklist__item::before {
    content: '';
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background-color: var(--dc-blue);
    background-image: url('data:image/svg+xml,%3Csvg xmlns=\'http://www.w3.org/2000/svg\' viewBox=\'0 0 22 22\'%3E%3Cpath d=\'M9 15.5L4.5 11l1.5-1.5L9 12.5l7-7 1.5 1.5z\' fill=\'white\'/%3E%3C/svg%3E');
    background-size: contain;
    background-repeat: no-repeat;
    margin-top: 4px;
}

/* ============================================================
   施工例
   ============================================================ */
.dc-examples {
    margin-top: 8px;
}

.dc-example {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
    padding: 30px;
    background-color: var(--dc-bg-gray);
}
@media print, screen and (min-width: 768px) {
    .dc-example {
        flex-direction: row;
        gap: 64px;
        align-items: center;
    }
}

.dc-example__text {
    flex: 1;
    order: 2;
}
@media print, screen and (min-width: 768px) {
    .dc-example__text {
        order: 1;
        padding-top: 30px;
    }
}

.dc-example__title {
    font-size: 20px;
    font-weight: 700;
    color: var(--dc-text);
    display: inline-block;
    padding-bottom: 12px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--dc-pink);
}
@media print, screen and (min-width: 768px) {
    .dc-example__title {
        font-size: 24px;
    }
}

.dc-example__body {
    font-size: 16px;
    line-height: 2;
    color: var(--dc-text);
}

.dc-example__image {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    order: 1;
}
@media print, screen and (min-width: 768px) {
    .dc-example__image {
        order: 2;
        width: 40%;
        flex-shrink: 0;
    }
}

.dc-example__image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ============================================================
   料金テーブル
   ============================================================ */
.dc-price {
    margin-top: 8px;
}

.dc-price-label {
    width: 100%;
    max-width: 540px;
    margin: 0 auto 20px;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--dc-pink);
    letter-spacing: .05em;
}
@media print, screen and (min-width: 768px) {
    .dc-price-label {
        font-size: 22px;
        margin-bottom: 24px;
    }
}

.dc-price-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.dc-price-table {
    width: 100%;
    max-width: 540px;
    margin: 0 auto;
    border-collapse: collapse;
    min-width: 300px;
}

.dc-price-table thead tr,
.dc-price-table tbody tr {
    border-bottom: 1px solid #707070;
}
.dc-price-table tbody tr:last-child {
    border-bottom: none;
}

.dc-price-table th,
.dc-price-table td {
    padding: 12px 18px;
    font-size: 16px;
    text-align: left;
}

@media print, screen and (min-width: 768px) {
    .dc-price-table th,
    .dc-price-table td {
        padding: 14px 28px;
    }
}

/* 左列：青背景・白文字 */
.dc-price-table th:first-child,
.dc-price-table td:first-child {
    background-color: var(--dc-blue);
    color: #fff;
}

/* 右列：白背景 */
.dc-price-table th:last-child,
.dc-price-table td:last-child {
    background-color: #fff;
}

/* 右列のthのみ太字 */
.dc-price-table thead th:last-child {
    font-weight: 700;
}

.dc-price-note {
    font-size: 13px;
    color: #888;
    margin-top: 12px;
    text-align: center;
}
@media print, screen and (min-width: 768px) {
    .dc-price-note {
        font-size: 14px;
    }
}

/* ============================================================
   FAQ セクション (nursery-cleaning/page.css から流用・dc-プレフィックス化)
   ============================================================ */
.dc-sec-faq {
    padding: 56px 0 64px;
    margin-bottom: 0;
}

/* セクション見出し（左ボーダー装飾） */
.dc-heading--bordered {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--dc-title);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 36px;
    text-align: left;
}
.dc-heading--bordered::before {
    content: '';
    display: inline-block;
    flex-shrink: 0;
    width: 8px;
    height: 1.5em;
    background-color: var(--dc-blue);
    border-radius: 2px;
}

/* FAQ リスト */
.dc-faq-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.dc-faq-item {
    background-color: var(--dc-bg-gray);
    border-radius: 20px;
    margin-bottom: 14px;
    padding: 0 20px;
}
@media print, screen and (min-width: 768px) {
    .dc-faq-item {
        padding: 0 32px;
    }
}

.dc-faq-q,
.dc-faq-a {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 0;
    line-height: 1.75;
    color: var(--dc-text);
    font-size: 16px;
}

.dc-faq-q {
    font-weight: 700;
    cursor: pointer;
    margin-bottom: 0;
}
.dc-faq-a {
    padding-top: 0;
    padding-bottom: 24px;
}

/* Q / A アイコン */
.dc-faq-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    line-height: 1;
    margin-top: 1px;
}
.dc-faq-icon--q {
    background-color: var(--dc-blue);
}
.dc-faq-icon--a {
    background-color: var(--dc-pink);
}

.dc-faq-text {
    flex: 1;
    padding-top: 6px;
}