@charset "UTF-8";


/* ============== 採用情報の設定 START
======= */

/* =======
採用情報の設定 END ============== */


body{
  font-family: '游明朝','Yu Mincho','YuMincho','Hiragino Mincho Pro','serif';
  /* font-family: 'Helvetica Neue','Arial','Hiragino Kaku Gothic ProN', 'Hiragino Sans','Meiryo','sans-serif'; */
  color: #424242;
  font-style: 15px;
  letter-spacing: 0.1em;
}
header{
  position: fixed;
  top: 0;
  width:100%;
  height: 103px;
	background: linear-gradient(to left, #0481A2 0%, #0481A2 100px, rgba(0, 0, 0, 0.6) 100px,  rgba(0, 0, 0, 0.6) 100%);
  filter: drop-shadow(10px 10px 10px rgba(0,0,0,0.6));
  z-index: 9999;
  transition: 0.5s;
}
header.change{
  height: 85px;
  background: linear-gradient(to left, #0481A2 0%, #0481A2 90px, rgba(0, 0, 0, 0.6) 90px,  rgba(0, 0, 0, 0.6) 100%);
}
.header_wrap{
  padding: 50px 50px 10px;
  transition: 0.5s;
}
header.change .header_wrap{
  padding: 30px 30px 10px;
  transition: 0.5s;
}
.logo_s{
  position: relative;
  z-index: 9999;
}
.logo_s img{
  width: 140px;
}

/*========= ナビのためのCSS ここから ===============*/
.nav{
  position: fixed;
  right:74px;
  top:55px;
  z-index: 9999;
  transition: 0.5s;
}
header.change .nav{
  right:70px;
  top:36px;
  transition: 0.5s;
}
.nav ul{
  color: #fff;
}
.nav li{
  display: inline-block;
  padding-right: 40px;
  transition: 0.5s;
}
.nav li:last-child{
  padding-right: 80px;
}
header.change .nav li{
  padding-right: 30px;
  transition: 0.5s;
}
header.change .nav li:last-child{
  padding-right: 60px;
}
.nav li a{
  /*円の基点とするためrelativeを指定*/
position: relative;
}
.nav li.current a,
.nav li a:hover{
color:#0481A2;
}
.nav li a::after {
  content: '';
  /*絶対配置で線の位置を決める*/
  position: absolute;
  top: 20px;
  left: 0;
  /*線になる丸の形状*/
  width: 100%;
  height: 5px;
  border-radius: 50%;
  background:#0481A2;
  /*アニメーションの指定*/
  transition: all .3s;
  transform: scale(0.08, 1);/*X方向0.08、Y方向1*/
  transform-origin:center bottom;/*中央下部基点*/
}
/*現在地とhoverの設定*/
.nav li.current a::after,
.nav li a:hover::after {
  height: 2px;/*縦幅を変化*/
  border-radius: 0;/*丸みをなくす*/    
  transform: scale(1, 1);/*X方向1、Y方向1にスケール拡大*/
}
/*========= ナビのためのCSS ここまで ===============*/

/*========= ナビゲーションのためのCSS ここから ===============*/
/*アクティブになったエリア*/
#g-nav.panelactive{
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position:fixed;
  z-index: 999;
  top: 0;
  width:100%;
  height: 100vh;
}
/*丸の拡大*/
.circle-bg{
  position: fixed;
  z-index:3;
  /*丸の形*/
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #000;
  opacity: .8;
  /*丸のスタート位置と形状*/
  transform: scale(0);/*scaleをはじめは0に*/
  bottom:-50px;
  left:calc(50% - 50px);/*50%から円の半径を引いた値*/
  transition: all .6s;/*0.6秒かけてアニメーション*/
}
.circle-bg.circleactive{
  transform: scale(50);/*クラスが付与されたらscaleを拡大*/
}
/*ナビゲーションの縦スクロール*/
#g-nav-list{
  display: none;/*はじめは表示なし*/
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 999; 
  width: 100%;
  height: 100vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
#g-nav.panelactive #g-nav-list{
   display: block; /*クラスが付与されたら出現*/
}
/*ナビゲーション*/
#g-nav ul {
  opacity: 0;/*はじめは透過0*/
  /*ナビゲーション天地中央揃え※レイアウトによって調整してください。不必要なら削除*/
  position: absolute;
  z-index: 999;
  top:50%;
  left:50%;
  transform: translate(-50%,-50%);
  color: #000;
}
/*背景が出現後にナビゲーションを表示*/
#g-nav.panelactive ul {
  opacity:1;
}

/* 背景が出現後にナビゲーション li を表示※レイアウトによって調整してください。不必要なら削除*/
#g-nav.panelactive ul li{
animation-name:gnaviAnime;
animation-duration:1s;
animation-delay:.2s;/*0.2 秒遅らせて出現*/
animation-fill-mode:forwards;
opacity:0;
}
@keyframes gnaviAnime{
  0% {
  opacity: 0;
  }
  100% {
  opacity: 1;
  }
}

/*リストのレイアウト設定*/
#g-nav li{
text-align: center; 
list-style: none;
}
#g-nav li a{
color: #fff;
text-decoration: none;
padding:10px;
display: block;
text-transform: uppercase;
font-size: 19px;
font-size: clamp(17px,2vw,20px);
transition: 0.8s all;
}
#g-nav li a:hover{
  color: #0481A2;
  /* letter-spacing: 0.7em; */
  transition: 0.4s all;
}
#g-nav li a:hover::after,
#g-nav li a:hover::before{
  content: " | ";
  color: #0481A2;
}

/*========= ボタンのためのCSS ===============*/
.openbtn1{
  position:fixed;
  top:42px;
  right: 30px;
  z-index: 9999;/*ボタンを最前面に*/
  cursor: pointer;
  width: 50px;
  height:50px;
  transition: 0.5s;
}
header.change .openbtn1{
  top:24px;
  right: 20px;
  transition: 0.5s;
}

/*×に変化*/  
.openbtn1 span{
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 14px;
  height: 2px;
  border-radius: 2px;
  background-color: #fff;
  width: 58%;
}
.openbtn1 span:nth-of-type(1) {
top:13px; 
}
.openbtn1 span:nth-of-type(2) {
top:23px;
}
.openbtn1 span:nth-of-type(3) {
top:33px;
}
.openbtn1.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}
.openbtn1.active span:nth-of-type(2) {
  opacity: 0;
}
.openbtn1.active span:nth-of-type(3){
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}
/*========= ナビゲーションのためのCSS ここまで ===============*/

footer{
  width: 100%; /* 幅を指定する */
  font-size: 12px;
  text-align:center;
  text-transform:uppercase;
  color: #fff;
}
.clearfix:after {
	content: "";
	display: block;
	clear: both;
}
.clearfix:before {
  content: "";
	display: block;
	clear: both;
}
.clearfix {
	display: block;
}
.flex{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
br.br_block{
  display: none;
}
.section_h2{
  font-size: 70px;
  font-size: clamp(30px,17vw,70px);
  opacity: .8;
}
.section_h3{
  font-size: 40px;
  font-size: clamp(20px,8vw,40px);
  letter-spacing: .2em;
  opacity: .8;
}
.section_padding{
  margin: 100px 0 250px;
}
.section_h_span{
  display: block;
  font-size: 20px;
  font-size: clamp(13px,10vw,20px);
  opacity: .8;
  line-height: 1em;
  letter-spacing: 0.2em;
}
.section_h3 .section_h_span{
  display: block;
  font-size: 17px;
  font-size: clamp(13px,10vw,17px);
  opacity: .8;
  line-height: 1em;
  letter-spacing: 0.1em;
}
.section_h_margin{
  margin-bottom: 100px;
}
/* タイトルに青の下線追加CSSここから */
.border-blue{
  display: inline-block;
  position: relative;
  letter-spacing: .1em;
}
.border-blue:before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -10px; /*下線の上下位置調整*/
  display: inline-block;
  width: 70px; /*下線の幅*/
  height: 2px; /*下線の太さ*/
  -moz-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translate(-50%); /*位置調整*/
  background-color: #0481A2; /*下線の色*/
}
/* タイトルに青の下線追加CSSここまで */
.midashi_Top{
  height: 100vh;
  z-index: 1;
}
.midashi_Top p{
  color: #fff;
  font-size: 80px;
  font-size: clamp(30px,16vw,100px);
  line-height: 1.1em;
  text-align: center;
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  width:100%;
}
.midashi{
  z-index: 1;
}
.midashi_h2{
  color: #fff;
  font-size: 70px;
  font-size: clamp(35px,12vw,90px);
  text-align: center;
  padding: 220px 0 150px;
  width:100%;
}
.midashi span{
  display: block;
  font-size: 18px;
  opacity: .8;
  line-height: .2em;
  letter-spacing: 0.2em;
}
.page-link{
  background-color: #fff;
  filter: drop-shadow(7px 7px 7px rgba(0,0,0,0.2));
  margin: 0 auto 140px;
  padding: 10px;
  width: 960px;
}
ul.page-link_wrap{
  display: flex;
  list-style-type: none;
  padding: 0;
  width: 100%;
  line-height: 2.1em;
}
ul.page-link_wrap :last-child{
  border-right: none;
}
.page-link_wrap li{
  display: flex;
  align-self: auto;
  flex: 1;
  min-width: 0;
  border-right: solid 1px #ccc;
}
.page-link_wrap a{
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  padding: 1em;
  text-decoration: none;
  text-align: center;
  word-break: break-all;
  box-sizing: border-box;
}
.page-link_wrap a::before{
  content:'▼';
  font-size:0.8rem;
  padding:0 10px 0 0;
  color: #ccc;
}
.page-link_wrap a:hover{
  background-color: rgba(0, 0, 0, 0.166);
}
.page-link_Id{
  padding-top: 70px;
  margin-top: -170px;
}
#more a{
  display: inline-block;
  padding: 10px 30px;
  margin-top: 30px;
  background: #19b4aa;
  border-radius: 25px;
  color: #fff;
  transition: all 0.3s ease;
  letter-spacing: .1em;
  line-height: 1.5;
  font-size: 17px;
}
.icon{
  width: 8%;
  display: inline-block;
  vertical-align: middle;
  font-size: 25px;
  font-weight: bold;
  opacity: .8;
}
#slider {
  width: 100%;
  height: 100vh;/*スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  display: block;
  background-size: cover;
  background-position: center;
}
#slider::after {
  content: '';
  background-color: rgba(0,0,0,.3);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

/*========= スクロールダウンのためのCSS ここから ===============*/
/*スクロールダウン全体の場所*/
#scrolldown{
  /*描画位置※位置は適宜調整してください*/
position:absolute;
left:50%;
bottom:30px;
  /*全体の高さ*/
height:50px;
}
/*Scrollテキストの描写*/
#scrolldown span{
  /*描画位置*/
position: absolute;
left:-15px;
top: -15px;
  /*テキストの形状*/
color: #eee;
font-size: 0.7rem;
letter-spacing: 0.05em;
}

/* 線の描写 */
#scrolldown::after{
content: "";
  /*描画位置*/
position: absolute;
top: 0;
  /*線の形状*/
width: 1px;
height: 30px;
background: #eee;
  /*線の動き1.4秒かけて動く。永遠にループ*/
animation: pathmove 1.4s ease-in-out infinite;
opacity:0;
}

/*高さ・位置・透過が変化して線が上から下に動く*/
@keyframes pathmove{
  0%{
    height:0;
    top:0;
    opacity: 0;
  }
  30%{
    height:30px;
    opacity: 1;
  }
  100%{
    height:0;
    top:50px;
    opacity: 0;
  }
}
/*========= スクロールダウンのためのCSS　ここまで ===============*/

.container {
  max-width: 1500px;
  margin: 0 auto;
  text-align: center;
}
.container.color_white{
  color: #fff;
}
.container.bg-color_white {
  background-color: rgba(255, 255, 255, 0.8);
  padding: 50px 30px 0;
}
.container.bg-color_Blue {
  background-color: #0480a2bb;
  padding: 50px 30px 0;
}
h1 {
  font-size: 2rem;
  margin-bottom: 2rem;
}
.tab_col-1 li{
  opacity: 0;/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
  text-align: center;
  width: 100%;
  margin: 0 2% 60px;
  max-width: inherit;
  line-height: 2em;
}
.tab_col-1 img{
  width: 100%;
}
.tab_col-1 .text{
  opacity: 0;/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
  text-align: left;
  width: 960px;
  margin: 0 2% 60px;
  max-width: inherit;
  line-height: 2em;
}
.tab_col-1 .text h4{
  padding: 20px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 10px;
  font-size: 25px;
  font-size: clamp(20px,3vw,26px);
  color: #0481A2;
  line-height: 1.7em;
  text-align: center;
}
.tab_col-1 .text h4 .br-sp{
  display: none;
}
.tab_col-1 .text p{
  margin-top: 30px;
}
.tab_col-2 li{
  opacity: 0;/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
  text-align: left;
  width: 44%;
  margin: 0 2% 60px;
  max-width: inherit;
  line-height: 2em;
}
.tab_col-2 li img{
  margin-bottom: 10px;
  width: 100%;
}
.tab_col-3 li{
  opacity: 0;/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
  text-align: center;
  width: 29%;
  margin: 0 2% 60px;
  max-width: inherit;
  line-height: 2em;
}
.tab_col-3 li img {
  width: 100%;
}
.tab_p{
  padding-top: 10px;
  display: inline-block;
}
li.Width_3{width: 24%;}
li.Width_7{width: 64%;}
/* 表css　ここから */
.table_dl{
  margin: 0 auto;
  padding: 20px 0;
  border-bottom: 1px solid #ddd;
  max-width: 960px;
  justify-content:start
}
.table_dl dt{
  color:#0481A2;
  width: 10%;

}
.table_dl dd{
  padding-left:30px;
  text-align: left;
}
/* 表css　ここまで */

/* タイムラインcss　ここから */
.timeline li{
  opacity: 1;
  margin: 0;
  padding: 0 30px 30px;
}
.timeline li.text-left{
  width: 15%;
}
.timeline li.text-left p{
  text-align: right;
  font-weight: bold;
  font-size: 20px;
  color: #0481A2;
}
.timeline li.text-right{
  width: 75%;
  position: relative;
}
.timeline li.border::before {
  content: "";
  width: 1.5px;
  height: 100%;
  background-color: #0481A2;
  position: absolute;
  left: 0;
  top: 12px;
}
.timeline li.text-right .pc{
  display: block;
}
.timeline li.text-right .sp{
  display: none;
}
.timeline li.text-right .text{
  width: 67%;
  float: left;
  margin-right: 20px;
  padding-top: 20px;
}
.timeline li.text-right .photo{
  display: inline-block;
  width: 30%;
}
.timeline li h4{
  width: 100%;
  text-align: left;
  font-weight: bold;
  font-size: 20px;
  color: #0481A2;
}
.timeline li h4::before {
  border-radius: 50%;
  width: 20px;
  height: 20px;
  position: absolute;
  left: -9px;
  top: 5px;
  content: "";
  background: #0481A2;
}
/* タイムラインcss　ここまで */


/*　画像の拡大＋テキスト出現cssここから　*/
.zoomInText{/*テキストの基点となる位置を定義*/
  position: relative;
}
.zoomInText span.mask{
  position: relative;
  transition: .3s ease-in-out;/*移り変わる速さを変更したい場合はこの数値を変更*/
  display: block;/*画像をくくるspanタグをブロック要素にする*/
    line-height: 0;/*行の高さを0にする*/
    overflow:hidden;/*拡大してはみ出る要素を隠す*/
}
.zoomInText:hover span.mask::before{/*hoverした時の変化*/
  content:"";
  position: absolute;
  z-index:2;
  width: 100%;
  height: 100%;
  background:rgba(0,0,0,0.5);/*背景色*/
}
.zoomInText img{
  transform: scale(1);
  filter: blur(0);
  transition: .3s ease-in-out;/*移り変わる速さを変更したい場合はこの数値を変更*/
}
.zoomInText:hover img{/*hoverした時の変化*/
  transform: scale(1.2);/*拡大の値を変更したい場合はこの数値を変更*/
  filter: blur(2px);/*ぼかし具合を変更したい場合はこの数値を変更*/
}
.zoomInText span.cap{
  opacity:0;
  transition: .5s ease-in-out;/*移り変わる速さを変更したい場合はこの数値を変更*/
  position: absolute;
  z-index:3;/*テキストを前面に出す*/
  top: 50%;
    left: 50%;
  transform: translate(-50%,-50%);
  color: #fff;/*テキストの色を変えたい場合はここを修正*/
    line-height: 1.5;/*行の高さを1.5にする*/
}
.zoomInText:hover span.cap{/*hoverした時の変化*/
  opacity:1;
}
/*　画像の拡大＋テキスト出現cssここまで　*/


/*　画像の拡大cssここから　*/
.zoomPhoto span.mask{
  position: relative;
  transition: .3s ease-in-out;/*移り変わる速さを変更したい場合はこの数値を変更*/
  display: block;/*画像をくくるspanタグをブロック要素にする*/
    line-height: 0;/*行の高さを0にする*/
    overflow:hidden;/*拡大してはみ出る要素を隠す*/
}
.zoomPhoto:hover span.mask::before{/*hoverした時の変化*/
  content:"";
  position: absolute;
  z-index:2;
  width: 100%;
  height: 100%;
  background:rgba(0,0,0,0.0);/*背景色*/
}
.zoomPhoto img{
  transform: scale(1);
  filter: blur(0);
  transition: .3s ease-in-out;/*移り変わる速さを変更したい場合はこの数値を変更*/
}
.zoomPhoto:hover img{/*hoverした時の変化*/
  transform: scale(1.2);/*拡大の値を変更したい場合はこの数値を変更*/
  filter: blur(0);/*ぼかし具合を変更したい場合はこの数値を変更*/
}
.zoomPhoto span.cap{
  opacity:0;
  transition: .5s ease-in-out;/*移り変わる速さを変更したい場合はこの数値を変更*/
  position: absolute;
  z-index:3;/*テキストを前面に出す*/
  top: 50%;
    left: 50%;
  transform: translate(-50%,-50%);
  color: #fff;/*テキストの色を変えたい場合はここを修正*/
    line-height: 1.5;/*行の高さを1.5にする*/
}
.zoomPhoto:hover span.cap{/*hoverした時の変化*/
  opacity:1;
}
/*　画像の拡大cssここまで　*/


/*==================================================
ふわっ
===================================*/
.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);
    }
  }

/* アニメーションスタートの遅延時間を決めるCSS*/
.delay-time02{
  animation-delay: 0.2s;
}
.delay-time04{
  animation-delay: 0.4s;
}

/*==================================================
背景色が伸びて出現
===================================*/

/*全共通*/

.bgextend{
  animation-name:bgextendAnimeBase;
  animation-duration:1s;
  animation-fill-mode:forwards;
  position: relative;
  overflow: hidden;/*　はみ出た色要素を隠す　*/
  opacity:0;
}

@keyframes bgextendAnimeBase{
  from {
    opacity:0;
  }

  to {
    opacity:1;  
}
}

/*中の要素*/
.bgappear{
  animation-name:bgextendAnimeSecond;
  animation-duration:1s;
  animation-delay: 0.6s;
  animation-fill-mode:forwards;
  opacity: 0;
}

@keyframes bgextendAnimeSecond{
  0% {
  opacity: 0;
  }
  100% {
  opacity: 1;
}
}

/*左から右*/
.bgLRextend::before{
  animation-name:bgLRextendAnime;
  animation-duration:1s;
  animation-fill-mode:forwards;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5);/*伸びる背景色の設定*/
}
@keyframes bgLRextendAnime{
  0% {
    transform-origin:left;
    transform:scaleX(0);
  }
  50% {
    transform-origin:left;
    transform:scaleX(1);
  }
  50.001% {
    transform-origin:right;
  }
  100% {
    transform-origin:right;
    transform:scaleX(0);
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.bgappearTrigger,
.bgLRextendTrigger{
    opacity: 0;
}


/* ============== トップページの設定 START
======= */
/*　画像の拡大＋テキスト出現cssここまで　*/
.Topnews_dl{
  margin: 0 auto;
  padding: 20px 0;
  border-bottom: 1px solid #ddd;
  max-width: 960px;
  text-align: left;
}
.Topnews_dl:hover{
  color:#0481A2;
  background-color:rgba(255,255,255,0.5);
  transition: all 0.4s;
}
.Topnews_dl dt.Topnews_dt{
  display: inline-block;
  padding-left:10px;
  color:#0481A2;
}
.Topnews_dl dd.Topnews_dd{
  display: inline-block;
  padding-left:30px;
}
/* ==============
トップページの設定 END ======= */


/* ============== 会社案内の設定 START
======= */
li p.message_name{
  font-size: 24px;
  line-height: 1.2em;
  letter-spacing: .4em;
  margin: 20px 0;
  text-align: right;
}
li p.message_name span{
  font-size: 14px;
  opacity: .7;
  letter-spacing: .2em;
  margin-right: 10px;
}
.temple_wrap h5{
  font-size: 15px;
  font-weight: bold;
  line-height: 1.5em;
  margin-bottom: 8px;
}
.temple_wrap h5 span{
  color: #0481A2;
  font-size: 14px;
}
.temple_wrap h5 span br.sp-show{
  display: none;
}
.temple_wrap p{
  font-size: 13px;
  line-height: 2em;
}
.overview_img{
  margin-top: 50px;
}
.history_wrap.timeline li.text-left{
  width: 18%;
}
.history_wrap.timeline li.text-left p {
  line-height: 1.2;
  text-align: center;
}
.history_wrap.timeline li.text-left p span{
  line-height: 2;
  font-size: 14px;
  color:#000;
  opacity: .5;
}
.history_wrap.timeline li.text-right {
  width: 65%;
}
.history_wrap.timeline li.text-right .text{
  width: 100%;
}
.attempt_wrap li{
  width: 40%;
}
.attempt_wrap img{
  vertical-align:top;
  margin-bottom: 0;
  object-fit: cover;
}
/* =======
会社案内の設定 END ============== */


/* ============== 取り組みの設定 START
======= */
.equipment.tab_col-1 .text {
  opacity: 0;
  text-align: left;
  width: 960px;
  margin: 0 2% 60px;
  max-width: inherit;
  line-height: 2em;
}
.equipment_table{
  margin-top: 30px;
}
.equipment_table .table_dl dt{
  width: 3%;
}
.sdgs_wrap{
  line-height: 2em;
}
.sdgs_wrap img{
  width: 100%;
}
.sdgs_wrap .table_dl{
  padding: 30px 0;
}
.sdgs_wrap .table_dl dt{
  width: 17%;
  line-height: 0;
}
.sdgs_wrap .table_dl dd{
  width: 80%;
  padding-left: 30px;
  padding-top: 0;
  margin-top: -5px;
}
.sdgs_wrap .table_dl dd h4{
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 8px;
  transition:.4s all;
}
/* =======
取り組みの設定 END ============== */


/* ============== 技術情報の設定 START
======= */
.technology_wrap h4{
  width: 100%;
  color: #0481A2;
  text-align: left;
  font-weight: bold;
  font-size: 18px;
}
.bg-color_Blue .technology_wrap h4{
  color: #fff;
}
.technology_wrap .text{
  width: 100%;
  display: inline-block;
  vertical-align: middle;
  border-left: 2px solid #0481A2;
  padding-left: 15px;
  line-height: 1.7em;
  font-weight: bold;
}
.bg-color_Blue .technology_wrap .text{
  border-left: 2px solid #fff;
}
.technology_wrap li{
  text-align: center;
}
.technology_wrap p{
  margin: 30px 0;
  text-align: left;
}
.bg-color_Blue .technology_wrap p{
 color: #fff;
}
.technology_wrap #more a{
  margin: 10px;
}
/* =======
技術情報の設定 END ============== */


/* ============== 品質保証の設定 START
======= */
.quality_wrap h4{
  width: 100%;
  color: #0481A2;
  text-align: left;
  font-weight: bold;
  font-size: 18px;
}
.quality_wrap .text{
  width: 100%;
  display: inline-block;
  vertical-align: middle;
  border-left: 2px solid #0481A2;
  padding-left: 15px;
  line-height: 1.7em;
  font-weight: bold;
}
.quality_wrap li{
  text-align: center;
}
.quality_wrap p{
  margin: 30px 0;
  text-align: left;
}
.quality_wrap br.sp-show{
  display: none;
}

/* モーダルウィンドウ画像　START */
/*hideエリアをはじめは非表示*/
.hide-area{
	display: none;
}

/*モーダルのボタンの色を変更したい場合*/
.modaal-close:after, 
.modaal-close:before{
	background:#ccc;	
}

.modaal-close:focus:after,
.modaal-close:focus:before,
.modaal-close:hover:after,
.modaal-close:hover:before{
	background:#666;
}
/* モーダルウィンドウ画像　END */

/* =======
品質保証の設定 END ============== */


/* ============== 製作事例の設定 START
======= */
.production{
  max-width: 960px;
  margin: 0 auto;
}
.work .text {
  opacity: 0;
  text-align: left;
  width: 960px;
  margin: 0 2% 60px;
  padding: 20px 28px;
  max-width: inherit;
  line-height: 2em;
  background-color: #fff;
  border: 4px solid #0481A2;
  border-radius: 20px;
  overflow: hidden;
}
.work .text h4 {
  font-weight: bold;
  padding: 0;
  background-color: transparent;
}
.work .text ul {
  margin-top: 15px;
}
.work .text li {
  opacity: 1;
  text-align: left;
  margin: 0;
}
.work .text ul {
  list-style-position: inside;
}
.work .text ul li {
  padding-left: 1em;
  text-indent: -1em;
}
.work .text ul li::first-letter {
  color: #0481A2;
}
.parts .production_table{
  font-size: 12px;
  padding-top: 10px;
}
.parts .production_table dl{
  border-bottom: 1px solid #b1b1b1;
  padding: 3px 0;
  justify-content: start;
}
.parts .production_table dt{
  color: #0481A2;
  text-align: left;
  width: 20%;
}
/* =======
製作事例の設定 END ============== */


/* ============== 設備紹介の設定 START
======= */
.equipment .tab_p{
  font-size: 14px;
  padding-top: 4px;
}
.equipment .table {
  width: 1100px;
  padding: 10px;
  font-size: 14px;
}
.equipment table{
  width: 100%;
}
.equipment table thead th{
  font-size: 15px;
  font-weight: bold;
  padding-bottom: 5px;
}
.equipment table tbody,
.equipment table tbody th{
  border-top: 1px solid #0481A2;
}
.equipment table tbody tr{
  border-bottom: 1px solid #b1b1b1;
}
.equipment table tbody tr:last-child{
  border-bottom: none;
}
.equipment table tbody th{
  padding: 14px 12px 14px 0;
  font-size: 17px;
  text-align: left;
  font-weight: bold;
}
.equipment table tbody td{
  padding: 14px 12px;
  text-align: left;
}
.equipment table tbody td span{
  font-size: 13px;
}
.equipment table tbody td:last-child{
  text-align: center;
}
.equipment table thead.sp-none{
  display: table-header-group;
}
.equipment table tbody th.sp-none{
  display: table-cell;
}
.equipment table tr.sp-show{
  display: none;
}
.equipment table br.sp-show{
  display: none;
}
.equipment table tr.sp-show th.sp-h{
  font-size: 17px;
  font-weight: bold;
  text-align: center;
  color: #fff;
  background-color: #0481A2;
}
.equipment table tr.sp-show th{
  font-size: 13px;
  font-weight: bold;
  text-align: center;
  padding: 14px 12px;
}
/* =======
設備紹介の設定 END ============== */


/* ============== 採用情報の設定 START
======= */
.numbers_rwap{
  background-color: #fff;
  border-radius: 10px;
  padding: 30px;
}
.numbers_rwap h6{
  text-align: center;
  border-bottom: 1px solid #0481A2;
  font-size: 20px;
}
.interview_recruit li{
  position: relative;
  text-align: center;
}
.interview_recruit li .center{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  width: 100%;
  padding: 0 20px;
}
.interview_recruit li img{
  vertical-align:top;
  margin-bottom: 0;
  height: 400px;
  object-fit: cover;
}
.interview_recruit li.order-2{
  background-color: #fff;
}
.interview_recruit li h4{
  font-size: 24px;
  font-size: clamp(21px,2vw,24px);
  padding: 0 0 15px;
  line-height: 1.5em;
}
.recruitment_wrap h5{
  margin: 50px auto 10px;
  padding: 20px;
  background-color: #fff;
  max-width: 960px;
  font-size: 20px;
  opacity: .8;
  color: #0481A2;
}
/* =======
採用情報の設定 END ============== */


/* ============== 社員インタビューの設定 START
======= */
.interview_img{
  width: 100vw;
}
.interview_img img{
  width: 100%;
  height: 550px;
  vertical-align: bottom;
  object-fit: cover;
  object-position: right 50% top 20%;
}
/* 左上の三角形の作成CSSここから */
.Item {
  width: 100%;/*お好みで調整*/
}
.Item-Content {
  position: relative;
  padding-top: 30px;
  padding-bottom: 55px;
  padding-left: 56px;
  padding-right: 36px;
  background: #eee;
}
.Item-Content-Flg1 {/*三角形左上*/
  position: absolute;
  top: 0;
  left: 0;
  border-left: 30px solid #0481A2;
  border-bottom: 30px solid transparent;
}
.Item-Content-Title {
  letter-spacing: 0.14em;
  color: #666;
  font-size: 18px;
}
/* 左上の三角形の作成CSSここまで */
.interview_h{
  width: 40%;
  padding: 20px;
  background-color: #fff;
  position: absolute;
  top: 350px;
}
.interview_h h4 {
  font-size: 24px;
  font-size: clamp(21px,2vw,24px);
  padding: 0 0 15px;
  line-height: 1.5em;
  color: #0481A2;
}
.interview_wrap h4{
  width: 100%;
  color: #0481A2;
  text-align: left;
}
.interview_wrap .icon{
  width: 8%;
  display: inline-block;
  vertical-align: middle;
  font-size: 25px;
  font-weight: bold;
  opacity: .8;
}
.interview_wrap .text{
  width: 92%;
  display: inline-block;
  vertical-align: middle;
  border-left: 1px solid #0481A2;
  padding-left: 15px;
  line-height: 1.7em;
  font-weight: bold;
}
.interview_wrap p{
  margin: 20px 0;
}
.schedule_wrap.timeline li.text-right .pc,
.schedule_wrap.timeline li.text-right .sp span{
  font-weight: normal;
  font-size: 19px;
}

/* 共通設定 */
.schedule_wrap.photo01_01,
.schedule_wrap.photo01_02,
.schedule_wrap.photo02_01,
.schedule_wrap.photo02_02,
.schedule_wrap.photo03_01{
  width: 80%;
  margin: 0 auto;
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size:auto 50%;
}
/* 個々設定 */
.schedule_wrap.photo01_01{
  background-image: url(../images/dummy/interview/img_interview01_03.jpg);
}
.schedule_wrap.photo01_02{
  background-image: url(../images/dummy/interview/img_interview01_04.jpg);
}
.schedule_wrap.photo02_02{
  background-image: url(../images/dummy/interview/img_interview02_02.jpg);
}
.schedule_wrap.photo03_01{
  background-image: url(../images/dummy/interview/img_interview03_02.jpg);
}

.schedule_wrap h5 {
  margin: 50px auto 30px;
  padding: 13px;
  background-color: #fff;
  border-radius: 10px;
  max-width: 80%;
  font-size: 20px;
  opacity: .8;
  color: #0481A2;
}
/* 色反転用 START */
.bg-color_Blue h2,
.bg-color_Blue .timeline li.text-left p,
.bg-color_Blue .schedule_wrap p,
.bg-color_Blue .schedule_wrap h4 {
  color: #fff;
}
.bg-color_Blue .timeline li.border::before {
  background-color: #fff;
}
.bg-color_Blue .timeline li h4::before {
  background: #fff;
}
/* 色反転用 END */
.other_wrap li{
  width: 40%;
}
.other_wrap img{
  vertical-align:top;
  margin-bottom: 0;
  object-fit: cover;
}
/* =======
社員インタビューの設定 END ============== */


/* ============== お問い合わせの設定 START
======= */
.cta__btn input{
  width: 300px;
  display: inline-block;
  background: #19b4aa;
  color: #fff;
  border-radius: 25px;
  padding: 10px 30px;
  margin-top: 30px;
  font-size: 17px;
  letter-spacing: .1em;
  transition: all 0.3s ease;
}
.cta__btn {
  text-align: center;
}
#formWrap {
  text-align: left;
  margin-top: 80px;
}
#formWrap dt {
  display: block;
  padding: 2em 0 0;
}
#formWrap dt span:not(.style-none) {
  position: relative;
  bottom: 2px;
  margin-left: 1em;
  padding: .1em .6em;
  border: 1px solid #ff6666;
  border-radius: 2px;
  color: #ff6666;
  font-size: .8em;
}
#formWrap dt span.style-none{
  font-size: 13px;
  padding-left: 10px;
}
#formWrap dd {
  display: block;
  padding: 0 0 .5em;
}
#formWrap dd input,
#formWrap dd textarea {
  width: 100% !important;
  padding: 1em;
  background: #eee;
  border: .5px solid #000;
}
/* =======
お問い合わせの設定 END ============== */


/* ============== 新着情報一覧の設定 START
======= */
.news li{
  opacity: 1;
}
#newsWrap li{
  display: inline-block;
  margin: 30px auto 0;
  padding: 0 10px 30px;
  text-align: left;
  letter-spacing: .05em;
  border-bottom: 1px solid #b1b1b1;
}
#newsWrap li:first-child{
  padding: 30px 10px;
  border-top: 1px solid #b1b1b1;
}
#newsWrap .sub{
  display: inline-block;
  width: 30%;
}
#newsWrap .up_ymd{
  font-size: 16px;
  color: #0481A2;
}
#newsWrap .catName{
  display: inline-block;
  min-width: 130px;
  padding: 5px 20px 3px;
  margin-left: 15px;
  border-radius: 15px;
  font-size: 12px;
  text-align: center;
  background-color: #0481A2;
  color: #fff;
  line-height: 1em;
  position: relative;
  bottom: 2px;
}
#newsWrap p{
  width: 70%;
  float: right;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.6em;
  margin: 0;
}
/* .comment{
  display:inline-block;
  padding:7px 0;
  overflow:hidden;
  vertical-align:top;
  text-align:left;
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: .05em;
} */
/* Pager style（外部化可） */
.pager{
  text-align:center;
  padding:10px;
  clear:both;
}
/*ページャーボタン*/
.pager a{
  font-size: 12px;
  padding: 3px 7px 2px;
  text-decoration: none;
  margin:0 1px;
}
/*現在のページのボタン*/
.pager a.current{
  color: #0481A2;
  font-size: 12px;
  padding: 3px 15px 2px;
  margin:0 1px;
  text-decoration: none;
}
.pager a:hover{
  color: #0481A2;
}
.overPagerPattern{
  padding:0 2px ;	
}
/* =======
新着情報一覧の設定 END ============== */


/* ============== 新着情報記事の設定 START
======= */
#newsDetWrap #up_ymd{
  font-size: 14px;
  color: #0481A2;
  line-height: 1.9em;
  margin-left: 4px;
}
#newsDetWrap h2{
  font-size: 21px;
  border-bottom: 1px solid #b1b1b1;
  padding-bottom: 10px;
}
#newsDetWrap #detail{
  margin-top: 50px;
}
.detailText,
.detailUpfile{
  margin:50px 0;
}
.detailUpfile img{
  max-width:100%;
  height:auto;
}
.toNews{
  text-align: center;
}
/* .backORcloseBtn{
  text-align:center;
  line-height:100%;
  margin-top:15px;
}
.backORcloseBtn a{
  display:inline-block;
  padding:4px 15px;
  border:1px solid #aaa;
  color:#999;
  border-radius:6px;
  text-decoration:none;
  font-size:12px;
} */
/* =======
新着情報記事の設定 END ============== */


/* スクリーンサイズが1080px以下の場合に適用 */
@media screen and (max-width: 1080px) {
  .history_wrap.timeline li.text-left {
    width: 20%;
  }
}

/* スクリーンサイズが1000px以下の場合に適用 */
@media screen and (max-width: 1000px) {
  .section_padding{
    margin: 80px 0;
  }
  .section_h2_span {
    line-height: .1em;
  }
  .section_h_margin{
    margin-bottom: 50px;
  }
  .tab-Width_sp{
    width: 100%;
    padding: 0 20px 50px;
  }
  .container.bg-color_white {
    padding: 50px 0 0;
  }
  .page-link {
    width: 100%;
    padding:0;
    margin: 0 auto 100px;
  }  
  .Topnews_dl dt {
    width: 100%;
    text-align: left;
    padding-left: 0;
  }
  .Topnews_dl dd{
    width: 100%;
    padding-top: 3px;
    padding-left: 0;
    text-align: left;
  }
  .table_dl dt {
    width: 100%;
    text-align: left;
  }
  .table_dl dd{
    width: 100%;
    padding-top: 3px;
    padding-left: 0;
    text-align: left;
  }
  .equipment table thead.sp-none,
  .equipment table tbody th.sp-none{
    display: none;
  }
  .equipment table tr.sp-show{
    display: table-row;
  }
  .equipment table br.sp-show{
    display: block;
  }
  .temple_wrap h5 span br.sp-show{
    display: block;
  }
  .temple_wrap h5{
    font-size: 16px;
    text-align: center;
  }
  .timeline li.text-right .text {
    width: 100%;
    margin-bottom: 20px;
  }
  .timeline li.text-right .photo{
    display: flex;
    width: 30%;
    float: none;
  }
  .timeline li.text-right .photo img{
    margin-right: 20px;
  }
  .timeline .padding{
    padding-left: 20px;
  }
  .timeline li{
    margin: 0;
  }
  .timeline li.text-left{
    display: none;
  }
  .timeline li.text-right,
  .history_wrap.timeline li.text-right{
    width: 100%;
  }
  .timeline li.text-right .pc{
    display: none;
  }
  .timeline li.text-right .sp{
    display: block;
  }
  .schedule_wrap.photo01_01,
  .schedule_wrap.photo01_02,
  .schedule_wrap.photo02_01,
  .schedule_wrap.photo02_02,
  .schedule_wrap.photo03_01{
    width: 100%;
    background-image: none;
  }
  .schedule_wrap h5{
    max-width: 100%;
  }
  .equipment_table .table_dl dd{
    width: 95%;
    padding-top: 0;
    padding-left: 15px;
    text-align: left;
  }
  .quality_wrap br.sp-show{
    display: block;
  }
  #newsList .sub{
    width: 100%;
  }
  #newsList p{
    margin-top: 10px;
    width: 100%;
  }
}

/* スクリーンサイズが740px以下の場合に適用 */
@media screen and (max-width: 740px) {
  .order-1{
    order: 1;
  }
  .order-2{
    order: 2;
  }
  #more {
    margin-top: 20px;
  }
  .midashi_h2{
    padding: 120px 0 80px;
    transition: all 0.4s;
  }
  ul.page-link_wrap {
    display: block;
  }
  ul.page-link_wrap :last-child{
    border-bottom: none;
  }
  .page-link_wrap li{
    border-right: none;
    border-bottom: solid 1px #ccc;
  }
  .tab_col-1 .text h4{
    width: 100vw;
    border-radius: 0;
  }
  .tab_col-1 .text h4 .br-sp{
    display: inline-block;
  }
  .tab_col-1 .text p{
    margin-top: 0;
    margin: 30px 25px;
  }
  .tab_col-2 li,
  .history_wrap.timeline li.text-right {
    width: 100%;
    margin: 0 2% 0;
    text-align: center;
    line-height: 1.9em;
  }
  .tab_col-2 li p{
    text-align: left;
  }
  .tab_col-3 li {
    text-align: left;
    width: 100%;
  }
  .zoomInText span.mask::before{/*hoverした時の変化*/
    content:"";
    position: absolute;
    z-index:2;
    width: 100%;
    height: 100%;
    background:rgba(0,0,0,0.6);/*背景色*/
  }
  .zoomInText span.cap {
    opacity: 1;
    font-size: 20px;
    font-size: clamp(19px,4vw,22px);
    text-align: center;
  }
  .zoomPhoto span.mask::before{/*hoverした時の変化*/
    content:"";
    position: absolute;
    z-index:2;
    width: 100%;
    height: 100%;
    background:rgba(0,0,0,0.0);/*背景色*/
  }
  li p.message_name{
    text-align: center;
  }
  li p.message_name span{
    margin-right: 0;
  }
  .temple_wrap h5 span br.sp-show{
    display: none;
  }
  .timeline li.text-right .photo{
    display: flex;
    width: 40%;
    float: none;
  }
  .interview_recruit li{
    position: static;
  }
  .interview_recruit li .center{
    position: static;
    transform: none;
    padding: 20px;
  }
  .interview_recruit li p{
    text-align: center;
  }
  .interview_recruit li img{
    margin-top: 40px;
  }
  .Item-Content-Flg1{
    display: none;
  }
  .interview_h{
    width: 100%;
    padding: 20px;
    background-color: #0481A2;
    color: #fff;
    position:  static;
  }
  .interview_h h4 {
    color: #fff;
  }
  .interview_wrap li img{
    margin-bottom: 20px;
    margin-top: 60px;
  }
  .technology_wrap li img{
    margin-bottom: 20px;
    margin-top: 60px;
  }
  .sdgs_wrap .table_dl dt{
    width: 40%;
    margin: 0 auto;
  }
  .sdgs_wrap .table_dl dd{
    width: 100%;
    padding-left: 0;
    padding-top: 20px;
    margin-top: 0;
  }
  .sdgs_wrap .table_dl dd h4{
    text-align: center;
  }
  .equipment table tr.sp-show th,
  .equipment table tbody td,
  .equipment table tbody td span {
    font-size: 12px;
  }
  .work .text h4{
    width: 100%;
  }
  .quality_wrap li img{
    margin-bottom: 20px;
  }
}

/* スクリーンサイズが530px以下の場合に適用 */
@media screen and (max-width: 530px) {
  header{
    height: 78px;
    background: linear-gradient(to left, #0481A2 0%, #0481A2 78px, rgba(0, 0, 0, 0.6) 78px,  rgba(0, 0, 0, 0.6) 100%);
    transition: all 0.5s;
  }
  header.change{
    height: 64px;
    background: linear-gradient(to left, #0481A2 0%, #0481A2 73px, rgba(0, 0, 0, 0.6) 73px,  rgba(0, 0, 0, 0.6) 100%);
    transition: all 0.5s;
  }
  .header_wrap {
    padding: 30px 20px 10px;
    transition: all 0.5s;
  }
  header.change .header_wrap{
    padding: 18px 18px 10px;
    transition: all 0.5s;
  }
  .logo_s img {
    width: 120px;
    transition: all 0.5s;
  }
  .openbtn1 {
    top: 22px;
    right: 15px;
    transition: all 0.5s;
  }
  header.change .openbtn1{
    top: 10px;
    right: 13px;
    transition: all 0.5s;
  }
  .nav{
    display: none;
  }
  #g-nav ul{
    width: 100%;
  }
  #g-nav li {
    margin: 10px 30px;
    border-bottom: 1px solid #424242;
  }
  #g-nav li a{
    font-size: 15px;
    margin: 2px;
    padding: 5px;
  }
  .tab_col-1 .text h4 .br-sp{
    display: none;
  }
  .sdgs_wrap .table_dl dt{
    width: 90%;
  }
  .recruit_wrap img{
    height: 230px;
  }
  .recruitment_wrap br.br_block{
    display: block;
  }
  .equipment table tr.sp-show th,
  .equipment table tbody td,
  .equipment table tbody td span {
    font-size: 11px;
  }
  .equipment table tr.sp-show th,
  .equipment table tbody td{
    padding: 10px 12px;
  }
  .cta__btn input{
    width: 100%;
    font-size: 13px;
    padding: 10px;
  }
}
