@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: 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: 100%;
  margin: 0 auto; 
  padding: 0 10px;
}
.container2{
  width: 100%;
  margin: 0 auto; 
  padding: 0 10px;
}

.selfbr {
  display: inline-block;
}

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

/* その場で */
.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: 65px;
  background-color: #ffffff;
  opacity: 0.9;
  border-bottom: 5px solid #0070b3;
  z-index: 10;
}
.headerwrapper{
  display:block;
  padding-left: 10px;
}
.toplogo{
  display: flex;
  flex-direction: column-reverse;
  margin-bottom: 0px;
}
.toplogo p{
  display: none;
}
.toptelnavi .tellogo{
  position: absolute;
  bottom: 0;
  left: 0;
  position: fixed;
  width: 100%;
  height: 50px;
  background-color: #ffffff;
  opacity: 0.9;
  border-top: 5px solid #0070b3;
  z-index: 10;
}
.toptelnavi .tellogo img{
  display: block;
  margin: 5px auto;
}
@media screen and (max-width:330px){
  .toplogo img{
    width: 100%;
    padding-right: 10%;
    padding-top: 1.5%;
  }
}


/*========= ハンバーガーメニューナビゲーションのためのCSS ===============*/

#g-nav{

display: none;

/*position:fixed;にし、z-indexの数値を小さくして最背面へ*/
position:fixed;
z-index: -1;
opacity: 0;/*はじめは透過0*/
  /*ナビの位置と形状*/
top:0;
left: 0;
width:100%;
height: 100vh;/*ナビの高さ*/
background:#7ACF14;
  /*動き*/
transition: all 0.3s;
}

/*アクティブクラスがついたら透過なしにして最前面へ*/
#g-nav.panelactive{

  display: block;

  opacity: 1;
  z-index:999;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list{
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 999; 
  width: 100%;
  height: 100vh;/*表示する高さ*/
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/

#g-nav ul {
  display: none;
  /*ナビゲーション天地中央揃え*/
  position: absolute;
  z-index: 999;
  top:50%;
  left:50%;
  transform: translate(-50%,-50%);
}

#g-nav.panelactive ul {
  display: block;
}

/*リストのレイアウト設定*/

#g-nav li{
  list-style: none;
  text-align: center; 
}

#g-nav li a{
  color: #fff;
  text-decoration: none;
  padding:10px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
  /*font-size: 1.5em;*/
}

/*========= ボタンのためのCSS ===============*/
.openbtn{
  position:fixed;
  z-index: 9999;/*ボタンを最前面に*/
  top:5px;
  right: -5px;
  cursor: pointer;
  width: 50px;
  height:50px;
}

/*×に変化*/	
.openbtn span{
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background-color: #0070b3;
  width: 45%;
}

.openbtn span:nth-of-type(1) {
top:15px;	
}

.openbtn span:nth-of-type(2) {
top:23px;
}

.openbtn span:nth-of-type(3) {
top:31px;
}

.openbtn.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
  /*background-color: #ffffff;*/
}

.openbtn.active span:nth-of-type(2) {
opacity: 0;
}

.openbtn.active span:nth-of-type(3){
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
  /*background-color: #ffffff;*/
}

/*---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;
  line-height: 1.2;
}
#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;
  padding: 0 20px;
}
@media screen and (max-width:520px){
  #top .inner{
    top: 52%;
  }
  #top .inner h2{
    line-height: 1.3;
  }
}

/*==================================================
スライダーのための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: 100%;
  padding: 20px 20px 0;
}
@media screen and (max-width:590px){
  #goals{
    height: auto;
    padding-bottom: 50px;
  }
  #goals h3{
    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: auto;
  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;
}

#news .newswrapper dl dt{
  width: 180px;
}
#news .newswrapper dl dd{
  width: 800px;
  padding-left: 10px;
  padding-bottom: 10px;
}
@media screen and (max-width:670px){
  #news .newswrapper .newscontents dl{
    flex-direction: column;
  }
  #news .newswrapper dl dd{
    width: 100%;
    padding-left: 20px;
  }
}

/*---Division---*/
#division{
  margin-top: 80px;
}
#division h2{
  font-family: メイリオ "Meiryo", sans-serif;
  font-weight: bold;
  font-size: 1.813em;/*29px*/
  color: #fff;
  line-height: 1.1;
}
#division p{
  margin-top: 17px;
  font-family: 游ゴシック, "Yu Gothic", YuGothic,sans-serif;
  font-weight: normal;
  font-size: 1.063em;/*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: 3%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#division .blback .blbox .blboxtext h2{
  width: 100%;
}
#division .blback .blbox .blboxtext p{
  width: 90%;
}

#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: 1%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#division .grback .grbox .grboxtext h2{
  width: 100%;
  text-align: right ;
}
#division .grback .grbox .grboxtext p{
  width: 90%;
}
@media screen and (max-width:980px){
  #division h2{
    font-size: 1.563rem;/*25px*/
    line-height: 1.1;
  }
  #division p{
    font-size: 0.875rem;/*14px*/
  }
}
@media screen and (max-width:630px){
  #division h2{
    font-size: 1.5rem;/*24px*/
  }
  #division p{
    font-size: 1rem;/*16px*/
  }
  #division .blback{
    width: 100%;
    height: 600px;
  }
  #division .blback .blbox{
    display: flex;
    flex-direction: column;
  }
  #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: 20%,91% 300px,100% 300px;/*550/1400,600/1400*/
    background-position: 0% 15%,top right,top right;/*850/1400*/
    position: relative;
    width: 100%;
    height: 300px;
    z-index: 3;
  }
  #division .blback .blbox .bldivimg img{
    position: static;
    left: 0;
    width: 100%;
    height: 300px;
    z-index: 2;
  }
  .blboxtextinner{
    height: 300px;
    margin-left: 25%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  #division .blback .blbox .blboxtext h2{
    width: 100%;
  }
  #division .blback .blbox .blboxtext p{
    width: 100%;   
  }

  #division .grback{
    width: 100%;
    height: 600px;
  }
  #division .grback .grbox{
    display: flex;
    flex-direction: column;
  }
  #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: 20%,91% 300px,100% 300px;/*550/1400,600/1400*/
    background-position: 100% 85%,top left,top left;/*850/1400*/
    position: relative;
    width: 100%;
    height: 300px;
    z-index: 3;
  }
  #division .grback .grbox .grdivimg img{
    position: static;
    right: 0;
    width: 100%;
    height: 300px;
    z-index: 2;
  }
  .grboxtextinner{
    height: 300px;
    margin-right: 20%;
    margin-left: 4%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  #division .grback .grbox .grboxtext h2{
    width: 100%;
  }
  #division .grback .grbox .grboxtext p{
    width: 100%;
  }
}


/*---施工事例---*/
#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;
  }
}
@media screen and (max-width:630px){
  #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: 20%,87% 240px,auto 400px;
    background-position: 90% 35%, left center,center center;
    background-blend-mode: normal, multiply ,normal;
  }
  
}
/*---Footer---*/

/*トップページ以外で共通　フッター上の罫線をSPではやめ*/
footer{
  position: static;
}
footer ::before{
  content: none;
}
#footernavi{
  display: 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;
}
address .addwrapper{
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: 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: center;
  flex-wrap: wrap;
  width: 100%;
}

.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;
  /*background: #aaaaaa;
  clip-path: polygon(10px 0, 10px 10px, 0 10px);
  */
  margin: 0 5px 10px;
  
}
@media screen and (max-width:360px){
  .submenu li{
    width: 140px;
    height: 36px;
    margin: 0 5px 10px;
    background-position: 110px 10px,center;
  }
}
.submenu li a{
  text-shadow: 0 0 10px #144f70,0 0 10px #144f70,0 0 10px #144f70,0 0 10px #144f70,0 0 10px #144f70,0 0 10px #144f70,0 0 10px #144f70,0 0 10px #144f70,0 0 10px #144f70,0 0 10px #144f70,0 0 10px #144f70,0 0 10px #144f70,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:630px){
  #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: 20%,87% 240px,auto 400px;
    background-position: 90% 35%, left center,center center;
    background-blend-mode: normal, multiply ,normal;
  }
  
}

/*会社案内の各セクション間の仕切り線*/
#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: 100%;
  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:last-child{
  text-align: right;
}
#president p:last-child span{
  font-size: 1.75em;/*28px*/
  font-weight: bold;
  padding-left: 10px;
}

/*---経営理念---*/
#philo{
  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: center;
  align-items: center;
  flex-direction: column;
  margin-top: 80px;

}
#philo .origin h4{
  width: 300px;
  font-size: 1.562em;/*25px*/
  font-family: "メイリオ", Meiryo, sans-serif;
  color: #7acf14;
  text-align: center;
}
#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;
}
@media screen and (max-width:610px){
  #philo .origin p{
    width: auto;
  }
}
#philo .morning{
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  margin-top: 60px;
}
#philo .morning h4{
  width: 300px;
  font-size: 1.563em;/*25px*/
  font-family: "メイリオ", Meiryo, sans-serif;
  color: #7acf14;
  text-align: center;
}
#philo .morning p{
  width: auto;
  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 {
  margin-bottom: 80px;
}
#overview h3{
  margin-bottom: 30px;
}


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

#overview table tr th{
  width: 150px;
  padding: 5px 10px 0;
  font-weight: bold;
}

#overview table tr td{
  padding: 0 20px 5px;
}

#overview table tr:last-child{
  border-bottom: 1px solid #bfbfbf;
}

#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;
}
@media screen and (max-width:540px){
  #overview table tr td ul{
    flex-direction: column;
  }
  #overview table tr td ul li{
    list-style: disc;
    text-indent: -1em;
    padding-left: 1em;
    margin-left: 20px;
  }
  #overview table tr td ul li:last-child{
    list-style: none;
  }
  #overview table tr:nth-child(5) ul li:last-child{
    list-style: disc;
  }
  #overview table tr td ul li::after{
    content: none;
  }
}


#overview table tr td .ovtelflex{
  display: flex;
}
@media screen and (max-width:490px){
  #overview table tr td .ovtelflex{
    flex-direction: column;
  }
}
#overview table tr td .ovtelflex p{
  padding-bottom: 3px;
}
#overview table tr td .ovtelflex dl{
  display: flex;
  padding-right: 30px;
}
@media screen and (max-width:340px){
  #overview table tr td .ovtelflex dl{
    padding-right: 10px;
  }
}
#overview table tr td .ovtelflex dl dt::after{
  white-space: pre-wrap;
  content: " : ";
}

#overview table tr td table tr{
  border-top: none;
  padding-bottom: 10px;
}
#overview table tr td table tr:last-child{
  border-bottom: none;
}

#overview table tr td table tr td{
  padding: 0px 10px;
}
#overview table tr td table tr td:nth-child(2){
  padding: 0 0 0 30px;
}

#overview table .chadj td table tr td{
  padding: 0px 10px;
 }
/*#overview table .brnon{
  border-top: none;
}
#overview table .brnon td{
  padding-top: 0;
}
#overview table .panon td{
  padding-bottom: 0;
}*/
/*---組織図---*/

#orgchart{
  margin-bottom: 100px;
}
#orgchart h3{
  margin-bottom: 40px;
}
/*---会社沿革---*/

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

#history table tr th{
  width: 150px;/*150px*/
  padding: 5px 10px 0;
  font-weight: bold;
}
#history table tr td{
  padding: 0 20px 5px;
}

#history table tr:last-child{
  border-bottom: 1px solid #bfbfbf;
}


@media screen and (max-width:610px){
  #history table tr{
    display: block;
  }
  #history table th{
    display: block;
  }
}

/*---アクセス---*/

#access{
  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;
  text-align: center;
}
.accesswrapper{
  display: flex;
  justify-content: space-between;
  flex-direction: column-reverse;
}
/*paddingとpositionを使って縦横比固定でレスポンシブにする*/
.accesswrapper .map{
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 56.25%;    /*16:9の比率にしたい場合、9/16=56.25%*/
}
.accesswrapper .map iframe{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.accesswrapper .mopic{
  width: auto;
  margin: 0 auto;
}
.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;
}
@media screen and (max-width:530px){
  .bizsubmenu::after{
    content:"";
    display: block;
    width:170px;
  }
}


.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;
}
@media screen and (max-width:800px){
  .bizsubmenu{
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
  .bizsubmenu li{
    margin-bottom: 10px;
  }
}
@media screen and (max-width:360px){
  .bizsubmenu{
    margin: 0 0 65px;
    padding: 0 0;
  }
  .bizsubmenu li{
    width: 150px;
    margin: 0 5px 10px;
    padding: 0 0;
  }
  .bizsubmenu::after{
    width:160px;
  }
}
/*業務紹介サブメニュー（緑色）*/
#bizintro h3{
  text-align: center;
  font-size: 2em;/*32px*/
  font-family: "メイリオ", Meiryo, sans-serif;
  font-weight: bold;
  color: #0070b3;
  margin-bottom: 30px;  
}

.bizintromenu{
  width: 800px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 55px;
}
@media screen and (max-width:800px){
  .bizintromenu{
    width: 100%;
  }
}

.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;
}
@media screen and (max-width:520px){
  .bizintromenu .msize{
    width: 255px;
    padding: 0px 30px 7px;
    margin: 6px 5px;
    height: auto;
    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 20px,center;
  }
  .bizintromenu .lsize{
    width: 255px;
    padding: 0px 30px 7px;
    margin: 6px 5px;
    height: auto;
    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 20px,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: 100%;
  height: 350px;
  background:url(../images/businesscontent/designoffice1.jpg);
  background-size: auto;
  z-index: 1;
  margin-bottom: 10px;
}
.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: 100%;
  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;
}
@media screen and (max-width:510px){
  .designtop p {
    height: 90px;
    padding: 16px 10px 0;
  }
}
.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: 10px;
}
.designtext h5{
  font-size: 1.563em;/*25px*/
  line-height: 1.25;
  font-family: "メイリオ", Meiryo, sans-serif;
  color: #7acf14;
  margin-top: 30px;
  margin-bottom: 10px;
}
/*---施工図作成ネットワーク---*/
.chart h5{
  font-size: 1.25em;/*20px*/
  font-family: "メイリオ", Meiryo, sans-serif;
  color: #f15a24;
  text-align: center;
  margin-bottom: 5px;
  line-height: 1.2;
}
.chart h5 span{
  display: inline-block;
}
.chart .chartpic{
  margin-bottom: 60px;
}
.chart .chartpic p{
  text-align: center;
  margin-bottom: 10px;
}
/*---社内スタッフによるチェック体制
     インフラ構成図
     設備施工図---*/
#ihcheck{
  margin-bottom: 50px;
}
.designtext{
  margin-bottom: 50px;
}
.fbox{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.fbox .fboxtxt{
  width: 100%;
  margin-top: 0px;
}
.fbox img{
  width: 100%;
}
.stxt{
  font-size: 1rem;/*16px*/
  vertical-align: middle;
  display: inline-block;
}
/*---意匠設計部門
     建築施工図部門
     建築設備・施工図部門---*/
.departtext{
  margin-bottom: 50px;
}
.departtext h5{
  font-size: 1.25em;/*20px*/
  font-family: "メイリオ", Meiryo, sans-serif;
  color: #f15a24;
  margin-bottom: 5px;
}
.rev{
  flex-direction: column;
}
.capbox{
  display: flex;
  flex-direction: column;
}
.adjright{
  text-align: right;
}
/*---分野でも「施工」「建築」「電気」全ての分野の設備図部門で行うため
     ---*/
.othertext{
  margin-bottom: 50px;
}
.othertext h5{
  text-align: center;
  font-family: "メイリオ", Meiryo, sans-serif;
  color: #f15a24;
  margin-bottom: 10px;
}
.othertext p{
  margin-bottom: 20px;
}
/*---社内製作マニュアル---*/
.othertext2{
  margin-bottom: 75px;
}
.othertext2 h5{
  font-family: "メイリオ", Meiryo, sans-serif;
  color: #0070b3;
}
.othertext2 .fbox .adjpr2{
  margin-bottom: 20px;
}

.adjpr1{
  position: relative;
}
.adjpa1{
  position: absolute;
  left: 0px;
  bottom: 15px;
}
@media screen and (max-width:430px){
  .adjpr1{
    padding-bottom: 30px;
  }
  .adjpa1{
    bottom: 0px;
  }
}
.adjpr2{
  position: relative;
}
.adjpa2{
  position: absolute;
  left: 0px;
  bottom: 0px;
}
@media screen and (max-width:430px){
  .adjpr2{
    padding-bottom: 30px;
  }
}

/*以下マニュアルのolの番号を装飾*/
.mstep{
  margin-left: 2em; /* サイトに合せて調整 */
  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: 2em;
  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;
  text-indent: -1em;
  padding-left: 1em;
}
#mailcontact p:nth-child(5){
  text-indent: -1em;
  padding-left: 1em;
}
#contactus .mflow{
  display: flex;
  justify-content: space-around;
  margin-bottom: 30px;
}
@media screen and (max-width:870px){
  #contactus .mflow{
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 220px;
  }
}
#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: -6%;/*-40px*/
}
#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: -6%;
}
@media screen and (max-width:870px){
  #contactus .mflow li:first-child::after{
    content: url(../images/contactus/arrow1.png);
    display: inline-block;
    position: absolute;
    top: 46px;
    right: 50%;
    transform: rotate( 90deg );
  }
  #contactus .mflow li:nth-child(2)::after{
    content: url(../images/contactus/arrow2.png);
    display: inline-block;
    position: absolute;
    top: 46px;
    right: 50%;
    transform: rotate( 90deg );
  }
}
#contactus .mflow li a{
  color: #fff;
  font-size: 1em;/*16px*/
  font-family: "メイリオ", Meiryo, sans-serif;
  font-weight: normal;
}
/*フォーム*/
#contactus form dl{
  /*width: 100%;*/
  border-top: 1px solid #bfbfbf;
  display: flex;
  flex-direction: column;
  padding: 15px 0 15px 10px;
  position: relative;
}

#contactus form dl dt{
  display: block;
  width: 100%;
  font-size: 1em;/*16px*/
  font-family: "メイリオ", Meiryo, sans-serif;
  font-weight: bold;
}
#contactus form dl dd{
  display: block;
  width: 100%;
  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;
  position: absolute;
  top: 15px;
  left: 250px;
}
.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: 100%;
  border-top: 1px solid #bfbfbf;
  display: flex;
  justify-content: center;
  padding: 20px 0;
  margin-bottom: 60px;
}
#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;
}
/*sectionの下に点線を入れる*/

#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: 100%;
  height: 1px;
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
 }
 #contactus #mailcontact form dl::after,
 #contactus #mailcontact form dl dt::after,
 #contactus #mailcontact form dl dd::after{
  content: none;
  background: none;
 }

 #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;
}

@media screen and (max-width:600px){
  #telcontact .telfaxpic{
    width: 100%;
    height: 110px;
    margin: 0 auto;
  }
  #telcontact .telfaxpic img{
    bottom: 23px;
    left: 3%;
  }
  #telcontact .telfaxpic .wday{
    width: 270px;
    height: 60px;
    bottom: 23px;
    right: 3%;
  }
}
@media screen and (max-width:550px){
  #telcontact .telfaxpic{
    position: static;
    width: 100%;
    height: 150px;
    margin: 0 auto;
    padding-top: 10px;
  }
  #telcontact .telfaxpic img{
    position: static;
    margin: 0 auto;
    height: 60px;
  }
  #telcontact .telfaxpic .wday{
    position: static;
    margin: 5px auto;
  
  }
}
#telcontact .telfaxpic .wday p{
  padding-top: 7px;
  text-align: center;
}

/*#telcontact p:nth-child(3){
  text-align: center;
}
#telcontact{
  position: relative;
}
#telcontact .wday{
  position: absolute;
  width: 270px;
  height: 60px;
  top: 180px;
  right: 235px;
  background-color: #fff;
}
#telcontact .wday p{
  padding-top: 3px;
  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;
  margin-left: 10px
}
#qanda dl dt{
  font-size: 1.563em;/*25px*/
  font-family: "メイリオ", Meiryo, sans-serif;
  color: #7acf14;
  margin-bottom: 20px;

  text-indent: -40px;
  padding-left: 45px;
  line-height: 1.25;
}

#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: left;
  background-color: #7acf14;
  color: #fff;
  font-size: 20px;

  margin-right: 10px;
  text-indent: 9px;
}

#qanda dl .ansbox{
  display: flex;
}
#qanda dl .ansbox img{
  width: 80px;
  height: 80px;
}
#qanda dl .ansbox p{
  font-size: 0.938em;/*15px*/
  font-family: "メイリオ", Meiryo, sans-serif;
  color: #2a2b2b;
  padding: 0 20px;
}
#qanda dl .int{
  text-indent: -1em;
  padding-left: 1em;
}
