@charset "UTF-8";


 /* +++++++++++++++++++
共通
++++++++++++++++++++ */


#contents .contents_tt {
    text-align: center;
    font-weight: 900;
    font-family: "Zen Maru Gothic", sans-serif;
    margin: 150px 0;
}
#contents .contents_tt h2 {
    font-size: clamp(3.0rem, 5.0vw, 5.0rem);
}
#contents .contents_tt .cont_subtt {
    font-size: 1.6rem;
}




#contents h3 {
    margin-bottom: 100px;
    font-size: clamp(2.4rem, 4.0vw, 4.0rem);
    text-align: center;
}



@media only screen and (max-width: 716px) {
    #contents .contents_tt {
        margin: 15vw 0;
    }
    #contents .contents_tt .cont_subtt {
        font-size: 1.4rem;
    }
    #contents h3 {
        margin-bottom: 10vw;
    }
    
}




 /* +++++++++++++++++++
NEWS
++++++++++++++++++++ */





#news .column_block {
    width: 80vw;
    margin: 50px auto;
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    justify-content: flex-start;
    flex-wrap: wrap;
}
#news .column_box {
    width: calc( 100%/3 - 60px );
    margin-bottom: 80px;
    padding: 10px 30px 10px 30px;
    border-right: 1px solid #009ddf;
}
#news .column_box:nth-child(3n) {
    padding-right: 0;
    border-right: none;
}
#news .column_box .column_ph {
    position: relative;
}
#news .column_box .column_ph a {
    width: 100%;
}
#news .column_box .column_ph img {
    width: 100%;
    height: 16vw;
    object-fit: cover;
}
#news .column_box .category {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 80px;
    height: 25px;
    padding-top: 6px;
    color: #FFF;
    font-size: 1.1rem;
    text-align: center;
    background-color: #009ddf;
}
#news .column_box .column_time {
    margin: 10px 0;
    font-size: 1.2rem;
    font-weight: bold;
}
#news .column_box .column_tt a {
    color: #000;
}
#news .column_box .column_tt a:hover {
    text-decoration: underline;
}



#news_more {
    width: 80vw;
    max-width: 1000px;
    margin: 0 auto;
}
#news_more .news_title_box .news_cate_time {
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    justify-content: flex-start;
}
#news_more .news_title_box .news_cate_time .cate {
    width: 120px;
    padding: 6px 0 7px;
    color: #FFF;
    font-size: 1.1rem;
    text-align: center;
    background-color: #009ddf;
}
#news_more .news_title_box .news_cate_time .time {
    margin-left: 20px;
    font-size: 1.8rem;
}
#news_more .news_title_box .news_cate_tt {
    margin: 20px 0 40px;
    font-size: 2.5rem;
}
#news_more .news_txt {
    margin-bottom: 100px;
}
#news_more .news_txt img {
    width: auto;
    height: auto;
    margin: 40px auto;
    display: flex;
    justify-content: center;
}
#news_more .news_txt .blog-detail__image img {
    width: 100%;
    height: 40vw;
    object-fit: contain;
    margin: 0 auto 50px;
}
#news_more .news_txt .gallery-item img {
    width: 100%;
}




 /* +++ category +++ */

#news .news_category {
    display: flex;
    justify-content: center;
}
#news .news_category a {
    margin: 0 15px;
    color: #009ddf;
    position: relative;
}
#news .news_category a::before {
  background: #009ddf;
  content: '';
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: -5px;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform .5s;
}
#news .news_category a:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}
#news .news_category_tt {
    text-align: center;
    font-size: clamp(1.8rem, 2.4vw, 2.4rem);
}





 /* +++ page navi +++ */

.pnavi .nav-links {
    display: flex;
    justify-content: center;
}
.pnavi .nav-links .page-numbers {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    margin: 0 5px;
    color: #009ddf;
    text-align: center;
    border: 1px solid #009ddf;
    border-radius: 50%;
}
.pnavi .nav-links .page-numbers:hover {
    color: #FFF;
    background-color: #009ddf;
}
.pnavi .nav-links .page-numbers.current {
    color: #FFF;
    background-color: #009ddf;
}
.pnavi .nav-links .next.page-numbers,
.pnavi .nav-links .prev.page-numbers {
    width: auto;
    border: none;
    border-radius: 0;
}
.pnavi .nav-links .next.page-numbers {
    text-align: left;
}
.pnavi .nav-links .prev.page-numbers {
    text-align: right;
}
.pnavi .nav-links .next.page-numbers:hover,
.pnavi .nav-links .prev.page-numbers:hover {
    color: #009ddf;
    background-color: #FFF;
    text-decoration: underline;
}




@media only screen and (max-width: 716px) {
    
    #news .column_block {
        margin: 20vw auto;
    }
    #news .column_box {
        width: auto;
        margin-bottom: 10vw;
        padding: 0;
        border-left: none;
    }
    #news_more .news_title_box .news_cate_time .cate {
        width: 100px;
        padding: 4px 0 5px;
    }
    #news_more .news_title_box .news_cate_time .time {
        font-size: 1.6rem;
    }
    #news_more .news_title_box .news_cate_tt {
        margin: 10px 0 20px;
        font-size: 2.0rem;
    }
    #news_more .news_txt {
        margin-bottom: 10vw;
    }
    #news_more .orh_common_btn a {
        width: auto;
    }
    
    #news_more .news_txt img {
        width: 100%;
        margin: 20px auto 0;
    }
    #news_more .news_txt .blog-detail__image img {
        height: 50vw;
        margin: 0 auto 30px;
    }

    
}






 /* +++++++++++++++++++
会社概要
++++++++++++++++++++ */




#aboutus {
    
}
#aboutus .aboutus_main {
    width: 100%;
    height: 40vw;
    background: url(../images/about/about_main_bg.jpg) no-repeat;
    background-size: cover;
    background-position: bottom center;
    position: relative;
}
#aboutus .aboutus_main::before,
#aboutus .aboutus_main::after {
    position: absolute;
    display: block;
    content: "";
    top: 0;
    width: 0px;
    height: 0px;
    z-index: 3;
}
#aboutus .aboutus_main::before {
    border-top: 0 solid transparent;
    border-right: 0px solid transparent;
    border-bottom: 10vw solid transparent;
    border-left: 50vw solid #FFF;
    left: 0;
}
#aboutus .aboutus_main::after {
    border-top: 0 solid transparent;
    border-left: 0px solid transparent;
    border-bottom: 10vw solid transparent;
    border-right: 50vw solid #FFF;
    right: 0;
}

#aboutus .aboutus_copy {
    
}
#aboutus .aboutus_copy .copy01 {
    margin: 150px auto;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    font-size: clamp(2.2rem, 3.6vw, 3.6rem);
    font-weight: 900;
    font-family: "Zen Maru Gothic", sans-serif;
    line-height: 2.6;
    position: relative;
}
#aboutus .aboutus_copy .copy01::before {
    position: absolute;
    content: "";
    top: -50px;
    left: -120px;
    width: 112px;
    height: 121px;
    background: url(../images/about/about_copy_icon01.png) no-repeat;
}
#aboutus .aboutus_copy .copy01::after {
    position: absolute;
    content: "";
    bottom: -30px;
    right: -100px;
    width: 168px;
    height: 139px;
    background: url(../images/about/about_copy_icon02.png) no-repeat;
}
#aboutus .aboutus_copy .copy02 {
    text-align: center;
    line-height: 2.4;
}


#aboutus .aboutus_message {
    margin: 150px 0;
}
#aboutus .aboutus_message .aboutus_sankaku {
    width: 0;
    height: 0;
    border-right: 20vw solid transparent;
    border-bottom: 15vw solid #f8f4e8;
    border-left: 80vw solid transparent;
    position: relative;
}
#aboutus .aboutus_message .message_inner {
    background-color: #f8f4e8;
    padding: 100px 0 200px;
}
#aboutus .aboutus_message .message_inner .message_block {
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    justify-content: space-between;
}
#aboutus .aboutus_message .message_inner .message_block .message_txt {
    width: 40vw;
    margin: 0 40px 0 auto;
}
#aboutus .aboutus_message .message_inner .message_block .message_txt .message_tt {
    font-size: 2.2rem;
    margin-bottom: 20px;
}
#aboutus .aboutus_message .message_inner .message_block .message_ph {
    width: 45vw;
}
#aboutus .aboutus_message .message_inner .message_block .message_ph img {
    object-fit: cover;
}

#aboutus .aboutus_company table {
    width: 80vw;
    max-width: 800px;
    margin: 0 auto 150px;
    border-top: 1px solid #e2ded3;
}
#aboutus .aboutus_company table tr {
    border-bottom: 1px solid #e2ded3;
}
#aboutus .aboutus_company table th {
    width: 8vw;
    padding: 25px 20px;
    font-size: 1.4rem;
    font-weight: bold;
    vertical-align: top;
}
#aboutus .aboutus_company table td {
    padding: 25px 20px;
}

#aboutus .aboutus_map_tt {
    width: 100%;
    display: flex;
}
#aboutus .aboutus_map_tt .tt_name {
    width: 50%;
    display: flex;
    justify-content: center;
    font-size: 1.4rem;
    color: #FFF;
    padding: 8px 0;
    text-align: center;
}
#aboutus .aboutus_map_tt .tt_name.atsugi {
    background-color: #009ddf;
}
#aboutus .aboutus_map_tt .tt_name.yokohama {
    background-color: #95bed0;
}
#aboutus .aboutus_map {
    width: 100%;
    height: 600px;
    display: flex;
}



@media only screen and (max-width: 780px) {
    
    #aboutus .aboutus_copy .copy01 {
        margin: 20vw auto;
        line-height: 2.0;
    }
    #aboutus .aboutus_copy .copy01::before {
        left: -60px;
        width: 60px;
        height: 70px;
        background-size: 60px auto;
    }
    #aboutus .aboutus_copy .copy01::after {
        right: -50px;
        width: 100px;
        height: 80px;
        background-size: 100px auto;
    }
    #aboutus .aboutus_copy .copy02 {
        text-align: center;
        line-height: 2.4;
    }


    #aboutus .aboutus_message {
        margin: 10vw 0;
    }
    #aboutus .aboutus_message .message_inner {
        padding: 10vw 0 15vw;
    }
    #aboutus .aboutus_message .message_inner .message_block {
        display: block;
        display: -webkit-block;
    }
    #aboutus .aboutus_message .message_inner .message_block .message_txt {
        width: 80vw;
        margin: 0 auto 30px;
    }
    #aboutus .aboutus_message .message_inner .message_block .message_ph {
        width: 80vw;
        margin: 0 auto;
    }

    #aboutus .aboutus_company table {
        margin: 0 auto 20vw;
    }
    #aboutus .aboutus_company table th {
        width: auto;
        padding: 25px 0 0;
    }
    #aboutus .aboutus_company table td {
        padding: 10px 0 25px;
    }
    #aboutus .aboutus_company table th,
    #aboutus .aboutus_company table td {
        display: block;
    }
    
    #aboutus .aboutus_map {
        height: 400px;
    }


    
}











 /* +++++++++++++++++++
強み
++++++++++++++++++++ */




#strangths {
    
}
#strangths .strangths_main {
    width: 100%;
    height: 40vw;
    background: url(../images/strangths/strangths_main.jpg) no-repeat;
    background-size: cover;
    background-position: bottom center;
    position: relative;
}
#strangths .strangths_main::before,
#strangths .strangths_main::after {
    position: absolute;
    display: block;
    content: "";
    top: 0;
    width: 0px;
    height: 0px;
    z-index: 3;
}
#strangths .strangths_main::before {
    border-top: 0 solid transparent;
    border-right: 0px solid transparent;
    border-bottom: 10vw solid transparent;
    border-left: 50vw solid #FFF;
    left: 0;
}
#strangths .strangths_main::after {
    border-top: 0 solid transparent;
    border-left: 0px solid transparent;
    border-bottom: 10vw solid transparent;
    border-right: 50vw solid #FFF;
    right: 0;
}

#strangths .strangths_copy {
    width: 80vw;
    max-width: 1000px;
    display: flex;
    justify-content: space-between;
    margin: 150px auto 0;
}
#strangths .strangths_copy .copy01 {
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    font-size: clamp(2.2rem, 3.8vw, 3.8rem);
    font-weight: 900;
    font-family: "Zen Maru Gothic", sans-serif;
    line-height: 2.6;
}
#strangths .strangths_copy .copy02 {
    padding: 30px 0 0 50px;
    line-height: 2.4;
}

#strangths .strangths_copy_image {
    width: 90vw;
    max-width: 1000px;
    margin: 0 auto 200px;
}



#strangths_point {
    margin: 200px auto 0;
}
#strangths_point .point_sankaku {
    width: 0;
    height: 0;
    border-right: 20vw solid transparent;
    border-bottom: 15vw solid #f8f4e8;
    border-left: 80vw solid transparent;
    position: relative;
}
#strangths_point .point_inner {
    padding: 0 0 100px;
    background-color: #f8f4e8;
}


#strangths_point .point_block {
    width: 80vw;
    max-width: 1200px;
    margin: 0 auto 200px;
    text-align: center;
}
#strangths_point .point_block .number {
    font-size: 8.0rem;
    font-family: "Oswald", sans-serif;
    font-weight: 500;
    color: #009ddf;
}
#strangths_point .point_block .point_tt {
    font-size: 4.6rem;
    font-weight: bold;
    line-height: 1.2;
}
#strangths_point .point_block .point_subtt {
    font-size: 1.8rem;
}
#strangths_point .point_block .point_copy {
    margin: 50px 0;
    font-size: 2.8rem;
    font-weight: 700;
    color: #009ddf;
}

#strangths_point .point_block .point_more_box {
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    justify-content: space-between;
}
#strangths_point .point_block .point_more_box .point_photo {
    width: 34vw;
    min-width: 200px;
    height: 25vw;
    position: relative;
}
#strangths_point .point_block .point_more_box .ph_img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    position: relative;
    z-index: 3;
}
#strangths_point .point_block.ptt01 .ph_img {
    background: url(../images/top_point01.jpg);
    background-size: cover;
}
#strangths_point .point_block.ptt02 .ph_img {
    background: url(../images/top_point02.jpg);
    background-size: cover;
}
#strangths_point .point_block.ptt03 .ph_img {
    background: url(../images/top_point03.jpg);
    background-size: cover;
}
#strangths_point .point_txt {
    width: calc( 100% - 37vw );
    text-align: left;
}



#strangths_point .point_list_block {
    width: 95%;
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    justify-content: space-between;
    margin: 80px auto 0;
}
#strangths_point .point_list_block .point_list_box {
    width: calc( 100%/4 - 60px );
    padding: 25px;
    text-align: left;
    border-radius: 20px;
    border: 1px solid #009ddf;
    background-color: #FFF;
}
#strangths_point .point_list_block .point_list_box .tt {
    margin-bottom: 40px;
    color: #009ddf;
    font-weight: bold;
}

#strangths_point .point_last_copy {
    margin: 200px 0 100px;
    font-size: clamp(2.2rem, 3.0vw, 3.0rem);
    font-weight: bold;
    text-align: center;
}





@media only screen and (max-width: 780px) {
    

    #strangths .strangths_copy {
        display: block;
        margin: 10% auto 0;
    }
    #strangths .strangths_copy .copy01 {
        margin: 0 auto;
    }
    #strangths .strangths_copy .copy02 {
        padding: 20% 0 0 0;
    }
    #strangths .strangths_copy_image {
        margin: 10% auto 20%;
    }

    #strangths_point {
        margin: 30% auto 0;
    }
    #strangths_point .point_inner {
        padding: 0 0 20%;
    }


    #strangths_point .point_block {
        margin: 0 auto 20%;
    }
    #strangths_point .point_block .number {
        font-size: 6.0rem;
    }
    #strangths_point .point_block .point_tt {
        font-size: 3.0rem;
    }
    #strangths_point .point_block .point_subtt {
        font-size: 1.4rem;
    }
    #strangths_point .point_block .point_copy {
        margin: 10% 0;
        font-size: 2.0rem;
    }

    #strangths_point .point_block .point_more_box {
        display: block;
    }
    #strangths_point .point_block .point_more_box .point_photo {
        width: auto;
        min-width: auto;
        height: 50vw;
    }
    #strangths_point .point_txt {
        width: auto;
        margin-top: 10%;
    }



    #strangths_point .point_list_block {
        width: auto;
        display: block;
        margin: 10% auto 0;
    }
    #strangths_point .point_list_block .point_list_box {
        width: auto;
        margin-bottom: 20px;
    }
    #strangths_point .point_list_block .point_list_box .tt {
        margin-bottom: 10px;
    }
    #strangths_point .point_list_block .point_list_box .tt.box02 {
        margin-bottom: 10px;
    }
    #strangths_point .point_last_copy {
        margin: 20% 0 10%;
    }


}
















 /* +++++++++++++++++++
スタッフ紹介
++++++++++++++++++++ */

#staff {
    width: 80vw;
    max-width: 1000px;
    margin: 0 auto;
}
#staff .staff_list {
    display: flex;
    justify-content: space-between;
}
#staff .staff_list .staff_list_box {
    width: calc( 100%/3 - 30px );
}
#staff .staff_list .staff_list_box a {
    display: block;
    height: 40vw;
    max-height: 500px;
    font-size: 2.4rem;
    font-weight: bold;
    font-style: italic;
    color: #009ddf;
    border-radius: 9999px;
    transition: all .3s ease-out;
    position: relative;
}

#staff .staff_list .staff_list_box a:hover {
    opacity: 0.8;
}
#staff .staff_list .staff_list_box span {
    color: #000;
}
#staff .staff_list .staff_list_box.yanagisawa a {
    background: url(../images/staff/list_yanagisawa.jpg) no-repeat;
    background-position: center top 20%;
}
#staff .staff_list .staff_list_box.miyata a {
    background: url(../images/staff/list_miyata.jpg) no-repeat;
    background-position: center top 23%;
}
#staff .staff_list .staff_list_box.shibahashi a {
    background: url(../images/staff/list_shibahashi.jpg) no-repeat;
    background-position: center top 23%;
}
#staff .staff_list .staff_list_box .name {
    position: absolute;
    top: 46%;
    left: -60px;
    width: 15vw;
    text-align: center;
    border-bottom: 1px solid #FFF;
    transform: rotate(-90deg);
}



#staff .staff_more_block {
    margin-top: 200px;
}
#staff .staff_more_block .staff_more_box {
    margin-top: 200px;
}
#staff .staff_more_block .staff_more_box .staff_main {
    width: 100%;
    height: 500px;
    position: relative;
}
#staff .staff_more_block .staff_more_box.yanagisawa .staff_main {
    background: url(../images/staff/main_yanagisawa.jpg) no-repeat;
    background-size: cover;
    background-position: center top;
}
#staff .staff_more_block .staff_more_box.miyata .staff_main {
    background: url(../images/staff/main_miyata.jpg) no-repeat;
    background-size: cover;
    background-position: center top;
}
#staff .staff_more_block .staff_more_box.shibahashi .staff_main {
    background: url(../images/staff/main_shibahashi.jpg) no-repeat;
    background-size: cover;
    background-position: center top;
}

#staff .staff_more_block .staff_more_box .staff_main::after {
    position: absolute;
    display: block;
    content: "";
    top: 0;
    width: 0px;
    height: 0px;
    border-top: 0 solid transparent;
    border-right: 0px solid transparent;
    border-bottom: 13vw solid transparent;
    border-left: 13vw solid #FFF;
    left: 0;
    z-index: 2;
}
#staff .staff_more_block .staff_more_box .staff_main::before {
    position: absolute;
    top: -110px;
    left: -40px;
    color: #c4e8f8;
    font-size: 13rem;
    font-style: italic;
    font-family: "Oswald", sans-serif;
    font-weight: 500;
    z-index: 3;
}
#staff .staff_more_block .staff_more_box.yanagisawa .staff_main::before {
    content: "01";
}
#staff .staff_more_block .staff_more_box.miyata .staff_main::before {
    content: "02";
}
#staff .staff_more_block .staff_more_box.shibahashi .staff_main::before {
    content: "03";
}
#staff .staff_more_block .staff_more_box .staff_main .staff_name {
    position: absolute;
    top: 40px;
    left: 40px;
    color: #000;
    z-index: 3;
}
#staff .staff_more_block .staff_more_box .staff_main .staff_name .staff_post {
    font-size: 1.8rem;
}
#staff .staff_more_block .staff_more_box .staff_main .staff_name .name_box {
    display: flex;
    justify-content: flex-start;
    align-items: baseline;
}
#staff .staff_more_block .staff_more_box .staff_main .staff_name .name {
    font-size: 6.6rem;
    line-height: 1.0;
}
#staff .staff_more_block .staff_more_box .staff_main .staff_name .en_name {
    margin-left: 30px;
    font-size: 2.4rem;
    font-style: italic;
    font-family: "Oswald", sans-serif;
    font-weight: 500;
    letter-spacing: 0.25em;
    color: #009ddf;
}
#staff .staff_more_block .staff_more_box .staff_main .staff_name .en_name span {
    color: #000;
}
#staff .staff_more_block .staff_more_box .staff_main .copy_txt {
    position: absolute;
    top: 180px;
    left: 80px;
    color: #000;
    writing-mode: vertical-rl;
    text-orientation: upright;
    z-index: 3;
}
#staff .staff_more_block .staff_more_box .staff_main .copy_txt span {
    display: table;
    padding: 20px 3px;
    margin-left: 14px;
    font-size: clamp(1.4rem, 2.4vw, 2.4rem);
    font-weight: 300;
    background-color: #FFF;
}



#staff .staff_more_block .staff_more_box .staff_profiel_block {
    margin-top: 80px;
    display: flex;
    justify-content: flex-start;
}
#staff .staff_more_block .staff_more_box .staff_profiel_block .profiel_name {
    width: 200px;
    padding: 0 0 0 6%;
    border-right: 1px solid #009ddf;
    font-weight: bold;
}
#staff .staff_more_block .staff_more_box .staff_profiel_block .profiel_name .profiel_tt {
    font-size: 1.2rem;
}
#staff .staff_more_block .staff_more_box .staff_profiel_block .profiel_name .name {
    font-size: 3.0rem;
}
#staff .staff_more_block .staff_more_box .staff_profiel_block .profiel_more {
    width: calc( 100% - 350px);
    padding: 20px 0 0 50px;
}
#staff .staff_more_block .staff_more_box .staff_profiel_block .profiel_more .list_box {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 15px;
}
#staff .staff_more_block .staff_more_box .staff_profiel_block .profiel_more .list_box .list_tt {
    width: 150px;
    height: 30px;
    display: inline-flex;
    justify-content: center;
    margin-right: 20px;
    font-size: 1.2rem;
    color: #FFF;
    align-items: center;
    background-color: #009ddf;
}
#staff .staff_more_block .staff_more_box .staff_profiel_block .profiel_more .list_box .list_txt {
    width: calc( 100% - 150px );
}






@media only screen and (max-width: 780px) {
    
    #staff {
        width: 90vw;
    }
    #staff .staff_list {
        display: block;
        width: 80vw;
        margin: 0 auto;
    }
    #staff .staff_list .staff_list_box {
        width: auto;
        max-width: 500px;
        margin: 0 auto 20px;
    }
    #staff .staff_list .staff_list_box a {
        font-size: clamp(1.4rem, 2.4vw, 2.4rem);
    }
    #staff .staff_list .staff_list_box.yanagisawa a {
        background-size: cover;
    }
    #staff .staff_list .staff_list_box.miyata a {
        background-size: cover;
    }
    #staff .staff_list .staff_list_box.shibahashi a {
        background-size: cover;
    }
    #staff .staff_list .staff_list_box .name {
        top: 45%;
        left: 0;
        width: 28vw;
    }



    #staff .staff_more_block {
        margin-top: 40%;
    }
    #staff .staff_more_block .staff_more_box {
        margin-top: 40%;
    }
    #staff .staff_more_block .staff_more_box .staff_main {
        height: 60vw;
    }
    #staff .staff_more_block .staff_more_box .staff_main::before {
        top: -110px;
        left: -10px;
        font-size: 8rem;
    }
    #staff .staff_more_block .staff_more_box .staff_main .staff_name {
        top: -70px;
        left: 90px;
    }
    #staff .staff_more_block .staff_more_box .staff_main .staff_name .staff_post {
        font-size: 1.2rem;
    }
    #staff .staff_more_block .staff_more_box .staff_main .staff_name .name {
        font-size: 3rem;
    }
    #staff .staff_more_block .staff_more_box .staff_main .staff_name .en_name {
        margin-left: 20px;
        font-size: 1.8rem;
    }
    #staff .staff_more_block .staff_more_box .staff_main .copy_txt {
        top: 22%;
        left: 3%;
    }
    #staff .staff_more_block .staff_more_box .staff_main .copy_txt span {
        padding: 10px 3px;
        margin-left: 10px;
    }



    #staff .staff_more_block .staff_more_box .staff_profiel_block {
        margin-top: 5%;
        display: block;
    }
    #staff .staff_more_block .staff_more_box .staff_profiel_block .profiel_name {
        width: auto;
        padding: 0;
        border: none;
    }
    #staff .staff_more_block .staff_more_box .staff_profiel_block .profiel_name .name {
        font-size: 2rem;
    }
    #staff .staff_more_block .staff_more_box .staff_profiel_block .profiel_more {
        width: auto;
        padding: 20px 0 0 0;
    }
    #staff .staff_more_block .staff_more_box .staff_profiel_block .profiel_more .list_box .list_tt {
        width: 100px;
    }
    #staff .staff_more_block .staff_more_box .staff_profiel_block .profiel_more .list_box .list_txt {
        width: calc( 100% - 100px );
    }


    
}





 /* +++++++++++++++++++
お客様の声
++++++++++++++++++++ */



#customer_reviews_more {
    width: 90vw;
    max-width: 1000px;
    margin: 0 auto;
}
#customer_reviews_more .reviews_80block {
    width: 80%;
    margin: 0 auto;
}
#customer_reviews_more .reviews_title_box {
    width: 650px;
    margin: 0 auto 30px;
    background: url(../images/reviews_title_bg.png) no-repeat;
    position: relative;
}
#customer_reviews_more .reviews_title_box .time {
    position: absolute;
    top: 10px;
    left: 0;
    right: 0;
    margin: auto;
    color: #009ddf;
    font-size: 1.2rem;
    text-align: center;
}
#customer_reviews_more .reviews_title_box .reviews_tt {
    padding: 30px 0 40px;
    text-align: center;
    font-size: 2.4rem;
}
#customer_reviews_more .reviews_mainimg {
    position: relative;
}
#customer_reviews_more .reviews_mainimg::before,
#customer_reviews_more .reviews_mainimg::after {
    position: absolute;
    display: block;
    content: "";
    top: 0;
    width: 0px;
    height: 0px;
    z-index: 3;
}
#customer_reviews_more .reviews_mainimg::before {
    border-top: 0 solid transparent;
    border-right: 0px solid transparent;
    border-bottom: 80px solid transparent;
    border-left: 40vw solid #FFF;
    left: 0;
}
#customer_reviews_more .reviews_mainimg::after {
    border-top: 0 solid transparent;
    border-left: 0px solid transparent;
    border-bottom: 80px solid transparent;
    border-right: 40vw solid #FFF;
    right: 0;
}
#customer_reviews_more .reviews_txt {
    margin: 50px 0 80px;
}
#customer_reviews_more .reviews_subimg {
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    justify-content: space-between;
}
#customer_reviews_more .reviews_subimg .subimg_box {
    width: calc( 100%/3 - 10px );
}
#customer_reviews_more .reviews_subimg .subimg_box img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}
#customer_reviews_more .reviews_anke {
    width: 80vw;
    max-width: 640px;
    margin: 100px auto;
}




@media only screen and (max-width: 780px) {

    
    #customer_reviews_more {
        width: 80vw;
    }
    #customer_reviews_more .reviews_80block {
        width: auto;
    }
    #customer_reviews_more .reviews_title_box {
        width: 330px;
        background: url(../images/reviews_title_bg_sp.png) no-repeat;
    }
    #customer_reviews_more .reviews_title_box .reviews_tt {
        padding: 40px 0 40px;
        font-size: 1.6rem;
    }
    #customer_reviews_more .reviews_txt {
        margin: 10vw 0 15vw;
    }
    #customer_reviews_more .reviews_subimg {
        display: block;
        display: -webkit-block;
    }
    #customer_reviews_more .reviews_subimg .subimg_box {
        width: auto;
        margin-bottom: 20px;
    }
    #customer_reviews_more .reviews_subimg .subimg_box img {
        height: 60vw;
    }
    #customer_reviews_more .reviews_anke {
        margin: 10vw auto;
    }
    #customer_reviews_more .orh_common_btn a {
        width: auto;
    }

}






 /* +++++++++++++++++++
住宅展示場
++++++++++++++++++++ */

#housing {
    width: 80vw;
    max-width: 950px;
    margin: 0 auto;
}
#housing .housing_main {
    
}
#housing .housing_txt_more {
    margin: 100px 0;
    text-align: center;
}
#housing .housing_txt_more .housing_copy {
    font-size: 4.4rem;
}
#housing .housing_txt_more .txt_box {
    margin: 50px 0;
    font-size: 1.8rem;
}
#housing .housing_txt_more .txt_box .point {
    color: #009ddf;
    text-decoration: underline;
}
#housing .housing_txt_more .txt_box .bg_yellow {
    padding: 10px 30px;
    font-weight: bold;
    background-color: #fdff4a;
}
#housing .housing_txt_more .txt_box .bg_yellow .ft_b {
    padding: 0 10px;
    font-size: 2.4rem;
}



#housing .housing_message {
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    justify-content: space-between;
    margin: 150px 0;
}
#housing .housing_message .message_img {
    width: 40vw;
}
#housing .housing_message .message_img img {
    height: auto;
}
#housing .housing_message .message_txt {
    width: calc( 100% - 40vw );
    padding-left: 50px;
}

#housing .housing_last_copy {
    margin: 100px 0;
    font-size: clamp(2.2rem, 2.4vw, 2.4rem);
    font-weight: bold;
    text-align: center;
}





@media only screen and (max-width: 716px) {    
    

    #housing {
        width: 90vw;
    }
    #housing .housing_txt_more {
        margin: 20% 0;
    }
    #housing .housing_txt_more .housing_copy {
        font-size: 2.4rem;
    }
    #housing .housing_txt_more .txt_box {
        margin: 10% 0;
        font-size: 1.4rem;
    }
    #housing .housing_txt_more .orh_common_btn a {
        width: auto;
    }


    #housing .housing_message {
        display: block;
        margin: 20% 0;
    }
    #housing .housing_message .message_img {
        width: auto;
    }
    #housing .housing_message .message_txt {
        width: auto;
        padding-left: 0;
        padding-top: 30px;
    }

    #housing .housing_last_copy {
        margin: 10% 0;
    }

  
    
}










 /* +++++++++++++++++++
プライバシーポリシー
++++++++++++++++++++ */



#privacy_cont {
    width: 80vw;
    max-width: 800px;
    margin: 0 auto;
    line-height: 2.0;
}
#privacy_cont h3 {
    display: flex;
    justify-content: center;
    width: 320px;
    margin: 0 auto 60px;
    font-size: 2.4rem;
    border-bottom: 1px solid #009ddf;
}

#privacy_cont p {

}
#privacy_cont .txt_tt {
    margin: 80px 0 20px;
    font-weight: bold;
}
#privacy_cont .txt_more {
    padding-left: 34px;
}
#privacy_cont .txt_more ul {
    margin-top: 30px;
}
#privacy_cont .txt_more li {
    padding-left: 1em;
    text-indent: -1em;
}





@media only screen and (max-width: 716px) {    
    

    #privacy_cont h3 {
        width: 260px;
        margin: 0 auto 10vw;
        font-size: 2.0rem;
    }
    #privacy_cont .txt_tt {
        margin: 20vw 0 4vw;
    }
    #privacy_cont .txt_more {
        padding-left: 0;
    }
    #privacy_cont .txt_more ul {
        margin-top: 10vw;
    }
  
    
}









 /* +++++++++++++++++++
contact
++++++++++++++++++++ */

#contact_cont {
    width: 80vw;
    max-width: 1000px;
    margin: 0 auto;
}
#contact_cont p {
    margin-bottom: 100px;
    text-align: center;
}
#contact_cont .contact_txtbox {
    padding: 30px 40px;
    text-align: center;
    background-color: #f8f4e8;
    border-radius: 20px;
}
#contact_cont .contact_txtbox .txt01 {
    color: #009ddf;
    font-size: 1.6rem;
    font-weight: bold;
    margin-bottom: 20px;
}
#contact_cont .contact_txtbox .txt02 {
    font-size: 1.2rem;
}


.contact_form {
    width: 100%;
    max-width: 830px;
    margin: 100px auto;
    text-align: center;
}
.contact_form li {
    display: flex;
    padding: 20px 0;
    text-align: left;
}
.contact_form .tb_tt {
    display: flex;
    width: 250px;
}
.contact_form .tb_tt .hissu {
    display: inline-block;
    height: fit-content;
    margin: 3px 0 0 20px;
    padding: 3px 8px 5px;
    background-color: #e65250;
    color: #FFF;
    font-size: 1.0rem;
    text-align: center;
    border-radius: 5px;
}
.contact_form .tb_inp {
    width: calc( 100% - 250px );
}
.contact_form .textbox {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    color: #424242;
    background-color: #f6f6f6;
    outline: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.contact_form .textbox.wd100 {
    width: 100px;
    margin-bottom: 10px;
}
.contact_form .mb20 {
    margin-bottom: 20px;
}
.contact_form input[type="text"]:focus,
.contact_form textarea:focus {
    background-color: #f6f6f6;
    box-shadow: 0 0 15px #FFF;
    border: 1px solid #f6f6f6;
}


.contact_form input[type="submit"] {
    width: 300px;
    background-color: #009ddf;
    border: none;
    color: #FFF;
    padding: 20px 30px;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    border-radius: 40px;
    margin: 80px auto 0;
    font-weight: 600;
    cursor: pointer;
}
.contact_form input[type="submit"]:hover {
    background-color: #40baed;
}
.contact_form input[type="button"] {
    width: 300px;
    background-color: #898989;
    border: none;
    color: #FFF;
    padding: 20px 30px;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    border-radius: 40px;
    margin: 80px auto 0;
    font-weight: 600;
    cursor: pointer;
}
.contact_form input[type="button"]:hover {
    background-color: #bbbbbb;
}


.contact_form .contact_finish {
    line-height: 1.8;
    font-size: 1.2rem;
}
#contact_cont .contact_finish {
    line-height: 1.8;
    text-align: center;
}



.con_tt {
    text-align: center;
}
.contact_form table {
    width: 100%;
    margin: 0 auto;
}
.contact_form table tr {
    border-bottom: 1px solid #cccccc;
}
.contact_form table th {
    padding: 15px 0;
}
.contact_form table td {
    padding: 15px 0;
    text-align: left;
}




@media only screen and (max-width: 716px) {
    

    #contact_cont p {
        margin-bottom: 10vw;
    }
    #contact_cont .contact_txtbox .txt01 {
        font-size: 1.4rem;
    }
    #contact_cont .contact_txtbox .txt02 {
        font-size: 1.0rem;
    }


    .contact_form {
        margin: 6vw auto;
    }
    .contact_form li {
        display: block;
        padding: 20px 0;
    }
    .contact_form .tb_tt {
        width: auto;
        margin-bottom: 10px;
    }
    .contact_form .tb_inp {
        width: 100%;
    }
    .contact_form .textbox {
        padding: 10px;
    }

    .contact_form input[type="submit"] {
        width: 100%;
        padding: 10px 20px;
        margin: 50px auto 0;
    }

    
    
}