@charset "UTF-8";

.common_page_wrap {
	padding: 0 0 165px 0;
	background: #fff;
	position: relative;
	border-radius: 10px 0 0 0;
	margin: 0 auto;
	margin-top: -235px;
		}
	
		img {
			border-radius: 6px;
		}

		.img-flexible-ratio {
			width: 100%;
			aspect-ratio: 3 / 4;
			object-fit: cover;
			display: block;
		}


		@media (max-width: 750px) {
			.img-flexible-ratio {
				max-width: 100%;
				aspect-ratio: 16 / 9;
			}
			.common_page_wrap {
				width: 100vw;
			}
		}
	
        .page_restoration section {
            padding: 60px 0;
        }

        @media screen and (max-width: 750px) {
            .page_restoration section {
                padding: 40px 0;
            }
        }

        /* 見出しスタイル */
        .page_restoration .title_box {
            text-align: center;
            margin-bottom: 40px;
        }

        .page_restoration .title_box .title {
            font-size: 2rem;
            color: var(--color_text);
            display: inline-block;
            font-weight: bold;
        }

        .page_restoration .title_box .en {
            color: var(--color_main);
            font-size: 1rem;
            margin-top: 0.5rem;
            display: block;
        }

        @media (min-width: 960px) {
            .page_restoration .title_box .title {
                font-size: 2.4rem;
            }

            .page_restoration .title_box .en {
                font-size: 1.2rem;
            }
        }

        .page_restoration .section_intro .flex_sb {
            align-items: center;
            gap: 20px;
        }

        .page_restoration .section_intro .text_box {
            width: 60%;
        }

        .page_restoration .section_intro .image_box {
            width: 35%;
        }

        @media screen and (max-width: 750px) {
            .page_restoration .section_intro .flex_sb {
                flex-direction: column-reverse;
            }

            .page_restoration .section_intro .text_box,
            .page_restoration .section_intro .image_box {
                width: 100%;
            }
        }

        /* 主な工事内容セクション */
        .page_restoration .section_scope .text_area .lead {
            margin-bottom: 40px;
            /* 余白を空ける */
        }

        .construction_content {
            margin-bottom: 60px;
            /* 下のコンテンツとの余白を追加 */
        }

        .construction_content .c-secTitle {
            margin-bottom: 30px;
            /* 見出し下の余白 */
        }

        @media screen and (max-width: 750px) {
            .construction_content {
                margin-bottom: 40px;
            }
        }

        .construction_grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-bottom: 40px;
        }

        .construction_item {
            background: #fff;
            border: 1px solid #eee;
            padding-bottom: 15px;
			border-radius: 6px;
        }

        .construction_item .image_box {
            margin-bottom: 10px;
        }

        .construction_item .text_box {
            padding: 0 15px;
        }

        .construction_item h4 {
            color: var(--color_main);
            font-weight: bold;
            font-size: 1.1rem;
            margin-bottom: 8px;
            border-bottom: 2px solid var(--color_main);
            padding-bottom: 4px;
            display: inline-block;
        }

        .construction_item p {
            font-size: 0.9rem;
            line-height: 1.5;
        }

        @media screen and (max-width: 750px) {
            .construction_grid {
                grid-template-columns: 1fr;
            }
        }

        /* テーブルデザイン */
        .scope_table_box {
            overflow-x: auto;
        }

        .scope_table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 20px;
            min-width: 600px;
            /* SPでの横スクロール用 */
        }

        .scope_table th,
        .scope_table td {
            border: 1px solid #ddd;
            padding: 15px;
            vertical-align: top;
        }

        .scope_table th {
            color: #fff;
            width: 50%;
            text-align: center;
        }

        .scope_table th.owner {
            background-color: var(--color_main);
        }

        .scope_table th.tenant {
            background-color: var(--color_deep04);
        }

        .scope_table th small {
            display: block;
            font-weight: normal;
            margin-top: 5px;
            font-size: 0.8em;
            opacity: 0.9;
        }

        .scope_table td ul {
            padding-left: 20px;
            list-style-type: disc;
            text-align: left;
        }

        .scope_table td ul li {
            margin-bottom: 0.5em;
        }

        /* ガイドラインセクション */
        .section_guideline .flex_sb {
            align-items: flex-start;
            gap: 40px;
        }

        .section_guideline .text_box {
            width: 70%;
        }

        .section_guideline .image_box {
            width: 30%;
            max-width: 300px;
            margin: 0 auto;
        }

        .guideline_points {
            margin: 20px 0;
            padding: 20px;
            background-color: var(--color_pale03);
            border-radius: 8px;
        }

        .guideline_points .point_title {
            font-weight: bold;
            color: var(--color_main);
            margin-bottom: 10px;
            font-size: 1.1rem;
        }

        .guideline_points ul {
            list-style: none;
            padding: 0;
        }

        .guideline_points ul li {
            position: relative;
            padding-left: 1.5em;
            margin-bottom: 0.5em;
        }

        .guideline_points ul li::before {
            content: "✔";
            position: absolute;
            left: 0;
            color: var(--color_main);
        }

        blockquote.ref-site {
            background: #f7f7f7;
            padding: 15px;
            border-left: 4px solid #ccc;
            font-size: 0.85rem;
            margin-top: 20px;
        }

        blockquote.ref-site a {
            color: var(--color_link);
            text-decoration: underline;
        }

        @media screen and (max-width: 750px) {
            .section_guideline .flex_sb {
                flex-direction: column-reverse;
				gap: 0px;
            }

            .section_guideline .text_box,
            .section_guideline .image_box {
                width: 100%;
                max-width: none;
            }

            .section_guideline .image_box {
                margin-bottom: 20px;
            }
        }

        /* 強みセクション */
        .section_strength .item {
            width: 32%;
            text-align: left;
        }

        .section_strength .item .head {
            /* デザイン変更: 下線スタイル */
            color: var(--color_main);
            font-weight: bold;
            font-size: 1.1rem;
            /* SP size: 小さく調整 */
            margin-bottom: 15px;
            line-height: 1.4;
            border-left: none;
            /* 左線なし */
            padding-left: 0;
            border-bottom: 2px solid var(--color_main);
            /* 下線追加 */
            padding-bottom: 4px;
            display: inline-block;
        }

        .section_strength .image_box {
            margin-bottom: 15px;
            position: relative;
            /* ラベル配置用 */
        }

        .section_strength .strength_label {
            position: absolute;
            top: 0;
            left: 0;
            background-color: #f0f0f0;
            color: #666;
            padding: 4px 12px;
            font-size: 0.9rem;
            font-weight: bold;
            letter-spacing: 0.05em;
        }

        @media (min-width: 960px) {
            .section_strength .item .head {
                font-size: 1.1rem;
                /* PC size: 小さく調整 */
            }
        }
		@media (max-width: 750px) {
			.section_strength ul li .en {
				top: 2.5vw;
				font-size: 5.1vw;
			}
		}

        @media screen and (max-width: 750px) {
            .section_strength .flex_sb {
                flex-direction: column;
                gap: 30px;
            }

            .section_strength .item {
                width: 100%;
            }
        }

        /* 流れセクション */
        .flow_box {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .flow_item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: #f9f9f9;
            padding: 30px;
            border: 1px solid #eee;
        }

		.flow_item .head {
			font-weight: bold; 
		}
	
        .flow_item .image_box {
            width: 30%;
            flex-shrink: 0;
        }

        .flow_item .text_content {
            width: 65%;
        }

        .flow_item:nth-child(even) {
            flex-direction: row-reverse;
        }

        @media screen and (max-width: 750px) {
            .flow_item {
                flex-direction: column !important;
                text-align: center;
                padding: 20px;
            }

            .flow_item .image_box {
                width: 100%;
                margin-bottom: 20px;
            }

            .flow_item .text_content {
                width: 100%;
            }
        }

	/* アパート */
	.page_apartment_restoration section {
        padding: 60px 0;
    }
    @media screen and (max-width: 750px) {
        .page_apartment_restoration section {
            padding: 40px 0;
        }
    }
	.c-secTitle {
        font-size: 1.5rem;
        font-weight: bold;
        color: var(--color_main);
        border-left: solid 4px var(--color_main);
        padding-left: 15px;
        margin-bottom: 20px;
    }
	.construction_list {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 20px;
    }
    .construction_list li {
        background: #f7f7f7;
        border: 1px solid #ddd;
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    /* 箇条書きリスト (シンプル) */
    .point_list_simple {
        list-style: none;
        padding: 0;
        margin: 20px 0;
    }
    .point_list_simple li {
        position: relative;
        padding-left: 1.5em;
        margin-bottom: 10px;
        line-height: 1.6;
    }
    .point_list_simple li::before {
        content: "✔";
        position: absolute;
        left: 0;
        color: var(--color_main);
        font-weight: bold;
    }

    /* 汎用2カラムレイアウト (左テキスト、右画像) */
    .flex_col2 {
        display: flex;
        justify-content: space-between;
        align-items: stretch; /* 上下辺を合わせる */
        gap: 40px;
        margin-bottom: 40px;
    }
    .flex_col2 .text_box { 
        width: 55%; 
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .flex_col2 .image_box { 
        width: 40%; 
    }
    .flex_col2 .image_box .img-placeholder {
        height: 100%; /* 高さをテキストエリアに合わせる */
        aspect-ratio: auto;
    }
    .flex_col2.reverse { flex-direction: row-reverse; }
    
    @media screen and (max-width: 750px) {
        .flex_col2 { flex-direction: column-reverse; gap: 20px; }
        .flex_col2.reverse { flex-direction: column-reverse; }
        .flex_col2 .text_box, .flex_col2 .image_box { width: 100%; }
        .flex_col2 .image_box .img-placeholder {
            aspect-ratio: 16 / 9; /* スマホ時は固定比率 */
            height: auto;
        }
    }

    /* 比較表セクション */
    .comparison_table_box {
        overflow-x: auto;
        margin-top: 30px;
    }
    .comparison_table {
        width: 100%;
        border-collapse: collapse;
        min-width: 600px;
    }
    .comparison_table th, .comparison_table td {
        border: 1px solid #ddd;
        padding: 15px;
        text-align: center;
        vertical-align: middle;
    }
    .comparison_table thead th {
        background-color: var(--color_main);
        color: #fff;
        font-weight: bold;
    }
    .comparison_table tbody th {
        background-color: #f7f7f7;
        font-weight: bold;
        width: 20%;
    }
    .comparison_table th.highlight, 
    .comparison_table td.highlight {
        background-color: var(--color_pale03);
        border: 2px solid var(--color_main);
        font-weight: bold;
        color: var(--color_main_dark);
    }
    .comparison_table thead th.highlight {
        background-color: var(--color_main_dark);
        color: #fff;
    }

    /* トラブルリスト */
    .troubles_box {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    .troubles_item {
        background: #f9f9f9;
        border-left: 4px solid var(--color_main);
        padding: 20px;
    }
    .troubles_item h3 {
        font-weight: bold;
        font-size: 1.1rem;
        margin-bottom: 10px;
        color: var(--color_text);
    }

    /* ポイント (3カラム) */
    .points_grid {
        display: flex;
        justify-content: space-between;
        gap: 20px;
    }
    .points_grid .item {
        width: 32%;
        background: #fdfdfd;
        border: 1px solid #eee;
        padding: 20px;
        box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    }
    .points_grid .item .image_box {
        margin-bottom: 15px;
    }
    .points_grid .item h4 {
        font-weight: bold;
        color: var(--color_main);
        margin-bottom: 15px;
        font-size: 1.1rem;
        line-height: 1.4;
        border-bottom: 2px solid var(--color_main);
        padding-bottom: 5px;
        display: inline-block;
    }
    @media screen and (max-width: 750px) {
        .points_grid { flex-direction: column; }
        .points_grid .item { width: 100%; }
    }

    /* 解決策・CTA誘導セクション */
    .section_solution {
        background-color: var(--color_pale02);
        padding: 40px 10px !important;
        text-align: center;
        border-radius: 8px;
        margin: 40px 0;
    }
    .section_solution .lead {
        font-size: 1.4rem;
        font-weight: bold;
        color: var(--color_main);
        margin-bottom: 20px;
        line-height: 1.6;
    }
    .section_solution p {
        max-width: 800px;
        margin: 0 auto;
        line-height: 1.8;
    }
    .section_solution .offer_text {
        margin-top: 40px;
        padding: 20px;
        background: #fff;
        border: 2px dashed var(--color_main);
        border-radius: 8px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }
    .section_solution .offer_text p {
        font-weight: bold;
        color: var(--color_text);
        margin-bottom: 20px;
    }
    
    /* オファー内ボタン */
    .offer_btns {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-top: 20px;
    }
    .offer_btns .btn_item {
        width: 280px;
        max-width: 100%;
    }
    .offer_btns a {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 15px 20px;
        border-radius: 8px;
        color: #fff;
        font-weight: bold;
        text-decoration: none;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        transition: opacity 0.3s, transform 0.3s;
        font-size: 1.1rem;
    }
    .offer_btns a:hover {
        opacity: 0.9;
        transform: translateY(-2px);
    }
    .offer_btns .btn_quote { background-color: var(--color_deep04, #f09f4d); }
    .offer_btns .btn_contact { background-color: var(--color_main, #285d23); }
    
    @media screen and (max-width: 750px) {
        .offer_btns {
            flex-direction: column;
            align-items: center;
        }
    }

.section_target_property {
            margin-bottom: 60px;
        }
        .property_card_wrap {
            display: flex;
            justify-content: space-between;
            gap: 20px;
        }
        .property_card {
            position: relative;
            display: block;
            width: calc(50% - 10px);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
            transition: transform 0.3s, box-shadow 0.3s;
            aspect-ratio: 4 / 3; /* 高さを揃える */
            background-color: #f0f0f0;
        }
        .property_card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
            opacity: 1; /* aタグのデフォルトhover影響を打ち消す */
        }
        .property_card .image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }
        .property_card .image img, 
        .property_card .image .img-placeholder {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        /* 画像の上に暗いレイヤーを敷いてテキストを読みやすくする */
        .property_card .mask {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.7) 100%);
            z-index: 2;
        }
        .property_card .text_box {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 30px;
            z-index: 3;
            color: #fff;
        }
        .property_card .text_box .title {
            font-size: 1.5rem;
            font-weight: bold;
            margin-bottom: 10px;
            color: #fff;
            text-shadow: 0 2px 4px rgba(0,0,0,0.5);
        }
        .property_card .text_box .desc {
            font-size: 0.95rem;
            line-height: 1.6;
            text-shadow: 0 1px 3px rgba(0,0,0,0.6);
            margin-bottom: 0;
            color: #f9f9f9;
        }
        .property_card .arrow {
            position: absolute;
            right: 20px;
            bottom: 20px;
            z-index: 3;
            color: #fff;
            font-size: 1.2rem;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            border: 1px solid #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background-color 0.3s, color 0.3s;
            margin: 0;
        }
        .property_card:hover .arrow {
            background-color: #fff;
            color: var(--color_main);
        }
    
        @media screen and (max-width: 750px) {
            .property_card_wrap {
                flex-direction: column;
            }
            .property_card {
                width: 100%;
                aspect-ratio: auto;
                min-height: 220px;
            }
            .property_card .text_box {
                padding: 20px;
                padding-right: 50px; /* 矢印スペース確保 */
            }
            .property_card .text_box .title {
                font-size: 1.3rem;
            }
            .property_card .text_box .desc {
                font-size: 0.85rem;
            }
            .property_card .arrow {
                right: 15px;
                bottom: 15px;
            }
        }