@charset "shift_jis";
.chi_wrap{
    overflow: hidden;
    & h2, h3, ul, li, p {
    	margin: 0;
    	padding: 0;
    }
    & ul, li {
    	list-style: none;
    }
    & a {
    	text-decoration: none;
    	color: #000000;
    }
    /*  メイン  */
    .chi_main_w {
    	background-color: #eff8e8;
    	box-sizing: border-box;
    	padding: clamp(40px, 5.7vh, 50px) 0px;
        .chi_main_in {
        	width: clamp(950px, 70vw, 1200px);
        	margin: 0 auto;
        	display: flex;
        	justify-content: space-between;
            gap: 0px 20px;
            .chi_main_box{
                box-sizing: border-box;
                padding: 0px 25px 25px 25px;
                width: clamp(420px, 32.3vw, 520px);
                position: relative;
                z-index: 0;
                &:before{
                    content: "";
                    width: 100%;
                    height: calc(100% - clamp(40px, 5.7vh, 45px));
                    position: absolute;
                    bottom: 0px;
                    right: 0;
                    z-index: -1;
                    background-color: #ffffff;
                    box-shadow: 0px 0px 7px 0px rgba(100, 100, 111, 0.2);
                    border-radius: 10px;
                }
                .chi_main_tit{
                    display: flex;
                    border: 2px solid #134b98;
                    background-color: #ffffff;
                    border-radius: 5px;
                    width: clamp(270px, 20.7vw, 370px);
                    padding: clamp(18px, 2.5vh, 20px) 0px clamp(13px, 1.8vh, 15px) 0px;
                    box-sizing: border-box;
                    justify-content: center;
                    align-items: flex-end;
                    gap: 0px 15px;
                    >h2{
                        font-size: clamp(20px, 1.5vw, 25px);
                        line-height: 1.2;
                        font-weight: bold;
                        letter-spacing: 0.1em;
                        >span{
                            font-size: clamp(25px, 1.9vw, 30px);
                        }
                    }
                    >p{
                        font-size: clamp(14px, 1vw, 18px);
                        line-height: 1.2;
                        font-weight: bold;
                        letter-spacing: 0em;
                    }
                }
                .chi_main_box_con{
                    margin: 35px 0px 0px 0px;
                    display: flex;
                    flex-wrap: wrap;
                    align-items: center;
                    .chi_main_box_block{
                        margin: 35px 0px 0px 0px;
                        width: 100%;
                        .chi_main_box_block_tit{
                            display: flex;
                            align-items: center;
                            gap: 0px 10px;
                            >hr{
                                width: 100%;
                                height: 3px;
                                background-color: #87d63a;
                                border: none;
                            }
                            >h3{
                                white-space: nowrap;
                                font-size: clamp(14px, 1.07vw, 18px);
                                line-height: 1.2;
                                font-weight: bold;
                                letter-spacing: 0.1em;
                            }
                        }
                        .chi_main_floor{
                            display: flex;
                            flex-wrap: wrap;
                            gap: 11px;
                            margin: 10px 0px 0px 0px;
                            >li{
                                width: calc((100% - 22px) / 3);
                                >a{
                                    display: block;
                                    border: 2px solid #87d63a;
                                    box-sizing: border-box;
                                    font-size: clamp(10px, 0.76vw, 14px);
                                    letter-spacing: 0.1em;
                                    border-radius: 5px;
                                    font-weight: bold;
                                    padding: clamp(10px, 1.4vh, 14px) clamp(11px, 0.84vw, 15px);
                                    position: relative;
                                    box-shadow: 1px 1px 0px 1px rgba(135, 214, 58, 1);
                                    transition: all 0.2s;
                                    &:hover{
                                        box-shadow: 0px 0px 0px 0px rgba(135, 214, 58, 1);
                                            transform: translate(3px, 3px);
                                    }
                                    &:after{
                                        content: "";
                                        display: block;
                                        width: clamp(20px, 1.53vw, 27px);
                                        height: clamp(20px, 1.53vw, 27px);
                                        background-image: url(/chintai/img/chintai/main_btn_arrow.webp);
                                        background-repeat: no-repeat;
                                        background-size: contain;
                                        position: absolute;
                                        top: 0;
                                        bottom: 0;
                                        margin: auto;
                                        right: 5px;
                                    }
                                }
                            }
                        }
                        form{
                            display: flex;
                            justify-content: space-between;
                            align-items: center;
                            margin: 10px 0px 0px 0px;
                            gap: 0px 10px;
                            .t_search_box{
                                width: calc(100% - 10px - clamp(45px, 3.4vw, 50px));
                            }
                            >input{
                                width: clamp(40px, 3vw, 50px);
                                transition: all 0.2s;
                                &:hover{
                                    opacity: 0.8;
                                }
                            }
                            .filter1{
                                display: flex;
                                align-items: center;
                                gap: 0px 5px;
                                font-size: clamp(11px, 0.84vw, 14px);
                                letter-spacing: 0.1em;
                                font-family: '游ゴシック', YuGothic, 'ヒラギノ角ゴ Pro', 'Hiragino Kaku Gothic Pro', 'Arial', 'メイリオ', 'Meiryo', sans-serif;
                                font-weight: bold;
                                .yachin_box{
                                    position: relative;
                                    &:after{
                                        content: "";
                                        position: absolute;
                                        top: 20px;
                                        right: 16px;
                                        width: 6px;
                                        height: 6px;
                                        border-bottom: 1px solid #000000;
                                        border-right: 1px solid #000000;
                                        transform: rotate(45deg);
                                    }
                                    select {
                                    	border: 2px solid #87d63a;
                                    	border-radius: 5px;
                                    	width: clamp(150px, 11.5vw, 195px);
                                    	height: 100%;
                                    	text-align: center;
                                    	height: clamp(45px, 6.4vh, 50px);
                                    	font-size: clamp(11px, 0.84vw, 14px);
                                    	letter-spacing: 0.1em;
                                    	font-family: '游ゴシック', YuGothic, 'ヒラギノ角ゴ Pro', 'Hiragino Kaku Gothic Pro', 'Arial', 'メイリオ', 'Meiryo', sans-serif;
                                    	font-weight: bold;
                                    	cursor: pointer;
                                    	-webkit-appearance: none;
                                    	appearance: none;
                                    	/* デフォルトの矢印を非表示 */
                                    }
                                }
                            }
                        }
                    .chi_main_condi{
                        display: flex;
                        flex-wrap: wrap;
                        gap: 10px;
                        margin: 10px 0px 0px 0px;
                        >li{
                            width: calc((100% - 10px) / 2);
                            overflow: hidden;
                            >a{
                                display: block;
                                border: 2px solid #87d63a;
                                box-sizing: border-box;
                                border-radius: 5px;
                                height: clamp(55px, 7.8vh, 65px);
                                background-size: 100%;
                                display: flex;
                                align-items: center;
                                justify-content: flex-end;
                                transition: all 0.2s;
                                &:hover{
                                    border: 2px solid #134b98;
                                    >p{
                                        background-color: #134b98;
                                    }
                                }
                                >p{
                                    background-color: #87d63a;
                                    width: clamp(80px, 6.1vw, 100px);
                                    line-height: clamp(25px, 3.5vh, 30px);
                                    text-align: center;
                                    color: #ffffff;
                                    font-size: clamp(10px, 0.76vw, 14px);
                                    letter-spacing: 0.1em;
                                    font-weight: bold;
                                    transition: all 0.2s;
                                }
                            }
                        }
                        >li:nth-child(1) a{
                            background-image: url(/chintai/img/chintai/main_condi_bg1.webp);
                        }
                        >li:nth-child(2) a {
                        	background-image: url(/chintai/img/chintai/main_condi_bg2.webp);
                        }
                        >li:nth-child(3) a {
                        	background-image: url(/chintai/img/chintai/main_condi_bg3.webp);
                        }
                        >li:nth-child(4) a {
                        	background-image: url(/chintai/img/chintai/main_condi_bg4.webp);
                        }
                    }
                    }
                    .chi_main_box_block:first-child{
                        margin: 0px;
                    }
                }
            }
            .chi_main_map{
                width: clamp(520px, 40vw, 660px);
                flex-shrink: 0;
                img {
                	display: block;
                	width: 100%!important;
                	height: auto!important;
                }
                div{
                    display: block;
                    width: 100%!important;
                	height: auto!important;
                }
            }
        }
    }
    /*  物件を探す  */
    .chi_ser_w{
        margin: clamp(80px, 11.4vh, 100px) auto 0px auto;
        position: relative;
        .chi_ser_tit_bg{
            display: block;
            width: clamp(700px, 53.8vw, 1000px);
            height: clamp(300px, 42.8vh, 400px);
            position: absolute;
            top: 0;
            left: calc(50% - clamp(100px, 7.6vw, 150px));
            z-index: -1;
            >img{
                width: 100%;
                height: clamp(300px, 42.8vh, 400px) !important;
                object-fit: cover;
                border-radius: 10px;
            }
        }
        .chi_ser_in{
            width: clamp(950px, 70vw, 1200px);
            margin: 0 auto;
            .chi_ser_tit_bg{
                position: absolute;
            }
            .chi_ser_tit_box{
                padding: clamp(80px, 11.4vh, 100px) 0px 0px 0px;
                >h2{
                    font-size: clamp(34px, 2.6vw, 44px);
                    line-height: 1.2;
                    font-weight: bold;
                    letter-spacing: 0.05em;
                    position: relative;
                    z-index: 0;
                    &:before{
                        content: "";
                        display: block;
                        background-repeat: no-repeat;
                        background-size: contain;
                        position: absolute;
                        left: 0px;
                        z-index: -1;
                        width: clamp(300px, 23vw, 367px);
                        height: clamp(74px, 10.5vh, 84px);
                        background-image: url(/chintai/img/chintai/ser_tit_eng.webp);
                        top: clamp(-55px, -7.8vh, -45px);
                    }
                }
                >p{
                    font-size: clamp(17px, 1.3vw, 22px);
                    line-height: 1.6;
                    font-weight: bold;
                    letter-spacing: 0.1em;
                    margin: clamp(25px, 3.5vh, 30px) 0px 0px 0px;
                    text-shadow: 0px 0px 5px rgba(255, 255, 255, 1);
                }
            }
            .chi_ser_commit{
                margin: clamp(55px, 7.8vh, 70px) 0px 0px 0px;
                border: 6px solid #b8c9e0;
                border-radius: 10px;
                background-color: #ffffff;
                position: relative;
                >h3{
                    position: absolute;
                    top: -15px;
                    left: clamp(35px, 2.6vw, 50px);
                    background-color: #ffffff;
                    font-size: clamp(20px, 1.5vw, 26px);
                    line-height: 1;
                    font-weight: bold;
                    letter-spacing: 0.1em;
                    padding: 0px clamp(30px, 2.3vw, 35px) 0px clamp(50px, 3.8vw, 65px);
                    &:before{
                        content: "";
                        display: block;
                        width: clamp(8px, 0.61vw, 13px);
                        height: clamp(8px, 0.61vw, 13px);
                        aspect-ratio: 1 / 1;
                        position: absolute;
                        border-radius: 50%;
                        background-color: #134b98;
                        top: 0;
                        bottom: 0;
                        margin: auto;
                        left: clamp(30px, 2.3vw, 40px);
                    }
                }
                >ul{
                    padding: clamp(40px, 5.7vh, 50px) clamp(35px, 2.6vw, 45px) clamp(25px, 3.5vh, 35px) clamp(35px, 2.6vw, 45px);
                    display: flex;
                    flex-wrap: wrap;
                    gap: 20px;
                    >li{
                        width: calc((100% - 20px) / 2);
                        >a{
                            display: flex;
                            border: 2px solid #87d63a;
                            box-sizing: border-box;
                            border-radius: 5px;
                            font-weight: bold;
                            padding: clamp(12px, 1.7vh, 14px) clamp(20px, 1.5vw, 25px) clamp(10px, 1.4vh, 12px) clamp(20px, 1.5vw, 25px);
                            box-shadow: 1px 1px 0px 1px rgba(135, 214, 58, 1);
                            gap: 0px 20px;
                            align-items: center;
                            position: relative;
                            transition: all 0.2s;
                            &:hover{
                                box-shadow: 0px 0px 0px 0px rgba(135, 214, 58, 1);
                                transform: translate(3px, 3px);
                            }
                            &:after{
                                content: "";
                                display: block;
                                width: clamp(25px, 1.9vw, 30px);
                                height: clamp(12px, 1.7vh, 15px);
                                background-image: url(/chintai/img/chintai/ser_btn_arrow.webp);
                                background-repeat: no-repeat;
                                background-size: contain;
                                position: absolute;
                                bottom: clamp(15px, 2.1vh, 18px);
                                right: clamp(15px, 1.1vw, 18px);
                            }
                            >img{
                                width: clamp(65px, 5vw, 80px);
                            }
                            .chi_ser_commit_gr{
                                font-size: clamp(14px, 1vw, 18px);
                                letter-spacing: 0.1em;
                                line-height: 1.2;
                            }
                            .chi_ser_commit_bk {
                            	font-size: clamp(18px, 1.3vw, 24px);
                            	letter-spacing: 0.1em;
                                line-height: 1.2;
                                margin: 10px 0px 0px 0px;
                            }
                        }
                    }
                }
            }
            .chi_ser_bn{
                display: block;
                margin: clamp(25px, 3.5vh, 30px) 0px 0px 0px;
                transition: all 0.2s;
                &:hover{
                    opacity: 0.8;
                }
                >img{
                    width: 100%;
                }
            }
        }
    }
    /*  特選  */
    .lpo_container{
        display: flex;
        width: clamp(950px, 70vw, 1200px);
        margin: clamp(65px, 9.2vh, 80px) auto 0px auto;
        justify-content: space-between;
        gap: 0px 25px;
        .lpo_main_contents{
            margin: 25px 0px 0px 0px;
            width: clamp(800px, 61.5vw, 880px);
            .chi_bukken_w{
                margin: clamp(40px, 5.7vh, 50px) 0px 0px 0px;
                .chi_bukken_top{
                    display: flex;
                    justify-content: space-between;
                    align-items: flex-end;
                    >a{
                        display: block;
                        font-size: clamp(16px, 1.2vw, 20px);
                        font-weight: bold;
                        line-height: 1.7;
                        padding: 0px clamp(60px, 4.6vw, 75px) 0px 2px;
                        position: relative;
                        letter-spacing: 0.1em;
                        z-index: 0;
                        &:before{
                            position: absolute;
                            content: "";
                            bottom: 0;
                            left: -2px;
                            width: calc(100% - 25px);
                            height: 1px;
                            background-color: #000000;
                            z-index: -1;
                        }
                        &:after{
                            content: "";
                            display: block;
                            width: clamp(35px, 2.6vw, 45px);
                            height: clamp(35px, 2.6vw, 45px);
                            background-repeat: no-repeat;
                            background-size: contain;
                            position: absolute;
                            bottom: -3px;
                            right: 0;
                            z-index: -2;
                            transition: all 0.2s;
                        }
                    }
                }
                .chi_bukken_tit{
                    display: flex;
                    gap: 0px 40px;
                    align-items: baseline;
                    >h2{
                        font-size: clamp(30px, 2.3vw, 36px);
                        letter-spacing: 0.05em;
                        line-height: 1.2;
                        font-weight: bold;
                        position: relative;
                        &:after {
                        	position: absolute;
                        	content: "";
                        	right: -20px;
                        	bottom: 8px;
                        	width: 2px;
                        	height: 20px;
                        	transform: rotate(25deg);
                        }
                    }
                    >p {
                    	font-size: clamp(16px, 1.2vw, 20px);
                    	letter-spacing: 0.05em;
                    	line-height: 1.2;
                    	font-weight: bold;
                    }
                }
                .chi_bukken_box{
                    margin: clamp(15px, 2.1vh, 20px) 0px 0px 0px;
                    display: flex;
                    gap: 0px 20px;
                    >li{
                        width: calc((100% - 40px) / 3);
                        >a{
                            display: block;
                            box-shadow: 0px 0px 10px 0px rgba(100, 100, 111, 0.2);
                            border-radius: 10px;
                            background-color: #ffffff;
                            box-sizing: border-box;
                            padding: 10px;
                            &:hover{
                                .chi_bukken_pho{
                                    img{
                                        transform: scale(1.1);
                                    }
                                }
                            }
                            .chi_bukken_pho{
                                width: 100%;
                                aspect-ratio: 26 / 15;
                                border-radius: 5px;
                                overflow: hidden;
                                position: relative;
                                >img{
                                    width: 100%;
                                    height: 100%;
                                    object-fit: cover;
                                    transition: all 0.2s;
                                }
                                .chi_bukken_floor{
                                    display: inline-block;
                                    border-radius: 5px 0 5px 0;
                                    padding: 7px 30px 3px 30px;
                                    background: #FFF;
                                    line-height: 1.2;
                                    position: absolute;
                                    bottom: 0;
                                    right: 0;
                                    border: 2px solid #87d63a;
                                    font-size: clamp(10px, 0.76vw, 13px);
                                    letter-spacing: 0.05em;
                                    font-weight: bold;
                                }
                            }
                            .chi_bukken_name{
                                font-size: clamp(14px, 1vw, 18px);
                                font-weight: bold;
                                margin: 13px 0px 0px 0px;
                                overflow: hidden;
                                white-space: nowrap;
                                text-overflow: ellipsis;
                            }
                            .chi_bukken_mo{
                                display: flex;
                                font-weight: bold;
                                margin: 7px 0px 0px 0px;
                                gap: 0px 20px;
                                align-items: flex-end;
                                .chi_bukken_yachin{
                                    font-size: clamp(14px, 1vw, 18px);
                                    position: relative;
                                    letter-spacing: 0.05em;
                                    line-height: 1.2;
                                    &:after{
                                        position: absolute;
                                        content: "";
                                        right: -10px;
                                        bottom: 3px;
                                        width: 1px;
                                        height: 13px;
                                        transform: rotate(25deg);
                                        background: #000000;
                                    }
                                }
                                .chi_bukken_initial{
                                    font-size: clamp(10px, 0.76vw, 12px);
                                    letter-spacing: 0.05em;
                                    line-height: 1.2;
                                }
                            }
                            .chi_bukken_add{
                                font-size: clamp(11px, 0.84vw, 13px);
                                letter-spacing: 0.05em;
                                line-height: 1.2;
                                font-weight: bold;
                                margin: 9px 0px 0px 0px;
                            }
                            .chi_bukken_com{
                                font-size: clamp(10px, 0.76vw, 13px);
                                letter-spacing: 0.05em;
                                line-height: 1.2;
                                margin: 12px 0px 0px 0px;
                                background-color: #eff4fa;
                                padding: clamp(10px, 1.4vh, 12px) clamp(14px, 1.07vw, 17px) clamp(8px, 1.1vh, 10px) clamp(14px, 1.07vw, 17px);
                                >span{
                                    overflow: hidden;
                                    display: -webkit-box;
                                    -webkit-box-orient: vertical;
                                    -webkit-line-clamp: 2;
                                }
                            }
                        }
                    }
                }
            }
            .chi_bukken_w:nth-of-type(1) {
            	margin: 0px;
            }
            .chi_bukken_bl{
                .chi_bukken_tit{
                    >h2{
                        &:after {
                        	background: #134b98;
                        }
                    }
                }
                .chi_bukken_top{
                    >a{
                        &:hover{
                            &:after{
                                background-image: url(/chintai/img/chintai/bukken_arrow_pk.webp);
                            }
                        }
                        &:after{
                            background-image: url(/chintai/img/chintai/bukken_arrow_bl.webp);
                        }
                    }
                }
            }
            .chi_bukken_pk {
            	.chi_bukken_tit {
            		>h2 {
            			&:after {
            				background: #ec187a;
            			}
            		}
            	}
                .chi_bukken_top {
                	>a {
                        &:hover {
                        	&:after {
                        		background-image: url(/chintai/img/chintai/bukken_arrow_bl.webp);
                        	}
                        }
                		&:after {
                			background-image: url(/chintai/img/chintai/bukken_arrow_pk.webp);
                		}
                	}
                }
            }
            .chi_info_w{
                margin: clamp(40px, 5.7vh, 50px) 0px 0px 0px;
                border: 6px solid #dbf3c4;
                border-radius: 10px;
                background-color: #ffffff;
                position: relative;
                >h2{
                    position: absolute;
                    top: -15px;
                    left: clamp(15px, 1.15vw, 20px);
                    background-color: #ffffff;
                    font-size: clamp(18px, 1.3vw, 22px);
                    line-height: 1;
                    font-weight: bold;
                    letter-spacing: 0.1em;
                    padding: 0px clamp(20px, 1.5vw, 30px) 0px clamp(40px, 3vw, 55px);
                    &:before{
                        content: "";
                        display: block;
                        width: clamp(7px, 0.53vw, 10px);
                        height: clamp(7px, 0.53vw, 10px);
                        aspect-ratio: 1 / 1;
                        position: absolute;
                        border-radius: 50%;
                        background-color: #87d63a;
                        top: 0;
                        bottom: 0;
                        margin: auto;
                        left: clamp(25px, 1.9vw, 35px);
                    }
                }
                .chi_info_in{
                    padding: clamp(25px, 3.5vh, 35px) clamp(30px, 2.3vw, 44px) clamp(20px, 2.8vh, 25px) clamp(30px, 2.3vw, 44px);
                    .chi_info_fuki{
                        background-color: #eff4fa;
                        box-sizing: border-box;
                        text-align: center;
                        font-size: clamp(13px, 1vw, 18px);
                        font-weight: bold;
                        letter-spacing: 0.1em;
                        border-radius: 5px;
                        padding: clamp(24px, 3.4vh, 30px) 0px clamp(20px, 2.8vh, 26px) clamp(30px, 2.3vw, 35px);
                        position: relative;
                        z-index: 0;
                        &:before{
                            content: "";
                            display: block;
                            width: clamp(24px, 1.8vw, 29px);
                            height: clamp(30px, 4.2vh, 40px);
                            background-image: url(/chintai/img/chintai/helpful_icon.webp);
                            background-repeat: no-repeat;
                            background-size: contain;
                            position: absolute;
                            top: 0;
                            bottom: 0;
                            margin: auto;
                            left: clamp(30px, 2.3vw, 40px);
                        }
                        &:after{
                            position: absolute;
                            content: "";
                            right: 0;
                            left: 0;
                            margin: auto;
                            bottom: clamp(-20px, -2.8vh, -15px);
                            width: clamp(35px, 2.6vw, 45px);
                            height: clamp(20px, 2.8vh, 25px);
                            background: #eff4fa;
                            clip-path: polygon(0 0, 50% 100%, 100% 0);
                            z-index: -1;
                        }
                    }
                    >ul{
                        display: flex;
                        flex-wrap: wrap;
                        margin: 25px 0px 0px 0px;
                        gap: 10px;
                        >li{
                            width: calc((100% - 20px) / 3);
                            >a{
                                display: block;
                                text-align: center;
                                background-color: #fdfdfd;
                                border: 1px solid #bfbfbf;
                                border-radius: 5px;
                                font-size: clamp(12px, 0.92vw, 15px);
                                font-weight: bold;
                                letter-spacing: 0.1em;
                                padding: clamp(16px, 2.2vh, 21px) 0px clamp(14px, 2vh, 19px) 0px;
                                transition: all 0.2s;
                                &:hover{
                                    background-color: #f4f3f3;
                                }
                            }
                        }
                    }
                }
            }
        }
    }
    /*  管理について  */
    .t_lend_w {
    	margin: clamp(65px, 9.2vh, 80px) auto 0px auto;
    	position: relative;
    	padding: clamp(65px, 9.2vh, 80px) 0px 0px 0px;
    	position: relative;
        background-color: #f4f3f3;
    	.t_lend_in {
    		position: relative;
            z-index: 0;
    		&:before {
    			content: "";
    			width: 92%;
    			height: 100%;
    			position: absolute;
    			top: 0px;
    			right: 0;
    			z-index: -1;
    			background-color: #ffffff;
    		}
    		&:after {
    			content: "";
    			display: block;
    			width: clamp(35px, 2.6vw, 45px);
    			height: clamp(508px, 72.5vh, 608px);
    			background-image: url(/img/top/lend_eng.webp);
    			background-repeat: no-repeat;
    			background-size: contain;
    			position: absolute;
    			top: clamp(150px, 21.4vh, 165px);
    			left: calc(8% - 20px);
    		}
    		.t_lend_box {
    			width: clamp(950px, 70vw, 1200px);
                margin: 0px auto;
    			padding: clamp(110px, 15.7vh, 130px) 0px clamp(50px, 7.1vh, 60px) 0px;
                >h2{
                    &:before{
                        width: clamp(600px, 46.1vw, 630px);
                        height: clamp(60px, 85.7vh, 75px);
                        background-image: url(/chintai/img/chintai/lend_tit.webp);
                        top: clamp(-40px, -8.5vh, -60px);
                    }
                }
    			.t_lend_top {
    				display: flex;
    				justify-content: space-between;
    				align-items: center;
    				>h3 {
    					font-size: clamp(34px, 2.6vw, 40px);
    					line-height: 1.7;
    					>span {
    						border-bottom: 3px solid #87d63a;
    					}
    				}
    				>img {
    					width: clamp(370px, 28.4vw, 439px);
    				}
    			}
    			.t_lend_btm {
    				display: flex;
    				margin: clamp(30px, 4.2vh, 40px) 0px 0px 0px;
    				justify-content: space-between;
    				align-items: center;
    				.t_lend_btm_l {
    					width: clamp(560px, 43vw, 680px);
    					.t_lend_btm_bn {
    						transition: all 0.2s;
                            display: flex;
                            align-items: flex-start;
    						&:hover {
    							opacity: 0.8;
    						}
    						>img {
    							width: 100%;
    							height: 100%;
                                display: block;
    						}
    					}
    					.t_lend_btm_con {
    						margin: 30px 0px 0px 0px;
    						border-radius: 5px;
    						box-sizing: border-box;
    						padding: 30px 25px;
    						box-shadow: 0px 0px 5px 0px rgba(51, 51, 51, 0.2);
    						background-color: #ffffff;
    						.t_lend_btm_tit {
    							display: flex;
    							gap: 0px 10px;
    							align-items: center;
    							>h4 {
    								font-size: clamp(18px, 1.3vw, 22px);
    								margin: 0px;
    								white-space: nowrap;
    							}
    							>hr {
    								width: 100%;
    								height: 2px;
    								background-color: #d9af01;
    								border: none;
    							}
    						}
    						>ul {
    							display: flex;
    							gap: 0px 10px;
    							align-items: center;
    							margin: 25px 0px 0px 0px;
    							>li {
    								width: calc((100% - 20px) / 3);
    								>a {
    									display: block;
    									background-color: #f0f0f0;
    									border-radius: 22.5px;
    									font-size: clamp(13px, 1vw, 16px);
    									letter-spacing: 0;
    									text-align: center;
    									font-weight: bold;
    									line-height: 1;
    									padding: clamp(14px, 2vh, 16px) 0px clamp(11px, 1.5vh, 13px) 0px;
    									transition: all 0.2s;
    									&:hover {
    										background-color: #dbd9d9;
    									}
    								}
    							}
    						}
    						.t_lend_btm_land {
    							margin: 20px 0px 0px 0px;
    							.t_lend_btm_land_tit {
    								display: flex;
    								align-items: center;
    								gap: 0px 10px;
    								>img {
    									width: clamp(14px, 1.07vw, 18px);
    								}
    								>p {
    									font-size: clamp(15px, 1.15vw, 19px);
    									font-weight: bold;
    								}
    							}
    							>ul {
    								display: flex;
    								flex-wrap: wrap;
    								gap: 10px;
    								align-items: center;
    								margin: 5px 0px 0px 0px;
    								>li {
    									width: calc((100% - 20px) / 3);
    									>a {
    										display: block;
    										background-color: #f0f0f0;
    										border-radius: 22.5px;
    										font-size: clamp(13px, 1vw, 16px);
    										letter-spacing: 0;
    										text-align: center;
    										font-weight: bold;
    										line-height: 1;
    										padding: clamp(14px, 2vh, 16px) 0px clamp(11px, 1.5vh, 13px) 0px;
    										transition: all 0.2s;
    										&:hover {
    											background-color: #dbd9d9;
    										}
    									}
    								}
    							}
    						}
    					}
    				}
    				>img {
    					width: clamp(350px, 26.9vw, 470px);
    				}
    			}
    		}
    	}
    }
    /*  当社について  */
    .t_com_w {
    	margin: clamp(150px, 21.4vh, 180px) 0px 0px 0px;
    	position: relative;
    	padding: clamp(35px, 5vh, 40px) 0px clamp(80px, 11.4vh, 100px) 0px;
    	&:before {
    		content: "";
    		display: block;
    		width: clamp(1000px, 76.9vw, 1355px);
    		height: 100%;
    		background-image: url(/img/top/com_bg.webp);
    		background-repeat: no-repeat;
    		background-size: cover;
    		position: absolute;
    		top: 0px;
    		right: 50px;
    		z-index: -2;
    	}
    	&:after {
    		content: "";
    		width: clamp(710px, 54.6vw, 749px);
    		height: calc(100% + clamp(170px, 24.2vh, 190px));
    		clip-path: polygon(40% 0, 100% 0%, 60% 100%, 0% 100%);
    		margin: auto;
    		position: absolute;
    		top: -90px;
    		left: calc(50% - clamp(730px, 56.1vw, 880px));
    		z-index: -1;
    		background-color: #eff8e8;
    	}
    	.t_com_in {
    		width: clamp(950px, 70vw, 1200px);
    		margin: 0 auto;
    		>h2 {
    			&:before {
    				width: clamp(480px, 36.9vw, 535px);
    				height: clamp(120px, 17.1vh, 157px);
    				background-image: url(/img/top/com_tit.webp);
    				top: clamp(-80px, -11.4vh, -70px);
    			}
    		}
    		.t_con_text {
    			margin: clamp(45px, 6.4vh, 55px) 0px 0px 0px;
    		}
    		.t_com_rec_bn {
    			display: block;
    			margin: clamp(45px, 3.4vw, 55px) 0px 0px 0px;
    			transition: all 0.2s;
    			&:hover {
    				opacity: 0.8;
    			}
    			>img {
    				width: clamp(950px, 70vw, 1200px);
    			}
    		}
    		.t_com_btn {
    			display: flex;
    			align-items: center;
    			justify-content: space-between;
    			margin: 80px 0px 0px 0px;
    			gap: 0px 15px;
    			>li {
    				width: calc((100% - 45px) / 4);
    				height: clamp(170px, 24.2vh, 190px);
    				box-shadow: 0px 0px 5px 0px rgba(208, 208, 208, 0.3);
    				overflow: hidden;
    				position: relative;
    				z-index: 0;
    				&:hover {
    					&:before {
    						transform: scale(1.1);
    					}
    				}
    				&:before {
    					content: "";
    					width: 100%;
    					height: 100%;
    					background-repeat: no-repeat;
    					background-size: cover;
    					position: absolute;
    					top: 0;
    					right: 0px;
    					z-index: -1;
    					transition: all 0.2s;
    					background-position: right 50% bottom 50%;
    				}
    				&:after {
    					content: "";
    					width: clamp(140px, 10.7vw, 180px);
    					height: 100%;
    					clip-path: polygon(0 0, 100% 0, 80% 100%, 0% 100%);
    					margin: auto;
    					position: absolute;
    					top: 0px;
    					left: 0px;
    					background-color: #ffffff;
    					z-index: -1;
    				}
    				>a {
    					display: block;
    					width: 100%;
    					height: 100%;
    					box-sizing: border-box;
    					padding: 35px 17px;
    					position: relative;
    					&:before {
    						content: "";
    						display: block;
    						width: clamp(20px, 1.5vw, 23px);
    						height: clamp(4px, 0.57vh, 5px);
    						background-image: url(/chintai/img/chintai/com_btn_arrow.webp);
    						background-repeat: no-repeat;
    						background-size: contain;
    						position: absolute;
    						bottom: 20px;
    						left: 25px;
    					}
    					.t_com_btn_jp {
    						font-size: clamp(12px, 0.92vw, 14px);
    						line-height: 1.2;
    						font-weight: bold;
    						letter-spacing: 0;
    					}
    					.t_com_btn_eng {
    						font-size: clamp(18px, 1.38vw, 24px);
    						line-height: 1.2;
    						font-weight: bold;
    						letter-spacing: 0.05em;
    						margin: 25px 0px 0px 0px;
    					}
    				}
    			}
    			>li:nth-child(1) {
    				&:before {
    					background-image: url(/img/top/com_btn_bg1.webp);
    				}
    			}
    			>li:nth-child(2) {
    				&:before {
    					background-image: url(/img/top/com_btn_bg2.webp);
    				}
    			}
    			>li:nth-child(3) {
    				&:before {
    					background-image: url(/img/top/com_btn_bg3.webp);
    				}
    			}
    			>li:nth-child(4) {
    				&:before {
    					background-image: url(/img/top/com_btn_bg4.webp);
    				}
    			}
    		}
    	}
    }
    /*  スタッフ紹介  */
    .t_staff_w {
    	margin: clamp(200px, 28.5vh, 250px) 0px 0px 0px;
    	.t_staff_top {
    		width: clamp(950px, 70vw, 1200px);
    		margin: 0 auto;
    		display: flex;
    		justify-content: space-between;
    		align-items: center;
    		>h2 {
    			margin: 0px;
    			&:before {
    				width: clamp(380px, 29.2vw, 407px);
    				height: clamp(140px, 20vh, 166px);
    				background-image: url(/chintai/img/chintai/staff_tit.webp);
    				top: clamp(-80px, -11.4vh, -70px);
    			}
    		}
    		.t_con_btn {
    			margin: 0px clamp(75px, 5.7vw, 90px) 0px 0px;
    		}
    	}
    	iframe {
    		width: 100%;
    		height: 400px;
    		overflow: hidden;
    		margin: clamp(20px, 2.8vh, 30px) 0px 0px 0px;
    	}
    }
    .t_con_tit {
    	font-size: clamp(36px, 2.7vw, 44px);
    	line-height: 1.2;
    	letter-spacing: 0.05em;
    	position: relative;
    	z-index: 0;
        font-weight: bold;
    	&:before {
    		content: "";
    		display: block;
    		background-repeat: no-repeat;
    		background-size: contain;
    		position: absolute;
    		left: 0px;
    		z-index: -1;
    	}
    }
    .t_con_btn {
    	font-size: clamp(18px, 13.8vw, 22px);
    	font-weight: bold;
    	margin: clamp(35px, 5vh, 50px) 0px 0px 0px;
    	display: inline-block;
    	position: relative;
    	letter-spacing: 0.05em;
    	padding: clamp(21px, 3vh, 28px) 0px;
    	&:hover {
    		&:before {
    			background-image: url(/img/top/top_btn_arrow_h.webp);
    		}
    	}
    	&:before {
    		content: "";
    		display: block;
    		width: clamp(60px, 4.6vw, 75px);
    		height: clamp(60px, 4.6vw, 75px);
    		background-image: url(/chintai/img/chintai/top_btn_arrow.webp);
    		background-repeat: no-repeat;
    		background-size: contain;
    		position: absolute;
    		top: 0;
    		bottom: 0;
    		margin: auto;
    		right: clamp(-90px, -6.9vw, -75px);
    		transition: all 0.2s;
    	}
    }
}
