@charset "UTF-8";

/*--------------------------------------------------------------------
common
cssの初期化
--------------------------------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: none;
  text-decoration: none;
  outline: none;
  font-style: normal;
  font-weight: normal;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, men, nav, section { display: block; }
h1,h2,h3,h4,h5 {
  line-height: 1.55;
  font-size: 100%;
  font-weight: normal;
}
table { border-collapse: collapse; }
table th, table td {
  text-align: left;
  vertical-align: top;
}
ul,ol { list-style-type: none; }
img {
  width /***/:auto;
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  object-fit: cover;
}
* {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
      -ms-box-sizing: border-box;
       -o-box-sizing: border-box;
          box-sizing: border-box;
}
.Clear { clear: both; }


/*--------------------------------------------------------------------
common
ページ共通部分
--------------------------------------------------------------------*/

/*------------body---------------------------------------------------------------*/
html {
	height: 100%;
	scroll-behavior: smooth;
}
body {
	overflow-y: scroll;
	line-height: 1.55;
	font-feature-settings: "palt" 1;
	font-family: sans-serif;
	font-size: 1em;/*16px*/
	color: #2a2b2b;
}
a:hover {
	text-decoration: none;
	filter: alpha(opacity=80);
	-moz-opacity: 0.80;
	opacity: 0.80;
}
a:hover img {
	filter: alpha(opacity=80);
	-moz-opacity: 0.80;
	opacity: 0.80;
}
/*ここから自分で追加*/
body {
/*font-family: 游明朝,"Yu Mincho",YuMincho,serif;*/
  font-family: 游ゴシック, "Yu Gothic", YuGothic, "Meiryo", sans-serif;
}
.container{
  width: 980px;
  margin: 0 auto; 
}
.container2{
  width: 1020px;
  margin: 0 auto; 
}
@media screen and (max-width:1020px){
  .container2{
    width: 100%;
    margin: 0 auto; 
  }
}

/*==================================================
ふわっ
===================================*/

/* その場で */
.fadeIn{
  animation-name:fadeInAnime;
  animation-duration:1s;
  animation-fill-mode:forwards;
  opacity:0;
}
  
@keyframes fadeInAnime{
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
 
.fadeInTrigger{
  opacity: 0;
}
  
  /* 下から */
  
.fadeUp{
  animation-name:fadeUpAnime;
  animation-duration:0.5s;
  animation-fill-mode:forwards;
  opacity:0;
}
  
@keyframes fadeUpAnime{
  from {
    opacity: 0;
    transform: translateY(100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
 
.fadeUpTrigger{
  opacity: 0;
}
  
  /* 上から */
  
.fadeDown{
  animation-name:fadeDownAnime;
  animation-duration:0.5s;
  animation-fill-mode:forwards;
  opacity:0;
}
  
@keyframes fadeDownAnime{
  from {
    opacity: 0;
    transform: translateY(-100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
 
.fadeDownTrigger{
  opacity: 0;
}
  /* 左から */
  
.fadeLeft{
  animation-name:fadeLeftAnime;
  animation-duration:0.5s;
  animation-fill-mode:forwards;
  opacity:0;
}
    
@keyframes fadeLeftAnime{
  from {
    opacity: 0;
    transform: translateX(-100px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
 
.fadeLeftTrigger{
  opacity: 0;
}
    
    /* 右から */
    
.fadeRight{
  animation-name:fadeRightAnime;
  animation-duration:0.5s;
  animation-fill-mode:forwards;
  opacity:0;
}
    
@keyframes fadeRightAnime{
  from {
    opacity: 0;
    transform: translateX(100px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
 
.fadeRightTrigger{
  opacity: 0;
} 

/*index.html---------------------------------------------------------------------------------*/

/*---header---*/
header{
  position: fixed;
  width: 100%;
  height: 125px;
  background-color: #ffffff;
  opacity: 0.9;
  border-bottom: 5px solid #0070b3;
  z-index: 10;
}
.headerwrapper{
  display: flex;
  justify-content: space-between;
}
.toplogo{
  display: flex;
  flex-direction: column-reverse;
  margin-bottom: 10px;
}
.toplogo p{
  margin-top: 15px;
  margin-bottom: 15px;
  font-family: "Meiryo",sans-serif;
  font-size: 0.75em;/*12px*/
}
.toptelnavi .tellogo{
  margin-top: 30px;
  margin-bottom: 25px;
  text-align: right;
}

.toptelnavi nav ul{
  display: flex;
  justify-content: right;
}
.toptelnavi nav ul li a{
  padding: 0 10px;
  font-family: 游ゴシック, "Yu Gothic", YuGothic,sans-serif;
  font-size: 0.875em;/*14px*/
  font-weight: bold;
  color: #000;
}
.toptelnavi nav ul li a:hover{
  background-color: #0070b3;
  color: #ffffff;
  transition: all 0.5s;
}
.toptelnavi nav .spOnly{
  display: none;
}

/*NAV 仕切り線*/
.toptelnavi nav ul li{
  position: relative;
  display: inline-block;
}
.toptelnavi nav ul li::after{
  position: absolute;
  content: '';
  width: 1px;
  height: 13px;
  top: 6px;
  right: 0px;
  background-color: #000000;
}
.toptelnavi nav ul li:last-child::after{
  content: none;
}

/*---top---*/
#top{
  height: 730px;
  position: relative;
}
#top .inner{
  position: absolute;
	z-index: 2;
	top: 62%;
	left: 50%;
	transform: translate(-50%, -50%);
  /*background-image: url(../images/index/topimg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 800px;
  padding-top: 300px;*/
  text-align: center;
  font-family: 游明朝,"Yu Mincho",YuMincho,serif;
  font-weight: bolder;
  color: #ffffff;
}
#top .inner h2{  
  font-size: 6.125em;/*98px*/
  text-shadow: 0 0 10px #0070B3,0 0 10px #0070B3,0 0 10px #0070B3,0 0 10px #0070B3,0 0 10px #0070B3,0 0 10px #0070B3,0 0 10px #0070B3,0 0 10px #0070B3,0 0 10px #0070B3,0 0 10px #0070B3,0 0 10px #0070B3,0 0 10px #0070B3,0 0 10px #0070B3,0 0 10px #0070B3,0 0 10px #0070B3;
}
#top .inner h3{
  font-size: 1.94em;/*31px*/
  text-shadow: 0 0 10px #7ACF14,0 0 10px #7ACF14,0 0 10px #7ACF14,0 0 10px #7ACF14,0 0 10px #7ACF14,0 0 10px #7ACF14,0 0 10px #7ACF14,0 0 10px #7ACF14,0 0 10px #7ACF14,0 0 10px #7ACF14,0 0 10px #7ACF14,0 0 10px #7ACF14,0 0 10px #7ACF14,0 0 10px #7ACF14,0 0 10px #7ACF14;
}
#top .inner p{
  font-size: 1.25em;/*20px*/
  text-shadow: 0 0 10px #2A2B2B,0 0 10px #2A2B2B,0 0 10px #2A2B2B,0 0 10px #2A2B2B,0 0 10px #2A2B2B,0 0 10px #2A2B2B,0 0 10px #2A2B2B,0 0 10px #2A2B2B,0 0 10px #2A2B2B,0 0 10px #2A2B2B;
}

/*==================================================
スライダーのためのcss
===================================*/
.slider {
  position:relative;
  z-index: 1;
  /*↑z-indexの値をh1のz-indexの値よりも小さくして背景に回す*/
  height: 800px;/*スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
}
/*　背景画像設定　*/

/*.slider-item01 {
  background:url(../images/index/topimg.jpg);
}*/

.slider-item02 {
  background:url(../images/index/topimg2.jpg);
}

.slider-item03 {
  background:url(../images/index/topimg3.jpg);
}

.slider-item04 {
  background:url(../images/index/topimg4.jpg);
}

.slider-item05 {
  background:url(../images/index/topimg5.jpg);
}

.slider-item {
  width: 100%;/*各スライダー全体の横幅を画面の高さいっぱい（100%）にする*/
  height:800px;/*各スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
  background-repeat: no-repeat;/*背景画像をリピートしない*/
  background-position: center;/*背景画像の位置を中央に*/
  background-size: cover;/*背景画像が.slider-item全体を覆い表示*/
}

/*矢印の設定*/

/*戻る、次へ矢印の位置*/
.slick-prev, 
.slick-next {
  position: absolute;/*絶対配置にする*/
z-index: 3;
  top: 42%;
  cursor: pointer;/*マウスカーソルを指マークに*/
  outline: none;/*クリックをしたら出てくる枠線を消す*/
  border-top: 2px solid #ccc;/*矢印の色*/
  border-right: 2px solid #ccc;/*矢印の色*/
  height: 25px;
  width: 25px;
}

.slick-prev {/*戻る矢印の位置と形状*/
  left:2.5%;
  transform: rotate(-135deg);
}

.slick-next {/*次へ矢印の位置と形状*/
  right:2.5%;
  transform: rotate(45deg);
}

/*ドットナビゲーションの設定*/

.slick-dots {
position: relative;
  z-index: 3;
  text-align:center;
  margin:-70px 0 0 0;
}

.slick-dots li {
  display:inline-block;
  margin:0 5px;
}

.slick-dots button {
  color: transparent;
  outline: none;
  width: 15px;/*ドットボタンのサイズ*/
  height: 15px;/*ドットボタンのサイズ*/
  display: block;
  border-radius:50%;
  background:#ccc;/*ドットボタンの色*/
}

.slick-dots .slick-active button{
  background:#333;/*ドットボタンの現在地表示の色*/
}
/*ここまで*/

/*---GOALS---*/
#goals{
  position:relative;
  z-index: 2;
  background-image: linear-gradient(90deg,#7ACF00,#0070B3);
  -webkit-clip-path:polygon(0 0,77.2% 50px,100% 0,100% 100%,0 100%);
  clip-path: polygon(0 0,77.2% 50px,100% 0,100% 100%,0 100%);
  background-repeat: no-repeat;
  height: 520px;
  width: 100%;
  text-align: center;
  color: #fff;
}
#goals h2{
  padding-top: 90px;
}
#goals h3{
  padding-top: 40px;
  font-size: 2em;/*32px*/
  font-family: 游明朝,"Yu Mincho",YuMincho,serif;
  font-weight: bolder;
}
#goals p{
  padding-top: 40px;
  font-size: 1em;/*16px*/
  font-family: メイリオ "Meiryo", sans-serif;
  font-weight: normal;
  width: 1020px;
  margin: 0 auto;
}
@media screen and (max-width:1020px){
  #goals p{    
    font-size: 1em;/*16px*/
    font-family: メイリオ "Meiryo", sans-serif;
    font-weight: normal;
    width: 100%;
    padding: 40px 20px 0;
  }
}

/*---NEWS---*/
#news h2{
  margin-top: 25px;
  font-size: 2.81em;/*45px*/
  font-family: 游ゴシック, "Yu Gothic", YuGothic,sans-serif;
  color: #F15A24;
  text-align: center;
}
#news .newswrapper{
  height: 265px;
  padding: 45px 0;;
  background-color: #7F8080;
  font-size: 1em;/*16px*/
  font-family: メイリオ "Meiryo", sans-serif;
  font-weight: normal;
  color: #fff;
}
#news .newswrapper .newscontents{
  height: 185px;
  overflow: auto;
}
#news .newswrapper .newscontents dl{
  display: flex;
  padding-bottom: 10px;
}
#news .newswrapper dl dt{
  width: 180px;
}
#news .newswrapper dl dd{
  width: 800px;
}

/*---Division---*/
#division{
  margin-top: 80px;
}
#division h2{
  font-family: メイリオ "Meiryo", sans-serif;
  font-weight: bold;
  font-size: 1.81em;/*29px*/
  color: #fff;
  line-height: 1.3;
}
#division p{
  margin-top: 17px;
  font-family: 游ゴシック, "Yu Gothic", YuGothic,sans-serif;
  font-weight: normal;
  font-size: 1.06em;/*17px*/
  color: #fff;
}

#division .blback{
  width: 100%;
  height: 300px;
}
#division .blback .blbox{
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
}

#division .blback .blbox .blboxtext{
  background-image: url(../images/index/btnlogobig2.png),
                    url(../images/index/bgirightbefore.png),
                    url(../images/index/bgirightback.png);         
  background-repeat: no-repeat;
  background-size: 130px,39.29% 300px,42.86% 300px;/*550/1400,600/1400*/
  background-position: 62% 15%,top right,top right;/*850/1400*/
  position: relative;
  width: 100%;
  height: 300px;
  z-index: 3;
}
#division .blback .blbox .bldivimg img{
  position: absolute;
  left: 0;
  width: 72%;
  height: 300px;
  z-index: 2;
}
.blboxtextinner{
  height: 300px;
  margin-left: 67%;
  margin-right: 0%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#division .blback .blbox .blboxtext h2{
  width: 100%;
  /*position: absolute;
  top: 10px;
  right: 3%;
  z-index: 4;
  line-height: 1.1;*/
}
#division .blback .blbox .blboxtext p{
  width: 85%;
  /*position: absolute;
  top: 95px;
  right: 3%;
  z-index: 4;*/
}

#division .grback{
  width: 100%;
  height: 300px;
}
#division .grback .grbox{
  display: flex;
  justify-content: space-between;
  flex-direction: row;
}

#division .grback .grbox .grboxtext{
  background-image: url(../images/index/btnlogobig.png),
                    url(../images/index/bgileftbefore.png),
                    url(../images/index/bgileftback.png);         
  background-repeat: no-repeat;
  background-size: 130px,39.29% 300px,42.86% 300px;/*550/1400,600/1400*/
  background-position: 38% 85%,top left,top left;/*850/1400*/
  position: relative;
  width: 100%;
  height: 300px;
  z-index: 3;
}
#division .grback .grbox .grdivimg img{
  position: absolute;
  right: 0;
  width: 72%;
  height: 300px;
  z-index: 2;
}
.grboxtextinner{
  height: 300px;
  margin-right: 68%;
  margin-left: 4%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#division .grback .grbox .grboxtext h2{
  width: 100%;
  /*position: absolute;
  top: 10px;
  left: 3%;
  z-index: 4;
  line-height: 1.1;*/
  text-align: right ;
}
#division .grback .grbox .grboxtext p{
  width: 96%;
  /*position: absolute;
  top: 95px;
  left: 3%;
  z-index: 4;*/
}

/*---施工事例---*/
#case{
  background-color: #2A2B2B;
  width: 100%;
  height: 440px;
  position: relative;
}
#case .casebox{
  display: block;
  width: 100%;
  height: 300px;
  background-image: url(../images/index/btnlogosmall.png),
                    linear-gradient(90deg,rgba(122,207,20,0.5),rgba(0,112,179,0.5)),
                    url(../images/index/demoimg.jpg);
  background-repeat: no-repeat;
  background-size: 100px 100px,100% auto,100% auto;
  background-position: center 140px,center center,center center;
  position: absolute;
  top: 70px;
}

#case h2{
  padding-top: 110px;
  text-align: center;
  font-family: 游ゴシック, "Yu Gothic", YuGothic,sans-serif;
  font-weight: bold;
  font-size: 2.625em;/*42px*/
  color: #fff;
  text-shadow: 0 0 10px #0070B3,0 0 10px #0070B3,0 0 10px #0070B3,0 0 10px #0070B3,0 0 10px #0070B3,0 0 10px #0070B3,0 0 10px #0070B3,0 0 10px #0070B3,0 0 10px #0070B3,0 0 10px #0070B3,0 0 10px #0070B3,0 0 10px #0070B3,0 0 10px #0070B3,0 0 10px #0070B3,0 0 10px #0070B3;
}

/*---求人募集---*/
#rec .recbox{
  display: block;
  height: 400px;
  width: 100%;
  background-image: url(../images/index/btnlogobig.png),
                    url(../images/index/recruitlogo.png),
                    url(../images/index/recimg.jpg);      
  background-repeat: no-repeat;
  background-size: 128px 128px,auto 240px,100% auto;
  background-position: 450px 90px, left center,center center;
  background-blend-mode: normal, multiply ,normal;
}
#rec h2{
  padding-top: 120px;
  padding-left: 12.85%;/*180px*/
  font-family: 游ゴシック, "Yu Gothic", YuGothic,sans-serif;
  font-weight: bold;
  font-size: 2.625em;/*42px*/
  color: #fff;
}
@media screen and (max-width:1400px){
  #case .casebox{
    background-size: 100px 100px,100% auto,auto 400px;
  }
  #rec .recbox{
    background-size: 128px 128px,auto 240px,auto 400px;
  }
}

/*---Footer---*/

/*トップページ以外で共通　フッター上の罫線*/
footer{
  position: relative;
}
footer #footernavi ::before{
  content: "";
  background-image : linear-gradient(to right, #BFBFBF 3px, transparent 3px);
  background-size: 6px 1px;
  background-repeat: repeat-x;
  background-position: left bottom;
  width: 800px;
  height: 1px;
  position: absolute;
  top: 0px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
 }
 footer #footernavi ul li::before,
 footer #footernavi ul li a::before{
  content: none;
 }
 /*トップページのフッターだけ点線をなくし調整*/
#index footer #footernavi ::before{
  content: none;
}
#index #footernavi{
  padding-top: 0;
}
/*ここまで*/

#footernavi {
  padding-top: 55px;
}

#footernavi ul{
  display: flex;
  justify-content: space-around;
  margin: 40px 0;
}

#footernavi ul li a{
  padding: 0 10px;
  font-family: メイリオ "Meiryo", sans-serif;
  font-size: 0.875em;/*14px*/
  font-weight: bold;
  color: #000;
}
#footernavi ul li a:hover{
  background-color: #0070b3;
  color: #ffffff;
  transition: all 0.5s;
}
/*NAV 仕切り線*/
#footernavi ul li{
  position: relative;
  display: inline-block;
}
#footernavi ul li::after{
  position: absolute;
  content: '';
  width: 1px;
  height: 13px;
  top: 6px;
  right: -5px;
  background-color: #000000;
}
#footernavi ul li:last-child::after{
  content: none;
}
/*ここまで*/
address{
  background-color: #7F8080;
  color: #fff;
  font-family: メイリオ "Meiryo", sans-serif;
  font-weight: bold;
}
address div img{
  display: block;
  margin: 0 auto;
  padding-top: 50px;
}
.addwrapper{
  display: flex;
  justify-content: center;
  padding-top: 20px;
}
.addwrapper h2,.addwrapper p,.addwrapper dl{
  padding-right: 1em;
}
.addwrapper dl{
  display: flex;
}
.addwrapper dd::before{
  content: ":";
  padding-left: 0.5em;
  padding-right: 0.5em;
}
address .container > p{
  padding-top: 20px;
  text-align: center;
 padding-bottom: 140px;
}

/*フッターここまで*/

/*業務内容と会社案内で共通 ページ内リンクの位置調整*/
.anchor{
  display: block;
  padding-top: 130px;
  margin-top: -130px;
}

/*company.html会社案内---------------------------------------------------------------------------------*/
/*トップページ以外の共通部分*/
#commontop {
  position: relative;
  width: 100%;
  height: 350px;
  background-image: url(../images/company/commontopimage.jpg);
  background-size: cover;
  margin-bottom: 70px;
}
#commontop .commongrad {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 70px;
  background-image: linear-gradient(90deg, rgba(122, 207, 20, 0.5), rgba(0, 112, 179, 0.5));
  clip-path: polygon(0 0, 77.2% 71.43%, 100% 0, 100% 100%, 0 100%);
}
#commontop h2 {
  padding-top: 210px;
  font-size: 2.5em;/*40px*/
  text-shadow: 0 0 10px #0070B3,0 0 10px #0070B3,0 0 10px #0070B3,0 0 10px #0070B3,0 0 10px #0070B3,0 0 10px #0070B3,0 0 10px #0070B3,0 0 10px #0070B3,0 0 10px #0070B3,0 0 10px #0070B3,0 0 10px #0070B3,0 0 10px #0070B3,0 0 10px #0070B3,0 0 10px #0070B3,0 0 10px #0070B3;
  text-align: center;
  font-family: "メイリオ", Meiryo, sans-serif;
  font-weight: bold;
  color: #fff
}

/*---サブメニュー（青色ボタン）　　---*/
.submenu{
  margin-top: 65px;
  display: flex;
  justify-content: space-between;
}
/*.submenu li{
  width: 160px;
  height: 36px;
  background-image: url(../images/company/button.png);
  text-align: center;
}*/
.submenu li{
  width: 160px;
  height: 36px;
  background-image: url(../images/btnblue-8.png), 
  linear-gradient(90deg, rgba(0, 112, 179, 1), rgba(51, 141, 194, 1));
  background-size: 19px,cover;
  background-repeat: no-repeat;
  background-position: 130px 10px,center;
  position: relative;
}
.submenu li::after{
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  background-color: #aaaaaa;
  clip-path: polygon(10px 0, 10px 10px, 0 10px);
  right:0;
  bottom:0;
}
.submenu li a{
  text-shadow: 0 0 10px #144f70,0 0 10px #144f70,0 0 10px #144f70;
  text-align: center;
  font-size: 0.875em;/*14px*/
  font-family: "メイリオ", Meiryo, sans-serif;
  font-weight: bold;
  color: #fff;
  display: block;
  padding-top: 8px;
}
@media screen and (max-width:1020px){
  .submenu{
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
  .submenu li{
    margin: 0 5px 10px;
  }
}

/*会社案内の各セクション間の仕切り線*/
#about #philo,
#about #overview,
#about #orgchart,
#about #history,
#about #access{
  position: relative;
}
#about #philo ::before,
#about #overview ::before,
#about #orgchart ::before,
#about #history ::before,
#about #access ::before{
  content: "";
  background-image : linear-gradient(to right, #BFBFBF 3px, transparent 3px);
  background-size: 6px 1px;
  background-repeat: repeat-x;
  background-position: left bottom;
  width: 800px;
  height: 1px;
  position: absolute;
  top: 130px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
 }

 /*ここまで*/

/*---社長挨拶---*/
#about h3{
  padding-top: 55px;
  text-align: center;
  font-size: 2em;/*32px*/
  font-family: "メイリオ", Meiryo, sans-serif;
  font-weight: bold;
  color: #0070b3;
}
/*#about h3:first-child{
  margin-top: 60px;
}*/
.prestext{
  margin-top: 40px;
  /*margin-bottom: 100px;*/
}

#president p{
  text-align: left;
  font-size: 1em;/*16px*/
  font-family: "メイリオ", Meiryo, sans-serif;
  font-weight: normal;
  margin-bottom: 25px;
}
#president p:nth-child(7){
  margin-bottom: 0;
}
#president p:last-child{
  text-align: right;
}
#president p:last-child span{
  font-size: 1.75em;/*28px*/
  font-weight: bold;
  padding-left: 10px;
}

/*---経営理念---*/
#philo{
  margin-top: 0;
  margin-bottom: 65px;
}
#philo p{
  padding-top: 25px;
  text-align: center;
  font-size: 1.25em;/*20px*/
  font-family: 游明朝,"Yu Mincho",YuMincho,serif;
  font-weight: bold;
  line-height: 35px;
}

#philo .origin{
  display: flex;
  justify-content: left;
  margin-top: 80px;
}
#philo .origin h4{
  width: 300px;
  font-size: 1.562em;/*25px*/
  font-family: "メイリオ", Meiryo, sans-serif;
  color: #7acf14;
}
#philo .origin img{
  width: 505px;
}
#philo .origin p{
  width: 590px;
  padding-top: 10px;
  text-align: left;
  font-size: 1em;/*16px*/
  font-family: "メイリオ", Meiryo, sans-serif;
  font-weight: normal;
  line-height: 24px;
}
#philo .morning{
  display: flex;
  justify-content: left;
  margin-top: 60px;
}
#philo .morning h4{
  width: 300px;
  font-size: 1.563em;/*25px*/
  font-family: "メイリオ", Meiryo, sans-serif;
  color: #7acf14;
}
#philo .morning p{
  width: 720px;
  padding-top: 10px;
  text-align: left;
  font-size: 1em;/*16px*/
  font-family: "メイリオ", Meiryo, sans-serif;
  font-weight: normal;
  line-height: 24px;
}
#philo .morning p:last-child{
  padding-top: 30px;
  font-size: 1.5em;/*24px*/
  font-family: 游明朝,"Yu Mincho",YuMincho,serif;
  font-weight: bold;
  color: #7acf14;
  padding-bottom: 0px;
  line-height: 35px;
}
/*---会社概要---*/


#overview h3{
  margin-bottom: 30px;
}

#overview table tr{
  border-top: 1px solid #bfbfbf;
  font-family: "メイリオ", Meiryo, sans-serif;
  font-size: 1em;/*16px*/
}

#overview table tr:last-child{
  border-bottom: 1px solid #bfbfbf;
}
#overview table tr th{
  width: 150px;
  padding: 15px 10px;
  font-weight: bold;
}
#overview table tr td{
  padding: 15px 10px;
}
#overview table tr td ul{
  display: flex;
  flex-wrap: wrap;
}
#overview table tr td ul li::after{
  content: "　／　";
}
#overview table tr td ul li:last-child::after{
  content: none;
}
#overview table tr td .ovtelflex{
  display: flex;
}
#overview table tr td .ovtelflex p{
  padding-bottom: 3px;
}
#overview table tr td .ovtelflex dl{
  display: flex;
  padding-right: 30px;
}
#overview table tr td .ovtelflex dl dt::after{
  white-space: pre-wrap;
  content: " : ";
}
#overview table tr td table tr{
  border-top: none;
}
#overview table tr td table tr:last-child{
  border-bottom: none;
}

#overview table tr td table tr td{
  padding: 5px 10px;
}
#overview table .chadj td table tr td{
  padding: 0px 10px;
 }

/*---組織図---*/

#orgchart{
  margin-top: 0;
  margin-bottom: 100px;
}
#orgchart h3{
  margin-bottom: 40px;
}

/*---会社沿革---*/

#history{
  margin-bottom: 20px;
}
#history h3{
  margin-bottom: 30px;
}
#history table tr{
  border-top: 1px solid #bfbfbf;
  font-family: "メイリオ", Meiryo, sans-serif;
  font-size: 1em;/*16px*/
}

#history table tr th{
  width: 150px;
  padding: 15px 10px;
  font-weight: bold;
}
#history table tr td{
  width: 870px;
  padding: 15px 10px;
}

#history table tr:last-child{
  border-bottom: 1px solid #bfbfbf;
}
/*---アクセス---*/

#access{
  margin-top: 0;
  margin-bottom: 100px;
}
#access h3{
  margin-bottom: 20px;
}
#access h4{
  font-family: "メイリオ", Meiryo, sans-serif;
  font-size: 1.563em;/*25px*/
  color: #0070b3;
  margin-bottom: 20px;
}
.accesswrapper{
  display: flex;
  justify-content: space-between;
}
.accesswrapper .map{
  width: 640px;
}
.accesswrapper .mopic{
  width: 370px;
}
.accesswrapper .mopic img{
  margin-bottom: 20px;
}
.accesswrapper .mopic p{
  font-family: "メイリオ", Meiryo, sans-serif;
  font-size: 1em;/*16px*/
  padding-bottom: 5px;
}

/*businesscontent.html業務内容---------------------------------------------------------------------------------*/

/*業務内容サブメニュー（青色）*/
.bizsubmenu{
  margin-top: 65px;
  display: flex;
  justify-content: center;
  margin-bottom: 65px;
}
.bizsubmenu li{
  margin: 0 5px;
  width: 160px;
  height: 36px;
  background-image: url(../images/btnblue-8.png), 
  linear-gradient(90deg, rgba(0, 112, 179, 1), rgba(51, 141, 194, 1));
  background-size: 19px,cover;
  background-repeat: no-repeat;
  background-position: 130px 10px,center;
  position: relative;
}
.bizsubmenu li::after{
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  background-color: #aaaaaa;
  clip-path: polygon(10px 0, 10px 10px, 0 10px);
  right:0;
  bottom:0;
}
.bizsubmenu li a{
  text-shadow: 0 0 10px #144f70,0 0 10px #144f70,0 0 10px #144f70;
  text-align: center;
  font-size: 0.875em;/*14px*/
  font-family: "メイリオ", Meiryo, sans-serif;
  font-weight: bold;
  color: #fff;
  display: block;
  padding-top: 8px;
}
/*業務紹介サブメニュー（緑色）*/
#bizintro h3{
  text-align: center;
  font-size: 2em;/*32px*/
  font-family: "メイリオ", Meiryo, sans-serif;
  font-weight: bold;
  color: #0070b3;
  margin-bottom: 40px;  
}

.bizintromenu{
  width: 800px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 55px;
}
.bizintromenu li{
  margin: 6px 5px;
  width: 255px;
  height: 36px;
  background-image: url(../images/btngreen-8.png), 
  linear-gradient(90deg, rgba(122, 207, 20, 1), rgba(149, 217, 67, 1));
  background-size: 19px,cover;
  background-repeat: no-repeat;
  background-position: 225px 10px,center;
  position: relative;
}
.bizintromenu li::after{
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  background-color: #aaaaaa;
  clip-path: polygon(10px 0, 10px 10px, 0 10px);
  right:0;
  bottom:0;
}
.bizintromenu .msize{
  width: 314px;
  margin: 6px 5px;
  height: 36px;
  background-image: url(../images/btngreen-8.png), 
  linear-gradient(90deg, rgba(122, 207, 20, 1), rgba(149, 217, 67, 1));
  background-size: 19px,cover;
  background-repeat: no-repeat;
  background-position: 280px 10px,center;
}
.bizintromenu .lsize{
  width: 460px;
  margin: 6px 5px;
  height: 36px;
  background-image: url(../images/btngreen-8.png), 
  linear-gradient(90deg, rgba(122, 207, 20, 1), rgba(149, 217, 67, 1));
  background-size: 19px,cover;
  background-repeat: no-repeat;
  background-position: 430px 10px,center;
}
.bizintromenu li a{
  text-shadow: 0 0 10px #144f70,0 0 10px #144f70,0 0 10px #144f70;
  text-align: center;
  font-size: 0.875em;/*14px*/
  font-family: "メイリオ", Meiryo, sans-serif;
  font-weight: bold;
  color: #fff;
  display: block;
  padding-top: 8px;
}
/*---設計部門---*/
.designtop {
  position: relative;
  width: 1020px;
  height: 350px;
  background:url(../images/businesscontent/designoffice1.jpg);
  background-size: auto;
  z-index: 1;
  margin-bottom: 30px;
}
.designtop::before{
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.4);
  z-index: 2;
}
.designtop p {
  position: absolute;
  bottom: 0;
  width: 1020px;
  height: 60px;
  z-index: 3;
  background-color: rgba(122, 207, 20, 0.4);
  padding-top: 16px;
  font-size: 1.25em;/*20px*/
  text-shadow: 0 0 10px #7acf14,0 0 10px #7acf14,0 0 10px #7acf14,0 0 10px #7acf14;  
  text-align: center;
  font-family: "メイリオ", Meiryo, sans-serif;
  font-weight: normal;
  color: #fff;
  
}
.designtop h4 {
  padding-top: 150px;
  font-size: 1.875em;/*30px*/
  text-shadow: 0 0 10px #7acf14,0 0 10px #7acf14,0 0 10px #7acf14,0 0 10px #7acf14;  
  text-align: center;
  font-family: "メイリオ", Meiryo, sans-serif;
  font-weight: bold;
  color: #fff;
  z-index: 3;
}
.designtext p{
  font-family: "メイリオ", Meiryo, sans-serif;
  font-weight: normal;
  margin-bottom: 40px;
}
.designtext h5{
  font-size: 1.563em;/*25px*/
  font-family: "メイリオ", Meiryo, sans-serif;
  color: #7acf14;
  margin-bottom: 20px;
}
.stxt{
  font-size: 0.75em;/*16px*/
  vertical-align: middle;
}
/*---施工図作成ネットワーク---*/
.chart h5{
  font-size: 1.25em;/*20px*/
  font-family: "メイリオ", Meiryo, sans-serif;
  color: #f15a24;
  text-align: center;
  margin-bottom: 10px;
}
.chart .chartpic p{
  text-align: center;
  margin-bottom: 30px;
}
.fbox{
  display: flex;
  justify-content: space-between;
}
.fbox .fboxtxt{
  width: 400px;
}
.rev{
  flex-direction: row-reverse;
}

#ihcheck{
  margin-bottom: 150px;
}
.adjright{
  text-align: right;
}
.adjpr1{
  position: relative;
}
.adjpa1{
  position: absolute;
  left: 0px;
  bottom: 15px;
}
.adjpr2{
  position: relative;
}
.adjpa2{
  position: absolute;
  left: 0px;
  bottom: 0px;
}
/*---部門---*/
.departtext{
  margin-bottom: 15px;
}
.departtext h5{
  font-size: 1.25em;/*20px*/
  font-family: "メイリオ", Meiryo, sans-serif;
  color: #f15a24;
  margin-bottom: 20px;
}
.departtext .fbox .fboxtxt p{
  margin-bottom: 10px;
}

/*---その他---*/
.othertext2{
  margin-bottom: 75px;
}
.othertext h5{
  text-align: center;
  font-family: "メイリオ", Meiryo, sans-serif;
  color: #f15a24;
  margin-bottom: 20px;
}
.othertext p{
  margin-bottom: 20px;
}
.othertext2 h5{
  font-family: "メイリオ", Meiryo, sans-serif;
  color: #0070b3;

}

/*---マニュアル---*/

/*以下olの番号を装飾*/
.mstep{
  margin-left: 3.5em; /* サイトに合せて調整 */
  margin-bottom: 30px;
}
.mstep li{
  list-style-type: none;
  counter-increment: cnt;
}
.mstep li::before{
  content: counter(cnt) ") ";
  display:inline-block;
	margin-left:-1.5em; /* サイトに合せて調整 */
	width: 1.5em; /* サイトに合せて調整 */
}

.mtxt{
  color: #FF1D25;
  margin-left: 3.5em;
  text-indent: 0rem;
}
.mtxt::before{
  display: inline;
  content: "※";
  margin-left:-1em;
  width: 1em;
}

/*contactus.html お問い合わせ---------------------------------------------------------------------------------*/
/*---メールでのお問い合わせ---*/
#contactus{
  margin-bottom: 85px;
}
#contactus h3{
  text-align: center;
  font-size: 2em;/*32px*/
  font-family: "メイリオ", Meiryo, sans-serif;
  font-weight: bold;
  color: #0070b3;
  margin-bottom: 40px;
}
#contactus p{
  margin-bottom: 30px;
  font-size: 0.938em;/*15px*/
  font-family: "メイリオ", Meiryo, sans-serif;
  font-weight: normal;
}
#mailcontact p:nth-child(3),
#mailcontact p:nth-child(4){
  margin-bottom: 5px;
}
#contactus .mflow{
  display: flex;
  justify-content: space-around;
  margin-bottom: 30px;
}
#contactus .mflow li{
  width: 250px;
  padding: 10px 0;
  text-align: center;
  background-color: #D4D5D5;
}
#contactus .mflow li:first-child{
  background-color: #3B6982;
  position: relative;
}
#contactus .mflow li:first-child::after{
  content: url(../images/contactus/arrow1.png);
  display: inline-block;
  position: absolute;
  top: 10px;
  right: -50px;
}
#contactus .mflow li:nth-child(2){
  position: relative;
}
#contactus .mflow li:nth-child(2)::after{
  content: url(../images/contactus/arrow2.png);
  display: inline-block;
  position: absolute;
  top: 10px;
  right: -50px;
}
#contactus .mflow li a{
  color: #fff;
  font-size: 1em;/*16px*/
  font-family: "メイリオ", Meiryo, sans-serif;
  font-weight: normal;
}

/*フォーム*/
#contactus form dl{
  width: 1020px;
  border-top: 1px solid #bfbfbf;
  display: flex;
  padding: 15px 0 15px 10px;
}
@media screen and (max-width:1020px){
  #contactus form dl{
    width: 100%;
  }
}
#contactus form dl dt{
  width: 160px;
  font-size: 1em;/*16px*/
  font-family: "メイリオ", Meiryo, sans-serif;
  font-weight: bold;
}
#contactus form dl dd{
  font-size: 0.813em;/*13px*/
  font-family: "メイリオ", Meiryo, sans-serif;
  font-weight: normal;
  
}
#contactus form dl dd input{
  border: 1px solid rgba(93, 130, 163, 1);
  border-radius: 5px;
}
#contactus form dl dd:nth-child(2){
  width: 100px;
  font-size: 1em;/*16px*/
  font-family: "メイリオ", Meiryo, sans-serif;
  font-weight: bold;
}
.must{
  color: #ff1d25;
  font-size: 0.813em;/*13px*/
  vertical-align:middle;
}
#contactus form dl dd label:nth-child(2) input[type="radio"]{
  margin-left: 20px;
}
#contactus form dl dd:nth-child(4){
  padding-top: 3px;
  padding-left: 10px;
  color: #ff1d25;
  font-weight: bold;
}
#contactus form .txt1{
  display: inline-block;
  width: 26em;
  max-width: 100%;
  padding: 0.3em 0.5em;
}
#contactus form .txt2{
  display: inline-block;
  width: 8em;
  max-width: 100%;
  padding: 0.3em 0.5em;
}
#contactus form .txt3{
  display: inline-block;
  width: 55em;/*55em*/
  max-width: 100%;
  padding: 0.3em 0.5em;
}
#contactus form textarea{
  display: inline-block;
  /*width: 100%;*/
  width: 730px;
  max-width: 100%;
  line-height: 1.5;
  height: 18em;
  border: 1px solid rgba(93, 130, 163, 1);
  border-radius: 5px;
}

/*記入例の文字色の変更*/
/*  2024年現在のモダンブラウザに対応する記述 */
::placeholder{
  color: #aaaaaa;
}

/* 古いGoogle Chromeに対応する記述 */
::-webkit-input-placeholder{
  color: #aaaaaa;
}

/* IE10,IE11に対応する記述 */
:-ms-input-placeholder{
  color: #aaaaaa;
}

#contactus form .fbtn{
  width: 1020px;
  border-top: 1px solid #bfbfbf;
  display: flex;
  justify-content: center;
  padding: 20px 0;
  margin-bottom: 30px;
}
#contactus form .fbtn p{
  padding: 0 10px;
  font-size: 0.813em;/*13px*/
  font-family: "メイリオ", Meiryo, sans-serif;
  font-weight: normal;
}
/*---電話でのお問い合わせ---*/

#contactus #mailcontact form{
  position: relative;
  padding-bottom: 7px;
}

#contactus #mailcontact form ::after {
  content: "";
  background-image : linear-gradient(to right, #BFBFBF 3px, transparent 3px);
  background-size: 6px 1px;
  background-repeat: repeat-x;
  background-position: left bottom;
  width: 800px;
  height: 1px;
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
 }

 #telcontact h3{
  padding-top: 90px;
}
#telcontact p{
  margin-bottom: 30px;
}

#telcontact .telfaxpic{
  position: relative;
  width: 578px;
  height: 110px;
  margin: 0 auto;
  background-color: #47803d;
}
#telcontact .telfaxpic img{
  display: block;
  position: absolute;
  height: 60px;
  bottom: 23px;
  left: 40px;
}
#telcontact .telfaxpic .wday{
  position: absolute;
  width: 270px;
  height: 60px;
  bottom: 23px;
  right: 20px;
  background-color: #fff;
  z-index: 5;
}
#telcontact .telfaxpic .wday p{
  padding-top: 7px;
  text-align: center;
}

/*#telcontact p:nth-child(3){
  text-align: center;
}
#telcontact .telfaxpic{
  position: relative;
}
#telcontact .wday{
  position: absolute;
  width: 270px;
  height: 60px;
  bottom: 25px;
  right: 20px;
  background-color: #fff;
}

#telcontact .wday p{
  padding-top: 7px;
  text-align: center;
}*/

/*qanda.html---------------------------------------------------------------------------------*/

#qanda h3{
  text-align: center;
  font-size: 2em;/*32px*/
  font-family: "メイリオ", Meiryo, sans-serif;
  font-weight: bold;
  color: #0070b3;
  margin-bottom: 30px;
}
#qanda {
  margin-bottom: 75px;
   /* カウントしたい要素の親要素で、カウンターをリセットさせる。
      値は任意の名前をつける（ここでは「sample」） */
  counter-reset: sample;
}

#qanda dl{
  margin-bottom: 40px;
}
#qanda dl dt{
  font-size: 25px;/*25px*/
  font-family: "メイリオ", Meiryo, sans-serif;
  color: #7acf14;
  margin-bottom: 20px;
}
#qanda dl dt::before{
  /* 先ほど名前をつけたカウンター（ここでは「sample」）のカウントを開始 */
  counter-increment: sample;
  
  /* カウンターの番号を表示させる */
  content: counter(sample);
  
  /* 以下、番号のスタイル */
  display: inline-block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  line-height: 32px;
  text-align: center;
  background-color: #7acf14;
  color: #fff;
  font-size: 20px;
  margin-right: 15px;
}
#qanda dl .ansbox{
  display: flex;
}
#qanda dl .ansbox p{
  font-size: 0.938em;/*15px*/
  font-family: "メイリオ", Meiryo, sans-serif;
  color: #2a2b2b;
  padding-left: 20px;
}