@charset "UTF-8";

@import url("reset.css");

 /* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
general
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
.sp {
	display: none !important;
}
	.clearfix:after{
		content: ".";
		display: block;
		height: 0;
		font-size: 0;
		clear: both;
		visibility: hidden;
	}
	.clearfix{
		display: block;
	}

 /* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
common
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

html, body {
	height: 100%;
    font-size: 62.5%;
    font-family: 'Noto Sans JP', sans-serif,"Arial","メイリオ","游ゴシック体", YuGothic, "游ゴシック","Yu Gothic",Meiryo,"ＭＳ Ｐゴシック","Verdana",sans-serif;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.2em;
	-webkit-text-size-adjust: none;
}
#wrapper {
    overflow: hidden;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	min-height: 100%;
    font-size: 1.6rem;
    line-height: 1.8;
}
#wrapper {
    position: relative;
}
@media only screen and (min-width: 717px){

}

a:hover {
	transition : 0.3s;
}
a:hover > img {
	opacity: 0.5;
	filter: alpha(opacity=50);
    transition : 0.3s;
}


img {
    width: 100%;
    height: 100%;
}





 /* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
SP
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

@media only screen and (max-width: 780px) {
	.pc {
		display: none !important;
	}
	.sp {
		display: block !important;
	}
	img.sp {
		display: inline-block !important;
	}
    
    
    #wrapper {
        font-size: 1.4rem;
    }
}





 /* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
header
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

header {
    position: relative;
    z-index: 999;
}
#head_inner {
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    padding: 20px 20px 0;
    color: #009ddf;
}
#head_inner .head_tt {
    
}
#head_inner p {
    font-size: 1.0rem;
    white-space: nowrap;
}
#head_inner h1 {
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    margin-top: 8px;
}
#head_inner .head_logo {
    max-width: 250px;
    width: 22vw;
    margin-right: 20px;
    display: flex;
    align-items: center;
}
#head_inner .logo_name {
    margin: 15px 0;
    padding-left: 20px;
    border-left: 1px solid #009ddf;
    font-size: 1.4rem;
    white-space: nowrap;
}
#head_inner a {
    color: #009ddf;
}




#head_topnav {
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    margin-top: 29px;
    white-space: nowrap;
}
#head_topnav .topnav_list01 {
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
}
#head_topnav .topnav_list02 {
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
}


#head_topnav a .topnav_list {
    color: #000;
    font-size: 1.3rem;
    margin: 12px 0 0 2vw;
    padding-bottom: 10px;
    position: relative;
}
#head_topnav a .topnav_list::before {
  background: #009ddf;
  content: '';
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: 0;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform .5s;
}
#head_topnav a:hover .topnav_list::before {
  transform-origin: left top;
  transform: scale(1, 1);
}


#head_topnav a .topnav_btn_list {
    margin-left: 5px;
    padding: 8px 2vw 10px;
    border-radius: 30px;
    color: #FFF;
    font-size: 1.2rem;
    border: 2px solid #FFF;
    transition: .4s;
}
#head_topnav a .topnav_btn_list.contact {
    background-color: #009ddf;
    margin-left: 2vw;
}
#head_topnav a .topnav_btn_list.recruit {
    background-color: #95bfd0;
}
#head_topnav a:hover .topnav_btn_list.contact {
    background: #fff;
    color: #009ddf;
    border: 2px solid #009ddf;
}
#head_topnav a:hover .topnav_btn_list.recruit {
    background: #fff;
    color: #95bfd0;
    border: 2px solid #95bfd0;
}



@media only screen and (max-width: 1200px) {
    
    #head_inner h1 {
        display: block;
        display: -webkit-block;
    }
    #head_inner .logo_name {
        margin: 5px 0 0;
        padding-left: 0;
        border-left: none;
    } 
}


@media only screen and (max-width: 1000px) {
    
    #head_topnav {
        margin-top: 0;
        flex-wrap: wrap;
    }
    #head_topnav .order1 {
        order: 1;
    }
    #head_topnav .order2 {
        order: 2;
    }
}


@media only screen and (max-width: 780px) {
    
    /* navメニュー */
    
    
    h1#head_sptopnav {
        padding: 20px 20px 10px;
    }
    h1#head_sptopnav .logo_name {
        font-size: 1.2rem;
        margin: 3px 0 6px;
        color: #009ddf;
    }
    h1#head_sptopnav .logo_name {
        margin-bottom: 5px;
    }
    h1#head_sptopnav .head_logo {
        width: 40vw;
        max-width: 200px;
        min-width: 150px;
    }
    
    
    nav.globalMenuSp {
        position: fixed;
        z-index: 998;
        top: 0;
        right: -100vw;
	    width: 100vw;
        color: #FFF;
        transition: all 0.6s;
        background-color: #009ddf;;
        height: 100%;
        min-height: 100vh;
    }
    
    /* このクラスを、jQueryで付与・削除する */
    nav.globalMenuSp.active {
        transform: translateX(-100vw); /* メニューを右からどの位の横幅で表示するか設定 */
    }
 
    nav.globalMenuSp .spnav_list {
        width: 80vw;
        margin: 0 auto;
        padding: 50px 0 0;
    }
    nav.globalMenuSp .spnav_list a {
        display: block;
        color: #FFF;
    }
    nav.globalMenuSp .spnav_list .topnav_list {
        margin-bottom: 10px;
    }
    nav.globalMenuSp .spnav_list .topnav_btn_list {
        display: block;
        color: #009ddf;
        background-color: #FFF;
        border-radius: 20px;
        padding: 5px 20px 8px;
        font-size: 1.4rem;
        font-weight: bold;
        text-align: center;
    }
    nav.globalMenuSp .spnav_list .topnav_btn_list.contact {
        margin: 30px 0 10px;
    }
 
    
    .navToggle {
        display: block;
        position: fixed;    /* bodyに対しての絶対位置指定 */
        right: 10px;
        top: 25px;
        width: 40px;
        height: 40px;
        cursor: pointer;
        z-index: 9999;
        background-color: #009ddf;
        border-radius: 5px;
    }
 
    .navToggle span {
        display: block;
        position: absolute;    /* .navToggleに対して */
        width: 20px;
        border-bottom: solid 2px #FFF;    /* menuの3本線を設定 */
        -webkit-transition: .35s ease-in-out;
        -moz-transition: .35s ease-in-out;
        transition: .35s ease-in-out;
        left: 10px;
    }
 
    .navToggle span:nth-child(1) {
        top: 11px;
    } 
    .navToggle span:nth-child(2) {
        top: 19px;
    }
    .navToggle span:nth-child(3) {
        top: 27px;
    }
    /* closeボタン　最初のspanをマイナス45度に */
    .navToggle.active span:nth-child(1) {
        top: 19px;
        left: 10px;
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }
 
    /* closeボタン　2番目と3番目のspanを45度に */
    .navToggle.active span:nth-child(2),
    .navToggle.active span:nth-child(3) {
        top: 19px;
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    

    
}  









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


/* 画面右下電話アイコン */
.ft_tel_icon {
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 999;
}
.ft_tel_icon a {
    display: block;
    width: 228px;
    padding: 25px 0 15px 100px;
    color: #FFF;
    font-size: 3.0rem;
    font-weight: bold;
    line-height: 1.0;
    background: url(../images/footer_tel_icon.svg) no-repeat;
}
.ft_tel_icon a p {
    font-size: 1.2rem;
}
.ft_tel_icon a:hover {
    opacity: 0.8;
}





/* ボタン */
.orh_common_btn a {
    display: block;
    width: 280px;
    margin: 0 auto;
    padding: 13px 0 15px 30px;
    color: #000;
    font-size: 1.4rem;
    text-align: left;
    letter-spacing: 0.1em;
    background-color: #FFF;
    border: 1px solid #000;
    border-radius: 25px;
    position: relative;
}
.orh_common_btn a::before,
.orh_common_btn a::after{
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	content: "";
	vertical-align: middle;
}
.orh_common_btn a::before{
	right: 20px;
	width: 10px;
	height: 1px;
	background: #000;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
.orh_common_btn a::after{
	right: 22px;
	width: 25px;
	height: 6px;
	border-bottom: 1px solid #000;
}


.orh_common_btn a:hover {
    color: #FFF;
    background-color: #009ddf;
    border: 1px solid #009ddf;
    transition : 0.5s;
}
.orh_common_btn a:hover::before{
	background: #FFF;
}
.orh_common_btn a:hover::after{
	border-bottom: 1px solid #FFF;
}





/* title */

.section_title {
    width: 80vw;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    color: #009ddf;
}
.section_title h4 {
    font-size: 5.2rem;
    font-weight: bold;
    display: flex;
    justify-content: flex-start;
    font-family: "Zen Maru Gothic", sans-serif;
}
.section_title h4 .subtt {
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    padding: 10px 0 0 20px;
}
.section_title .section_more_btn a {
    display: block;
    width: 160px;
    margin: 30px auto 0;
    padding: 3px 0 5px;
    color: #FFF;
    font-size: 1.1rem;
    text-align: center;
    background-color: #009ddf;
    border: 1px solid #009ddf;
    border-radius: 25px;
    position: relative;
}
.section_title .section_more_btn a::before,
.section_title .section_more_btn a::after{
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	content: "";
	vertical-align: middle;
}
.section_title .section_more_btn a::before{
	right: 10px;
	width: 6px;
	height: 1px;
    background-color: #FFF;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
.section_title .section_more_btn a::after{
	right: 11px;
	width: 12px;
	height: 5px;
	border-bottom: 1px solid #FFF;
}
.section_title .section_more_btn a:hover {
    color: #009ddf;
    background-color: #FFF;
    border: 1px solid #009ddf;
    transition : 0.5s;
}
.section_title .section_more_btn a:hover::before{
	background: #009ddf;
}
.section_title .section_more_btn a:hover::after{
	border-bottom: 1px solid #009ddf;
}





@media only screen and (max-width: 780px) {
    
    .orh_common_btn a {
        width: 80vw;
    }
    .section_title {
        display: block;
    }
    .section_title h4 {
        font-size: 4.0rem;
    }
    .section_title .section_more_btn a {
        margin: 10px 0 0;
    }
    
}








 /* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
main
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */


/* main */

#main_image {
    width: calc(100vw - 40px);
    max-width: 1300px;
    height: 60vw;
    max-height: 700px;
    margin: 0 auto 100px;
    position: relative;
    background: url(../images/main_image.png) no-repeat;
    background-size: contain;
    background-position: top center;
}

#main_image #mainVis {
	height: 0;
	overflow: hidden;
}
#main_image #mainVis h1 {
	position: absolute;
	bottom: 8%;
	left: 4%;
    font-size: 2.6vw;
    font-weight: 900;
    color: #009de0;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    z-index: 900;
}
#main_image #mainVis h1 span {
	background-color: #FFF;
    padding: 20px 0;
}
#mainVis #animations li {
	position: absolute;
}
#mainVis #animations li img {
	width: 100%;
	height: auto;
}
#mainVis #animation01 {
	top: 74%;
	right: 48.5%;
	width: 8.5%;
}
#mainVis #animation02 {
	top: 38%;
	left: 58%;
	width: 8%;
}
#mainVis #animation03 {
	top: 70%;
	left: 78%;
	width: 6%;
}
#mainVis #animation04 {
	top: 59%;
	right: 39%;
	width: 11%;
}
#mainVis #animation05 {
	top: 41.8%;
	right: 14.5%;
	width: 6.8%;
}
#mainVis #animation06 {
	top: 29%;
	left: 30.9%;
	width: 9%;
}
#mainVis #animation07 {
	top: 35%;
	left: 22%;
	width: 6.2%;
}




@media only screen and (max-width: 1280px) {
    #mainVis #animation05 {
        top: 40.8%;
    }  
    
}

@media only screen and (max-width: 1250px) {
    #mainVis #animation05 {
        top: 39%;
    }  
    
}



@media only screen and (max-width: 1200px) {
    
    #mainVis #animation01 {
        top: 68%;
        right: 48.5%;
    }
    #mainVis #animation02 {
        top: 35%;
        width: 8.5%;
    }
    #mainVis #animation03 {
        top: 64.5%;
        width: 6.5%;
    }
    #mainVis #animation04 {
        top: 52.5%;
        width: 11.54%;
    }
    #mainVis #animation05 {
        top: 37.5%;
        width: 6.8%;
    }
    #mainVis #animation06 {
        top: 27.5%;
    }
    #mainVis #animation07 {
        top: 33%;
    }


}

@media only screen and (max-width: 780px) {
    #main_image {
        margin: 0 auto 10%;
    }
    #main_image #mainVis h1 span {
        padding: 8px 0;
    }
    #mainVis #animation05 {
        top: 36.5%;
    }
}

@media only screen and (max-width: 450px) {
    #mainVis #animation05 {
        top: 35%;
    }
}





/* top_copy */
#top_copy {

}
#top_copy h3 {
    display: table;
    color: #000;
    font-size: clamp(2.2rem, 4.2vw, 4.2rem);
    font-weight: bold;
    font-family: "Zen Maru Gothic", sans-serif;
    text-align: center;
    line-height: 2.2em;
    margin: 2vw auto 30px;
    position: relative;
}
#top_copy h3 .icon_bird {
    position: absolute;
    top: 0;
    right: -110px;
    width: 111px;
    height: 94px;
}
#top_copy .copy_txt {
    text-align: center;
    line-height: 2.6em;
    margin-bottom: 50px;
}












/* top_news */
#top_news {
    margin-top: 50px;
}
#top_news .news_sankaku {
    width: 0;
    height: 0;
    border-right: 20vw solid transparent;
    border-bottom: 15vw solid #f8f4e8;
    border-left: 80vw solid transparent;
    position: relative;
}
#top_news .news_inner {
    background-color: #f8f4e8;
    padding: 100px 0 150px;;
}
#top_news .news_block {
    width: 70vw;
    max-width: 1200px;
    margin: 50px auto 0;
    font-size: 1.3rem;
}
#top_news .news_block ul {
    border-top: 1px solid #009ddf;
}
#top_news .news_block li {
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    border-bottom: 1px solid #009ddf;
    padding: 25px 20px;
}
#top_news .news_block li .news_time {
    display: flex;
    align-items: center;
}
#top_news .news_block li .news_category {
    width: 80px;
    margin: 0 30px 0 10px;
    padding: 2px 0 3px;
    background-color: #009ddf;
    color: #FFF;
    font-size: 1.0rem;
    text-align: center;
}
#top_news .news_block li .news_txt a {
    color: #000;
}
#top_news .news_block li .news_txt a:hover {
    color: #009ddf;
    transition : 0.3s;
}






@media only screen and (max-width: 780px) {
    
    
    /* top_news */
    #top_news {
        margin-top: 10vw;
    }
    #top_news .news_sankaku {
        border-bottom: 70px solid #f8f4e8;
    }
    #top_news .news_inner {
        padding: 10vw 0 20vw;
    }
    #top_news .news_block {
        width: 90vw;
        margin: 10vw auto 0;
    }
    #top_news .news_block li {
        display: block;
        padding: 15px 10px;
    }
    #top_news .news_block li .news_category {
        width: 80px;
        margin: 4px 0;
    }


}











/* top_point */
#top_point {
    background-color: #f8f4e8;
    padding-bottom: 350px;
    position: relative;
}
#top_point::before {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
    height: 232px;
    background: url(../images/top_point_underimg.jpg) repeat-y;
    background-size: cover;
    background-position: bottom center;
}
#top_point .point_block {
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    justify-content: flex-start;
    margin-bottom: 100px;
}
#top_point .point_block.ptt02 {
    justify-content: flex-end;
}
#top_point .point_block .point_photo {
    width: calc( 55vw - 100px );
    min-width: 300px;
    height: 35vw;
    margin: 0 70px 0 50px;
    position: relative;
}
#top_point .point_block.ptt02 .point_photo {
    margin: 0 50px 0 70px;
}
#top_point .point_block .point_photo::before {
    position: absolute;
    color: #009ddf;
    font-weight: bold;
    font-size: 1.3rem;
    transform: rotate(90deg);
}
#top_point .point_block .point_photo::after {
    position: absolute;
    content: "";
    width: 52vw;
    height: 35vw;
    background-color: #eee7d2;
    top: 30px;
    right: 30px;
}
#top_point .point_block.ptt01 .point_photo::after,
#top_point .point_block.ptt03 .point_photo::after {
    right: 30px;
}
#top_point .point_block.ptt02 .point_photo::after {
    left: 30px;
}
#top_point .point_block.ptt01 .point_photo::before {
    content: "SEARCH FOR LAND";
    top: 75px;
    right: -85px;
}
#top_point .point_block.ptt02 .point_photo::before {
    content: "INHERITANCE OF LAND";
    top: 100px;
    left: -100px;
}
#top_point .point_block.ptt03 .point_photo::before {
    content: "INTERMEDIARY / CONSULTATION";
    top: 130px;
    right: -135px;
}




#top_point .point_block .ph_img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    position: relative;
    z-index: 3;
}
#top_point .point_block.ptt01 .ph_img {
    background: url(../images/top_point01.jpg);
    background-size: cover;
}
#top_point .point_block.ptt02 .ph_img {
    background: url(../images/top_point02.jpg);
    background-size: cover;
}
#top_point .point_block.ptt03 .ph_img {
    background: url(../images/top_point03.jpg);
    background-size: cover;
}



#top_point .point_txt {
    width: 35vw;
}
#top_point .point_txt .point_tt {
    position: relative;
    font-size: 2.8rem;
    font-weight: bold;
    padding: 0 0 0 100px;
    margin-top: 20px;
}
#top_point .point_txt .point_tt::before {
    position: absolute;
    font-size: 8.0rem;
    font-family: "Oswald", sans-serif;
    font-weight: 500;
    font-style: normal;
    color: #009ddf;
    top: -10px;
    left: 0;
    line-height: 1.0;
}
#top_point .point_block.ptt01 .point_txt .point_tt::before {
    content: "01";
}
#top_point .point_block.ptt02 .point_txt .point_tt::before {
    content: "02";
}
#top_point .point_block.ptt03 .point_txt .point_tt::before {
    content: "03";
}



#top_point .point_txt .point_tt p {
    font-size: 1.2rem;
}
#top_point .point_txt .point_txt_more {
    margin: 50px 0;
    line-height: 2.4;
}
#top_point .point_txt .orh_common_btn a {
    margin: 0;
}





@media only screen and (max-width: 780px) {
    
    
    /* top_point */
    #top_point {
        padding-bottom: 40vw;
    }
    #top_point::before {
        height: 150px;
    }
    #top_point .point_block {
        width: 85vw;
        flex-wrap: wrap;
        margin: 0 auto 20vw;
    }
    #top_point .point_block .point_photo {
        width: 85vw;
        height: 60vw;
        margin: 0;
    }
    #top_point .point_block.ptt02 .point_photo {
        margin: 0;
    }
    #top_point .point_block.ptt01 .point_photo::before {
        right: -65px;
    }
    #top_point .point_block.ptt02 .point_photo::before {
        left: auto;
        right: -80px;
    }
    #top_point .point_block.ptt03 .point_photo::before {
        right: -116px;
    }




    #top_point .point_block .ph_img {
        width: 95%;
    }
    #top_point .point_txt {
        width: auto;
    }
    #top_point .point_txt .point_tt {
        font-size: 2.4rem;
        padding: 30px 0 0 75px;
        margin-top: 0;
    }
    #top_point .point_txt .point_tt::before {
        font-size: 6.0rem;
        top: 25px;
    }
    #top_point .point_txt .point_txt_more {
        margin: 20px 0 40px;
        line-height: 1.6;
    }
    
    #top_point .orh_common_btn a {
        width: auto;
    }
    
    

    #top_point .point_photo.order1 {
        order: 1;
    }
    #top_point .point_txt.order2 {
        order: 2;
    }



}










/* top_housing */
#top_housing {
margin: 150px 0;
}
#top_housing h4 {
    font-size: 5.2rem;
    font-weight: bold;
    font-family: "Zen Maru Gothic", sans-serif;
    text-align: center;
    line-height: 1.4;
    color: #009ddf;
}
#top_housing h4 .subtt {
    font-size: 1.4rem;
    font-weight: 300;
}

#top_housing .housing_image {
    width: 80vw;
    max-width: 1200px;
    margin: 100px auto 50px;
    position: relative;
}
#top_housing .housing_image::before {
    position: absolute;
    content: '';
    top: -12%;
    left: 10%;
    width: 80px;
    height: 100px;
    background: url(../images/housing_person01.png) no-repeat;
    background-size: 80px 100px;
}
#top_housing .housing_image::after {
    position: absolute;
    content: '';
    bottom: -8%;
    right: 5%;
    width: 130px;
    height: 100px;
    background: url(../images/housing_person02.png) no-repeat;
    background-size: 130px 100px;
}


@media only screen and (max-width: 780px) {
    
    
    #top_housing {
        margin: 30% 0;
    }
    #top_housing h4 {
        font-size: 4.0rem;
    }
    #top_housing .housing_image {
        margin: 10% auto;
    }
    #top_housing .housing_image::before {
        top: -16%;
        width: 60px;
        height: 70px;
        background-size: 60px 70px;
    }
    #top_housing .housing_image::after {
        width: 70px;
        height: 60px;
        background-size: 70px 60px;
    }
    
}






/* top_reviews */
#top_reviews {
margin: 150px 0;
}
#top_reviews h4 {
    font-size: 5.2rem;
    font-weight: bold;
    font-family: "Zen Maru Gothic", sans-serif;
    text-align: center;
    color: #009ddf;
    line-height: 1.2;
}
#top_reviews h4 .subtt {
    font-size: 1.4rem;
    font-weight: 300;
    margin-top: 20px;
}
.reviews_block {
    width: 80vw;
    margin: 100px auto 0;
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    justify-content: flex-start;
    flex-wrap: wrap;
}
.reviews_block .reviews_box {
    width: calc( 100%/4 - 30px );
    height: 19vw;
    margin-right: 40px;
    margin-bottom: 100px;
    position: relative;
}
.reviews_block .reviews_box:nth-child(4n) {
    margin-right: 0;
}
.reviews_block .reviews_box::before,
.reviews_block .reviews_box::after {
    position: absolute;
    display: block;
    content: "";
    top: 0;
    width: 0px;
    height: 0px;
    z-index: 3;
}
.reviews_block .reviews_box::before {
    border-top: 0 solid transparent;
    border-right: 0px solid transparent;
    border-bottom: 45px solid transparent;
    border-left: 10vw solid #FFF;
    left: 0;
}
.reviews_block .reviews_box::after {
    border-top: 0 solid transparent;
    border-left: 0px solid transparent;
    border-bottom: 45px solid transparent;
    border-right: 10vw solid #FFF;
    right: 0;
}
.reviews_block .reviews_box .reviews_ph {
    width: 100%;
    height: 100%;
    overflow:hidden;
}
.reviews_block .reviews_box .reviews_ph img {
    object-fit: cover;
    transition: 0.5s all;
}
.reviews_block .reviews_box a:hover .reviews_ph img {
    transform:scale(1.2,1.2);
}
.reviews_block .reviews_box .reviews_tt {
    position: absolute;
    bottom: -20px;
    left: -10px;
    width: 50%;
    padding: 10px 16px;
    background-color: rgba(0,157,223,0.8);
    color: #FFF;
    overflow: visible;
}
.reviews_block .reviews_box .reviews_tt .reviews_time {
    font-size: 1.1rem;
}
.reviews_block .reviews_box .reviews_tt .reviews_name {
    font-size: 1.1rem;
}
.reviews_block .reviews_box .reviews_tt .reviews_name .ini {
    font-size: 1.4rem;
}






@media only screen and (max-width: 780px) {
    
    
    /* top_reviews */
    #top_reviews {
        margin: 15vw 0 25vw;
    }
    #top_reviews h4 {
        font-size: 4.0rem;
    }
    .reviews_block {
        width: 90vw;
        margin: 14vw 5px 0 7vw;
    }
    .reviews_block .reviews_box {
        width: calc( 100%/2 - 4.5vw );
        height: 40vw;
        margin-right: 20px;
        margin-bottom: 15vw;
    }
    .reviews_block .reviews_box::before {
        border-left: 22vw solid #FFF;
    }
    .reviews_block .reviews_box::after {
        border-right: 22vw solid #FFF;
    }
    .reviews_block .reviews_box .reviews_tt {
        padding: 10px 12px 12px;
    }
    .reviews_block .reviews_box .reviews_tt .reviews_time {
        font-size: 1.2rem;
        line-height: 1.2;
    }
    .reviews_block .reviews_box .reviews_tt .reviews_name {
        font-size: 1.2rem;
        line-height: 1.2;
    }
    .reviews_block .reviews_box .reviews_tt .reviews_name .ini {
        font-size: 1.6rem;
    }


}










/* top_column */
#top_column {
    padding: 100px 0;
    border-top: 1px solid #009ddf;
    border-bottom: 1px solid #009ddf;
    background: url(../images/icon_column_bg.png);
    background-color: #f8f4e8;
    position: relative;
}
#top_column::before {
    position: absolute;
    content: "";
    top: -40px;
    left: 10vw;
    width: 172px;
    height: 84px;
    background: url(../images/icon_column.png) no-repeat;
}
#top_column .column_block {
    width: 80vw;
    margin: 50px auto;
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    justify-content: space-between;
}
#top_column .column_box {
    width: calc( 100%/3 - 20px );
    padding: 10px 30px;
    border-left: 1px solid #009ddf;
}
#top_column .column_box:first-child {
    padding-left: 0;
    border-left: none;
}
#top_column .column_box .column_ph .news_img_inimg {
    width: 100%;
    height: 16vw;
    overflow:hidden;
}
#top_column .column_box .column_ph .news_img_inimg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s all;
}
#top_column .column_box .column_ph a:hover .news_img_inimg img {
    transform:scale(1.2,1.2);
}
#top_column .column_box .column_time {
    margin: 10px 0;
    font-size: 1.2rem;
    font-weight: bold;
}
#top_column .column_box .column_tt a {
    color: #000;
}
#top_column .column_box .column_tt a:hover {
    text-decoration: underline;
}





@media only screen and (max-width: 780px) {
    
    
    /* top_column */
    #top_column {
        padding: 13vw 0;
    }
    #top_column::before {
        top: -30px;
        width: 100px;
        height: 84px;
        background-size: 100px 60px;
    }
    #top_column .column_block {
        width: 80vw;
        margin: 5vw auto;
        display: block;
        display: -webkit-block;
    }
    #top_column .column_box {
        width: auto;
        padding: 0;
        border-left: none;
        margin-bottom: 40px;
    }
    #top_column .column_box .column_ph .news_img_inimg {
        height: 50vw;
    }

}





/* top_media */
#top_media {
    padding: 100px 0;
    background-color: #009ddf;
}
#top_media .media_block {
    width: 80vw;
    margin: 0 auto;
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    justify-content: space-between;
}
#top_media .media_block .media_txt {
    color: #FFF;
    padding-right: 50px;
}
#top_media .media_block .media_txt .section_title {
    width: auto;
}
#top_media .media_block h4 {
    font-size: 5.2rem;
    font-weight: bold;
    font-family: "Zen Maru Gothic", sans-serif;
    color: #FFF;
}
#top_media .media_block h4 .subtt {
    font-size: 1.4rem;
    font-weight: 300;
}
#top_media .media_block .media_txt p {
    margin-top: 30px;
}
#top_media .media_block .media_movie {
    width: 50vw;
}
#top_media .media_block .media_movie .yt {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
}







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

    /* top_media */
    #top_media {
        padding: 13vw 0;
    }
    #top_media .media_block {
        display: block;
        display: -webkit-block;
    }
    #top_media .media_block .media_txt {
        padding-right: 0;
    }
    #top_media .media_block h4 {
        font-size: 4.0rem;
    }
    #top_media .media_block .media_txt p {
        margin-top: 3vw;
    }
    #top_media .media_block .media_movie {
        width: auto;
        margin-top: 20px;
    } 
    

}






 /* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
footer
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */



#ft_contact {
    padding: 250px 0 310px;
    position: relative;
}
#ft_contact::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #daeb7a;
    transform: skewY(10deg) translateY(700px);
    z-index: -2;
}
#ft_contact::after {
    content: '';
    position: absolute;
    bottom: 30px;
    right: 10px;
    width: 711px;
    height: 293px;
    background: url(../images/ft_contact_bg.png) no-repeat;
    z-index: -1;
}



#ft_contact .contact_block {
    width: 90vw;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    justify-content: space-between;
}
#ft_contact .contact_block .contact_box {
    width: calc( 100%/3 - 60px );
    border: 2px solid #009ddf;
    border-radius: 20px;
    padding: 60px 20px 30px;
    text-align: center;
    background-color: #FFF;
    position: relative;
}
#ft_contact .contact_block .contact_box::before {
    position: absolute;
    content: "";
    top: -50px;
    left: 0;
    right: 0;
    margin: auto;
    width: 80px;
    height: 80px;
    border-radius: 50%;
}
#ft_contact .contact_block .contact_box.cn_tel::before {
    background: url(../images/icon_ft_tel.svg) no-repeat;
    background-color: #009ddf;
    background-size: 40px 40px;
    background-position: center center;
}
#ft_contact .contact_block .contact_box.cn_sns::before {
    background: url(../images/icon_ft_sp.svg) no-repeat;
    background-color: #009ddf;
    background-size: 50px 50px;
    background-position: center center;
}
#ft_contact .contact_block .contact_box.cn_recruit::before {
    background: url(../images/icon_ft_recruit.svg) no-repeat;
    background-color: #009ddf;
    background-size: 50px 50px;
    background-position: center center;
}


#ft_contact .contact_block .contact_box h5 {
    font-size: 3.0rem;
    font-weight: 900;
    font-family: "Zen Maru Gothic", sans-serif;
    line-height: 1.2;
    color: #009ddf;
}
#ft_contact .contact_block .contact_box.cn_recruit h5 {
    padding-top: 30px;
}
#ft_contact .contact_block .contact_box .sub_tt {
    font-size: 1.3rem;
    color: #696969;
}
#ft_contact .contact_block .contact_box .con_txt {
    margin-top: 70px;
    font-size: 1.2rem;
    letter-spacing: 0;
}
#ft_contact .contact_block .contact_box .sns_icon {
    width: 50%;
    margin: 100px auto 0;
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    justify-content: space-between;
}
#ft_contact .contact_block .contact_box .sns_icon a img {
    width: 50px;
    height: auto;
}


#ft_contact .contact_block .contact_box .tel_number a {
    font-size: 3.6rem;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 900;
    line-height: 1.0;
    color: #009ddf;
}
#ft_contact .contact_block .contact_box .orh_common_btn a {
    width: auto;
    margin-top: 20px;
    color: #FFF;
    letter-spacing: 0;
    background-color: #009ddf;
    border: 1px solid #009ddf;
}
#ft_contact .contact_block .contact_box .orh_common_btn a::before{
	background: #FFF;
}
#ft_contact .contact_block .contact_box .orh_common_btn a::after{
	border-bottom: 1px solid #FFF;
}
#ft_contact .contact_block .contact_box .orh_common_btn a:hover {
    color: #009ddf;
    background-color: #FFF;
    border: 1px solid #009ddf;
    transition : 0.5s;
}
#ft_contact .contact_block .contact_box .orh_common_btn a:hover::before{
	background: #009ddf;
}
#ft_contact .contact_block .contact_box .orh_common_btn a:hover::after{
	border-bottom: 1px solid #009ddf;
}







#ft_copy {
    padding: 50px 0;
    background-color: #f8f4e8;
}
#ft_copy .copy_inner {
    width: 80vw;
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    justify-content: space-between;
}
#ft_copy .copy_tt {
    width: 16vw;
    align-items: center;
    display: flex;
    padding-right: 3%;
    border-right: 1px solid #009ddf;
}
#ft_copy .copy_name {
    margin-left: 3%;
    font-size: 1.4rem;
    color: #009ddf;
}



#ft_menu {
    background-color: #009ddf;
}
#ft_menu .menu_block {
    width: 80vw;
    max-width: 1300px;
    margin: 0 auto;
    padding: 80px 20px 50px;
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    justify-content: space-between;
    color: #FFF;
}
#ft_menu .menu_list {
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    justify-content: flex-start;
}
#ft_menu .menu_list ul {
    margin-right: 30px;
}
#ft_menu .menu_list li {
    margin-top: 5px;
}
#ft_menu .menu_list li a {
    color: #FFF;
    font-size: 1.3rem;
    position: relative;
}
#ft_menu .menu_list li a:hover {
    text-decoration: underline;
}
#ft_menu .menu_list li.cate a {
    font-size: 1.4rem;
    font-weight: bold;
}
#ft_menu .menu_list li.cate {
    margin-bottom: 15px;
    margin: 0 0 5px 0;
}
#ft_menu .menu_btn .orh_common_btn a {
    width: 20vw;
    max-width: 250px;
    border: 1px solid #FFF;
    color: #009ddf;
    font-weight: bold;
    margin-bottom: 10px;
}
#ft_menu .menu_btn .orh_common_btn a::before{
	right: 20px;
	width: 10px;
	height: 1px;
	background: #009ddf;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
#ft_menu .menu_btn .orh_common_btn a::after{
	right: 22px;
	width: 25px;
	height: 6px;
	border-bottom: 1px solid #009ddf;
}
#ft_menu .menu_btn .orh_common_btn a:hover {
    color: #FFF;
    background-color: #009ddf;
    border: 1px solid #FFF;
    transition : 0.5s;
}
#ft_menu .menu_btn .orh_common_btn a:hover::before{
	background: #FFF;
}
#ft_menu .menu_btn .orh_common_btn a:hover::after{
	border-bottom: 1px solid #FFF;
}



#ft_menu .copyright {
    font-size: 1.3rem;
    text-align: center;
    padding: 50px 0;
    color: #FFF;
}







@media only screen and (max-width: 780px) {
    
    
    
    #ft_contact {
        padding: 25vw 0 40vw;
    }
    #ft_contact::before {
        transform: skewY(10deg) translateY(100vw);
    }
    #ft_contact::after {
        width: 70vw;
        height: 30vw;
        background-size: 70vw auto;
    }



    #ft_contact .contact_block {
        width: 80vw;
        display: block;
        display: -webkit-block;
    }
    #ft_contact .contact_block .contact_box {
        width: auto;
        padding: 40px 20px 30px;
        margin-bottom: 40px;
    }
    #ft_contact .contact_block .contact_box::before {
        top: -25px;
        width: 60px;
        height: 60px;
    }
    #ft_contact .contact_block .contact_box.cn_tel::before {
        background-size: 30px 30px;
    }
    #ft_contact .contact_block .contact_box.cn_sns::before {
        background-size: 40px 40px;
    }
    #ft_contact .contact_block .contact_box.cn_recruit::before {
        background-size: 35px 35px;
    }


    #ft_contact .contact_block .contact_box h5 {
        font-size: 2.5rem;
    }
    #ft_contact .contact_block .contact_box.cn_recruit h5 {
        padding-top: 0;
    }
    #ft_contact .contact_block .contact_box .con_txt {
        margin-top: 40px;
    }
    #ft_contact .contact_block .contact_box .sns_icon {
        margin: 50px auto 0;
    }


    #ft_contact .contact_block .contact_box .tel_number a {
        font-size: 3.0rem;
    }



    #ft_copy .copy_inner {
        display: block;
        display: -webkit-block;
    }
    #ft_copy .copy_tt {
        width: 40vw;
        margin-bottom: 10px;
        padding: 0;
        border: 0;
    }
    #ft_copy .copy_name {
        margin-bottom: 20px;
        font-size: 1.2rem;
    }



}









/* 共通 */

.adjust { letter-spacing: -0.0em;}
.adjust005 { letter-spacing: -0.05em;}
.adjust01 { letter-spacing: -0.1em;}
.adjust015 { letter-spacing: -0.15em;}


.fs30 { font-size: 3.0rem;}



.fs12 { font-size: 1.2rem;}
.fs22 { font-size: 2.2rem;}
.fs25 { font-size: 2.5rem;}
.fs36 { font-size: 3.6rem;}

.mt15 { margin-top: 15px; !important}
.mt20 { margin-top: 20px; !important}
.mt30 { margin-top: 30px; !important}
.mt50 { margin-top: 50px; !important}
.mt70 { margin-top: 70px; !important}

.mb30 { margin-bottom: 30px;}
.mb50 { margin-bottom: 50px;}
.mb70 { margin-bottom: 70px;}


























 /* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Responsive
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
@media only screen and (max-width: 1460px) {

}

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




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


}




