@charset "utf-8";
/**共通項目**/


body{
    font-family: "Helvetica Neue",
    Arial,
    "Hiragino Kaku Gothic ProN",
    "Hiragino Sans",
    Meiryo,
    sans-serif;
}


ul {
	list-style: none;
}

.flex {
	display: flex;
}

a {
	text-decoration: none;
}

a:hover {
	opacity: 0.8;
}

img {
	width: 100%;
}

.wrap {
    overflow: hidden;
}

.br-sp {
    display: none;
}
.anchor{
    display: block;
    padding-top: 100px!important;
    margin-top: -100px!important;
}
.anchor2{
    display: block;
    padding-top: 250px!important;
    margin-top: -250px!important;
}

/**hover efect blue**/
.hover_efct_b::after {
  border-bottom: solid 2px #001959;
  content: "";
  display: block;
  transition: all .3s ease;
  -webkit-transition: all .3s ease;
  width: 0;
  margin-top: 3px;
}
.hover_efct_b:hover::after {
  width: 100%;
}

/**hover efect white**/
.hover_efct::after {
  border-bottom: solid 2px #ffffff;
  content: "";
  display: block;
  transition: all .3s ease;
  -webkit-transition: all .3s ease;
  width: 0;
  margin-top: 3px;
}
.hover_efct:hover::after {
  width: 100%;
}

/****左右のオブジェクト fadeIn****/
.box_top {
  transform:translateX(50px);
  opacity:0;
  transition:opacity 1s,transform 1s;
}

.box_clear_top {
  transform:translateX(-50px);
  opacity:0;
  transition:opacity 1s,transform 1s;
}

.box_l {
  transform:translateX(-50px);
  opacity:0;
  transition:opacity 1s,transform 0.5s;
}

.box_r {
  transform:translateX(50px);
  opacity:0;
  transition:opacity 1s,transform 0.5s;
}

.box_clear_l {
  transform:translateX(-50px);
  opacity:0;
  transition:opacity 1s,transform 0.5s;
}

.box_clear_r {
  transform:translateX(50px);
  opacity:0;
  transition:opacity 1s,transform 0.5s;
}

.fadein {
  opacity:1;
  transform:translateX(0);
}

.fadeinClear {
  opacity: 0.7;
  transform:translateX(0);
}

/*****コンテンツfade****/
.fade {
  transform:translateY(50px);
  opacity:0;
  transition:opacity 1s,transform 1s;
}

.fadein_content {
  opacity:1;
  transform:translateY(0);
}

/*float 解除*/
.clearfix::after {
	content: "";
	clear: both;
	display: block;
}

/*紺色コーポレートカラー*/
.d_blue {
	color: #001959;
}
/*****************/


/***header***/
header {
	width: 100%;
	height: 100vh;
	background-image: url("../img/top.jpg");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	position: relative;
}

/*.top_header_back_obj h1 {
    max-width: 350px;
	margin: 0;
}

.top_header_back_obj h1 img {
	max-width: 100%;
}*/

#sp_menu_bar {
	display: none;
}

.top_header_back_obj {
    background-color: #001959;
    width: 50%;
    padding: 20% 2% 0%;
    clip-path: polygon(0% 0%, 100% 0%, 0% 100%, 0% 0%);
    box-sizing: border-box;
}

.header_fix {
    position: fixed;
    display: flex;
    justify-content: space-between;
    width: 100%;
	align-items: center;
	z-index: 999;
	top: 0;
    overflow: hidden;
}

.header_fix h1 {
    margin: 10px;
	width: 350px;
}
.underpass_fix {
    position: fixed;
    display: flex;
    justify-content: space-between;
    width: 100%;
	align-items: center;
	z-index: 999;
	top: 0;
    overflow: hidden;
}

.underpass_fix h1 {
    margin: 10px;
	width: 350px;
}

#top_nav {
    width: 50%;
    /* position: absolute;
    right: 0; */
}

.change-color {
    background-color: rgba(0,25,89,0.5);
	-webkit-transition: 0.3s;
    -ms-transition: 0.3s;
    transition: 0.3s;
}

#top_nav ul {
    display: flex;
    padding: 0;
    margin: 0 0 0 auto;
    width: 100%;
    justify-content: space-between;
    /* justify-content: space-evenly; */
    /* 6/3上原 */
    /* flex-wrap: wrap; */
}

#top_nav ul li {
    font-size: 12px;
    /* 6/3上原 */
    /* max-width: 125px;
	min-width: 60px; */
    text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
}

.change-font-color {
	color: #fff;
	-webkit-transition: 0.3s;
    -ms-transition: 0.3s;
    transition: 0.3s;
}

.nav_list_back {
	/* display: flex; */
	align-items: center;
	/* background-color: #001959;
	color: #fff; */
    margin: 0 15px 0 5px;
}
.top_nav_link:nth-child(5) a{
    background-color: #001959;
    color: #fff;
    padding: 5% 10% 5%;
    width: 100px;
}
.top_nav_link:nth-child(5) span img{
    vertical-align: middle;
}
.top_nav_link:nth-child(6) a{
    background-color: #001959;
    color: #fff;
    padding: 5% 10% 5%;
    width: 130px;
}
.top_nav_link:nth-child(6) span img{
    vertical-align: middle;
}


#header_catch_box {
	text-align: center;
	margin: auto;
}

.header_catch_title {
    font-size: 62px;
    line-height: 1.8;
    margin: 0 auto;
}

.header_catch_desc {
	color: #fff;
}
/*
.header_catch_title .d_blue {
	margin-left: -17px;
}*/

.header_scroll_btn_box {
	text-align: center;
	margin-top: 10%;
}

#header_scroll_btn {
    border: none;
    background: transparent;
	animation: fluffy1 3s ease infinite;
}

@keyframes fluffy1 {
  0% { transform:translateY(0) }
  5% { transform:translateY(0) }
  10% { transform:translateY(0) }
  20% { transform:translateY(-2px) }
  25% { transform:translateY(0) }
  30% { transform:translateY(-2px) }
  50% { transform:translateY(0) }
  100% { transform:translateY(0) }
}

#header_scroll_btn a::after {
	content: url(../img/scroll_down.png);
	display: block;
	vertical-align: middle;
    -webkit-transform: scale(0.3);
    transform: scale(0.3);
}

#header_scroll_btn a {
	color: #001959;
	font-size: 20px;
	font-weight: 600;
}

.header_back_obj {
    background-color: #001959;
    width: 50%;
    padding: 8% 2% 13%;
    position: absolute;
    clip-path: polygon(100% 0%, 100% 0%, 100% 100%, 0% 100%);
    box-sizing: border-box;
    bottom: 0;
    right: 0;
    /*opacity: 0.7;*/
}
/****header end****/
/*********main contents********/
/******各コンテンツ position設定******/
#revolution,
#constraction,
#news,
#result,
#recruite,
#company
 {
	position: relative;
	height: 100vh;
	width: 100%;
}
/*********************************/
/******見出し調整******/
.revolution_title,
.constraction_title,
.result_title {
    max-width: 500px;
	position: absolute;
	margin: 0;
	z-index: 20;
}
/*個別調整*/
.revolution_title {
	top: 0;
	left: 0;
}

.news_title {
    position: absolute;
	margin: 0;
	z-index: 20;
    width: 30%;
	top: 0;
	left: 0;
}

.constraction_title {
    top: 0;
    right: 0;
    width: 80%;
}

.result_title {
	max-width: 622px;
	top: 0;
	right: 0;
}
.contact_title {
    width: 25%;
    margin: 0;
}
/********************/
/****revolutiron****/
#revolution {
	background-image: url("../img/revo_back.jpg");
	background-size: contain;
	background-position: top;
	background-repeat: no-repeat;
}

.revolution_back_obj {
    background-color: #001959;
    width: 50%;
    padding: 8% 2% 13%;
    position: absolute;
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 100% 100%);
    box-sizing: border-box;
    top: 0;
    right: 0;
    /*opacity: 0.7;*/
}

.revolution_box {
    padding: 20% 0px 0px;
	box-sizing: border-box;
    /* height: 100vh; */
}

.revolution_box__inner {
	max-width: 1024px;
	margin: auto;
}

.revolution_box__desc,
.revolution_box__text {
    width: 79%;
    margin: auto;
    line-height: 1.5;
}


.revolution_box__desc {
    font-size: 24px;
    margin-bottom: 40px;
}

.revolution_box__company_btn  {
    text-align: center;
    margin: 10% auto;
	margin-top: 0;
}
.revolution_box__company_btn button {
    border: none;
    padding: 0;
	background-color: transparent;
}
.revolution_box__company_btn button a {
    color: #fff;
    display: block;
    padding: 20px 65px;
}

.revolution_box__company_btn button a {
  background-color: #001959;
  color: #fff;
  border: none;
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: 800ms ease all;
  outline: none;
  z-index: 1;
}
.revolution_box__company_btn button a:hover{
  background: #fff;
  color: #001959;
}
.revolution_box__company_btn button a:before,.revolution_box__company_btn button a:after{
  content:'';
  position: absolute;
  top: 0;
  right: 0;
  height: 2px;
  width: 0;
  background: #001959;
  transition: 400ms ease all;
}
.revolution_box__company_btn button a:after{
  right: inherit;
  top: inherit;
  left: 0;
  bottom: 0;
}
.revolution_box__company_btn button a:hover:before,.revolution_box__company_btn button a:hover:after{
  width: 100%;
  transition: 800ms ease all;
}

.human_img {
    position: absolute;
    bottom: -150px;
    right: 5%;
    width: 20%;
}

/****revolutiron end****/

/****constraction****/
#constraction {
	height: auto;
}
.constraction_tittle_box {
    display: flex;
    flex-direction: row-reverse;
    position: relative;
}
.constraction_title {
	position: static;
}

.constraction_title img {
	margin-bottom: -7px;
}

.constraction_back_obj {
    background-color: #001959;
    width: 50%;
    padding: 125px 2% 0;
    position: absolute;
    clip-path: polygon(0% 0%, 100% 100%, 100% 100%, 0% 100%);
    box-sizing: border-box;
    left: 0;
    bottom: 0;
}

#constraction h3 {
    color: #fff;
    margin-left: 15px;
    font-size: 24px;
    margin-bottom: 40px;
}

.constraction_box {
    box-sizing: border-box;
	position: relative;
}

.constraction_back_obj2 {
    background-color: #001959;
    width: 50%;
    padding: 0% 2% 20%;
    position: absolute;
    clip-path: polygon(0% 0%, 100% 0%, 0% 50%, 0% 0%);
    box-sizing: border-box;
    top: -1px;
    left: 0;
    /*opacity: 0.7;*/
    z-index: 20;
}

.constraction_back_obj3 {
    background-color: #001959;
    width: 20%;
    padding: 7% 0% 13%;
    position: absolute;
    clip-path: polygon(100% 100%, 0% 100%, 100% 55%, 100% 0%);
    box-sizing: border-box;
    bottom: 0;
    right: 0;
    /* opacity: 0.7; */
    z-index: 20;
}

.constraction_back_obj4 {
    background-color: #001959;

    width: 50%;
    padding: 8% 2% 13%;
    position: absolute;
    clip-path: polygon(0% 100%, 100% 100%, 100% 0%, 100% 16%);
    box-sizing: border-box;
    bottom: 0;
    right: 0;    
}

.constraction_box__img__overflow_box {
    overflow: hidden;
    width: 100%;
    display: block;
}
.constraction_box__img__overflow_box img{
    width: 100%;
    vertical-align: bottom;
}

.constraction__link__top {
    position: absolute;
    top: 40%;
    font-weight: bold;
    left: 0;
	color: #fff;
    text-align: center;
    width: 100%;
    /* padding: 33% 0; */
    box-sizing: border-box;
    text-shadow: 1px 0 black;
}
.constraction__link {
    position: absolute;
    top: 20%;
    font-weight: bold;
    left: 0;
	color: #fff;
    text-align: center;
    width: 100%;
    /* padding: 33% 0; */
    box-sizing: border-box;
    text-shadow: 1px 0 black;
}

.constraction__link--font{
    font-size: 22px;
    display: block;
}

.constraction_box .figure {
	width: 100%;
    margin: 0;
    position: relative;
    line-height: 0.8;
	overflow: hidden;
	cursor: pointer;
  	transition-duration: 0.3s;
}

.constraction_box img:before {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  content: "";
  width: 100%;
  height: 100%;
  background: radial-gradient(rgba(0, 0, 0, 0.1), black);
  color: #fff;
  font-size: 22px;
  letter-spacing: 4px;
  text-shadow: 0 0 2px #000;
  filter: blur(4px);
  transition-duration: 0.3s;
  opacity: 0;
}
.constraction_box img:hover {
  transform: scale(1.1);
}
.constraction_box img:hover:before {
  transform: scale(1.3);
  filter: blur(0);
  opacity: 1;
}




/* 5/31上原 */
.constraction_map_box{
    position: relative;
    padding: 100px 0 100px;
}

.constraction_map_box__img{
    width: 100%;
    position: relative;
}

.constraction_map_box__img img{
    width:  100%;
    height: auto;
}

.img-map--item{
    display: block;
    text-decoration: none;
    width: 3%;
    position: absolute;
}

.img-map--item img{
    width: 100%;
}

.img-map--item01{
    bottom: 33.5%;
    left: 12.5%;
}
.img-map--item02{
    top: 24.5%;
    left: 28.5%;
}
.img-map--item03{
    top: 19%;
    left: 39%;
}
.img-map--item04{
    top: 40%;
    left: 47%;
}
.img-map--item05{
    top: 14%;
    right: 37%;
}
.img-map--item06{
    top: 49.5%;
    right: 39.5%;
}
.img-map--item07{
    top: 15%;
    left: 20.5%;
}
.img-map--item08{
    top: 8%;
    right:7.5%;
}
.img-map--item09{
    top: 40%;
    right:22.5%;
}
.img-map--item10{
    bottom: 14%;
    right:36%;
}
.img-map--item11{
    bottom: 11%;
    left: 35%;
}
.img-map--item12{
    bottom: 42%;
    right: 6%;
}






.constraction_map_box__title{
    text-align: center;
    font-size: 36px;
    font-weight: bold;
    padding-bottom: 30px;
    color: #001959;
}

area:hover {
    background-color: #0c0c6b;
    
}

/****constraction end****/

/****news****/
.news {
    margin-bottom: 50px;
}

#news .news__background-img {
    height: auto;
    z-index: 0;
    position: absolute;
	top: 20%;
	right: 0;
}

.news_background_obj__box {
    width: 50%;
    height: 100%;
    margin: 0 0 0 auto;
}

.news_back_obj {
    background-color: #001959;
    width: 100%;
    padding: 20% 2% 0%;
    clip-path: polygon(60% 0%, 10% 100%, 100% 100%, 100% 0%);
    box-sizing: border-box;
    line-height: 0;
}

.news_back_obj2 {
    background-color: #001959;
    width: 100%;
	margin-top: -1px;
    padding: 31% 2% 5%;
    clip-path: polygon(10% 0%, 100% 100%, 100% 100%, 100% 0%);
    box-sizing: border-box;
    line-height: 0;
}

.news_back_obj4 {
    background-color: #001959;
    width: 50%;
    padding: 5% 2% 13%;
    position: absolute;
    clip-path: polygon(0% 100%, 100% 100%, 100% 0%, 100% 16%);
    box-sizing: border-box;
    bottom: 0;
    right: 0;    
}

.news_tittle_box {
    position: relative;
    width: 100%;
    height: 25vh;
}

/* .news_title {
    top: 25%;
} */

.news_box {
    max-width: 1024px;
    margin: 0 auto;
}

@media only screen and (max-width: 1024px) {
    .news_box {
        padding-bottom: 80px;
    }
}

.news_box__list {
    width: 70%;
    margin: auto;
}

.news_box__link {
    padding: 10px 15px 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid #001959;
}

.news_box__list-item{
    position: relative;
}


.news_box__date{
    font-weight: bold;
}

.news_box__text{
    display: inline-block;
    padding: 3px 5px ;
    margin: 0 10px;
    font-weight: bold;
    border: 1px solid #001959;
}

.news_box__icon{
    position: absolute;
    top: 50%;
    right: 0%;
    transform: translate(0%, -50%);
    -webkit-transform: translate(0%, -50%);
    -ms-transform: translate(0%, -50%);
}

.news_box__title {
    display: block;
    margin: 5px 0;
    line-height: 1.5em;
}

.news_box__more_btn  {
    text-align: center;
    margin: 5% auto;
}
.news_box__more_btn button {
    border: none;
    padding: 0;
	background-color: transparent;
}
.news_box__more_btn button a {
    color: #fff;
    display: block;
    padding: 20px 65px;
}

.news_box__more_btn button a {
  background-color: #001959;
  color: #fff;
  border: none;
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: 800ms ease all;
  outline: none;
}
.news_box__more_btn button a:hover{
  background: #fff;
  color: #001959;
}
.news_box__more_btn button a:before,
.news_box__more_btn button a:after{
  content:'';
  position: absolute;
  top: 0;
  right: 0;
  height: 2px;
  width: 0;
  background: #001959;
  transition: 400ms ease all;
}
.news_box__more_btn button a:after{
  right: inherit;
  top: inherit;
  left: 0;
  bottom: 0;
}
.news_box__more_btn button a:hover:before,
.news_box__more_btn button a:hover:after{
  width: 100%;
  transition: 800ms ease all;
}
/****news end****/

/*****result*****/
#result {
	height: unset;
}
.result_tittle_box {
    display: flex;
    align-items: baseline;
    width: 100%;
}

.result_title {
    position: static;
    margin: 0 0 0 auto;
    line-height: 0;
}

.result_back_obj {
    background-color: #001959;
    width: 50%;
    padding: 205px 0% 100px;
    clip-path: polygon(0% 0%, 100% 100%, 100% 100%, 0% 100%);
    box-sizing: border-box;
}

.result_box__img figure {
    margin: 0;
    position: relative;
}

.result_box__img figure figcaption {
	width: 100%;
	text-align: center;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-weight: 600;
}

.result_box__img__overflow_box {
	overflow: hidden;
}

.result_box__img__overflow_box figure {
    margin: 0;
    position: relative;
    line-height: 0;
	overflow: hidden;
	cursor: pointer;
  	transition-duration: 0.3s;
}

.result_box__img__overflow_box figure figcaption {
    position: absolute;
    width: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-weight: 600;
}

.result_box__img__overflow_box figure:before {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    content: "";
    width: 100%;
    height: 100%;
    background: radial-gradient(rgba(0, 0, 0, 0.1), black);
    color: #fff;
    font-size: 22px;
    letter-spacing: 4px;
    text-shadow: 0 0 2px #000;
    filter: blur(4px);
    transition-duration: 0.3s;
    opacity: 0;
}
.result_box__img__overflow_box figure:hover {
  transform: scale(1.1);
}
.result_box__img__overflow_box figure:hover:before {
  transform: scale(1.3);
  filter: blur(0);
  opacity: 1;
}


/****result end****/

/*****recruite*****/
#recruite {
	height: unset;
}

#recruite .recruite_title {
    width: 280px;
    margin: 0 0 0 auto;
    display: flex;
    /* justify-content: space-evenly; */
    justify-content: flex-end;
    align-items: center;
    color: #fff;
}

#recruite .recruite_title span span {
	font-size: 13px;
}

.recruite_title img {
    width: 65px;
    padding: 0% 3% 0% 0%;
}

.recruite_tittle_box {
	position: relative;
}

.recruite_back_obj {
    background-color: #001959;
    width: 50%;
    padding: 3% 2% 7%;
    position: absolute;
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 100% 100%);
    box-sizing: border-box;
    top: 0;
    right: 0;
   /* opacity: 0.7;*/
    z-index: 10;
}

.recruite_back_obj2 {
	background-color: #001959;
    width: 50%;
    padding: 80px 0% 100px;
    clip-path: polygon(0% 0%, 100% 100%, 100% 100%, 0% 100%);
    box-sizing: border-box;
    position: absolute;
    bottom: 0;
    /*opacity: 0.7;*/
}

.recruite_desc {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    /* -webkit- transform: translateY(-50%) translateX(-50%); */
    margin: auto;
    color: #fff;
    font-weight: normal;
    z-index: 50;
}

.recruite_box__pict4 {
	padding: 0;
	margin: 0;
	flex-wrap: wrap;
}

.recruite_box__pict4__img_list {
	width: 50%;
	margin: 0;
	border: 1px solid #0c0c6b;
	box-sizing: border-box;
	position: relative;
}

 
.recuruite_box__imgarea {
    background-color: #333;
	margin: 0;
}

.recruite_box__imgarea a {
	display: block;
	width: 100%;
}


.recuruite_box__img__overflow_box {
	overflow: hidden;
}

.recuruite_box__img__overflow_box .recuruite_box__imgarea {
    margin: 0;
    position: relative;
    line-height: 0;
	overflow: hidden;
	cursor: pointer;
  	transition-duration: 0.3s;
}

.recuruite_box__img__overflow_box .recruite_desc {
    position: absolute;
    width: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-weight: 600;
}

.profile-tittle {
    position: absolute;
    bottom: 80px;
    right: 0px;
    z-index: 999;
    max-width: 230px;
    width: 100%;
    background-color: rgba(0,25,89,0.7);
    padding: 13px 50px;
    color: #fff;
    text-align: center;
    clip-path: polygon(80% 0%, 0% 0%, 20% 100%, 100% 100%);
}

.profile-name {
    display: block;
    margin-top: 10px;
    font-size: 20px;
}

.recuruite_box__img__overflow_box .recuruite_box__imgarea:before {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: radial-gradient(rgba(0, 0, 0, 0.1), black);
  color: #fff;
  font-size: 18px;
  letter-spacing: 2px;
  text-shadow: 0 0 2px #000;
  filter: blur(4px);
  transition-duration: 0.3s;
  opacity: 0;
}
.recuruite_box__img__overflow_box:nth-child(1) .recuruite_box__imgarea:before {
	content: "採用情報";
}
/* .recuruite_box__img__overflow_box:nth-child(2) .recuruite_box__imgarea:before {
	content: "平成世代にも理解のある会社";
}
.recuruite_box__img__overflow_box:nth-child(3) .recuruite_box__imgarea:before {
	content: "風通しもよく相談しやすい雰囲気の職場";
}
.recuruite_box__img__overflow_box:nth-child(4) .recuruite_box__imgarea:before {
	content: "「土木学会の技術賞」を受賞した工事は貴重な体験";
} */

.recuruite_box__img__overflow_box .recuruite_box__imgarea:hover {
  transform: scale(1.1);
}

.recuruite_box__img__overflow_box .recuruite_box__imgarea:hover:before {
  transform: scale(1.3);
  filter: blur(0);
  opacity: 1;
}

/*****recruite end*****/

/*****company*****/

.company__header{
    height: unset;
    background-image: none;
}

.company_header_banner{
    width: 20%;
    margin-left: auto;
    margin-right: 20%;
}

.company_header_banner img{
    width: 100%;

}



#company {
    height: unset;
/* position: relative; */
    /* max-height: 590px; */
}

.company_title {
    /* position: absolute;
    bottom: 0; */
    /* color: #fff; */
    /* display: flex;
    align-items: center;
    justify-content: space-around;
    margin-left: 1%; */
	/* z-index: 10; */
    color: #000;

}

.company_title img {
    width: 80px;
}

.company_title span span {
	font-size: 18px;
}

.company_back_obj {
    background-color: #001959;
    width: 50%;
    padding: 90px 0% 100px;
    clip-path: polygon(0% 0%, 100% 100%, 100% 100%, 0% 100%);
    box-sizing: border-box;
    position: absolute;
    bottom: 0;
    /*opacity: 0.7;*/
    z-index: 10;
}

.company_box {
	line-height: 0;/*追記*/
}

.company_box__imgarea {
	width: 100%;
	/* height: 100vh;キャンセル */
    height: auto;

    margin-top: 0px;
	margin-bottom: 0;/*追記*/
}
.company_box__imgarea img {
    border-bottom: 2px solid #0c0c6b;
}

.company_box__img__overflow_box {
	overflow: hidden;
}

.company_box__img__overflow_box .company_box__imgarea {
    margin: 0;
    position: relative;
    line-height: 0;
	overflow: hidden;
	cursor: pointer;
  	transition-duration: 0.3s;
}

.company_box__imgarea:before {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  content: "会社情報";
  width: 100%;
  height: 100%;
  background: radial-gradient(rgba(0, 0, 0, 0.1), black);
  color: #fff;
  font-size: 22px;
  letter-spacing: 4px;
  text-shadow: 0 0 2px #000;
  filter: blur(4px);
  transition-duration: 0.3s;
  opacity: 0;
}

.company_box__imgarea:hover {
  transform: scale(1.1);
}

.company_box__imgarea:hover:before {
  transform: scale(1.3);
  filter: blur(0);
  opacity: 1;
}

/*****2021.07.26 福山*****/
#fhilosofhy .revolution_box{
    height: auto;
    margin-bottom: 60px;
    padding-top: 10%;
}
.fhilosofhy__img {
    margin-top: 60px;
    width: 79%;
    margin: auto;
}
.fhilosofhy_back_obj4{
    opacity: 0.7;
}

.history_back_obj4{
    opacity: 1;
}

.fhilosofhy_tittle_box .fhilosofhy_back_obj4{
    padding: 0 14% 10% 20%;
    text-align: right;
}

.info_content .info__inner {
    margin: 0 auto;
    max-width: 1200px;
    padding: 180px 10% 250px;
}

.info__inner table {
    width: 100%;
}

.info__inner table tr:nth-of-type(5) p, .info__inner table tr:nth-of-type(6) p, .info__inner table tr:nth-of-type(7) p{
    text-indent: 1em;
}

.info__inner table tr:nth-of-type(5) p:first-child, .info__inner table tr:nth-of-type(6) p:first-child, .info__inner table tr:nth-of-type(7) p:first-child{
    text-indent: 0;
}

.info__inner table tr th {
    width: 14%;
    color: #001959;
    text-align: left;
    padding: 15px 0 15px 10px;
    vertical-align: top;
}

.info__inner table tr th p{
    margin-block-start: 0;
    margin-block-end: 0;
    margin-bottom: 10px;
}

.info__inner table tr th p:last-of-type{
    margin-bottom: 0;
}

.info__inner table tr td {
    width: 86%;
    padding: 15px 0 15px 40px;
}

.info__inner table tr td p{
    margin-block-start: 0;
    margin-block-end: 0;
    margin-bottom: 10px;
}

.info__inner table tr td p:last-of-type{
    margin-bottom: 0;
}

.backgrounc_blue{
    background-color: rgb(192 231 247 / 47%);
}

.info__img_map{
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.info__img {
    margin-right: 15px;
    width: 50%;
}

.info__img_area{
    margin: 0;
    margin-bottom: 10px;
    max-width: 100%;
}

.info__img_desc{
    max-width: 100%;
    text-align: right;
    margin: 0 auto;
    margin-bottom: 10px;
}

.info__map{
    margin-left: 15px;
    width: 50%;
    position : relative;
    height : 0;
    padding-bottom : 33%;
    overflow : hidden;
}

 
.info__map iframe,
.info__map object,
.info__map embed{
    position : absolute;
    top : 0;
    left : 0;
    width : 100%;
    height : 100%;
}

.history__content .history__inner{
    max-width: 1200px;
    margin: 0 auto;
    padding: 180px 10% 100px;
}

.history__inner table {
    width: 100%;
}

.history__inner table tr th {
    width: 20%;
    color: #001959;
    text-align: left;
    padding: 15px 0 15px 15px;
    vertical-align: top;
}

.history__inner table tr th p{
    margin-block-start: 0;
    margin-block-end: 0;
    margin-bottom: 10px;
}

.history__inner table tr th p:last-of-type{
    margin-bottom: 0;
}

.history__inner table tr td {
    width: 80%;
    padding: 15px 0 15px 40px;
}

.history__inner table tr td p{
    margin-block-start: 0;
    margin-block-end: 0;
    margin-bottom: 10px;
}

.history__inner table tr td p:last-of-type{
    margin-bottom: 0;
}

/*****company end*****/

/*****contact*****/
#contact {
   display: flex;
   justify-content: space-between;
   margin-bottom: 30px;

}

/* 上原 */
.contact_box{
display: flex;
width: 70%;
}

.contact_box__tell {
    width: 33%;
    margin: auto 0;
}

.contact_box__tell img {
    width: 100%;
}

.contact_box__banner {
    width: 33%;
    margin: auto 0;
    text-align: center;
}

.contact_box__banner img {
    width: 65%;
}

/*****contact end*****/
/*********main contents end********/

/*******matching page css start*********/
.matching_title {
    width: 700px;
}
/*********matching page css end********/

/**********footer start**********/
.footer_back_obj {
	position: relative;
	/* height: 360px; */
}

.footer_back_obj img {
	width: 100%;
	height: 100%;
}

.footer__desc {
    /* display: flex; */
    clip-path: polygon(100% 100%, 100% 0%, 0% 0%, 0% 79%);
    background: #001959;
    padding-bottom: 5%;
    padding-top: 3%;
    width: 100%;
}

.footer__inner{
    max-width: 1200px;
    margin: 40px auto;
    display: flex;
    justify-content: space-between;
}


.connection {
    background-color: #c0e7f7e6;
    padding: 30px;
    /* padding: 0 30px; */
    /* margin: 40px 50px; */
    max-width: 450px;
    height: 50%;
}

.connection__title {
    font-weight: 500;
    font-size: 0.875rem;
    margin: 15px 0;
    position: relative;
	padding-left: 12px;
}

.connection__title:before {
	content: '';
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 6px 0 6px 8px;
	border-color: transparent transparent transparent #333;
	position: absolute;
	top: 50%;
	left: 0;
	margin-top: -6px;
}

.connection ul {
    margin: 0;
    padding: 0;
}

.connection li {
    display: flex;
    margin-bottom: 30px;
}

.connection li  a{
    display: block;
    color: #000;
    width: calc(100% - 110px);

}

.connection figure {
    width: 120px;
    margin: auto 0;
    margin-right: 10px;
}

.footer_back_obj img {
    width: 100%;
    height: auto;
}

.society__text {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}

.society__text h5 {
    margin:auto 0;
    font-weight: 500;
    font-size: 16px;
}

.society__text figure {
    max-width: 40px;
    max-height: 40px;
}

.society__desc p {
    font-size: 0.675rem;
    line-height: 1.4;
    margin: 0;
}

.footer__nav{
	display: flex;
}

.footer__nav ul{
    padding-left: 0;
    /* margin: 40px 40px 40px 30px; */
}
.footer__nav ul li a{
    color: #fff;
}

.footer__desc nav ul li {
    color: #fff;
    font-size: 0.675rem;
    margin-bottom: 15px;
}


.footer_list_btn {
    font-size: 0.875rem;
    position: relative;
	padding-left: 12px;
	left: -13px;
}

.footer_list_btn:before {
	content: '';
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 6px 0 6px 8px;
	border-color: transparent transparent transparent #555;
	position: absolute;
	top: 50%;
	left: 0;
	margin-top: -6px;
}

.footer_back_obj_logo {
    max-width: 250px;
    padding: 0 15px;
    margin: auto 0 ;
    margin-bottom: 30px;
}

.footer_back_obj_logo img {
    width: 100%;
    /* margin-top: 85px; */
}

.footer__copy{
    font-size: 10px;
    text-align: center;
    padding: 15px 0;
    background-color: #001959;
    color: #fff;
    margin-bottom: 0;
}

/**********footer end**********/

/**********map 下層ページ 6/10*************************/
/* 共通 */

#bottom_header{
    max-width: 1024px;
    margin: 0 auto;
    display: flex;
}

.header_case_box{
    width: 60%;
}

.header_case_title{
    font-size: 26px;
    color: orange;
    margin: 0;
    margin-bottom: 10px;
}

.header_case_title-underpass{
    color: rgb(15, 170, 221);
}

.header_case_title img{
    width: 25px;
    margin-right: 5px;
    height: auto;
    color: #001959;
    vertical-align: bottom;
}

.header_img_box{
    width: 40%;
    margin-top: auto;
    display: block;
    color: #000;
    position: relative;
    z-index: 1;
}
.header_img_text{
    text-align: right;
    margin: 0;
    font-size: 16px;
}

.header_img_text img{
    display: inline-block;
    width: 8%;
    height: auto;
    vertical-align: middle;
}

.header_img_text a{
    display: inline-block;
}

.header_img_text a img{
    width: 30px;
    margin-bottom: 0px;
    vertical-align: middle;
}






.header_case_subtitle{
    margin: 0;
    font-size: 44px;
    color: gray;
    margin-bottom: 10px;
}

.header_case_box table{
width: 95%;
text-align: left;
}
.header_case_box th{
font-weight: normal;
width: 130px;
font-size: 18px;
padding: 3px 15px;
}

.header_case_box td{
width: calc(100% - 130px);
font-size: 18px;
padding: 3px 15px;
line-height: 1.7;
}

.box_color{
background-color: #eee;
}


.top_header_openshield {
    background-color: #001959;
    width: 50%;
    padding: 20% 2% 0%;
    clip-path: polygon(0% 0%, 100% 0%, 0% 100%, 0% 0%);
    box-sizing: border-box;
    position: absolute;
    top: 0;
}

.top_header_underpass {
    background-color: #001959;
    width: 50%;
    padding: 20% 2% 0%;
    clip-path: polygon(0% 0%, 100% 0%, 0% 100%, 0% 0%);
    box-sizing: border-box;
    position: absolute;
    top: 0;
}

#header_case_main-title{
    position: absolute;
    top: 100px;
    right: 15px;
    color: #001959;
    font-size: 36px;
    font-weight: bold;
}

#header_case_main-title img{
    width: 40px;
    height: auto;
    vertical-align: middle;
    margin-right: 5px;
}

#header_case_main-title span{
    font-size: 10px;
    text-align: end;
    display: block;
}



/**********openshield 6/10上原************************/

/**********header************************************/
#openshield,
#tech_openshield {
	margin-top: 200px;
}
.openshield_header_back {
	background-image: url("../img/background-image1.png");
    width: 100%;
    height: 50vh;
    background-size: contain;
    background-repeat: no-repeat;
    background-position:center right 15%;
	position: absolute;
	top: 0;
}
.openshield_header {
    background-image: unset;
    width: 100%;
    height: 100px;
    /* //background-size: contain;
    //background-repeat: no-repeat;
    //background-position:center right 15%; */
    position: relative;
    display: flex;
    justify-content: space-around;
    flex-direction: column;
}

/*********content*************************************/
.openshield_inner{
    max-width: 1100px;
    margin: 0 auto;
}

.openshield_content{
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    flex-wrap:wrap;
}
/*暫定処置*/
@media only screen and (max-width: 480px) {
	.openshield_content {
    display: block;
}
}
.openshield_item{
    width: 48%;
}
/*暫定処置*/
@media only screen and (max-width: 480px) {
.openshield_item{
    width: 100%;
}
}
.openshield_item-img img{
    width: 100%;
    height: auto;
}
.openshield_item_text{
    text-align: right;
    margin: 10px 0 0 0;
    font-size: 18px;
    margin-bottom: 25px;
}
.openshield_btn {
    font-size: 22px;
    text-align: left;
    margin: 0;
    margin-bottom: 100px;
}
.openshield_btn a{
padding: 20px 100px;
}

/*******underpass****************************** */
#underpass,
#tech_underpass {
	margin-top: 200px;
}

.underpass_header_back {
	background-image: url("../img/background-image2.png");
    width: 100%;
	height: 50vh;
    background-size: 40%;
    background-repeat: no-repeat;
    background-position:bottom 3% right 15%;
	position: absolute;
	top: 0;
}
.underpass_header {
    background-image: unset;
    width: 100%;
	height: 100px;
    /* //background-size: 40%;
    //background-repeat: no-repeat;
    //background-position:bottom 3% right 15%; */
    position: relative;
    display: flex;
    justify-content: space-around;
    flex-direction: column;
 }
/*********content*************************************/
/* #underpass{
    margin-top: -250px;
} */

.underpass_inner{
    max-width: 1024px;
    margin: 0 auto;
}

.underpass_content{
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    flex-wrap:wrap;
}
/*暫定処置*/
@media only screen and (max-width: 480px) {
	.underpass_content{
    display: block;
}
}
.underpass_item{
    width: 48%;
}
/*暫定処置*/
@media only screen and (max-width: 480px) {
	.underpass_item {
    width: 100%;
}
}
.underpass_item_img{
    z-index: 1;
    position: relative;
}

.underpass_item-img img{
    width: 100%;
    height: auto;
}
.underpass_item_text{
    text-align: right;
    margin: 10px 0 0 0;
    font-size: 18px;
    margin-bottom: 25px;
}
.underpass_btn {
    text-align: left;
}
/*暫定処置*/
@media only screen and (max-width: 480px) {
.underpass_btn {
    text-align: center;
}
	.revolution_box__company_btn__btn1,
	.revolution_box__company_btn__btn2 {
		margin: 4% auto;
	}
}
.underpass_background_obj__box {
    width: 50%;
    height: 100%;
    margin: 0 0 0 auto;
    position: relative;
}

.underpass_back_obj {
    background-color: #001959;
    width: 100%;
    padding: 40% 2% 0%;
    clip-path: polygon(10% 0%, 100% 100%, 100% 100%, 100% 0%);
    box-sizing: border-box;
    line-height: 0;
    z-index: 0;
    position: absolute;
    top: -101px;
    right: 0;
}

.underpass_back_obj2 {
    background-color: #001959;
    width: 100%;
	margin-top: -1px;
    padding: 40% 2% 0%;
    clip-path: polygon(100% 0%, 10% 100%, 100% 100%, 100% 0%);

    box-sizing: border-box;
    line-height: 0;
    z-index: 0;
    position: absolute;
    bottom: 100px;
    right: 0;
}

.underpass_img_box{
    position: relative;
    z-index: 1;
}

.constraction_box__img__overflow_box{
    position: relative;

}

.constraction_box__animate{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}


.rich_font_type2 {
    font-family: Arial, "Hiragino Sans", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, sans-serif;
    font-weight: 500;
}
.constraction_box__animate .catch .parent {
    color: #000000;
    background-color: #fff;
    padding: 15px;
    margin-bottom: 10px;
}
.constraction_box__animate .catch .parent:last-child {
    margin-bottom: 0;
}


/* .animate {
    -webkit-animation: inview_slide_up 1.3s cubic-bezier(0.165, 0.84, 0.44, 1) forwards 0.4s;
    animation: inview_slide_up 1.3s cubic-bezier(0.165, 0.84, 0.44, 1) forwards 0.4s;
} */

/*******Top 工法 hoverefect custom goto0709**********/
.move-text {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translateX(-50%);
	transition: all .5s;
	width: 4%;
	opacity: 0;
	padding: 0 10px;
	line-height: 1.5;
}
.move-text2 {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translateX(-50%);
	transition: all .5s;
	width: 60%;
	opacity: 0;
	padding: 0 10px;
	line-height: 1.5;
}

.text1 {
    background-color: rgba(255,255,255,0.8);
    /* height: 50px; */
    /* margin: 12px; */
    padding: 5px 15px;
    width: 80%;
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    display: inline-block;
    font-size: 14px;
}
.text2 {
    background-color: rgba(255,255,255,0.8);
    /* height: 50px; */
    /* margin: 12px; */
    padding: 5px ;
    width: 120%;
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    display: inline-block;
    font-size: 14px;
}
.animate {
	width: 50%;
  	opacity: 1;
	color: #000;
	padding: 0;
}
.animate2 {
	width: 60%;
  	opacity: 1;
	color: #000;
	padding: 0;
}

/*************************************/

/* tech_underpass */
/* 7/12 上原*/


.tech_underpass__inner{
    max-width: 1024px;
    margin: 0px auto 0;
}

.tech_underpass__title{
    color: rgb(15, 170, 221);
    font-size: 26px;
    margin: 0;
    margin-bottom: 10px;
}

.tech_underpass__title img{
    width: 30px;
    height: auto;
    vertical-align: bottom;
}

.tech_underpass__item{
    display: flex;
    border: 2px solid rgb(154, 207, 224);
    padding: 20px;
    position: relative;
    margin-bottom: 20px;
}

.tech_underpass__item:nth-child(2n){
    background-color: rgb(237, 248, 251);
}
.tech_underpass__item-last{
    margin-bottom: -2px;
}

.tech_underpass__item__dec{
    position: absolute;
    top: -1px;
    left: 0;
    width: 170px;
    height: 70px;
    clip-path: polygon(10% 0%, 100% 0%, 0% 100%, 0% 0%);    background-color: rgb(154, 207, 224);
    background-color: rgb(154, 207, 224);
}

.tech_underpass__item__text{
    width: calc(55% - 20px);
    margin-right: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.tech_underpass__item__title{
    font-size: 34px;
    margin: 0;
    color: rgb(94, 91, 91);
    position: relative;
    z-index: 5;
    margin-bottom: 16px;
}
.tech_underpass__item__subtitle{
    font-size: 28px;
    color: rgb(94, 91, 91);
    margin: 0;
    margin-bottom: 16px;
}
.tech_underpass__item__cat{
    display: flex;
    margin-bottom: 16px;
}

.tech_underpass__item__cat_post{
    margin: auto 0;
    margin-right: 10px;
    background-color: rgb(15, 170, 221);
    color: #fff;
    padding:  10px;
    text-align: center;
}
.tech_underpass__item__cat_post span{
    font-size: 10px;
}

.tech_underpass__item__cat_post-fro{
    padding: 19px 10px;
}

.tech_underpass__item__cat_post:last-child{
    margin-right: 0;
}

.tech_underpass__item__excerpt{
    line-height: 2;
    font-size: 18px;
}

.tech_underpass__item__img{
    width: 45%;
    margin: auto 0;
}
.tech_underpass__item__search{
    text-align: right;
    margin-top: auto;
}

.tech_underpass__item__search img{
    width: 25px;
    height: auto;
    vertical-align: middle;
}
.tech_underpass__item__search a{
    color:rgb(15, 170, 221);
}
.tech_underpass__item__text-relation{
    width: calc(55% - 20px);
    margin-right: 20px;
}

.tech_underpass__item-relation{
    display: flex;
    border: 2px solid rgb(154, 207, 224);
    padding: 20px;
    position: relative;
    margin-bottom: -2px;
    background-color: #fff;
}
.tech_underpass__item-relation:nth-child(2n){
    background-color: rgb(237, 248, 251);
}
.tech_underpass__item-relation:last-child{
    margin-bottom: 50px;
}

/************* tech openshield *********************/

.tech_openshield__inner{
    max-width: 1024px;
    margin: 0px auto 0;
}

.tech_openshield__title{
    color: orange;
    font-size: 26px;
    margin: 0;
    margin-bottom: 10px;
}

.tech_openshield__title img{
    width: 30px;
    height: auto;
    vertical-align: bottom;
}

.tech_openshield__item{
    display: flex;
    border: 2px solid rgb(236, 194, 115);
    padding: 20px;
    position: relative;
    margin-bottom: 20px;
}
.tech_openshield__item--first{
border: none!important;
}

.tech_openshield__item-bg{
    background-color: rgb(255, 249, 236);
}
.tech_openshield__item:last-child{
    margin-bottom: 50px;
}
.tech_openshield__item-last{
    margin-bottom: -2px;
}

.tech_openshield__item__dec{
    position: absolute;
    top: -1px;
    left: 0;
    width: 170px;
    height: 70px;
    clip-path: polygon(10% 0%, 100% 0%, 0% 100%, 0% 0%);    background-color: rgb(154, 207, 224);
    background-color: rgb(250, 205, 123);
}

.tech_openshield__item__text{
    width: calc(55% - 20px);
    margin-right: 20px;
    display: flex;
    flex-direction: column;
}

.tech_openshield__item__title{
    font-size: 33px;
    margin: 0;
    color: rgb(94, 91, 91);
    position: relative;
    z-index: 5;
    margin-bottom: 16px;
}
.tech_openshield__item__subtitle{
    font-size: 28px;
    color: rgb(94, 91, 91);
    margin: 0;
    margin-bottom: 16px;
}
.tech_openshield__item__cat{
    display: flex;
    margin-bottom: 16px;
}

.tech_openshield__item__cat_post{
    margin: auto 0;
    margin-right: 10px;
    background-color: orange;
    color: #fff;
    padding:  10px;
}
.tech_openshield__item__cat_post span{
    font-size: 10px;
    text-align: center;
}


.tech_openshield__item__cat_post:last-child{
    margin-right: 0;
}

.tech_openshield__item__excerpt{
    line-height: 2;
    font-size: 18px;
}
.tech_openshield__item__excerpt-font{
    font-weight: bold;
    color: rgb(72, 71, 71);
}

.tech_openshield__item__img{
    width: 45%;
    margin: auto 0;
}
.tech_openshield__item__search{
    text-align: right;
    margin-top: auto;
}

.tech_openshield__item__search img{
    width: 25px;
    height: auto;
    vertical-align: middle;
}
.tech_openshield__item__search a{
    color:orange;
}

/*************contact********************/

.contact_header{
    background-image: unset;
    height: 30vh;
}

.contact__message{
    text-align: center;
    font-size: 14px;
    line-height: 1.7;
}

/* privacy */
.privacy_header{
    background-image: unset;
    height: 30vh;
}

.privacy__title{
    text-align: center;
    font-size: 14px;
    line-height: 1.7;
}

.privacy__inner{
    max-width: 900px;
    margin: 0 auto ;
}

.privacy__content{
padding: 20px 20px 50px 20px;
}

.privacy__item{
    border-bottom: 1px dashed gray;
    padding: 20px 10px;
    font-size: 14px;
    line-height: 1.7;
}

.privacy__item--maintitle{
    background-color: #001959;
    color: #fff;
    margin: 0;
    margin-bottom: 10px;
    padding: 7px 10px;
}
.privacy__item--maintext{
    margin-bottom: 10px;
}

.privacy__item--title{
    margin: 0;
    margin-bottom: 10px;
    font-weight: bold;    
}

/*********** info上原 **********/
#info {
	height: auto;
    position: relative;
    margin-top: 30%;
}
.info_tittle_box {
    display: flex;
    flex-direction: row-reverse;
    position: relative;
}
.info_title {
	position: static;
    bottom: 0;
    right: 0;
    margin: 0;
}

/* .info_title img {
	margin-bottom: -7px;
} */

.info_back_obj {
    background-color: #001959;
    width: 50%;
    padding: 125px 2% 0;
    position: absolute;
    clip-path: polygon(0% 0%, 100% 100%, 100% 100%, 0% 100%);
    box-sizing: border-box;
    left: 0;
    bottom: -1px;
}

#info h3 {
    color: #fff;
    margin-left: 15px;
    font-size: 24px;
    margin-bottom: 40px;
}

.info_box {
    box-sizing: border-box;
	position: relative;
}

.info_back_obj2 {
    background-color: #001959;
    width: 50%;
    padding: 0% 2% 20%;
    position: absolute;
    clip-path: polygon(0% 0%, 100% 0%, 0% 50%, 0% 0%);
    box-sizing: border-box;
    top: 0;
    left: 0;
    z-index: 20;
}
 .info_back_obj3 {
    background-color: #001959;
    width: 20%;
    padding: 7% 0% 13%;
    position: absolute;
    clip-path: polygon(100% 100%, 0% 100%, 100% 55%, 100% 0%);
    box-sizing: border-box;
    bottom: 0;
    right: 0;
    z-index: 20;
}

.info_back_obj4 {
    background-color: #001959;
    width: 50%;
    padding: 8% 2% 13%;
    position: absolute;
    clip-path: polygon(0% 100%, 100% 100%, 100% 0%, 100% 16%);
    box-sizing: border-box;
    bottom: 0;
    right: 0;    
}
.info_content{
    position: relative;
}
.info__inner{
    padding: 100px 0;
}

/*********** fhilosofhy上原 **********/
#fhilosofhy {
	height: auto;
    position: relative;
}
.fhilosofhy_tittle_box {
    display: flex;
    position: relative;
}
.fhilosofhy_title {
	position: static;
    bottom: 0;
    left: 0;
    margin: 0;
}


.fhilosofhy_back_obj {
    background-color: #001959;
    width: 50%;
    padding: 125px 2% 0;
    position: absolute;
    clip-path: polygon(0% 0%, 100% 100%, 100% 100%, 0% 100%);
    box-sizing: border-box;
    right:0;
    bottom: -1px;
}

#fhilosofhy h3 {
    position: absolute;
    color: #fff;
    font-size: 24px;
    right: 15px;
    top: 30px;
    margin: 0;
}

.fhilosofhy_box {
    box-sizing: border-box;
	position: relative;
}

.fhilosofhy_back_obj2 {
    background-color: #001959;
    width: 50%;
    padding: 0% 2% 20%;
    position: absolute;
    clip-path: polygon(0% 0%, 100% 0%, 0% 50%, 0% 0%);
    box-sizing: border-box;
    top: 0;
    left: 0;
    z-index: 20;
}
 .fhilosofhy_back_obj3 {
    background-color: #001959;
    width: 20%;
    padding: 7% 0% 13%;
    position: absolute;
    clip-path: polygon(100% 100%, 0% 100%, 100% 55%, 100% 0%);
    box-sizing: border-box;
    bottom: 0;
    right: 0;
    z-index: 20;
}

.fhilosofhy_back_obj4 {
    background-color: #001959;
    width: 50%;
    padding: 8% 2% 8%;
    position: absolute;
    clip-path: polygon(100% 0%, 0% 0%, 100% 100%, 100% 16%);
    box-sizing: border-box;
    top: 0;
    right: 0;    
}

.fhilosofhy_back_obj {
    background-color: #001959;
    width: 50%;
    padding: 8% 2% 17%;
    position: absolute;
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 100% 50%);
    box-sizing: border-box;
    top: 0;
    right: 0;
    /*opacity: 0.7;*/
}
.history_back_obj5 {
    background-color: #001959;
    width: 50%;
    padding: 8% 2% 17%;
    position: absolute;
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 100% 50%);
    box-sizing: border-box;
    top: 0;
    right: 0;
    /*opacity: 0.7;*/
}











.fhilosofhy_content{
    position: relative;
}
.fhilosofhy__inner{
    padding: 100px 0;
}

/*********** history上原 **********/
#history {
	height: auto;
    position: relative;
}
.history_tittle_box {
    display: flex;
    position: relative;
}
.history_title {
	position: static;
    bottom: 0;
    left: 0;
    margin: 0;
}


.history_back_obj {
    background-color: #001959;
    width: 50%;
    padding: 125px 2% 0;
    position: absolute;
    clip-path: polygon(0% 0%, 100% 100%, 100% 100%, 0% 100%);
    box-sizing: border-box;
    right:0;
    bottom: -1px;
}

#history h3 {
    color: #fff;
    margin-left: 15px;
    font-size: 24px;
    margin-bottom: 40px;
    position: absolute;
    right: 15px;
    top: 15px;
}

.history_box {
    box-sizing: border-box;
	position: relative;
}


.history_back_obj4 {
    background-color: #001959;
    width: 50%;
    padding: 8% 2% 8%;
    position: absolute;
    clip-path: polygon(100% 0%, 0% 0%, 100% 100%, 100% 16%);
    box-sizing: border-box;
    top: 0;
    right: 0;  
}
.history_content{
    position: relative;
}
.history__inner{
    padding: 100px 0;
}

/*********** sitemap福山 **********/
.sitemap__inner{
    max-width: 1024px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    padding-bottom: 100px;
}

.sitemap__block {
    display: flex;
}

@media only screen and (min-width: 501px) {
    .sitemap__block_sp{
        display: none;
    }
}

.sitemap__list {
    padding: 15px 5px 15px 25px;
    margin: 10px 1px;
}

@media only screen and (max-width: 670px) {
    .sitemap__list {
        padding: 15px 5px 15px 10px;
    }
}

.sitemap__list li {
    color: #001959;
    font-size: 0.875rem;
}

@media only screen and (max-width: 670px) {
    .sitemap__list li {
        font-size: 12px;
    }
}

@media only screen and (max-width: 670px) {
    .sitemap__area .footer_list_btn {
        margin-left: 10px;
    }

    .sitemap__area .footer_list_btn:before{
        margin-top: -8px;
    }
}

.sitemap__list li a {
    color: #001959;
    font-size: 0.875rem;
}

@media only screen and (max-width: 670px) {
    .sitemap__list li a {
        font-size: 12px;
    }
}

@media only screen and (max-width: 670px) {
    .sitemap__block:nth-of-type(3) .sitemap__list3 li:before, .sitemap__block:nth-of-type(4) .sitemap__list3 li:before, .sitemap__block:nth-of-type(5) .sitemap__list3 li:before, .sitemap__block:nth-of-type(6) .sitemap__list3 li:before, .sitemap__block:nth-of-type(8) .sitemap__list2 li:nth-of-type(3):before{
        top: 30%;
    }
}

.sitemap__block:nth-of-type(2) .sitemap__list, .sitemap__block:nth-of-type(4) .sitemap__list, .sitemap__block:nth-of-type(6) .sitemap__list, .sitemap__block:nth-of-type(8) .sitemap__list{
    background-color: rgb(192 231 247 / 47%);
}

#sitemap .sitemap__list1{
    background-color: transparent;
}

.sitemap__list1{
    width: 30px;
}

.sitemap__list2{
    width: 152px;
}

@media only screen and (max-width: 670px) {
    .sitemap__list2{
        width: 100px;
    }
}

.sitemap__list3{
    width: 152px;
}

@media only screen and (max-width: 670px) {
    .sitemap__list3{
        width: 100px;
    }
}


.sitemap__list4{
    width: 212px;
}

@media only screen and (max-width: 670px) {
    .sitemap__list4{
        width: 100px;
    }
}

.sitemap__list li{
    margin-top: 20px;
}

.sitemap__list li:first-child{
    margin-top: 0;
}

@media only screen and (min-width: 671px) {
    .sp_br{
        display: none;
    }
}

/*****entry form css*********/
.entry_contact__message_title {
				font-size: 36px;
				color: #001959;
			}

@media only screen and (max-width: 500px) {
	.contact__message {
 		margin-top: 40px;
	}
	.entry_contact__message_title {
	font-size: 24px;
	}
}

/*********** news福山 **********/
.news_box__list_content{
    width: 100%;
}