@charset "UTF-8";
/*
Theme Name: MY-THEME
*/
@import "style-visual.css";

/* Webフォント読込サンプル */
/*
@font-face {
  font-family: "Font-Family-NAME";
  src: url(css/fonts/font-file.woff2) format("woff2"),
  url(css/fonts/font-file.woff) format("woff"),
  url(css/fonts/font-file.eot) format("eot");
  font-weight: 400;
  font-style: normal;
}
*/

/* ==========================================================================
   サイト毎の独自のスタイル
   ========================================================================== */

/* 基本フォント: 明朝 */
body{
  font-family:  'Noto Serif JP', "游明朝体", "Yu Mincho", YuMincho,'Noto Sans JP', "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 16px;
  line-height: 1.666;
  color: #000000;
}

/* 基本フォント: 明朝 *
/**/
body{
  /* 游明朝体 */
  /*font-family: "游明朝体", "Yu Mincho", YuMincho, "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;*/
  /* ヒラギノ明朝 */
  /*font-family: 'Hiragino Mincho Pro', 'ヒラギノ明朝 Pro', 'Yu Mincho', '游明朝', 'MS Mincho', 'MS明朝', serif;*/
}

/* admin-barの高さ分の padding 設定 */
body.admin-bar{
  padding-top: 32px;
}
@media (max-width:782px){
  body.admin-bar{
    padding-top: 46px;
  }
}

.gothic{
  font-family: '游ゴシック体','Yu Gothic', 'YuGothic', "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.mincho{
  font-family: "游明朝体", "Yu Mincho", YuMincho, "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

a{
  color: inherit;
  text-decoration: none;
}
/*a:hover{
  text-decoration: underline;
}*/

img{
  max-width: 100%;
}
a:hover img{
  opacity: 0.8;
}


.img_fit{
  position: relative;
}
.img_fit:before{
  content: "";
  display: block;
  padding-top: 100%;
}
.img_fit img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-family: 'object-fit: cover';
  position: absolute;
  left: 0;
  top: 0;
}

a.img_fit{
  display: block;
}
a .img.img_fit img{
  transition: 0.2s all;
}
a:hover .img.img_fit img{
  transform: scale(1.05);
}


img[class*="wp-image-"],
img[class*="attachment-"]{
  max-width: 100%;
  height: auto;
}

i, em{
  font-style: normal;
}

/* 動画埋め込みのレスポンシブ対応 */
iframe{
  max-width: 100%;
}
.responsive_video {
  position: relative;
}

.responsive_video:before{
  content: "";
  display: block;
  padding-top:56.25%;
}
.responsive_video video,
.responsive_video iframe,
.responsive_video object,
.responsive_video embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* テーブル */
table{
  width: 100%;
  table-layout: fixed;
}
table th,
table td{
  padding: 10px 10px;
}

/* テーブル 汎用class */
.tbl{

}
.tbl th,
.tbl td{
  border: 1px solid #b2b2b2;
}
.tbl th{

}
.tbl td{

}


/* スクロール テーブル */
.js-scrollable{
  overflow-x: auto;
}
.js-scrollable table{
  min-width: 748px;
}

/* 指定デバイスのみで表示するclass */
@media (min-width:1024px){
  .tb:not(.pc){
    display: none;
  }
  .sp:not(.pc){
    display: none;
  }
}
@media (min-width:768px) and (max-width:1023px){
  .pc:not(.tb){
    display: none;
  }
  .sp:not(.tb){
    display: none;
  }
}
@media (max-width:767px){
  .pc:not(.sp){
    display: none;
  }
  .tb:not(.sp){
    display: none;
  }
}


.txt_ellipsis_line1,
.txt_ellipsis_line2,
.txt_ellipsis_line3,
.txt_ellipsis_line4,
.txt_ellipsis_line5,
.txt_ellipsis_line6,
.txt_ellipsis_line7,
.txt_ellipsis_line8,
.txt_ellipsis_line9,
.txt_ellipsis_line10{
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}
.txt_ellipsis_line1{
  -webkit-line-clamp: 1;
}
.txt_ellipsis_line2{
  -webkit-line-clamp: 2;
}
.txt_ellipsis_line3{
  -webkit-line-clamp: 3;
}
.txt_ellipsis_line4{
  -webkit-line-clamp: 4;
}
.txt_ellipsis_line5{
  -webkit-line-clamp: 5;
}

/* **********************************
 *  コンテナ
 * ********************************* */
.wrapper{
  overflow-x: hidden;
}
.container{
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

@media (min-width: 576px){
  .container {
    width: 540px;
  }
}
@media (min-width: 768px){
  .container {
    width: 720px;
  }
}

@media (min-width: 992px){
  .container {
    width: 960px;
  }
}
@media (min-width: 1200px){
  .container {
    width: 1140px;
  }
}

.section{
  width: 100%;
  /*margin-bottom: 50px;*/
  /*padding: 30px 0;*/
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}


/* 共通のfloat ボックスとして定義しておく */
.box_l{
  float: left;
}
.box_r{
  float: right;
}

/* ▼サンプル▼ 利用箇所毎に幅指定だけで済むように */
/*
.post_list .post_box .box_l {
    width: 70%;
}
.post_list .post_box .box_r {
    width: 25%;
}
*/

/* ▼サンプル▼ リストなどでアイキャッチがない場合のclass */
/*
.post_list .post_box .box_w{
  width: 100%;
}
*/

/*
 * 共通クラスとして定義しておく
 * リスト組みのテンプレート
 * 
 */

.listbox{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.listbox .item{
  display: block;
  width: 100%;
}
.listbox .item .img{
  position: relative;
  display: block;
  overflow: hidden;
}
.listbox .item .img:before{
  content: "";
  display: block;
  padding-top: 100%;
}
.listbox .item .img.img2x1:before{
  padding-top: 50%;
}
.listbox .item .img.img1x2:before{
  padding-top: 200%;
}
.listbox .item .img.img2x3:before{
  padding-top: 150%;
}
.listbox .item .img.img3x2:before{
  padding-top: 66.666666%;
}
.listbox .item .img.img3x4:before{
  padding-top: 133.333333%;
}
.listbox .item .img.img4x3:before{
  padding-top: 75%;
}
.listbox .item .img.img16x9:before{
  padding-top: 56.25%;
}
.listbox .item .img img{
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.listbox .item .title{

}
.listbox .item .date{

}
.listbox .item .txt{

}


/* ▼サンプル▼ 利用箇所ごとにマージンなど設定 */
/*
.post_content .col1,
.post_content .col2,
.post_content .col3{
  margin-bottom: 20px;
}
*/


/* **********************************
 *  ヘッダー
 * ********************************* */
header{
  background: rgba(0, 45, 80, 0.6);
  padding: 10px 0;
  color: #FFF;
  position: fixed;
  z-index: 5;
  width: 100%;
}
header .hdr1{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.hdr_logo{
  line-height: 1;
}
.hdr_logo img{
  display: block;
}
.hdr_contact{

}
.hdr1_box1{

}
.hdr1_box2{

}


.mv{
  position: relative;
  z-index: 1;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  margin-left: 40px;
}

.mv .mv_img{
  position: relative;
  z-index: 0;
}
.mv .mv_img:after{
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background-image: url('/img/mv_cover.png');
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center bottom;

}
.mv .mv_img.img_fit:before{
  padding-top: 70vh;
}

.mv .mv_txt1{
  /*width: 82.58%;*/
  position: absolute;
  z-index: 1;
  top: 50%;
  left: -6px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  /*pointer-events: none;*/
}
.mv .mv_txt1 p{
  font-size: 30px;
  font-weight: 900;
  line-height: 1.8;
  letter-spacing: 0.075em;
  padding-bottom: 0.18em;
  color: #FFF;

  overflow: hidden;
  width: 0%;
  white-space: nowrap;
  animation: mainVisual-ttl-anim 1.8s ease-in-out forwards;
  animation-delay: 1s;
  opacity: 0;
}
.mv .mv_txt1 p:first-letter{
  font-size: 1.5em;
}
.mv .mv_txt1 p:nth-child(2){
  margin-left: 1em;
  animation-delay: 1.5s;
}
.mv .mv_txt1 p:nth-child(3){
  margin-left: 2em;
  animation-delay: 2s;
}
.mv .mv_txt1 p:nth-child(4){
  margin-left: 3em;
  animation-delay: 2.5s;
}
.mv .mv_txt2{
  /*width: 54.76%;*/
  position: absolute;
  z-index: 2;
  top: 50%;
  left: -10px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  /*pointer-events: none;*/
}
.mv .mv_txt2 p{
  font-size: 25px;
  letter-spacing: 0.075em;
  white-space: nowrap;
  color: #FFF;


  /*overflow: hidden;*/
  width: 0%;
  white-space: nowrap;
  animation: mainVisual-ttl-anim2 1.8s ease-in-out forwards;
  animation-delay: 3.8s;
  opacity: 0;
}

@keyframes mainVisual-ttl-anim{
  0%{
    opacity: 0;
    width: 0%;
  }
  100%{
    opacity: 0.4;
    width: 100%;
  }
}
@keyframes mainVisual-ttl-anim2{
  0%{
    opacity: 0;
    width: 0%;
  }
  100%{
    opacity: 1;
    width: 100%;
  }
}

.mv .mv_box{

}
.mv .mv_box .txt{
  font-size: 32px;
}
.mv .mv_box .img{

}
.mv .mv_box .img img{

}

.pg_header{
  /*padding: 15px 0;*/
  background-color: #ccc;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.pg_header .container{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 280px;
}
.pg_header .inner{
  width: 280px;
  background: rgba(255,255,255,0.6);
  padding: 15px 15px;
  text-align: center;
}
.pg_header .inner .tt1{
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.075em;
  text-align: center;
}
.pg_header .inner .tt1 span{
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 0.075em;
}
.pg_header .inner .tt1 span{
  color: #FFF;
  opacity: 0.4;
  text-shadow: 0.5px 0.866px 4.95px rgba(24, 24, 24, 0.7);
}
.pg_header .inner .tt1 span:first-letter{
  text-transform: uppercase;
}

@media (max-width:767px){
  header .hdr1{
    justify-content: center;
  }
  .hdr_logo{
    width: 200px;
  }
  .hdr_contact{
    display: none;
  }

  .mv .mv_txt1{
    width: 90%;
    top: 49%;
    left: -3px;
  }
  .mv .mv_txt2{
    width: 75%;
  }
  .mv .mv_txt2 p{
    filter: drop-shadow(0px 0px 25px #00558a)
      drop-shadow(0px 0px 4px #00558a);
  }
}
@media (min-width:768px){

  header{
    padding: 10px 15px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 5;
  }
  .hdr_logo{
    width: 150px;
  }
  .hdr_contact{
    width: 140px;
  }

  .mv{
    margin-left: 30px;
  }
  .mv .mv_img.img_fit:before{
    padding-top: 500px;
  }

  .mv .mv_txt1{
    left: 30px;
  }
  .mv .mv_txt1 p{
    font-size: 50px;
    line-height: 1;
  }
  .mv .mv_txt1 p:nth-child(2){
    margin-left: 2.2em;
  }
  .mv .mv_txt1 p:nth-child(3){
    margin-left: 3.4em;
  }
  .mv .mv_txt1 p:nth-child(4){
    margin-left: 5.6em;
  }
  .mv .mv_txt2{
    left: 30px;
  }
  .mv .mv_txt2 p{
    font-size: 42px;
    text-shadow: 2.121px 2.121px 47px rgba(0, 85, 138, 1);
  }


  .pg_header .container{
    height: 520px;
  }
  .pg_header .inner{
    width: 410px;
    padding: 40px 15px;
  }
  .pg_header .inner .tt1{
    font-size: 30px;
  }
  .pg_header .inner .tt1 span{
    font-size: 36px;
  }

}
@media (min-width:1024px){

  .mv .mv_img.img_fit:before{
    padding-top: 600px;
  }

  .pg_header .inner .tt1{
    font-size: 34px;
  }
  .pg_header .inner .tt1 span{
    font-size: 42px;
  }

}
@media (min-width:1200px){

  header{
    padding: 15px 30px;
  }
  .hdr_logo{
    width: auto;
  }
  .hdr_contact{
    width: auto;
  }
  .mv{
    margin-left: 220px;
  }
  .mv .mv_img.img_fit:before{
    padding-top: 900px;
  }

  .mv .mv_txt1{
    left: -6px;
  }
  .mv .mv_txt2{
    left: -120px;
  }

  .mv .mv_txt1 p{
    font-size: 80px;
  }
  .mv .mv_txt2 p{
    font-size: 60px;
  }
}

@media (min-width:1400px){
  .mv .mv_txt1 p{
    font-size: 100px;
  }
  .mv .mv_txt2 p{
    font-size: 70px;
  }
}


/* **********************************
 *  グローバルナビ
 * ********************************* */

@media (max-width:767px){

  .gnav{
    position: fixed;
    top: 0;
    bottom: 0;
    left: 60px;
    right: 0;
    background: #005d91;
    background: rgba(0, 45, 80, 0.85);
    padding: 0;
    z-index: 99999;
    overflow-y: scroll;

    /*transition: all 0.2s;*/
    transform: translateX(100%);
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .gnav.active{
    transform: translateX(0%);
  }
  .gnav > ul{
    display: block;
    width: 100%;
    text-align: center;
    font-size: 17px;
  }
  .gnav > ul > li{
    width: 100%;
    padding: 0;
    border: 0;
    /*border-bottom: 1px dashed #CCC;*/
    border: 0;
  }
  .gnav > ul > li + li,
  .gnav > ul > li:first-child,
  .gnav > ul > li:last-child{
    border-left: 0;
    border-right: 0;
  }
  .gnav > ul > li a{
    /*padding: 20px 0;*/
  }
  .gnav .children, .gnav .submenu{
    display: block;
    position: static;
    /*background: #21719e;*/
    background: none;
    /*padding: 10px 10px;*/
    padding: 0;
  }
  .gnav .submenu li{
    padding: 0;
  }
  .gnav .children, .gnav .submenu li+li{
    margin-top: 0;
  }
  .gnav .submenu li a{
    /*padding: 20px 0;*/
  }
  .gnav ul li a{
    padding: 16px 0;
    display: block;
  }
}
@media (min-width:768px){

  .gnav{
  }
  .gnav > ul{
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-around;
    align-items: center;
    text-align: center;
  }
  .gnav > ul li{
    position: relative;
    z-index: 1;
  }

  .gnav > ul > li{
    border-left: 1px solid #FFF;
  }
  .gnav > ul > li:last-child{
    border-right: 1px solid #FFF;
  }

  .gnav li a{
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.2em;
    line-height: 1;
    text-decoration: none;
    display: block;
    padding: 0 5px;
  }
  .gnav li a:hover{
    color: #00a2f3;
  }
  /*事業内容修正*/
  a.hasSub.pc.md.tb:hover {
    color: #fff;
  }
  .gnav li a.hasSub:after{
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    /*position: absolute;
    top: 50%;
    right: 10px;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);*/
    font-size: 12px;
    margin-left: 5px;
  }


  .gnav li:hover .submenu{
    display: block;
  }

  .gnav li .submenu{
    display: none;
    width: 100px;
    position: absolute;
    z-index: 1;
    top: 100%;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    text-align: center;
    padding-top: 12px;
  }
  .gnav li .submenu:before{
    content: "";
    display: block;
    margin: 0 auto;
    width: 0;
    height: 0;
    border-style: solid;
    border-color: transparent transparent rgba(29,38,88,0.8) transparent;
    border-width: 0px 11px 10px 11px;
  }
  .gnav li .submenu_list{
    padding: 16px 10px;
    background: rgba(29,38,88,0.8);
  }
  .gnav li .submenu li{

  }
  .gnav li .submenu li a{
    padding: 0;
  }
  .gnav li .submenu li+li{
    margin-top: 15px;
  }
}
@media (min-width:1024px){

}
@media (min-width:1200px){

  .gnav li a{
    font-size: 15px;
    padding: 0 25px;
  }

}


/* **********************************
 *  フッター
 * ********************************* */
footer{
  margin-top: 60px;
}

footer .ftr1{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
footer .ftr1_box1{
  width: 100%;
  min-height: 100px;
  background-image: url('/img/ftr_contact_img.jpg');
  background-size: cover;
  background-position: center;
}
footer .ftr1_box2{
  width: 100%;
  background-color: #d6e9f6;
  background-image: url('/img/ftr_contact_bg.png');
  background-size: cover;
  background-position: right bottom;
  padding: 40px 20px;
}

footer .ftr2{

  background-image: url('/img/ftr_bg.jpg');
  background-size: cover;
  color: #FFF;
  padding-top: 50px;
  padding-bottom: 25px;
}
footer .ftr2 .container{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
footer .ftr2_box1{
  width: 100%;
}
footer .ftr2_box2{
  width: 100%;
}
footer .ftr2_box3{
  width: 100%;
  margin-top: 40px;
}

.ftr_contact_msg{
  font-size: 16px;
  letter-spacing: 0.075em;
  line-height: 1.5625;
  text-align: center;
  margin-bottom: 30px;
}
.ftr_contact{
  display: flex;
  flex-wrap: wrap;
  margin: 0 -5px;
}
.ftr_contact .item{
  width: 100%;
  padding: 0 5px;
}
.ftr_contact .item a{
  display: block;
  background: #FFF;
  padding: 5px;
  position: relative;
  z-index: 1;
}
.ftr_contact .item a:after{
  content: "";
  position: absolute;
  z-index: 1;
  inset: 5px;
  border: 1px solid #00a2f3;
  pointer-events: none;
  transition: 0.2s all;
}
.ftr_contact .item a:hover,
.ftr_contact .item a:hover img{
  opacity: 1;
}
.ftr_contact .item a:hover:after{
  inset: 8px;
}

.ftr_logo{
  margin-bottom: 20px;
}
.ftr_addr{
  font-size: 14px;
  letter-spacing: 0.075em;
  line-height: 1.785;
}


.ftr_links_wrap{
  display: flex;
  flex-wrap: wrap;
}
.ftr_links{
  margin: 0 20px;
}
.ftr_links li{
  font-size: 16px;
  letter-spacing: 0.075em;
}
.ftr_links li+li{
  margin-top: 5px;
}


.ftr_copy{
  text-align: center;
  font-size: 12px;
}
.ftr_copy{
  margin-top: 12px;
}
footer .copy a{
  /*color: #111;*/
}


.footer_fix{
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #aec4e5;
  z-index: 10;
}
.footer_fix ul{
  /*display: table;*/
  width: 100%;
  font-size: 14px;

  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 3px;
}
.footer_fix ul li{
  /*display: table-cell;*/
  text-align: center;
  /*vertical-align: middle;*/
}
.footer_fix ul li.btn1{
  width: 36%;
}
.footer_fix ul li.btn2{
  width: 24%;
}
.footer_fix ul li a{
  display: block;
  padding: 10px;
  background: #005d91;
  color: #FFF;
  text-decoration: none;
}

@media (max-width:767px){

  footer .ftr1_box2{
    padding: 25px 20px 70px;
    background-size: 800px auto;
    background-image: url('/img/ftr_contact_bg_sp.jpg');
    background-repeat: no-repeat;
    background-position: center bottom;
    background-color: #ecf4f9;
  }
  .ftr_contact .item:nth-child(n+2){
    margin-top: 15px;
  }

  .ftr_logo{
    text-align: center;
  }
  .ftr_logo img{
    width: 205px;
  }
  .ftr_addr{
    font-size: 16px;
    text-align: center;
  }
  .ftr_tel{
    text-align: center;
  }
  .ftr_links_wrap{
    display: none;
  }

  .footer_fix{
    display: block;
  }
  body{
    padding-bottom: 50px;
  }
  .ftr_copy{
    margin-top: 0px;
  }
  footer .ftr2{
    padding-bottom: 10px;
  }



}
@media (min-width:768px){

  footer .ftr1_box1{
    width: 50%;
  }
  footer .ftr1_box2{
    display: flex;
    align-items: center;
    width: 50%;
    height: 510px;
    padding: 50px 50px;
  }

  .ftr_contact{
    margin: 0 -10px;
  }
  .ftr_contact .item{
    width: 50%;
    padding: 0 10px;
  }

  footer .ftr2{
    padding-top: 120px;
    padding-bottom: 25px;
  }
  footer .ftr2 .container{
  }
  footer .ftr2_box1{
    width: 50%;
  }
  footer .ftr2_box2{
    width: 50%;
  }
  footer .ftr2_box3{
    width: 100%;
    margin-top: 60px;
  }

}
@media (min-width:1024px){


}
@media (min-width:1200px){

  footer{
    margin-top: 115px;
  }
  footer .ftr1_box1{
    width: 50%;
  }
  footer .ftr1_box2{
    width: 50%;
    padding: 50px 135px 50px 80px;
  }

}



/* 検索フォーム */
.pg_404{
  text-align: center;
}
.pg_404{

}

.search-form{
  padding: 20px 0;
}
.search-form .search-field{
  padding: 5px;
}
.search-form .search-submit{
  padding: 5px 10px;
}

.pg_image{

}
.pg_image .attachment{
  padding: 20px;
  background-color: #ececec;
  text-align: center;
}



/* **********************************
 *  お知らせページ
 * ********************************* */

.pg_news .section#sec1 {
  margin-top: 50px;
}
.pg_news .news_inner{
  background: #f7f7f7;
  box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.2);
}
.pg_news .news_inner {
  padding: 11px 20px 22px 21px;
}
.pg_news .news_inner {
  margin: 80px 0px 70px 0px;
}
.post_items{

}
.post_items .item{
  position: relative;
}
.pg_news .news_inner .item {
  padding: 10px 10px 20px 10px;
}

.post_items .item:after {
  content: "";
  width: 32px;
  height: 9px;
  background: url(/img/news/arrow1.png) repeat center center / contain;
  position: absolute;
  right: 3.5%;
  bottom: 59px;
}
.pg_news .post_items .item .date {
  width: 91px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: 0.075em;
  color: #5a5a5a;
}
.pg_news .post_items .item .category{
  width: 110px;
  padding: 0 10px;
}
.pg_news .post_items .item .category span{
  display: block;
  background: #fff;
  color: #6c6969;
  padding: 3px;
  margin: 2px;
  text-align: center;
  font-size: 15px;
  line-height: 1.33333;
  border: 1px solid #6cc3ee;
  letter-spacing: 0.1em;
}
.cat_news{

}
.title txt_ellipsis{

}
.post_items .item .title{
  font-weight: 500;
  width: calc(100% - 130px - 150px);
  padding-left: 0px;
  width: -moz-available;
  width: -webkit-fill-available;
  width: available;
}
.post_items .item .title{
  font-size: 16px;
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: 0.075em;
  margin-top: 6px;
}

.pg_news .post_items .item a {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
}
.pg_news .post_items .item .title a{
  display: block;
  position: relative;
  padding-right: 1em;
}
.pg_news .post_items .item a:after {
  position: relative;
}
.pg_news .post_items .item a:before {
  content: "";
  width: 91%;
  height: 10px;
  position: absolute;
  bottom: 2px;
  border-bottom: 1px dotted #86898b;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
.post_items .item .title a:hover{
  text-decoration: none;
}
.pg_news .post_items .item:hover {
  text-decoration: none;
  /*background: #fff;*/
}
.pg_news .post_items .item:hover .title{
  color: #6cc3ee;
}

@media (max-width:320px){
  .pg_news .news_inner {
    margin: 80px 0px 70px 0px;
  }
}

@media (min-width:768px){
  .pg_news .section#sec1 {
    margin-top: 113px;
  }
  .pg_news .news_inner {
    margin: 124px 0px 70px 0px;
  }
  .pg_news .news_inner .item {
    padding: 20px 120px 20px 60px;
  }
  .post_items .item:after {
    bottom: 34px;
  }
  .pg_news .post_items .item a {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
  }
  .pg_news .post_items .item .category{
    width: 203px;
    padding: 0 10px;
  }
  .pg_news .post_items .item .category span{
    display: block;
    background: #fff;
    color: #6c6969;
    padding: 3px;
    margin: 2px;
    text-align: center;
    font-size: 15px;
    line-height: 1.33333;
    border: 1px solid #6cc3ee;
    letter-spacing: 0.1em;
  }
  .pg_news .post_items .item .date{
    width: 145px;
  }
  .post_items .item .title{
    padding-left: 11px;
  }
  .post_items .item .title{
    margin-top: 0px;
  }
  .post_items .item:after {
    content: "";
    width: 36px;
    height: 9px;
    background: url(/img/news/arrow1.png) repeat center center / contain;
    position: absolute;
    right: 7.5%;
    bottom: 34px;
  }

}

@media (min-width:1024px){

}
@media (min-width:1200px){

}


/* **********************************
 *  詳細ページ　お知らせ
 * ********************************* */

.pg_in_news .section#sec1 {
  margin-top: 50px;
}
.pg_in_news .post_items{
  padding: 0 0;
}
.in_news_outline {
  background: #f7f7f7;
  box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.2);
}
.in_news_outline {
  padding-bottom: 30px;
}
.pg_in_news .news_inner .item {
  border-bottom: 1px dotted #86898b;
}
.post_items .item:last-child{
  /* border-bottom: 1px solid #CCC;*/
}
.post_items .item .img{

}
.pg_in_news .post_items .item .date{
  width: 107px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: 0.075em;
  color: #5a5a5a;
}
.pg_in_news .post_items .item .category{
  width: 155px;
  padding: 0 10px;
}
.pg_in_news .post_items .item .category span{
  display: block;
  background: #fff;
  color: #6c6969;
  padding: 3px;
  margin: 2px;
  text-align: center;
  font-size: 15px;
  line-height: 1.33333;
  border: 1px solid #6cc3ee;
  letter-spacing: 0.1em;
}


/* 詳細タイトル　下部線　*/
.pg_in_news .post_content {
  position: relative;
}
.pg_in_news .post_content:before {
  content: "";
  width: 100%;
  height: 0px;
  background: #e6e6e6;
  border-top: 1px dotted #86898b;
  position: absolute;
  top: -8px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  z-index: 1;
}
.pg_in_news .post_content:after {
  content: "";
  width: 100%;
  height: 0px;
  background: #e6e6e6;
  border-bottom: 1px dotted #86898b;
  position: absolute;
  bottom: 0px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  z-index: 1;
}
/* 詳細タイトル　中身　*/
.pg_in_news .post_content img {
  margin-bottom: 10px;
}
.pg_in_news .post_content p {
  font-size: 16px;
}
.pg_in_news .post_content p {
  font-family: Noto Serif JP;
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.075em;
  text-align: justify;
}
.pg_in_news .post_content a {
  color: #2196F3;
  text-decoration: underline;
}
/*.post_items .item:after{
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  right: 5px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}*/

.in_news_outline .meta {
  margin-bottom: 19px;
}
.in_news_outline h2.tt {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.075em;
  line-height: 1.25;
}

.post_items .item.single_item{
  display: flex;
  flex-wrap: wrap;
}
.post_items .item.single_item:after{
  display: none;
}

.item.single_item {
  padding: 25px 22px 0px 22px;
}

.post_items .item.single_item .meta{
  display: flex;
  align-items: center;
  width: 100%;
}
.post_items .item.single_item .title{
  width: 100%;
  font-size: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid #CCC;
}
.post_items .item.single_item .content{
  width: 100%;
  margin-top: 20px;
  padding-bottom: 20px;
}
.post_items .item.single_item .content *{
  margin-bottom: 1em;
}
.post_items .item.single_item .content h1,
.post_items .item.single_item .content h2,
.post_items .item.single_item .content h3,
.post_items .item.single_item .content h4,
.post_items .item.single_item .content h5,
.post_items .item.single_item .content h6{
  margin-bottom: 0.5em;
}
.post_items .item.single_item .content a{
  color: #2196F3;
}


.post_items .post_content {
  margin-top: 25px;
  padding-top: 15px;
}



/* ページ送り(一覧) */
.pagination {
  text-align: center;
  margin-top: 15px;
}
.pagination .nav-links{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;

}
.pagination .page-numbers{
  align-self: stretch;
  border: 1px solid #c0c0c0;
  padding: 5px 10px;
  margin: 4px 4px;
  color: #1e1e1e;
  text-decoration: none;
}
.pagination .page-numbers.current,
.pagination .page-numbers:hover{
  background: #e5e5e5;
}
.pagination .page-numbers.next:after{
  content: "\f101";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-left: 10px;
}
.pagination .page-numbers.prev:before{
  content: "\f100";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 10px;
}

/* ページ送り(詳細) */
.pagination .nav-posts{
  display: flex;
  justify-content: center;
  align-items: center;
}
.pagination .nav-posts .page-next,
.pagination .nav-posts .page-prev{
  min-width: 20px;
}
.pagination .nav-posts .page-next a,
.pagination .nav-posts .page-prev a{
  display: block;
  padding: 10px 10px;
  position: relative;
}
.pagination .nav-posts .page-next a:hover,
.pagination .nav-posts .page-prev a:hover{
  display: block;
  background: #bcbcbc;
  color: #ffffff;
  padding: 10px 10px;
  text-decoration: none;
}
.pagination .nav-posts .page-next a:before,
.pagination .nav-posts .page-prev a:after{
  font-family: "Noto Serif JP";
  font-weight: 900;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.pagination .nav-posts .page-next a:before{
  content: "＜";
  left: 0px;
}
.pagination .nav-posts .page-prev a:after{
  content: "＞";
  right: 0px;
}
/*.pagination .nav-posts .page-next a:before{
  content: "\f053";
  left: 10px;
}
.pagination .nav-posts .page-prev a:after{
  content: "\f054";
  right: 10px;
} */
/*.pagination .nav-posts .page-archive a{
  display: block;
  background: #bcbcbc;
  color: #ffffff;
  padding: 10px 100px;
} */
.pagination .nav-posts .page-archive a{
  display: block;
  color: #181818;
  padding: 10px 20px;
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.075em;
  margin: 0 29px;
}
.pagination .nav-posts .page-archive a:hover{
  display: block;
  background: #bcbcbc;
  color: #ffffff;
  padding: 10px 20px;
  text-decoration: none;
}
.page-archive a {
  text-decoration: underline;
}
.pg_in_news .nav-posts {
  margin-top: 20px;
}


@media (min-width:768px){
  .pg_in_news .section#sec1 {
    margin-top: 117px;
  }
  /* 詳細タイトル　中身　*/
  .post_items .post_content{
    margin-top: 30px;
    padding-top: 33px;
  }
  .item.single_item {
    padding: 31px 65px 35px 65px;
  }
  .pg_in_news .post_content p {
    font-size: 16px;
  }
  .pg_in_news .post_content:after {
    content: "";
    width: 100%;
    height: 0px;
    background: #e6e6e6;
    border-bottom: 1px dotted #86898b;
    position: absolute;
    bottom: -52px;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    z-index: 1;
  }
  /* ページ送り(一覧) */
  .pagination {
    text-align: center;
    margin-top: 15px;
  }
  .pg_in_news .nav-posts {
    margin-top: 48px;
  }
}
@media (min-width:1024px){

}
@media (min-width:1200px){

}
/* 検索 */
.search_list{
  background: #eee;
  padding: 15px;
}
.search_list .item{

}
.search_list .item + .item{

}

/* ページTOPに戻る */
.pagetop{
  display: none;
  position: fixed;
  z-index: 3;
  right: 10px;
  bottom: 60px;
}
.pagetop a{
  display: block;
  font-size: 0;
  color: #6cc3ee;
  width: 42px;
  height: 42px;
  text-align: center;
}
.pagetop a i{
  font-size: 40px;
}


.breadcrumb{
  display: flex;
  align-items: flex-start;
  list-style: none;
  margin-bottom: 20px;
  font-size: 14px;
  overflow-x: auto;
  overflow-y: hidden;
  padding-top: 20px;
}
.breadcrumb li{
  /*display: inline;*/
  /*white-space: nowrap;*/
}
.breadcrumb li + li{
  margin-left: 10px;
}
.breadcrumb li:last-child {
  font-weight: 400;
  padding-left: 5px;
}
.breadcrumb li {
  font-family: 'NOTO SERIF JP';
  font-size: 12px;
  letter-spacing: 0.075em;
  position: relative;
  z-index: 1;
}
.breadcrumb li a{
  white-space: nowrap;
  position: relative;
  padding-right: 25px;
  text-decoration: underline;
}

.breadcrumb li:after{
  content: "＞";
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: 12px;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.breadcrumb li:last-child:after{
  display: none;
}
/*.breadcrumb li:first-child a{
  padding-left: 15px;
}
.breadcrumb li:first-child a:before{
  content: "\f015";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 12px;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}*/



/* **********************************
 *  メイン
 * ********************************* */
.main{
  padding: 0 0 ;
}
body.home .main{
  padding-top: 0;
}

.tt1{
  font-size: 32px;
  font-weight: bold;
  line-height: 1.4;
}
.tt1 span{
  display: block;
  text-align: center;
  font-size: 14px;
}

.tt2{
  text-align: center;
  margin-bottom: 30px;
}
.tt2 .ja{
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.075em;
}
.tt2 .en{
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.075em;
  line-height: 1;
}
.tt3{

}
.tt3 span{

}
.tt4{

}
.tt4 span{

}
.tt5{

}
.tt5 span{

}

/* 詳しく見る  */
.read_more{
  margin-top: 35px;
}
.read_more a{
  display: block;
  width: 255px;
  max-width: 100%;
  margin: 0 auto;
  padding: 12px 0 13px;
  background-image: url('/img/readmore_bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #FFF;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.075em;
  text-align: center;
  position: relative;
  z-index: 1;
}
.read_more a:before{
  content: "";
  position: absolute;
  z-index: 1;
  inset: 5px;
  border: 1px solid currentColor;
  pointer-events: none;
  transition: 0.2s all;
}
.read_more a:after{
  content: "";
  width: 36px;
  height: 7px;
  background-image: url('/img/readmore_arr.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  transition: 0.2s all;
}
.read_more a.no_arrow:after{
  display: none;
}

.read_more a:hover:before{
  inset: 4px;
}
.read_more a:hover:after{
  right: 2px;
}

@media (min-width:768px){


  .tt2{
    text-align: center;
    margin-bottom: 50px;
  }
  .tt2 .ja{
    font-size: 35px;
  }
  .tt2 .en{
    font-size: 18px;
  }

  /* 詳しく見る  */
  .read_more{
    margin-top: 50px;
  }
  .read_more a{
    width: 220px;
  }

}
@media (min-width:1024px){

  /* 詳しく見る  */
  .read_more{
    margin-top: 75px;
  }
  .read_more a{
    width: 255px;
  }
}
@media (min-width:1200px){


}



/* **********************************
 *  共通項目
 * ********************************* */
span.nowrap {
  white-space: nowrap;
}





/* **********************************
 *  会社概要
 * ********************************* */
.pg_company{

}
.pg_company .section#sec1{

}
.pg_company .section#sec2{

}
.pg_company .section#sec3{

}



/* **********************************
 *  お問い合わせ
 * ********************************* */
.pg_contact{

}
.pg_contact .section#sec1{
  padding-top: 45px
}
.pg_contact .section#sec2{
  padding-top: 50px
}
.pg_contact .section#sec3{

}

.contact_tt{
  text-align: center;
  font-weight: bold;
  font-size: 23px;
  letter-spacing: 0.2em;
  margin-bottom: 30px;
}





/* 連絡先 */
.contact_info{
  display: flex;
  justify-content: center;
  font-size: 30px;
  border-radius: 3px;
  box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.13);
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
}
.contact_info{
  position: relative;
  background: #f7f7f7;
  text-align: center;
  max-width: 920px;
  padding: 28px 20px 36px;
  margin: 0 auto;
}
.contact_info:before {
  content: "";
  width: 1920px;
  height: 345px;
  background: url(/img/contact/back_contact.jpg) repeat center / contain;
  position: absolute;
  top: -10%;
  position: absolute;
  z-index: -1;
}
.contact_info .box1{
  font-family: Noto Serif JP;
  font-size:16px;
  font-weight: 400;
  letter-spacing: 0.075em;
  line-height: 2;
  color: #181818;
}
.contact_info .box2{
  padding-top: 0px;
  line-height: 1;
}
.contact_info .box2 .icon{

}

.contact_info .box2 .tel{
  display: inline-block;
  font-size: 30px;
  vertical-align: middle;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.2em;
  margin-left: 60px;
  position: relative;
}
.contact_info .box2 .tel a{
  display: block;
}
span.tel {
  position: relative;
}
span.tel:after {
  position: absolute;
  content: "";
  width: 31px;
  height: 31px;
  background: url(/img/contact/tel.png) no-repeat center / contain;
  left: -23%;
  bottom: 5px;
  z-index: 1;
  pointer-events: none;
}
.contact_info .box2 .txt{
  display: inline-block;
  vertical-align: bottom;
  font-weight: 400;
  letter-spacing: 0.075em;
  font-size: 16px;
  line-height: 0.2;
}
.contact_info .box2 .txt {
  padding: 4px;
  width: 100%;
  margin: 0;
}
.contact_info_text {
  padding-top: 30px;
}
.contact_info_text {
  text-align: justify;
  letter-spacing: 0.075em;
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
}

.mwform-checkbox-field input, .mwform-radio-field input {
  margin-right: 12px;
}
.mwwp_form_text {
  font-size: 15px;
  text-indent: -1.3em;
  padding-left: 1.3em;
}
.contact_form_btns button {
  width: 100%;
}
/* コンタクトフォーム */
.contact_form tr {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}
.contact_form{
  width: 100%;
  border: 1px solid #fff;
}
.contact_form tr{
  border-bottom: 1px solid #fff;
}
.contact_form th {
  padding: 8px 17px 8px 12px;
  font-weight: normal;
  text-align: left;
}
.contact_form td{
  padding: 8px 10px 8px 12px;
  font-weight: normal;
  text-align: left;
}


.contact_form th {
  background: #3393bb;
  color: #fff;
  width: 100%;
  letter-spacing: 0em;
  font-weight: 400;
}
.contact_form td{
  font-size: 13px;
  letter-spacing: 0.1em;
  background-color: #f5f5f5;
}

td.form_input .contact_form td input {
  padding: 7px 10px;
  border: 1px solid #d6d8d8;
  border-radius: 0;
  width: 663px;
}
.contact_form th.vtop{
  vertical-align: top;
}
.contact_form th .require{
  display: inline-block;
  padding: 2px 10px;
  color: #b80000;
  background: #fff;
  font-size: 14px;
  font-weight: normal;
  float: left;
  margin-right: 20px;
}
.mwform_check_box_wrap {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-content: flex-start;
}
/* MW WP Formの規定クラス */
/* checkbox, radio */
.mwform_check_box_wrap{
  padding: 9px 0;
}
.mw_wp_form .mwform-radio-field.horizontal-item,
.mw_wp_form .mwform-checkbox-field.horizontal-item{
  display: inline-block;
  margin-left: 0;
  margin-right: 39px;
}

/**/
.mw_wp_form_confirm .addr_auto{
  display: none;
}
.mw_wp_form_confirm .addr_auto_box .zipcode i{
  background: none;
  padding: 0;
  font-size: inherit;
}

.contact_form dl{
  width: 100%;
  display: flex;
  align-items: center;
}
.contact_form dl + dl{
  margin-top: 10px;
}
.contact_form dl dt,
.contact_form dl dd{

}
.contact_form dl + p{
  margin-top: 5px;
  margin-bottom: 5px;
}

.contact_form dl.addr dt{
  width: 90px;
}
.contact_form dl.addr dd{
  width: calc(100% - 90px);

}
.contact_form dl.date {
  align-items: flex-start;
}
.contact_form dl.date dt{
  width: 90px;
}
.contact_form dl.date dt + dt{
  margin-left: 5px;
}
.contact_form dl.date dt select{
  width: 100%;
}
.contact_form dl.date dt.wide{
  width: 200px;
}
.contact_form dl.date dt.m,
.contact_form dl.date dt.d{
  width: 120px;
}
.contact_form dl.date dt.m select,
.contact_form dl.date dt.d select{
  width: calc(100% - 2em);
}
.contact_form dl.date dt.t{
  width: 150px;
}
.contact_form dl.date dt.t select{
  width: calc(100% - 5em);
}


.contact_form dl.addr dd{

}


.contact_form_addr{
  display: flex;
  align-items: center;
  margin: 0;
}
.contact_form_addr + .contact_form_addr{
  margin-top: 8px;
}
.contact_form_addr dt,
.contact_form_addr dd{
  margin: 0;
}
.contact_form_addr dt{
  width: 80px;
}
.contact_form_addr dd{
  width: calc(100% - 80px);
}

.contact_form_addr dd [name$="zipcode"]{
  width: 210px;
}
.contact_form_addr dd [name$="addr1"]{
  width: 210px;
}




.addr_auto_box{
  display: flex;
  align-items: center;
}
.addr_auto_box .zipcode{
  display: flex;
  flex-wrap: wrap;
}
.addr_auto_box .zipcode i{
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 15px;
  background: #cccccc;
  padding: 0 5px;
}
.addr_auto_box .zipcode input{

}

.addr_auto_box button{
  margin-left: 20px;
}


.contact_form td input ,
.contact_form td textarea ,
.contact_form td select {
  padding: 7px 10px;
  max-width: 100%;
  border-radius: 0;
}
.contact_form td.form_input input, .contact_form td textarea {
  padding: 7px 11px;
  width: 100%;
  height: 46px;
  border: 1px solid #d6d8d8;
  border-radius: 0;
}
.contact_form td textarea{
  height: 280px;
}
.contact_form td [name$="_zipcode"],
.contact_form td [name="zipcode"],
.contact_form td [name="addr1"]{
  width: 160px;
}
.contact_form td [name="addr1"]{
  width: 220px;
}
.contact_form td [name="addr2"]{
}


.contact_form td .addr_auto{
  background: #f0f0f0;
  border: 1px solid #d6d8d8;
  margin-left: 10px;
  padding: 5px 5px;
}


.contact_form_msg{
  margin-top: 10px;
  margin-bottom: 10px;
}

/* 確認画面用 */
.contact_form_acceptance {
  font-size: 15px;
  letter-spacing: 0.02em;
  text-align: center;
  margin-top: 26px;
}

.contact_form_acceptance a{
  color: #1a3e9b;
}
.contact_form_acceptance .mwform-checkbox-field.horizontal-item{
  margin-right: 0;
}


/* コンタクトフォーム - ボタン */

.contact_form_btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  padding: 13px 0;
}
.contact_form_btns button {
  width: 100%;
}
/*.contact_form_btns input[type="submit"],
.contact_form_btns input[type="button"],
.contact_form_btns button{
  background: #b80000;
  color: #FFF;
  border: 0;
  padding: 12px 10px;
  width: 315px;
  margin: 0 10px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.1em;
}*/
.contact_form_btns input[type="submit"],
.contact_form_btns input[type="button"],
.contact_form_btns button{
  background: url(/img/contact/blue_btn.png) no-repeat center / contain;
  color: #FFF;
  border: 0;
  padding: 12px 10px;
  width: 300px;
  margin: 0 10px;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 2;
  position: relative;
}
.contact_form_btns button:before{
  content: "";
  position: absolute;
  border: 1px solid #fff;
  inset: 12px 5px;
  pointer-events: none;
}
.contact_form_btns input[type="submit"],
.contact_form_btns input[type="button"],
.contact_form_btns button:hover {
  background: url(/img/contact/blue_btn2.png) no-repeat center / contain;

}
.contact_form_btns button:after{
  content: "";
  width: 31px;
  height: 7px;
  position: absolute;
  background: url(/img/contact/arrow.png) no-repeat right;
  pointer-events: none;
  top: 39%;
  right: 25px;
  transition: 0.2s;
}
.contact_form_btns button:hover:after{
  content: "";
  right: 10px;
}

.contact_form_btns input[type="submit"][disabled],
.contact_form_btns input[type="button"][disabled]{
  background: #CCC;
}
.contact_form_btns button[type="reset"]{
  background: #CCC;
}
.contact_form_btns .ajax-loader{
  order: 10;
  width: 100% !important;
  margin-top: 10px !important;
  background-repeat: no-repeat;
  background-position: center;
}

@media (max-width:767px){
  .contact_info .box2 .tel{
    font-size: 20px;
  }
  span.tel:after{
    width: 20px;
    height: 20px;
  }
}
@media (min-width:768px){
  .pg_xxx{

  }
  .pg_contact .section#sec1{
    padding-top: 115px
  }
  .pg_contact .section#sec2{
    padding-top: 69px
  }
  .pg_xxx .section.sec3{
  }
  /* sec1 */
  .contact_form tr {
    display: table-row;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .contact_form th{
    width: 257px;
  }
  .contact_form td {
    width: 76%;
  }
  .contact_form td{
    font-size: 14px;
    letter-spacing: 0.1em;
    background-color: #f5f5f5;
  }

  .contact_form th {
    padding: 8px 17px 8px 17px;
    font-weight: normal;
    text-align: left;
  }
  .contact_form td{
    padding: 8px 17px 8px 27px;
    font-weight: normal;
    text-align: left;
  }
  .contact_info_text {
    text-align: center;
  }
  .contact_info .box2{
    padding-top: 20px;
    line-height: 1;
  }
  .contact_info_text {
    padding-top: 144px;
  }
  th.form_space {
    vertical-align: top;
    padding-top: 1.5%;
  }
  .contact_form td.form_input input {
    padding: 7px 11px;
    width: 81%;
    height: 46px;
    border: 1px solid #d6d8d8;
    border-radius: 0;
  }
  .contact_form td textarea {
    padding: 7px 11px;
    width: 98.5%;
    height: 237px;
    border: 1px solid #d6d8d8;
    border-radius: 0;
  }
  th.form_space {
    padding-left: 84px;
  }
  .contact_form_btns{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    padding: 47px 0;
  }
  .contact_form_btns input[type="submit"], .contact_form_btns input[type="button"], .contact_form_btns button {
    width: 350px;
  }
  .contact_form_btns button:before{
    inset: 7px 5px;
  }
  .mwform_check_box_wrap {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .contact_form_acceptance{
    font-size: 15px;
    letter-spacing: 0.02em;
    text-align: center;
    margin-top: 76px;
  }
}
@media (min-width:1024px){
  .pg_contact .section#sec1{
    padding-top: 100px
  }

}
@media (min-width:1200px){


}
/* **********************************
 *  プライバシーポリシー
 * ********************************* */
.pg_contact .privacy{
  margin-top: 105px;
}

.privacy_wrap {
  padding: 35px 5.85%;
  background-color: #f7f7f7;
  box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.2);
}

.privacy_items{

}
.privacy_txt_top {
  font-size: 16px;
  letter-spacing: 0.075em;
  line-height: 2;
}
.privacy_items .item{
  line-height: 2;
  letter-spacing: 0.025em;
}
.privacy_items .item + .item{
  margin-top: 43px;
}
.privacy_title {
  background-color: #fff;
  padding: 7px 0;
  border-left: 5px solid #3393bb;
  margin-bottom: 20px;
}
.privacy_items .item h4{
  font-size: 18px;
  font-weight: 400;
  padding-left: 20px;
  line-height: 1.77;
  letter-spacing: 0.075em;
}


.privacy_items .item ul.latin{
  list-style: lower-latin;
}

.privacy_items .item ul li{

}
.privacy_txt li {
  list-style: none;
  text-indent: -1em;
  padding-left: 1em;
}



@media (min-width:768px){
  .pg_xxx{

  }
  .pg_xxx .section.sec1{
  }
  .pg_xxx .section.sec2{
  }
  .pg_xxx .section.sec3{
  }

}
@media (min-width:1024px){

}
@media (min-width:1200px){

}

/* **********************************
 *  開発設計 Business 01
 * ********************************* */
.pg_busi_01{

}
.pg_busi_01 .section#sec1 {
  margin-top: 143px;
}
.pg_busi_01 .section#sec2{

}
.pg_busi_01 .section#sec3{

}

.busi_title{
  position: relative;
  padding: 10px 0;
  margin-bottom: 30px;
  z-index:0;
}

.busi_title:after {
  content: "";
  width: 100vw;
  height: 45px;
  background: #e4f7ff;
  position: absolute;
  z-index: 0;
  top: 0;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  z-index: 1;
}
.busi_title_ja{
  position: relative;
  font-size: 20px;
  line-height: 1.153;
  letter-spacing: 0.1em;
  color: #181818;
  z-index: 5;
}

.busi_title_en {
  font-size: 38px;
  line-height: 1;
  position: absolute;
  z-index: 1;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: #e4f7ff;
  bottom: 105%;
}


/* アイテム */

.busi_01_item {

}
.busi_01_wrap {
  margin-top: 122px;
}

.busi_01_wrap:nth-child(2) {
  margin-top: 123px;
}
.busi_01_wrap:nth-child(4) {
  margin-top: 100px;
}
.busi_01_item_inner {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}
.busi_01_item_box1{
  width:100%;
}
.busi_01_img.img_fit {
  margin-bottom: 10px;
}
.busi_01_img.img_fit:before {
  content: "";
  display: block;
  padding-top: 70.67%;
}
.busi_01_item_box2{
  width:100%;
}
.busi_01_text_top{
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.075em;
  text-align: justify;
  margin-bottom: 20px;
}
.busi_01_text_box{
  padding-top: 50px;
}
.busi_01_text_box{
  background-color: #f7f7f7;
  padding: 23px 10px;
  border-radius: 3px;
  box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.20);
}
.busi_01_text_box_title{
  font-size: 20px;
  line-height: 1.6;
  letter-spacing: 0.1em;
  padding-bottom: 16px;
  text-align: center;
}
.busi_01_text_box_bottom{
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: left;
  align-items: center;
}
.busi_01_text_box_bottom li {
  position: relative;
  font-size: 17px;
  line-height: 2.117;
  letter-spacing: 0.10em;
  margin-left: 21px;
}
span.text_small {
  font-size: 12px;
}
.busi_01_text_box_bottom li:before {
  position: absolute;
  content: "\f14a";
  font-family: "Font Awesome 5 Free";
  left: -25px;
  -webkit-transform: translateY(-50%);
  transform: translateY(0%);
  color: #3393bb;
  font-size: 17px;
  font-weight: 900;
}
@media (max-width:375px){
  .busi_01_wrap {
    margin-top: 116px;
  }
}
@media (min-width:768px){
  .pg_busi_01 .section#sec1 {
    margin-top: 185px;
  }
  .busi_title {
    margin-bottom: 88px;
  }

  .busi_title_en {
    font-size: 55px;
  }
  .busi_title_ja{
    position: relative;
    font-size: 26px;
    line-height: 1.153;
    letter-spacing: 0.1em;
    color: #181818;
    padding-top: 5px;
    z-index: 5;
  }
  /* タイトル青の帯 */
  .busi_title:after {
    content: "";
    width: 100vw;
    height: 68px;
    background: #e4f7ff;
    position: absolute;
    z-index: 0;
    top: -7px;
    bottom: 0;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    z-index:1;
  }

  /* アイテム */

  .busi_01_wrap {
    margin-top: 0px;
    margin-bottom: 200px;
  }
  .busi_01_item_inner {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: nowrap;
  }
  .busi_01_wrap:nth-child(2) {
    margin-top: 200px;
  }
  .busi_01_item_box1{
    width:48.6%;
  }
  .busi_01_item_box2{
    width:45.4%;
  }
  .busi_01_wrap:nth-child(odd) .busi_01_item_box1 {
    order: 2;
  }
  .busi_01_wrap:nth-child(odd) .busi_01_item_box2 {
    order: 1;
  }
  .busi_01_wrapr:nth-child(even) .busi_01_item_box1 {
    order: 1;
  }
  .busi_01_wrapr:nth-child(even) .busi_01_item_box2 {
    order: 2;
  }
  .busi_01_text_top {
    margin-top: -9px;
    margin-bottom: 20px;
  }
  .busi_01_text_box_bottom li {
    margin-left: 35px;
  }
  span.text_small {
    font-size: 17px;
  }

}

@media (min-width:1024px){
  .busi_title_en{
    font-size: 70px;
  }

}
@media (min-width:1024px) and (max-width:1199px){

  .busi_01_item br.pc{
    display: none;
  }
  .bisi_02_con_bttext br.pc{
    display: none;
  }

}
@media (min-width:1200px){


}

/* **********************************
 *  02 information 会社案内
 * ********************************* */
.pg_info _01{

}
.pg_info .section#sec1 {
  margin-top: 90px;
}
.pg_info .section#sec2 {
  margin-top: 80px;
}
.pg_info .section#sec3{
  margin-top: 80px;
}

.info_title{
  position: relative;
  padding: 10px 0;
  z-index:0;
}
.info_title:after {
  content: "";
  width: 100vw;
  height: auto;
  background: #e4f7ff;
  position: absolute;
  z-index: 0;
  top: 0;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  z-index:1;
}
.info_title_ja{
  position: relative;
  font-size: 20px;
  line-height: 1.153;
  letter-spacing: 0.1em;
  color: #181818;
  z-index: 5;
}
.info_title_en{
  font-size: 38px;
  line-height: 1;
  position: absolute;
  z-index: 1;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: #e4f7ff;
  bottom: 90%;
}


/* アイテム */

.info_vision_item {
  margin-top: 40px;
}

.info_vision_title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.526;
  letter-spacing: 0.1em;
}
.info_vision_title {
  text-align: center;
}
.info_vision_title {
  margin-bottom: 20px;
}

.info_vision_text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin-bottom: 2em;
}

/* テーブル */

.info_outline_item {
  margin-top: 38px;
}
.info_outline_table{

}
.info_outline_table tr {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-content: flex-start;
}
.info_outline_table th{
  position: relative;
  width: 100%;
}
.info_outline_table td{
  position: relative;
  width: 100%;
}
.info_outline_table th{

}

.info_outline_table th:before {
  content: "";
  display: block;
  border-top: 1px solid #86898b;
  background: #86898b;
  position: absolute;
  bottom: 0;
  left: auto;
  right: 0;
  width: calc(100% - -0%);
}

.info_outline_table td:before {
  content: "";
  display: block;
  border-top: 1px solid #95d1ee;
  background: #95d1ee;
  position: absolute;
  bottom: 0;
  left: auto;
  right: 0;
  width: calc(100% - 0%);
}
.info_outline_table th, .info_outline_table td {
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.075em;
}
.info_outline_table th {
  vertical-align: top;
  padding: 19px 19px 12px 12px;
  text-align: left;
}
.info_outline_table td {
  padding: 19px 10px 12px 12px;
}
.enkakuwrap {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
}
.enkaku1 {
  width: 130px;
}
.enkaku3 {
  width: 146px;
  padding-right: 5px;
}

/*修正テーブル行間詰め */
td.small_text2 {
  line-height: 1.8;
}

/* MAP */
.info_access_item{
  margin-top: 68px;
}

.info_access_inner{

}
.info_access_box1 {
  margin-bottom: 35px;
}
.info_access_box1 {
  width: 100%;
}
.info_access_box2{
  width: 100%;
}
.info_access_text{
  font-size: 15.56px;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.1em;
  margin-bottom: 2em;
}
/* 修正フォントサイズ・調整 */
td.small_text {
  font-size: 14px;
  line-height: 1.8;
}
@media (min-width:425px){
  .enkaku3 {
    width: 135px;
    padding-right: 0px;
  }
}

@media (min-width:768px){
  .pg_info .section#sec1 {
    margin-top: 175px;
  }
  .pg_info .section#sec2 {
    margin-top: 195px;
  }
  .pg_info .section#sec3{
    margin-top: 209px;
  }
  .info_vision_item{
    margin-top: 82px;
  }

  .info_title:after {
    height: 68px;
  }
  .info_title_en {
    font-size: 55px;
  }
  .info_title_ja{
    position: relative;
    font-size: 26px;
    line-height: 1.153;
    letter-spacing: 0.1em;
    color: #181818;
    padding-top: 9px;
    z-index: 5;
  }

  .info_vision_title {
    font-size: 38px;
    font-weight: 600;
    line-height: 1.526;
    letter-spacing: 0.1em;
  }
  .info_vision_title {
    margin-bottom: 42px;
  }
  .info_vision_item{
    margin-top: 82px;
  }
  .info_vision_text{
    line-height: 2;
  }
  /* テーブル沿革ずれ修正 */
  .enkaku3 {
    width: 129px;
    padding-right: 0px;
  }

  /* テーブル */
  .info_outline_table tr {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: flex-start;
  }

  .info_outline_table th{
    position: relative;
    width: 22.97%;
  }
  .info_outline_table td{
    position: relative;
    width: 77.02%;
  }
  .info_outline_table th {
    font-weight: 400;
    vertical-align: top;
    padding: 19px 19px 12px 24px;
    text-align: center;
  }
  .info_outline_table td {
    padding: 19px 10px 12px 34px;
  }
  .info_outline_table th:before {
    content: "";
    display: block;
    border-top: 1px solid #86898b;
    background: #86898b;
    position: absolute;
    bottom: 0;
    left: -1px;
    right: 0;
    width: calc(100% - -5.3%);
  }
  .info_outline_table td:before {
    content: "";
    display: block;
    border-top: 1px solid #95d1ee;
    background: #95d1ee;
    position: absolute;
    bottom: 0;
    left: -2px;
    right: 0;
    width: calc(100% - -0.8%);
  }
  /* MAP */
  .info_access_inner {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
  }
  .info_access_box2 {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
  }
  .info_access_box1 {
    width: 48.64%;
  }
  .info_access_box2{
    width: 40.09%;
  }
}
@media (min-width:1024px){
  .info_title_en{
    font-size: 70px;
  }

}
@media (min-width:1200px){

}

/* **********************************
 *  07　採用情報　Recruit
 * ********************************* */
.pg_recruit {

}

.pg_recruit .section#sec1 {
  margin-top: 100px;
}
.pg_recruit .section#sec2 {
  margin-top: 80px;
}
.pg_recruit .section#sec3{
  margin-top: 115px;
}

.recruit_title {
  position: relative;
  padding: 10px 0;
  z-index:0;
}

.recruit_title:after {
  content: "";
  width: 100vw;
  height: 50px;
  background: #e4f7ff;
  position: absolute;
  z-index: 0;
  top: 0;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  z-index: 1;
}
.recruit_title_ja {
  position: relative;
  font-size: 20px;
  line-height: 1.153;
  letter-spacing: 0.1em;
  color: #181818;
  z-index: 5;
}
.recruit_title_en{
  font-size: 38px;
  line-height: 1;
  position: absolute;
  z-index: 1;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: #e4f7ff;
  bottom: 90%;
  white-space: nowrap;
}
/* Message メッセージ */
.recruit_message_item{
  margin-top: 41px;

}
.recruit_message_title{
  font-size: 20px;
  line-height: 1.526;
  letter-spacing: 0.1em;
  font-weight: 600;
  text-align: center;
  margin-bottom: 24px;
}
.recruit_message_text{
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.1em;
}
/* Strengths 当社の魅力 */
.recruit_streng_wrap {
  margin-top: 40px;
}
.recruit_streng_wrap_inner{
  position: relative;
}

.recruit_streng_wrap_inner:before {
  content: "";
  width: 100vw;
  height: 511px;
  background: url(/img/recruit/recruit_back.jpg) repeat center / contain;
  position: absolute;
  bottom: -11%;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  z-index: -1;
}
.recruit_streng_item {
  width: 100%;
}
.recruit_streng_item {
  padding-bottom: 20px;

}
.recruit_streng_item_inner {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-content: center;
  align-items: center;
  box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.2);
}
.recruit_streng_item_inner {
  padding: 31px 30px 21px 30px;
  background: #f7f7f7;
  height: 100%;
}
.recruit_streng_item_title {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
  text-align: center;
}

.recruit_streng_item_img{
  padding: 8px 0px 19px 0px;
}

.recruit_streng_item_txt{
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
  text-align: justify;
}
.recruit_streng_text_wrap {
  margin-top: 20px;
}

.recruit_streng_text_wrap {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}
.recruit_streng_text_title {
  font-size: 20px;
  line-height: 1.764;
  font-weight: 400;
  letter-spacing: 0em;
  text-align: justify;
}
.recruit_streng_text_bottom{
  font-size: 18px;
  line-height: 2;
  font-weight: 400;
  letter-spacing: 0em;
}
.recruit_streng_text_bottom {
  text-align: center;
}
/* Job Description 募集要項 */

.recruit_job {
  margin-top: 40px;
}
.recruit_job_item {
  margin-bottom: 25px;
}
.recruit_job_text_wrap{
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-content: center;
  align-items: center;
  background: #f7f7f7;
  box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.2);
}
.recruit_job_text_inner {
  padding: 27px 30px 0px 30px;
  max-width: 535px;
}
.recruit_job_text_title {
  text-align: justify;
  position: relative;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.1em;
  padding-bottom: 23px;
}
i.fas.fa-check-square {
  color: #3393bb;
}
.recruit_job_text {
  margin-bottom: 30px;
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.075em;
  text-align: justify;
}
.recruit_job_text a {
  color: #005d91;
  text-decoration: underline;
}

@media (max-width:767px){

  .recruit_streng_text_title {
    text-align: center;
    margin-bottom: 10px;
  }
  .recruit_streng_text_bottom{
  }

  .home_service .item .en.sp{
    position: relative;
  }
  /*  .home_service .item .en.sp:before{
      content: "";
      display: block;
      width: 5px;
      height: 1px;
      background: #fff;
      position: absolute;
      top: 50%;
    left: -10px;
    transform: translateY(-50%);
    }
    .home_service .item .en.sp:after{
       content: "";
      display: block;
      width: 5px;
      height: 1px;
      background: #fff;
      position: absolute;
      top: 50%;
    right: -10px;
    transform: translateY(-50%);
    }*/

  .home_achiev_msg{
    display: flex;
    justify-content: center;
    padding-left: 28px;
  }

  .busi_01_text_box_bottom li.double{
    line-height: 1.3em;
  }
  .busi_01_text_box_bottom li:nth-child(n+2){
    margin-top: 14px;
  }
  .pg_news .news_inner .item{
    padding: 10px 50px 20px 10px;
  }
  .post_items .item:after{
    bottom: 28px;
  }
}
@media (min-width:768px){

  .pg_xxx{

  }
  .pg_recruit .section#sec1 {
    margin-top: 175px;
  }
  .pg_recruit .section#sec2 {
    margin-top: 190px;
  }
  .pg_recruit .section#sec3{
    margin-top: 191px;
  }

  .recruit_title_en{
    font-size: 55px;
  }
  .recruit_title_ja {
    font-size: 26px;
  }
  .recruit_title {
    position: relative;
    padding: 20px 0;
    z-index: 0;
  }
  .recruit_title:after {
    content: "";
    width: 100vw;
    height: 68px;
    background: #e4f7ff;
    position: absolute;
    z-index: 0;
    top: 0;
    bottom: 0;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    z-index:1;
  }
  /* Message メッセージ */
  .recruit_message_item {
    margin-top: 70px;
  }

  .recruit_message_title{
    font-size: 34px;
    margin-bottom: 41px;
  }

  /* Strengths 当社の魅力 */
  .recruit_streng_wrap {
    margin-top: 80px;
  }
  .recruit_streng_wrap_inner {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-content: space-between;
  }
  .recruit_streng_item_title {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.6;
    text-align: center;
    height: 45px;
  }
  .recruit_streng_item {
    width: 50%;
    padding: 0 15px;
  }
  .recruit_streng_item {
    padding-bottom: 20px;
  }
  .recruit_streng_text_wrap {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: center;
    align-items: center;
  }

  .recruit_streng_text_wrap {
    margin-top: 89px;
  }
  .recruit_streng_item_title {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
  }
  .recruit_streng_text_title{
    font-size: 34px;
  }
  .recruit_streng_text_bottom{
    font-size: 30px;
  }

  /* Job Description 募集要項 */
  .recruit_job {
    margin-top: 80px;
  }
  .recruit_job_text_title{
    text-align: center;
    position: relative;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.1em;
    padding-bottom: 23px;
  }
  .recruit_job_text {
    margin-bottom: 30px;
  }
}

@media (min-width:1024px){
  .recruit_title_en{
    font-size: 70px;
  }
  .recruit_streng_item {
    width: 25%;
    padding: 0 15px;
  }
  .recruit_streng_wrap_inner:before {
    content: "";
    width: 1920px;
    height: 511px;
    background: url(/img/recruit/recruit_back.jpg) repeat center / contain;
    position: absolute;
    bottom: -30%;
    z-index: -1;
  }
}
@media (min-width:1200px){
  .recruit_message_title{
    font-size: 38px;
  }

}


/* **********************************
 *  04　事業推進　busi-02
 * ********************************* */
.pg_bus_02 {

}

.pg_busi_02 .section#sec1 {
  margin-top: 90px;
}
.pg_busi_02 .section#sec2 {
  margin-top: 80px;
}
.pg_busi_02 .section#sec3{
  margin-top: 115px;
}

.busi_02_title {
  position: relative;
  padding: 10px 0;
  z-index:0;
}

.busi_02_title:after {
  content: "";
  width: 100vw;
  height: 44px;
  background: #e4f7ff;
  position: absolute;
  z-index: 0;
  top: 0;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  z-index: 1;
}
.busi_02_title_ja {
  position: relative;
  font-size: 20px;
  line-height: 1.153;
  letter-spacing: 0.1em;
  color: #181818;
  z-index: 5;
}
.busi_02_title_en{
  font-size: 38px;
  line-height: 1;
  position: absolute;
  z-index: 1;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: #e4f7ff;
  bottom: 90%;
}

/* コンサルティング業務 */

.busi_02_con_wrap {
  margin-top: 40px;
  margin-bottom: 40px;
}
.busi_02_con_wrap_inner {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}
.busi_02_con_box1{
  width:45.045%;
}
.busi_02_con_text{
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.075em;
  text-align: justify;
}
.busi_02_con_box1{
  width:100%;
}
.busi_02_con_box2{
  width:100%;
  margin-bottom: 20px;
}
.busi_02_con_box1 {
  order: 2;
}
.busi_02_con_box2{
  order: 1;
}
.busi_02_con_img.img_fit:before {
  padding-top: 70.666%;
}
/* コンサルティング業務 下部テキスト */
.bisi_02_con_bttext_wrap{
  padding: 30px 30px;
  background: #f7f7f7;
  box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.2);
}
.bisi_02_con_bttext_wrap{
  margin-bottom: 27px;
}
.bisi_02_con_bttext {

}


.bisi_02_con_bttext_title {
  font-size: 17px;
  line-height: 1.8;
  letter-spacing: 0em;
  margin-left: 15px;
  margin-bottom: 11px;
  text-indent: -0.7em;
  padding-left: 0.5em;
}
.bisi_02_con_bttext_title i.fas.fa-check-square {
  color: #3393bb;
  margin-right: 11px;
}


.bisi_02_con_bttext .txt {
  font-family: Noto Serif JP;
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.075em;
  text-align: justify;
}
.bisi_02_con_bttext_outside{
  position: relative;
}
.bisi_02_con_bttext_outside:before {
  content: "";
  width: 100vw;
  height: 734px;
  background: url(/img/busi_02/business_02back.jpg) repeat center center / contain;
  position: absolute;
  left: 50%;
  bottom: -6%;
  z-index: -1;
  transform: translateX(-50%);
}


@media (min-width:768px){
  .pg_busi_02 .section#sec1 {
    margin-top: 172px;
  }
  .pg_busi_02 .section#sec2 {
    margin-top: 190px;
  }
  .pg_busi_02 .section#sec3{
    margin-top: 191px;
  }

  .busi_02_title_en{
    font-size: 55px;
  }
  .busi_02_title_ja {
    font-size: 26px;
  }
  .busi_02_title {
    position: relative;
    padding: 20px 0;
    z-index: 0;
  }

  /* コンサルティング業務 */
  .busi_02_con_wrap {
    margin-top: 80px;
    margin-bottom: 57px;
  }
  .busi_02_con_wrap_inner {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .busi_02_con_box1{
    width:45.045%;
  }
  .busi_02_con_box2{
    width:48.648%;
  }
  .busi_02_con_box1 {
    order: 1;
  }
  .busi_02_con_box2{
    order: 2;
  }
  .busi_02_con_text {
    margin-top: -7px;
  }

  .busi_02_title:after {
    content: "";
    width: 100vw;
    height: 68px;
    background: #e4f7ff;
    position: absolute;
    z-index: 0;
    top: 0;
    bottom: 0;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    z-index:1;
  }
  .bisi_02_con_bttext_wrap {
    padding: 30px 65px 24px 65px;
    background: #f7f7f7;
    box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.2);
  }
  .bisi_02_con_bttext_title{
    font-size: 20px;
    line-height: 1.8;
    letter-spacing: 0.1em;
    margin-left: -26px;
    margin-bottom: 12px;
  }
  .bisi_02_con_bttext_title {
    font-size: 19px;
    line-height: 1.8;
    letter-spacing: 0.1em;
    margin-left: 16px;
    margin-bottom: 11px;
    text-indent: -0.7em;
    padding-left: 0.5em;
  }
  .bisi_02_con_bttext .txt {
    font-family: Noto Serif JP;
    font-size: 16px;
    line-height: 2;
    letter-spacing: 0.075em;
    text-align: justify;
  }
}
@media (min-width:1024px){
  .busi_02_title_en {
    font-size: 70px;
  }
}
@media (min-width:1200px){

}

