@charset "utf-8";

/* ==========================================================================
   Pro-Coating Page Styles
   ========================================================================== */

/* イントロ */
.pc-intro {
    margin-bottom: 60px;
}

.pc-intro__label {
    font-family: "Inter", sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    color: #AD0306;
    letter-spacing: 0.1em;
    margin-bottom: 4px;
}

.pc-intro__heading {
    font-family: "Inter", sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: #AD0306;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
    line-height: 1.1;
}

.pc-intro__text {
    line-height: 1.9;
    margin-bottom: 1em;
}

/* ギャラリーグリッド */
.pc-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
}

.pc-gallery figure {
    margin: 0;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.pc-gallery figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 特徴ブロック（画像左 + テキスト右） */
.pc-feature {
    margin-bottom: 40px;
}

.pc-feature__item {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
}

.pc-feature__item:last-child {
    border-bottom: none;
}

.pc-feature__image {
    flex: 0 0 40%;
    max-width: 40%;
    margin: 0;
    overflow: hidden;
}

.pc-feature__image img {
    width: 100%;
    height: auto;
    display: block;
}

.pc-feature__body {
    flex: 1;
}

.pc-feature__label {
    display: inline-block;
    background: #000;
    color: #fff;
    font-weight: 700;
    padding: 10px 12px;
    margin-bottom: 12px;
    letter-spacing: 0.08em;
}

.pc-feature__title {
    font-family: "Zen Old Mincho", serif;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.4;
}

.pc-feature__text {
    line-height: 1.9;
}

/* オリジナルコーティング剤 */
.pc-original {
    margin-bottom: 0;
}

.pc-original__label {
    font-family: "Inter", sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    color: #AD0306;
    letter-spacing: 0.12em;
    margin-bottom: 6px;
    display: block;
}

.pc-original__heading {
    font-family: "Zen Old Mincho", serif;
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.3;
    color: #111;
}

.pc-original__fullimg {
    margin: 0 0 32px;
}


.pc-original__text {
    line-height: 1.9;
    margin-bottom: 28px;
}

/* 追加説明文（2カラム） */
.pc-desc-block {
    display: flex;
    gap: 48px;
    align-items: center;
    margin-top: 40px;
}

.pc-desc-block__text {
    flex: 1;
    line-height: 1.9;
}

.pc-desc-block__text p {
    margin-bottom: 1em;
}

.pc-desc-block__image {
    flex: 0 0 42%;
    max-width: 42%;
    margin: 0;
    overflow: hidden;
}

.pc-desc-block__image img {
    width: 100%;
    height: auto;
    display: block;
}

/* 仕事の流れ */
.pc-flow__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.pc-flow__item {
    display: flex;
    gap: 16px;
    align-items: center;
    padding: 40px;
    border-bottom: 1px solid #ddd;
}

/* 左列（奇数）のみ右ボーダー（縦仕切り線） */
.pc-flow__item:nth-child(odd) {
    border-right: 1px solid #ddd;
}

/* 最終行（18工程 → 最後の2つ）は下ボーダーなし */
.pc-flow__item:nth-last-child(-n+2) {
    border-bottom: none;
}

.pc-flow__image {
    flex: 0 0 160px;
    max-width: 160px;
    margin: 0;
    overflow: hidden;
    border-radius: 3px;
}

.pc-flow__image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.pc-flow__body {
    flex: 1;
}

.pc-flow__step {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #AD0306;
    letter-spacing: 0.08em;
    margin-bottom: 10px;
    line-height: 1;
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.pc-flow__step span {
    font-size: 24px;
    letter-spacing: 0;
}

.pc-flow__title {
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 15px;
    line-height: 1.35;
}

.pc-flow__text {
    line-height: 1.65;
}

/* レスポンシブ */
@media screen and (max-width: 767px) {
    .pc-gallery {
        grid-template-columns: 1fr 1fr;
    }

    .pc-feature__item {
        flex-direction: column;
        gap: 20px;
    }

    .pc-feature__image {
        flex: none;
        max-width: 100%;
        
    }
    .pc-flow__image {
        margin: 0 auto;
        margin-bottom: 1em;
    }
    .pc-flow__step{
        text-align: center;
        margin: 0 auto;
        width: 100%;
        display: block;
    }

    .pc-flow__item{
        display: block;
        text-align: center;
        padding: 20px 0;
    }
    .pc-flow__item:nth-child(odd) {
    border-right: none;
}
    .pc-flow__text{
        text-align: left;
    }
    .pc-desc-block {
        flex-direction: column;
        gap: 24px;
    }

    .pc-desc-block__image {
        flex: none;
        max-width: 100%;
    }

    .pc-flow__grid {
        grid-template-columns: 1fr;
    }

    .pc-intro__heading {
        font-size: 1.75rem;
    }
}
