@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 Sans JP', "游明朝体", "Yu Mincho", YuMincho, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 16px;
  line-height: 2;
  color: #181818;
}

/* 基本フォント: 明朝 */
/**/
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;
}
.outfit{
  font-family: 'Outfit', sans-serif;
}

a{
  color: inherit;
  text-decoration: none;
  transition: 0.2s;
}
a:hover{
  text-decoration: none;
  opacity: 0.7;
}

img{
  max-width: 100%;
}
a:hover img{
  opacity: 0.8;
}

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: 738px;
}

/* 指定デバイスのみで表示するclass */
@media (min-width:1200px){
  .md:not(.pc){
    display: none;
  }
  .tb:not(.pc){
    display: none;
  }
  .sp:not(.pc){
    display: none;
  }
}
@media (min-width:1024px) and (max-width:1199px){
  .pc:not(.md){
    display: none;
  }
  .tb:not(.md){
    display: none;
  }
  .sp:not(.md){
    display: none;
  }
}
@media (min-width:768px) and (max-width:1023px){
  .pc:not(.tb){
    display: none;
  }
  .md:not(.tb){
    display: none;
  }
  .sp:not(.tb){
    display: none;
  }
}
@media (max-width:767px){
  .pc:not(.sp){
    display: none;
  }
  .md:not(.sp){
    display: none;
  }
  .tb:not(.sp){
    display: none;
  }
}

/* **********************************
 *  コンテナ
 * ********************************* */
.wrapper{
  overflow-x: hidden;
}
.container{
  width: 1140px;
  padding: 0 15px; 
  margin: 0 auto;
}
@media(max-width:1139px){
  .container{
    width: 100%;
  }
}
.section{
  width: 100%;
  /*margin-bottom: 50px;*/
  /*padding: 30px 0;*/ 
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.pg_header{ 
  height: 230px;
  margin-bottom: 50px;
}
.pg_header .box{
  width: 100%;
  position: absolute;
  left: 15px;
  top: 49%;
  transform: translateY(-50%);
  z-index: 1;
}
.pg_header .container{ 
  height: 100%;
  position: relative;
}
.pg_header .img{
  width: calc(100% + 15px);
  height: 100%;
  clip-path: polygon(47.5% 0, 100% 0, 100% 100%, 0% 100%);
  -webkit-clip-path: polygon(47.5% 0, 100% 0, 100% 100%, 0% 100%);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.tt1{
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
  font-style: italic;
  letter-spacing: 0.15em;
}
.tt1 span{
  font-size: 42px;
  margin-bottom: 15px;
  display: block;
  color: #1f2774;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.05em;
}

/* 共通の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{
  width: 100%;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 5;
}
header .hdr1{
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
}
header .hdr_logo img{
  width: 200px;
}
header .hdr_contact{
  padding-top: 10px;
  display: flex;
  align-items: center;
  font-style: italic;
}
header .entry_form{
  width: 160px;
  font-size: 18px;
  padding: 2px;
  margin-left: 25px;
  background: #1f2774;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.075em;
  font-style: italic;
  text-align: center;
}

@media (max-width:767px){
  body{
    padding-bottom: 65px;
  }
  header .entry_form{
    display: none;
  }
}
@media (min-width:768px){
  header {
    padding: 15px 20px;
    padding-right: 15px;
    justify-content: space-between;
  }
  header .entry_form {
    width: 130px;
    margin-left: 15px;
  }

}
@media (min-width:1024px){
  header {
    padding: 15px 35px;
  }
  header .hdr_logo img{
    width: 300px;
  }
  header .entry_form{
    width: 160px;
    margin-left: 25px;
  }

}
@media (min-width:1200px){
}
@media (min-width:1450px){
  header .hdr_logo img{
    width: auto;
    margin-top: 10px;
  }
}


/* **********************************
 *  グローバルナビ
 * ********************************* */
.gnav{
}
.gnav > ul{
  margin-left: -15px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  text-align: center;
}
.gnav > ul > li{
  position: relative;
}
.gnav > ul > li.menu-item-has-children:after{
  content: "\f0d7";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #FFF;
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.gnav li a{
  font-size: 15px;
  padding-left: 15px;
  font-weight: 700;
  text-decoration: none;
  display: block;
}
.gnav li a:hover{
  text-shadow: 0 0 2px #fff;
}

.gnav .children,
.gnav .sub-menu{
  display: none;
  background: #aaa;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 1;
}
.gnav li:hover > .children,
.gnav li:hover > .sub-menu{
  display: block;
}


@media (max-width:767px){

  .gnav{
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #FFF;
    padding: 0;
    z-index: 99999;
    overflow-y: scroll;

    /*transition: all 0.2s;*/
    transform: translateX(100%);
    padding: 15px;
  }
  .gnav.active{
    transform: translateX(0%);
  }
  .gnav > ul{
    display: block;
    margin-left: 0;
  }
  .gnav > ul > li{
    width: 100%;
    padding: 10px 0;
    border: 0;
    border-bottom: 1px dashed #CCC;
  }
  .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: 10px 0;
  }
  .gnav .children, .gnav .sub-menu{
    display: block;
    position: static;
    background: #EEE;
  }
}
@media (min-width:768px){
  .gnav{
    margin-left: -10px;
  }
  .gnav > ul{
    max-width: 370px;
  }
  .gnav li a{
    font-size: 13px;
    padding-left: 10px;
  }
  .gnav li:not(:first-child) a:before{
    content: "／";
    display: inline-block;
    margin-right: 10px;
  }
  .gnav li#menu-item-152{
    display: none;
  }
}
@media (min-width:1024px){  
  .gnav{
    margin-left: -15px;
  }
  .gnav > ul{
    max-width: 550px;
  }
  .gnav li a{
    font-size: 15px;
    padding-left: 15px;
  }
  .gnav li:not(:first-child) a:before{
    margin-right: 15px;
  }
}
@media (min-width:1200px){  
}
@media (min-width:1450px){
  .gnav > ul{
    max-width: inherit;
  }
}





/* **********************************
 *  フッター
 * ********************************* */
footer{
  margin-top: 80px;
}

footer .ftr1{
  padding-bottom: 34px;
  border-bottom: 1px solid #a6a6a6;
  position: relative;
}
footer .ftr1:after{
  content: "";
  width: 100%;
  height: calc(100% - 25px);
  position: absolute;
  left: 0;
  top: 25px;
  background: #f8f8f8;
  z-index: -2;
}
.ftr1_box1 {
  color: #ffffff;
  position: relative;
  text-align: center;
}
.ftr1_box1:after{
  content: "";
  width: 1000%;
  height: calc(100% - 50px);
  position: absolute;
  top: 25px;
  left: -100%;
  background: #dc0314;
  z-index: -1;
}
.ftr1_box1 .img{
  width: 60%;
  margin: 0 auto;
  text-align: center;
}
.ftr1_box1 .ttl{
  font-size: 24px;
  margin-bottom: 10px;
  font-weight: 900;
  letter-spacing: 0.075em;
}
.ftr1_box1 .text{
  letter-spacing: 0.05em;
  font-weight: 700;
}
.ftr1_box1 .link {
  max-width: 350px;
  font-size: 18px;
  margin: 30px auto 0;
  padding: 6px;
  display: block;
  border: 1px solid;
  font-weight: 700;
  letter-spacing: 0.075em;
  position: relative;
}
.ftr1_box1 .link:hover{
  background: #ffffff;
  color: #dc0314;
  opacity: 1;
}
.ftr1_box1 .link:after{
  content: "→";
  font-size: 15px;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.ftr1_box2{
  margin-top: 80px;
}
.ftr1_box2 .item a{
  height: 110px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #fff20d;
  text-align: center;
}
.ftr1_box2 .min{
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.075em;
}
.ftr1_box2 .tel_num{
  font-size: 26px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.4;
}
.ftr1_box2 .tel_num:before{
  margin-right: 10px;
  content: "\f879";
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  display: inline-block;
}
.ftr1_box2 .form_ttl{
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.075em;
}
.ftr1_box2 .form_ttl:before{
  font-size: 26px;
  margin-right: 10px;
  content: "\f0e0";
  font-family: 'Font Awesome 5 free';
  font-weight: 900;
}
.ftr1_box2 .form_ttl span{
  font-size: 26px;
  font-weight: 500;
}

footer .ftr2{
  padding-top: 60px;
  text-align: center;
}
footer .ftr2 .logo{
  max-width: 310px;
  margin-bottom: 30px;
  display: inline-block;
}
footer .ftr2 .ftr_addr {
  letter-spacing: 0.075em;
}
footer .ftr_links{
  max-width: 738px;
  margin-left: auto;
  margin-right: auto;
  padding: 25px 0;
  margin-top: 23px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  border-top: 1px solid #a6a6a6;
  border-bottom: 1px solid #a6a6a6;  
}
footer .ftr_links li{
  font-size: 15px;
  line-height: 1;
  padding-left: 15px;
  font-weight: 500;
  font-style: italic;
}
footer .ftr_links li:nth-child(n+7){
  margin-top: 15px;
}
footer .ftr_links li:not(:first-child):before{
  content: "／";
  margin-right: 15px;
}

footer .copy{
  text-align: center;
  font-size: 14px;
  padding: 42px 0;
  font-weight: 500;
}
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: 12px;

  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.footer_fix ul li{
  /*display: table-cell;*/
  text-align: center;
  /*vertical-align: middle;*/
}
.footer_fix ul li.btn1{
  width: 26%;
  border-right: 1px solid #eee20f;
}
.footer_fix ul li.btn2{
  width: 22%;
}
.footer_fix ul li a{
  display: block;
  padding: 10px 5px 5px;
  background: #fff20d;
  text-decoration: none;
}
.footer_fix ul li.entry a{
  background: #1f2774;
  color: #FFF;
}
.footer_fix ul li.btn2 a{
  background: #696969;
  color: #FFF;
}
.footer_fix ul li a i{
  font-size: 26px;
  display: block;
}

@media (max-width:767px){  
  .ftr1_box1 .txt{
    margin: 30px 0;
  }
  .ftr1_box2 .item + .item{
    margin-top: 15px;
  }
  footer .ftr_links{
    display: none;
  }
  footer .copy{
    padding: 15px 0;
    margin-top: 20px;
    border-top: 1px solid #a6a6a6;
  }
  .footer_fix{
    display: flex;
  }
}
@media (min-width:768px){  
  footer{
    margin-top: 100px;
  }
  footer .ftr1{
    padding-bottom: 54px;
  }
  .ftr1_box1 {
    display: flex;
    align-items: center;
  }
  .ftr1_box1 .img{
    width: 26%;
  }
  .ftr1_box1 .txt{
    width: 48%;    
  }
  .ftr1_box1 .ttl{
    font-size: 30px;
  }
  .ftr1_box1 .link {
    max-width: 250px;
    margin-top: 25px;
  }
  .ftr1_box1:after {
    height: calc(100% - 15px);
    top: 8px;
  }
  .ftr1_box2 {
    margin: 100px -15px 0;
    display: flex;
    flex-wrap: wrap;
  }
  .ftr1_box2 .item{
    width: 50%;
    padding: 0 15px;
  }
  .ftr1_box2 .min{
    font-size: 15px;
  }
  .ftr1_box2 .item a {
    height: 130px;
  }
  footer .ftr2{
    padding-top: 100px;
  }
}
@media (min-width:1024px){ 
  footer{
    margin-top: 150px;
  }
  footer .ftr1{
    padding-bottom: 84px;
  }
  .ftr1_box1 .ttl{
    font-size: 36px;
  }
  .ftr1_box1 .link {
    max-width: 350px;
    margin-top: 35px;
  }
  .ftr1_box1:after {
    height: calc(100% - 60px);
    top: 30px;
  }
  .ftr1_box1 .txt{
    padding-bottom: 20px;
  }
  .ftr1_box2{
    margin-top: 150px;
  }  
  .ftr1_box2 .tel_num{
    font-size: 32px;
  }
  .ftr1_box2 .form_ttl{
    font-size: 24px;
  }
  .ftr1_box2 .form_ttl:before,
  .ftr1_box2 .form_ttl span{
    font-size: 32px;
  }
  footer .ftr2{
    padding-top: 120px;
  }
  footer .ftr_links{
    max-width: inherit;
  }
  footer .ftr_links li{
    font-size: 15px;
    padding-left: 10px;
  }
  footer .ftr_links li:nth-child(n+7){
    margin-top: 0;
  }
  footer .ftr_links li:not(:first-child):before{
    margin-right: 10px;
  }
}
@media (min-width:1200px){
  footer{
    margin-top: 200px;
  }
  .ftr1_box2{
    margin-top: 204px;
  }
  footer .ftr2{
    padding-top: 150px;
  }
  footer .ftr_links li{
    padding-left: 15px;
  }
  footer .ftr_links li:not(:first-child):before{
    margin-right: 15px;
  }
}


/* 検索フォーム */
.pg_404{
  text-align: center;
  letter-spacing: 0.075em;
}

.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;
}


/* 記事リスト */
.post_items{
  padding: 0 0;
}
.post_items .item{
  /*background: #f0f0f0;*/
  padding: 10px 15px;
  border-bottom: 1px solid #4c4c4c;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
  background: #ffffff;
}
.post_items .item + .item{
  margin-top: 13px;
}
.post_items .item .img{

}
.post_items .item .date{
  width: 125px;
  font-size: 14px;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  letter-spacing: 0.1em;
  border-right: 1px solid;
  line-height: 1;
}
.post_items .item .category{
  width: 150px;
  padding: 0 10px;

}
.post_items .item .category span{
  display: block;
  background: #e5e5e5;
  color: #6c6969;
  padding: 3px;
  margin: 2px;
  text-align: center;
}
.post_items .item .title{
  font-size: 16px;
  font-weight: 500;
  width: calc(100% - 125px);
  padding-left: 25px;
  letter-spacing: 0.075em;
  /*width: -moz-available;
  width: -webkit-fill-available;
  width: available;*/
}
.post_items .item .title a{
  display: block;
  position: relative;
  padding-right: 150px;
}
.post_items .item:after{
  content: "";
  width: 97px;
  height: 11px;
  background: url(/img/home/news_arrow.png) no-repeat center right;
  position: absolute;
  right: 20px;
  top: calc(50% - 6px);
}

.post_items .item.single_item{
  display: flex;
  flex-wrap: wrap;
  border-top: 15px solid #d3d3d3;
  border-bottom: 1px solid #d3d3d3;
  border-left: 1px solid #d3d3d3;
  border-right: 1px solid #d3d3d3;
}
.post_items .item.single_item:after{
  display: none;
}
.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: 30px;
}

/* ページ送り(一覧) */
.pagination{
  text-align: center;
  margin-top: 50px;
}
.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: 2px 14px;
  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: space-between;
  align-items: center;
}
.pagination .nav-posts .page-next,
.pagination .nav-posts .page-prev{
  min-width: 200px;
}
.pagination .nav-posts .page-next a,
.pagination .nav-posts .page-prev a{
  display: block;
  border: 1px solid #c0c0c0;
  padding: 10px 50px;
  position: relative;
}
.pagination .nav-posts .page-next a:before,
.pagination .nav-posts .page-prev a:after{
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.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;
}

/* 検索 */
.search_list{
  background: #eee;
  padding: 15px;
}
.search_list .item{

}
.search_list .item + .item{

}

/* ページTOPに戻る */
.pagetop{
  display: none;
  position: fixed;
  right: 10px;
  bottom: 70px;
}
.pagetop a{
  display: block;
  font-size: 0;
  width: 42px;
  height: 42px;
  text-align: center;
  color: #5d66b4;
}
.pagetop a i{
  font-size: 40px;
}

/* コンタクトフォーム */
.contact_info{
  background: #f0f0f0;
  text-align: center;
  padding: 20px;
  margin-bottom: 100px;
}
.contact_info .box1{
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.14em;
}
.contact_info .box2{
  margin-top: 20px;
  background: #FFFFFF;
  padding: 20px 5px;
  line-height: 1;
}
.contact_info .box2 .icon{
  display: inline-block;
  font-size: 25px;
  font-weight: bolder;
  background: #8c8c8c;
  color: #FFFFFF;
  padding: 5px 15px;
  margin-right: 10px;
  vertical-align: middle;
  border-radius: 5px;
}
.contact_info .box2 .tel{
  display: inline-block;
  font-size: 44px;
  font-weight: bold;
  vertical-align: middle;
  font-weight: bold;
  letter-spacing: 0.2em;
}
.contact_info .box2 .tel a{
  display: block;
}
.contact_info .box2 .txt{
  display: inline-block;
  vertical-align: bottom;
  margin-left: 10px;
}

.contact_form{
  width: 100%;
  border: 1px solid #b2b2b2;
}
.contact_form tr{
  border-bottom: 1px solid #b2b2b2;
}
.contact_form th,
.contact_form td{
  padding: 15px;
  font-weight: normal;
  text-align: left;
}
.contact_form th{
  background: #f0f0f0;
  width: 300px;
}
.contact_form th .require{
  display: inline-block;
  padding: 2px 5px;
  color: #FFF;
  background: #b80000;
  font-size: 14px;
  font-weight: normal;
  float: right;
}
.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.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.addr dd{

}


.contact_form td .wpcf7-form-control-wrap{
  display: block;
}
.contact_form td .wpcf7-form-control-wrap + .wpcf7-form-control-wrap {
  margin-top: 5px;
}
.contact_form td .wpcf7-form-control ,
.contact_form td .wpcf7c-conf-hidden {
  padding: 10px;
  max-width: 100%;
  border: 1px solid #CCC;
  border-radius: 0;
}
.contact_form td .wpcf7-checkbox,
.contact_form td .wpcf7-radio{
  border: 0;
}
.contact_form td .wpcf7-text {
  width: 500px;
  max-width: 100%;
}
.contact_form td .wpcf7-textarea {
  width: 100%;
}
.contact_form td .wpcf7-file {
  width: 100%;
  border: 0;
}
.contact_form td .wpcf7-file + .wpcf7c-conf{
  width: 100%;
  border: 1px solid #398f14;
}
.contact_form td [name="zipcode"],
.contact_form td [name="addr1"]{
  width: 150px;
}
.contact_form td [name="addr1"]{
  width: 180px;
}
.contact_form td [name="addr2"]{
}
.contact_form td .wpcf7-form-control-wrap.zipcode{
  display: flex;
  align-items: stretch;
}
.contact_form td .wpcf7-form-control-wrap.zipcode:before{
  vertical-align: top;
  content: "〒";
  background: #CCC;
  width: 30px;
  padding: 0;
  margin: 0;
  border: 1px solid #CCC;
  border-right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.contact_form td .addr_auto{
  background: #f0f0f0;
  border: 1px solid #d6d8d8;
  margin-left: 10px;
  padding: 0 5px;
}

.contact_form td .wpcf7-checkbox, 
.contact_form td .wpcf7-radio{
  display: block;
}
.contact_form span.wpcf7-list-item{
  margin: 0 1em 0 0;
}


.contact_form_msg{
  margin-top: 10px;
  margin-bottom: 10px;
}

/* 確認画面用 */
.wpcf7c-conf:not([type="radio"]):not([type="checkbox"]){
  background: #eeffe4;
  -webkit-box-shadow: 0 0 0px 1000px #eeffe4 inset;
  border: 1px solid #398f14;
  opacity: 0.9;
}
.wpcf7c-conf:checked + .wpcf7c-conf-hidden + .wpcf7-list-item-label{
  color: #398f14;
}
/*input:-webkit-autofill,
textarea:-webkit-autofill, 
select:-webkit-autofill {
  background-color: #eeffe4 !important;
  background-image: none !important;
  color: #666 !important;
}*/ 


.contact_form_acceptance{
  text-align: center;
  margin-top: 20px;
}
.contact_form_acceptance a{
  color: #1a3e9b;
}
.contact_form_acceptance span.wpcf7-list-item{
  margin: 0;
}

/* コンタクトフォーム - ボタン */
.contact_form_btns{
  text-align: center;
  padding: 30px 0 0;
}
.contact_form_btns input[type="submit"],
.contact_form_btns input[type="button"]{
  background: #b80000;
  color: #FFF;
  border: 0;
  padding: 10px;
  width: 300px;
  margin: 0 10px;
}
.contact_form_btns input[type="submit"][disabled],
.contact_form_btns input[type="button"][disabled]{
  background: #CCC;
}
.contact_form_btns input.wpcf7-confirm{

}
.contact_form_btns input.wpcf7-back{
  background: #CCC;
}
.contact_form_btns input.wpcf7-submit{
  background: #398f14;
}


/* サイトマップ */
.sitemap_items{
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
}
.sitemap_items .item{
  width: 25%;
  padding: 0 10px;
  margin-bottom: 20px;
}
.sitemap_items .item h4{
  border: 1px solid #d3d3d3;
  border-bottom: 5px solid #d3d3d3;
}
.sitemap_items .item h4 a{
  display: block;
  padding: 20px 15px;
}
.sitemap_items .item ul{
}
.sitemap_items .item ul li{
  border-bottom: 1px dashed #d3d3d3;
  position: relative;
}
.sitemap_items .item ul li:before{
  content: "\f111";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 10px;
  position: absolute;
  top: 50%;
  left: 5px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.sitemap_items .item ul li a{
  display: block;
  padding: 5px 10px 5px 20px;
}


/* プライバシーポリシー */
.privacy_tt{
  text-align: center;
  margin-bottom: 30px;
}
.privacy_tt h3{
  font-size: 23px;
  font-weight: 500;
  letter-spacing: 0.2em;
}
.privacy_tt .dots{
  display: flex;
  justify-content: center;
  margin-top: 10px;
}
.privacy_tt .dots i{
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #c1c1c1;
  margin: 0 8px;
}

.privacy_items{

}
.privacy_items .item{
  line-height: 1.6;
}
.privacy_items .item + .item{
  margin-top: 40px;
}
.privacy_items .item h3{
  font-size: 18px;
  border-left: 6px solid #bbbbbb;
  padding: 10px 15px;
  margin-bottom: 10px;
  line-height: 1.5;
}
.privacy_items .item .txt{

}
.privacy_items .item ul{
  list-style: disc;
  margin-left: 2em;
  margin-top: 10px;
}
.privacy_items .item ul.latin{
  list-style: lower-latin;
}

.privacy_items .item ul li{

}
.privacy_items .item ol{
  margin-left: 2em;
  margin-top: 10px;
}


.breadcrumb{
  display: flex;
  list-style: none;
  margin-bottom: 20px;
  font-size: 14px;
  overflow-x: auto;
}
.breadcrumb li{
  display: inline;
  white-space: normal;
}
.breadcrumb li + li{
  margin-left: 10px;
}
.breadcrumb li:last-child{
  font-weight: 500;
}
.breadcrumb li a{
  position: relative;
  padding-right: 15px;
}
.breadcrumb li a:after{
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 12px;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.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%);
}

/* **********************************
 *  メイン
 * ********************************* */


.tt2{

}
.tt2 span{

}
.tt3{

}
.tt3 span{

}
.tt4{

}
.tt4 span{

}
.tt5{

}
.tt5 span{

}

/* 詳しく見る サンプル */
.read_more{

}
.read_more a{
  display: block;
  width: 290px;
  max-width: 100%;
  margin: 0 auto;
  padding: 15px 0;
  border-radius: 10px;
  background: #00a7c6;
  color: #FFF;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-align: center;
  position: relative;
}
.read_more a:after{
  /*content: "\f054";*/
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  right: 15px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}



/* **********************************
 *  お問い合わせ
 * ********************************* */
.pg_contact{

}
.pg_contact .section#sec1{

}
.pg_contact .section#sec2{

}
.pg_contact .section#sec3{

}

.contact_tt{
  text-align: center;
  font-weight: bold;
  font-size: 23px;
  letter-spacing: 0.2em;
}

.pg_contact .privacy{
  margin-top: 80px;
}


/* **********************************
 *  Home
 * ********************************* */

.mv{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.mv .mv_box{
  position: absolute;  
  left: 50px;
  bottom: 72px;
}
.mv .mv_box .en1,
.mv .mv_box .en2{
  font-size: 14vw;
  line-height: 1;
  color: #1f2774;
  position: relative;
  z-index: -1;
  font-weight: 700;
  letter-spacing: 0.015em;
}
.mv .mv_box .en2{
  opacity: 0.5;
  position: absolute;
  bottom: 60px;
  left: 0;
  z-index: 1;
}
.mv .mv_box .ja{
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.075em;
  font-style: italic;
  line-height: 1.5;
}
.mv .img{
  width: 78.95%;
  height: 480px;
  margin-left: auto;
  background: url(/img/home/mv.jpg) no-repeat 72% bottom / cover;
  clip-path: polygon(47.5% 0, 100% 0, 100% 100%, 0% 100%);
  -webkit-clip-path: polygon(47.5% 0, 100% 0, 100% 100%, 0% 100%);
  position: relative;
}
.mv .scroll{
  width: 10px;
  position: absolute;
  left: 15px;
  bottom: 85px;
}


@media (max-width:767px){
}
@media (min-width:768px){
  .mv .mv_box{
    left: 72px;
  }
  .mv .mv_box .en1,
  .mv .mv_box .en2{
    font-size: 100px;
  }
  .mv .mv_box .en1{
    margin-bottom: -8px;
  }
  .mv .mv_box .en2{
    bottom: 86px;
  }
  .mv .img{
    height: 550px;
    background-position: 75% bottom;
    clip-path: polygon(47.5% 0, 100% 0, 100% 100%, 0% 100%);
    -webkit-clip-path: polygon(47.5% 0, 100% 0, 100% 100%, 0% 100%);
  }
  .mv .mv_box .ja{
    font-size: 31px;
  }
  .mv .scroll{
    width: auto;
  }
}
@media (min-width:1024px){
  .mv .mv_box{
    left: 128px;
  }
  .mv .mv_box .en1,
  .mv .mv_box .en2{
    font-size: 150px;
  }
  .mv .img{
    height: 700px;
    background-position: center bottom;
  }
}
@media (min-width:1200px){
  .mv .mv_box{
    left: 198px;
  }
  .mv .mv_box .en1,
  .mv .mv_box .en2{
    font-size: 180px;
  }
  .mv .img{
    height: 880px;
  }
}

.pg_home{

}
.pg_home .section#sec1{
  padding: 50px 0;
  background: #f8f8f8;
}
.pg_home .section#sec1 .container{
  position: relative;
}
.home_news_ttl {
  margin-bottom: 42px;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  line-height: 1.2;
  border-bottom: 5px solid #fff20d;
}
.home_news_ttl .en{
  font-size: 34px;
  font-weight: 600;
  letter-spacing: 0.1em;  
}
.home_news_ttl .ja {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.075em;
  margin-left: 25px;
  border-left: 1px solid;
  padding-left: 25px;
  line-height: 1;
}
.home_news_link {
  width: 160px;
  font-size: 15px;
  margin: 30px auto 0;
  padding: 3px;
  background: #1f2774;
  color: #ffffff;
  font-weight: 500;
  letter-spacing: 0.075em;
  text-align: center;
  display: block;
  line-height: 1.95;
  position: relative;
}
.home_news_link:after{
  content: "→";
  font-weight: 900;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}


.pg_home .section#sec2{
  padding-top: 40px;
  padding-bottom: 80px;
  background: #c6c6c6;
  clip-path: polygon(0 0, 100% 0, 100% 80%, 0% 100%);
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 90%, 0% 100%);
  position: relative;
}
.pg_home .section#sec2:after{
  width: 100%;
  height: 100%;
  content: "";
  background: #ffffff;
  clip-path: polygon(0 0, 100% 0, 100% 80%, 0% 100%);
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 90%, 0% 100%);
  position: absolute;
  left: 0;
  bottom: 1px;
  z-index: -1;
}
.home_box1 .txt{
  text-align: justify;
}
.home_box1 .ttl{
  font-size: 20px;
  margin-bottom: 22px;
  font-weight: 700;
  line-height: 1.5;
}
.link_1 {
  width: 219px;
  font-size: 15px;
  margin: 30px auto 0;
  padding: 5px;
  background: #1f2774;
  color: #ffffff;
  font-weight: 500;
  letter-spacing: 0.075em;
  text-align: center;
  display: block;
  line-height: 1.95;
  position: relative;
}
.link_1:after{
  content: "→";
  font-weight: 900;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.pg_home .section#sec3 {
  padding-top: 10px;
  padding-bottom: 60px;
}
.home_ttl1 {
  margin-bottom: 40px;
  text-align: center;
  line-height: 1;
}
.home_ttl1 .en{
  font-size: 80px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #e5e6ea;
}
.home_ttl1 .ja{
  width: 180px;
  font-size: 16px;
  margin: -45px auto 0;
  font-weight: 700;
  letter-spacing: 0.075em;
  background: #fff20d;
  line-height: 1.65;
  font-style: italic;
  position: relative;
  z-index: 1;
}
.home_box2 .en{
  font-size: 28px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.5;
}
.home_box2 .ttl{
  font-size: 18px;
  margin-bottom: 25px;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.home_box2 .ttl.green{
  color: #32b16c;
}
.home_box2 .ttl.aqua{
  color: #00b7ee;
}
.home_box2 .ttl.pink{
  color: #eb6877;
}
.home_box2 .text{
  text-align: justify;
  letter-spacing: 0.1em;
}
.home_box2 + .home_box2{
  margin-top: 50px;
}
.home_box2 .img{
  position: relative;
}
.home_box2 .img:after{
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: -10px;
  bottom: -10px;
  z-index: -1;
}
.home_box2:nth-child(even) .img:after{
  left: inherit;
  right: -10px;
}
.home_box2 .img.green:after{
  background: url(/img/home/bg01.png);
}
.home_box2 .img.aqua:after{
  background: url(/img/home/bg02.png);
}
.home_box2 .img.pink:after{
  background: url(/img/home/bg03.png);
}

.pg_home .section#sec4 {
  padding-top: 50px;
  padding-bottom: 50px;
  background: #f8f8f8;
  position: relative;
  z-index: 0;
}
.home_box3 .item a{
  width: calc(100% - 5px);
  display: block;
  position: relative;
}
.home_box3 .item a:before{
  content: "";
  padding-top: 38%;
  display: block;
}
.home_box3 .item a:after{
  content: "";
  height: calc(100% + 5px);
  width: calc(100% + 5px);
  background: #1f2774;
  position: absolute;
  left: 0;
  bottom: -5px;
  z-index: -1;
}
.home_box3 .item a:hover{
  opacity: 1;
}
.home_box3 .item .btn{
  width: 255px;
  font-size: 18px;
  padding: 2px;
  background: #fff20d;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
  position: absolute;
  right: -5px;
  bottom: 17px;
}
.home_box3 .item .btn:after{
  content: "→";
  font-size: 15px;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}
.home_box3 .item a:hover .btn{
  opacity: 0.7;
}


@media (max-width:767px){
  .post_items .item .title {
    width: 100%;
    padding-left: 0;
    margin-top: 5px;
  }
  .post_items .item:after {
    width: 30px;
    right: 10px;
    background-size: auto 7px;
  }
  .post_items .item .title a {
    padding-right: 30px;
  }
  .home_box1 .img{
    margin-bottom: 30px;
  }
  .home_box1 .ttl{
    text-align: center;
  }

  .home_box2 .img{
    margin-bottom: 25px;
  }

  .home_box3 .item + .item{
    margin-top: 20px;
  }

  .home_ttl1 .ja {
    width: 140px;
    font-size: 14px;
    margin: -35px auto 0;
  }
}
@media (min-width:768px){  
  .pg_home .section#sec1{
    padding: 100px 0 80px;
  }
  .home_news_link{
    position: absolute;
    right: 15px;
    top: 0;
    margin: 0;
  }
  .home_box1 {
    height: 400px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
  }
  .home_box1 .img{
    width: calc(52% + 120px);    
  }
  .home_box1 .txt{
    width: 48%;
    padding-bottom: 30px;
    padding-left: 30px;
  }
  .home_box1 .ttl{
    font-size: 24px;
  }
  .link_1{
    margin-top: 28px;
    margin-left: 0;
  }
  .pg_home .section#sec2 {
    padding-bottom: 160px;
  }
  .pg_home .section#sec2,
  .pg_home .section#sec2:after{
    clip-path: polygon(0 0, 100% 0, 100% 74.5%, 0% 100%);
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 74.5%, 0% 100%);
    overflow: hidden;
  }
  .pg_home .section#sec2:after{
    background: url(/img/home/img01.jpg) no-repeat -32% bottom / 65% #ffffff;
  }

  .pg_home .section#sec3{
    padding-bottom: 100px;
  }
  .home_ttl1 {
    margin-bottom: 100px;
  }
  .home_ttl1 .en{
    font-size: 140px;
  }
  .home_ttl1 .ja{
    width: 220px;
    font-size: 18px;
    margin: -70px auto 0;
  }
  .home_box2{
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
  }
  .home_box2 + .home_box2{
    margin-top: 90px;
  }
  .home_box2 .txt{
    width: 49.2%;
    padding-top: 30px;
    padding-left: 55px;
  }
  .home_box2 .en {
    font-size: 30px;
  }
  .home_box2 .ttl{
    font-size: 21px;
    margin-bottom: 32px;
  }
  .home_box2 .img{
    width: 50.8%;
  }
  .home_box2:nth-child(odd) .txt{
    padding-right: 45px;
    padding-left: 0;
    order: 1;
  }
  .home_box2:nth-child(even) .en{
    letter-spacing: 0.05em;
  }
  .home_box2:nth-child(odd) .img{
    order: 2;
  }
  .home_box2 .link_1{
    margin-top: 42px;
  }

  .pg_home .section#sec4 {
    padding-top: 85px;
    padding-bottom: 90px;
  }
  .home_box3{
    margin: 0 -15px;
    display: flex;
    flex-wrap: wrap;
  }
  .home_box3 .item{
    width: 50%;
    padding: 0 15px;
  }

  .pg_home .section#sec5 {
    padding-top: 100px;
  }
  .home_box4 {
    display: flex;
    align-items: center;
  }
  .home_box4 .img{
    width: 26%;
  }
  .home_box4 .txt{
    width: 48%;
  }
  .home_box4 .ttl{
    font-size: 30px;
  }
  .home_box4 .link {
    max-width: 250px;
    margin-top: 25px;
  }
  .home_box4:after {
    height: calc(100% - 15px);
    top: 8px;
  }
}
@media (min-width:1024px){  
  .pg_home .section#sec1{
    padding: 140px 0 100px;
  } 
  .pg_home .section#sec2{
    padding: 70px 0 100px;
  }
  .home_box1 {
    height: 500px;
  }
  .home_box1 .txt{
    padding-top: 65px;
    padding-left: 60px;
  }
  .pg_home .section#sec2:after{
    background-position: -120px bottom;
    background-size: auto;
  }
  .home_box1 .img img{ 
    margin-top: 28px;
  }

  .pg_home .section#sec3{
    padding-bottom: 140px;
  }
  .home_ttl1 .en{
    font-size: 180px;
  }
  .home_box2 .txt{
    width: 40%;
    padding-top: 46px;
  }
  .home_box2 .en {
    font-size: 32px;
  }
  .home_box2 .img{
    width: 60%;
  }

  .pg_home .section#sec5 {
    padding-top: 200px;
  }
  .home_box4 .ttl{
    font-size: 36px;
  }
  .home_box4 .link {
    max-width: 350px;
    margin-top: 35px;
  }
  .home_box4:after {
    height: calc(100% - 50px);
    top: 25px;
  }
}
@media (min-width:1200px){
  .pg_home .section#sec2{
    padding: 70px 0 12px;
  }
  .pg_home .section#sec2:after{
    background: #ffffff;
  }
  .home_box1 {
    height: 532px;
    clip-path: polygon(0 0, 100% 0, 100% 84%, 0% 100%);
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 80%, 0% 100%);
    overflow: hidden;
  }
  .home_box1 .img {
    margin-left: -120px;
  }

  .home_box2 .en {
    font-size: 38px;
  }

  .link_1{
    margin-top: 58px;
  }
}


/* **********************************
 *  未経験の方へ
 * ********************************* */

.first_box1{
  margin-top: 30px;
  margin-bottom: 50px;
}
.first_box1 .txt{
  letter-spacing: 0.075em;
  text-align: justify;
}
.first_ttl1{
  margin-bottom: 30px;
  clip-path: polygon(3.5% 0, 100% 0, 96.5% 100%, 0 100%);
  -webkit-clip-path: polygon(3.5% 0, 100% 0, 96.5% 100%, 0 100%);
}
.first_ttl1 .ttl {
  font-size: 21px;
  padding: 10px;
  color: #ffffff;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.075em;
  position: relative;
  border-top: 1px solid #1f2774;
  border-bottom: 1px solid #1f2774;
}
.first_ttl1 .ttl:after {
  content: "";
  width: 100%;
  height: calc(100% - 10px);
  background: #1f2774;
  position: absolute;
  left: 0;
  top: 5px;
  z-index: -1;
}
.first_box1 .img{
  text-align: center;
}

.first_box2 .item{
  position: relative;
}
.first_box2 .ttl{
  font-size: 21px;
  padding: 0 15px;
  margin-bottom: 15px;
  font-weight: 500;
  letter-spacing: 0.075em;
  border-left: 5px solid #1f2774;
  border-bottom: 1px solid #1f2774;
}
.first_box2 .text{
  margin-bottom: 20px;
  text-align: justify;
  letter-spacing: 0.075em;
}
.first_box2 .img{
  position: relative;
  text-align: center;
}
.pg_first .section#sec1{
  padding-bottom: 50px;
}
.pg_first .section#sec1 .section_title:after{
  width: 190px;
}

.pg_first .section#sec2{
  padding-top: 72px;
  padding-bottom: 50px;
  background: url(/img/first/bg01.jpg) no-repeat center top / 100% 52px #f8f8f8;
  position: relative;
  z-index: 0;
}
.first_box3 {
  margin-top: 50px;
}
.first_box3 .item{
  position: relative;
}
.first_box3 .item:after{
  content: "";
  width: 1000%;
  height: calc(100% + 40px);
  position: absolute;
  left: 15px;
  top: -38px;
  background: #ffffff;
  z-index: -1;
}
.first_box3 .item:nth-child(even):after{
  left: inherit;
  right: 15px;
}
.first_box3 .item .ttl{
  font-size: 16px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  line-height: 1.5;
  letter-spacing: 0.075em;
}
.first_box3 .item .ttl span{
  width: 40px;
  height: 40px;
  font-size: 22px;
  margin-right: 15px;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  color: #ffffff;
  background: #1f2774;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.first_box3 .item .ttl span:after{
  content: "";
  border-style: solid;
  border-width: 0 0 10px 10px;
  border-color: transparent transparent #ffffff transparent;
  position: absolute;
  right: 0;
  bottom: 0;
}
.first_box3 .item .text{
  text-align: justify;
  letter-spacing: 0.075em;
  line-height: 2.05;
}
.section_title .en{
  font-family: 'Outfit', sans-serif;
}

.pg_first .section#sec3{
  padding-top: 52px;
}
.first_faq {
  margin-top: 30px;
}
.first_faq .item {
  padding: 25px 40px;
  margin-top: 32px;
  border-top: 1px solid #e5e6ea;
  border-bottom: 1px solid #e5e6ea;
  position: relative;
}
.first_faq .item:after{
  content: "";
  width: 5px;
  height: calc(100% - 56px);
  position: absolute;
  left: 0;
  top: 28px;
  background: #1f2774;
}
.first_faq .item .ttl{
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.075em;
  line-height: 1.5;
  position: relative;
  cursor: pointer;
}
.first_faq .item .ttl:before{
  content: "Q.";
  position: absolute;
  left: -30px;
  top: 0;
}
.first_faq .item .ttl:after{
  content: "\f078";
  font-family: 'Font Awesome 5 free';
  font-weight: 900;
  position: absolute;
  right: -35px;
  top: 0;
}
.first_faq .item .ttl.active:after{
  content: "\f077";
}
.first_faq .item .text{
  max-width: 870px;
  margin-top: 15px;
  letter-spacing: 0.075em;
  text-align: justify;
  line-height: 1.85;
}

@media (max-width:767px){
  .first_box1 .img{
    margin-top: 20px;
  }
  .first_box2 .item + .item{
    margin-top: 80px;
  }
  .first_box2 .item + .item:before{
    content: "";
    position: absolute;
    left: 50%;
    top: -55px;
    transform: translateX(-50%);
    border-style: solid;
    border-width: 40px 45px 0 45px;
    border-color: #1f2774 transparent transparent transparent;
  }
  .first_box3 .item + .item{
    margin-top: 70px;
  }
  .first_box3 .item .txt{
    padding-top: 20px;
    padding-left: 30px;
  }
  .first_box3 .item:nth-child(even) .txt{
    padding-left: 0;
    padding-right: 30px;
  }
}
@media (min-width:768px){
  .pg_header{
    height: 450px;
    margin-bottom: 70px;
  }
  .pg_header .img{
    width: 1023px;
    clip-path: polygon(55.5% 0, 100% 0, 100% 100%, 0% 100%);
    -webkit-clip-path: polygon(55.5% 0, 100% 0, 100% 100%, 0% 100%);
  }
  .tt1 {
    font-size: 38px;
  }
  .tt1 span {
    font-size: 76px;
  }

  .first_box1{
    margin-top: 62px;
    margin-bottom: 60px;
    display: flex;
    flex-wrap: wrap;
  }
  .first_box1 .txt{
    width: 57%;
    padding-right: 60px;
    margin-top: -10px;
  }
  .first_box1 .img{
    width: 43%;
  }
  .first_ttl1{
    margin-bottom: 48px;
  }
  .first_box2 {
    margin: 0 -50px;
    display: flex;
    flex-wrap: wrap;
  }
  .first_box2 .item{
    width: 50%;
    padding: 0 50px;
  }
  .first_box2 .item + .item .img:before{
    content: "";
    border-style: solid;
    border-width: 45px 0 45px 40px;
    border-color: transparent transparent transparent #1f2774;
    position: absolute;
    left: -65px;
    top: 50%;
    transform: translateY(-50%);
  }


  .pg_first .section#sec2{
    padding-top: 202px;
    padding-bottom: 90px;
    background: url(/img/first/bg01.jpg) no-repeat 33% top / 1920px 202px #f8f8f8;
  }
  .first_box3 {
    margin-top: 70px;
  }
  .first_box3 .item{
    display: flex;
  }
  .first_box3 .item + .item{
    margin-top: 70px;
  }
  .first_box3 .item:after{
    left: 65px;
  }
  .first_box3 .item .img{
    width: 49%;
  }
  .first_box3 .item .txt{
    width: 51%;
    padding-top: 10px;
    padding-left: 30px;
  }
  .first_box3 .item .ttl span{
    width: 50px;
    height: 50px;
    font-size: 30px;
  }
  .first_box3 .item:nth-child(even) .img{
    order: 2;
  }
  .first_box3 .item:nth-child(even) .txt{
    order: 1;
    padding-left: 0;
    padding-right: 30px;
  }
  .first_box3 .item:nth-child(even):after{
    left: inherit;
    right: 70px;
  }

  .pg_first .section#sec3{
    padding-top: 112px;
  }
  .first_faq {
    margin-top: 75px;
  }
  .first_faq .item {
    padding: 28px 65px;
  }
  .first_faq .item .ttl:before {
    left: -34px;
  }
}
@media (min-width:1024px){
  .pg_header{
    height: 550px;
    margin-bottom: 100px;
  }
  .pg_header .img{
    width: 1215px;
    background-position: center;
  }
  .first_box2 {
    margin: 0 -80px;
  }
  .first_box2 .item{
    padding: 0 80px;
  }
  .first_box2 .item + .item .img:before{
    left: -100px;
  }
  .first_box3 {
    margin-top: 120px;
  }
  .first_box3 .item{
    min-height: 370px;
  }
  .first_box3 .item:after{
    height: 100%;
  }
  .first_box3 .item + .item{
    margin-top: 85px;
  }
  .first_box3 .item .txt {
    padding-left: 90px;
  }
  .first_box3 .item .ttl{
    font-size: 21px;
    margin-right: -50px;
  }
  .first_box3 .item:nth-child(even) .txt{
    padding-right: 90px;
  }
}
@media (min-width:1200px){
  .pg_header{
    height: 650px;
    margin-bottom: 115px;
  }
  .pg_header .img{
    width: 1515px;
    clip-path: polygon(47.5% 0, 100% 0, 100% 100%, 0% 100%);
    -webkit-clip-path: polygon(47.5% 0, 100% 0, 100% 100%, 0% 100%);
  }
  .pg_first .section#sec1{
    padding-bottom: 120px;
  }
  .pg_first .section#sec2{
    padding-top: 177px;
    background: url(/img/first/bg01.jpg) no-repeat center top / 100% 202px #f8f8f8;
  }
}


/* **********************************
 *  仕事について
 * ********************************* */
.pg_works .section_title{
  margin-bottom: 30px;
}
.works_box1_list{
  margin-bottom: 50px;
}
.works_box1 + .works_box1{
  margin-top: 30px;
}
.first_ttl1 .ttl.green{
  border-top-color: #32b16c;
  border-bottom-color: #32b16c;
}
.first_ttl1 .ttl.aqua{
  border-top-color: #00b7ee;
  border-bottom-color: #00b7ee;
}
.first_ttl1 .ttl.pink{
  border-top-color: #eb6877;
  border-bottom-color: #eb6877;
}
.first_ttl1 .ttl.green:after{
  background: #32b16c;
}
.first_ttl1 .ttl.aqua:after{
  background: #00b7ee;
}
.first_ttl1 .ttl.pink:after{
  background: #eb6877;
}
.works_ttl1 {
  font-size: 21px;
  padding: 8px;
  margin-bottom: 30px;
  letter-spacing: 0.075em;
  font-weight: 700;
  text-align: center;
  border-top: 2px solid #1f2774;
  border-bottom: 1px solid #1f2774;
  color: #1f2774;
}
.works_box2 {
  margin: 0 -8px;
  display: flex;
  flex-wrap: wrap;
}
.works_box2 .item{
  width: 100%;
  padding: 0 8px;
  display: flex;
}
.works_box2 .box{
  width: 100%;
  border: 2px solid #525aa3;
  position: relative;
}
.works_box2 .ttl{
  font-size: 17px;
  padding: 6px;
  background: #1f2774;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.075em;
  text-align: center;
}
.works_box2 .text{
  padding: 10px 30px 20px;
  text-align: justify;
  letter-spacing: 0.075em;
}

.works_box3 {
  margin-top: 40px;
}
.works_box3 .ttl{
  font-size: 18px;
  margin-bottom: 38px;
  padding: 5px;
  font-weight: 700;
  letter-spacing: 0.075em;
  background: #6067ac;
  text-align: center;
  position: relative;
  color: #ffffff;
}
.works_box3 .ttl:after{
  content: "";  
  position: absolute;
  left: 50%;
  bottom: -17px;
  transform: translateX(-50%);
  z-index: 0;
  border-style: solid;
  border-width: 20px 23px 0 23px;
  border-color: #6067ac transparent transparent transparent;
}
.works_box3 .text {
  width: calc(100% - 5px);
  padding: 20px 15px 28px;
  border: 1px solid #1f2774;
  box-shadow: 5px 5px 0 #6067ac;
  letter-spacing: 0.075em;
  text-align: justify;
}
.works_box3 .text p{
  max-width: 860px;
  margin: 0 auto;
}

.pg_works .section#sec2{
  padding-top: 50px;
}
.works_box4 + .works_box4{
  margin-top: 40px;
}
.works_box4 .img{
  background: #f9f9f9;
  position: relative;
}
.works_box4 .img:before{
  padding-top: 62%;
  display: block;
  content: "";
}
.works_box4 .img img{
  position: absolute;
  left: 50%;
  top: 50%;
  object-fit: contain;
  transform: translate(-50%, -50%);
}
.works_box4 .txt{
  padding: 20px 15px 30px;
  background: #ffffff;
  border: 2px solid;
  letter-spacing: 0.075em;
  position: relative;
}
.works_box4 .txt:after{
  content: "";
  border-style: solid;
  border-width: 0 0 30px 30px;
  border-color: transparent transparent #32b16b transparent;
  position: absolute;
  right: 0;
  bottom: 0;
}
.works_box4 .txt.traffic,
.works_box4 .txt.traffic .ttl{
  border-color: #32b16c;
}
.works_box4 .txt.crowd,
.works_box4 .txt.crowd .ttl{
  border-color: #eb6877;
}
.works_box4 .txt.crowd:after{
  border-color: transparent transparent #eb6877 transparent;
}
.works_box4 .txt.facility,
.works_box4 .txt.facility .ttl{
  border-color: #00b7ee;
}
.works_box4 .txt.facility:after{
  border-color: transparent transparent #00b7ee transparent;
}
.works_box4 .category span{
  width: 190px;
  padding: 1px;
  margin-bottom: 15px;
  letter-spacing: 0.075em;
  text-align: center;
  color: #ffffff;
  display: block;
}
.works_box4 .category span.cat_traffic{
  background: #32b16c;
}
.works_box4 .category span.cat_crowd{
  background: #eb6877;
}
.works_box4 .category span.cat_facility{
  background: #00b7ee;
}
.works_box4 .name{
  line-height: 1.5;
}
.works_box4 .name span{
  font-size: 35px;
  font-weight: 700;
}
.works_box4 .year{  
  margin: 6px 0;
}
.works_box4 .text{
  letter-spacing: 0.063em;
  text-align: justify;
}
.works_box4 .ttl{
  margin-top: 10px;
  padding-top: 6px;
  border-top: 1px solid;
}

@media (max-width:767px){
  .works_box2 .item:nth-child(n+2){
    margin-top: 30px;
  }
  .works_box2 .box:before{
    content: "";  
    position: absolute;
    left: 50%;
    bottom: -15px;
    transform: translateX(-50%);
    z-index: 1;
    border-style: solid;
    border-width: 15px 25px 0 25px;
    border-color: #ffffff transparent transparent transparent;
  }
  .works_box2 .box:after{
    content: "";  
    position: absolute;
    left: 50%;
    bottom: -17px;
    transform: translateX(-50%);
    z-index: 0;
    border-style: solid;
    border-width: 15px 26px 0 26px;
    border-color: #525aa3 transparent transparent transparent;
  }
  .works_box2 .item:last-child .box:before,
  .works_box2 .item:last-child .box:after{
    display: none;
  }

  .works_box4 .img{
    margin-bottom: 15px;
  }
  .works_box4 .img img{
    width: calc(100% - 20px);
    height: calc(100% - 20px);
  }
}
@media (min-width:768px){
  .works_box1 + .works_box1{
    margin-top: 60px;
  }
  .works_box1:nth-child(even) .img{
    order: 1;
  }
  .works_box1:nth-child(even) .txt{
    order: 2;
    padding-right: 0;
    padding-left: 60px;
  }
  .works_box1_list{
    margin-bottom: 108px;
  }
  .works_box1 .first_box1{
    margin-top: 42px;
  }


  .works_box2 .item{
    width: 33.33%;
  }
  .works_box2 .item:nth-child(n+4){
    margin-top: 40px;
  }
  .works_box2 .item .box:before{
    content: "";  
    border-style: solid;
    border-width: 25px 0 25px 15px;
    border-color: transparent transparent transparent #ffffff;
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
  }
  .works_box2 .item .box:after{
    content: "";  
    border-style: solid;
    border-width: 26px 0 26px 15px;
    border-color: transparent transparent transparent #525aa3;
    position: absolute;
    right: -17px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 0;
  }
  .works_box2 .item:nth-child(3) .box:before,
  .works_box2 .item:last-child .box:before,
  .works_box2 .item:nth-child(3) .box:after,
  .works_box2 .item:last-child .box:after{
    display: none;
  }

  .works_box3 {
    margin-top: 80px;
  }
  .works_box3 .ttl{
    font-size: 21px;
  }
  .pg_works .section#sec2{
    padding-top: 105px;
  }
  .pg_works .section#sec2 .first_ttl1{
    margin-bottom: 55px;
  }
  .works_box4 {
    display: flex;
    align-items: flex-start;
  }
  .works_box4 + .works_box4{
    margin-top: 50px;
  }
  .works_box4 .img{
    width: 51.9%;
  }
  .works_box4 .txt{
    width: 57.5%;
    margin-left: -8.5%;
    margin-top: 60px;
    padding: 20px 30px 30px;
    z-index: 1;
    box-shadow: 2.598px 1.5px 7px 0px rgba(13, 14, 13, 0.2);
  }
  .works_box4:nth-child(even) .img{
    order: 2;
  }
  .works_box4:nth-child(even) .txt{
    order: 1;
    margin-left: 0;
    margin-right: -8.5%;
  }
}
@media (min-width:1024px){
  .works_box2 {
    margin: 0 -15px;
  }
  .works_box2 .item{
    padding: 0 15px;
  }
  .works_box2 .ttl{
    font-size: 22px;
  }
  .works_box2 .item:nth-child(n+4){
    margin-top: 60px;
  }
  .works_box4 + .works_box4 {
    margin-top: 80px;
  }
  .works_box4 .txt{
    padding: 30px 65px 50px;
  }
}
@media (min-width:1200px){
  .works_box2 {
    margin: 0 -22px;
  }
  .works_box2 .item{
    padding: 0 22px;
  }
  .works_box2 .ttl{
    font-size: 24px;
  }
}


/* **********************************
 *  会社説明会
 * ********************************* */
.pg_session .section_title{
  margin-bottom: 25px;
}
.pg_session .first_box1 .ttl{
  font-size: 18px;
  margin-bottom: 6px;
  padding: 3px 15px 5px;
  padding-right: 0;
  font-weight: 700;
  line-height: 1.5;
  border-left: 5px solid #1b3c84;
  border-bottom: 1px solid #1b3c84;
}
.session_ttl1 {
  font-size: 20px;
  padding: 11px 0;
  margin-bottom: 30px;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.075em;
  line-height: 1.85;
  color: #dc0314;
  border-top: 2px solid #dc0314;
  border-bottom: 2px solid #dc0314;
}
.session_box1 .ttl{
  font-size: 20px;
  padding: 5px 10px;
  margin-top: 25px;
  margin-bottom: 17px;
  padding-left: 15px;
  font-weight: 500;
  letter-spacing: 0.075em;
  border-left: 5px solid #1b3c84;
  border-bottom: 1px solid #1b3c84;
  line-height: 1.5;
}
.session_box1 .text{
  letter-spacing: 0.075em;
  text-align: justify;
}

.pg_session .section#sec2{
  padding-top: 60px;
}
.pg_session .works_box2 .ttl{    
  background: #525aa3;
}

.pg_session .section#sec3{
  padding-top: 50px;
}
.session_box2{
  border: 1px solid #b2b2b2;
}
.session_box2 th,
.session_box2 td{
  padding: 13px 20px;
  border: 1px solid #b2b2b2;
  text-align: left;
  font-weight: 500;
  letter-spacing: 0.08em;
}
.session_box2 th{
  background: #4465ad;
  color: #ffffff;
}
.session_box2 .th1 {
  width: 32%;
}
.session_box2 .th2 {
  width: 38%;
}

@media (max-width:767px){
  .session_box1 .item + .item{
    margin-top: 30px;
  }
  .session_box2{
    width: 650px;
  }
}
@media (min-width:768px){
  .session_box1 {
    margin: 0 -8px;
    display: flex;
    flex-wrap: wrap;
  }
  .session_box1 .item{
    width: 33.33%;
    padding: 0 8px;
  }
  .pg_session .first_box1 .txt{
    padding-top: 8px;
  }
  .pg_session .first_box1{
    margin-top: 60px;
  }
  .session_ttl1 {
    margin-bottom: 60px;
  }
  .pg_session .section#sec2{
    padding-top: 70px;
  }
  .pg_session .section#sec3{
    padding-top: 100px;
  }
  .pg_session .section#sec3 .first_ttl1{
    margin-bottom: 28px;
  }
  .session_box1 .ttl{
    font-size: 16px;
    padding-left: 5px;
  }
}
@media (min-width:1024px){
  .pg_session .first_box1 .ttl{
    font-size: 20px;
  }
  .session_box1 {
    margin: 0 -15px;
  }
  .session_box1 .item{
    padding: 0 15px;
  }
  .session_box1 .ttl{
    font-size: 20px;
    padding-left: 15px;
  }
}
@media (min-width:1200px){
}


/* **********************************
 *  募集要項
 * ********************************* */
.pg_recruit .section#sec1 .section_title{
  margin-bottom: 30px;
}
.recruit_searchBox {
  width: 100%;
  border: 1px solid #b2b2b2;
  margin-top: 21px;
  font-weight: 500;
  letter-spacing: 0.08em;
}
.recruit_searchBox .ttl{
  width: 100%;
  padding: 10px 15px;
  background: #f0f0f0;
}
.recruit_searchBox .content{
  padding: 10px 15px;
}
.recruit_searchBox select{
  min-width: 160px;
  padding: 8px 10px;
  letter-spacing: 0.075em;
  width: 300px;
  border: 1px solid #a6a6a6;
}
.recruit_checkbox{
  
}
.recruit_checkbox label{
  margin-right: 40px;
  display: inline-block;
}
.recruit_checkbox input{
  margin-right: 5px;
}

button.search_btn {
  width: 220px;
  padding: 8px;
  margin: 50px auto 0;
  display: block;
  text-align: center;
  color: #ffffff;
  background: #1f2774;
  border: 0;
  border-radius: 24px;
  font-weight: 500;
  letter-spacing: 0.075em;
  transition: 0.2s;
}
button.search_btn:hover{
  opacity: 0.7;
}

.pg_recruit .section#sec2{
  padding-top: 40px;
}
.pg_recruit .section#sec2 .section_title{
  margin-bottom: 50px;
}
.recruit_list .item{
  padding: 15px 20px 30px;
  border: 1px solid #a6a6a6;
  border-top: 5px solid #1f2774;
  letter-spacing: 0.075em;
}
.recruit_list .item + .item{
  margin-top: 30px;
}
.recruit_list .title{
  font-size: 18px;
  padding: 3px 15px 5px;
  margin-bottom: 28px;
  font-weight: 500;
  border-bottom: 1px solid #1f2774;
  border-left: 5px solid #1f2774;
  line-height: 1.5;
}
.recruit_list .category span{
  font-size: 14px;
  padding: 0 15px;
  margin: 3px 0;
  margin-right: 10px;
  border: 1px solid #1f2774;
  border-radius: 15px;
  display: inline-block;
  color: #1f2774;
}
.recruit_list .box {
  margin-top: 30px;
}
.recruit_list .img{
  margin-bottom: 20px;
}
.recruit_list .img_fit{
  margin-bottom: 20px;
}
.recruit_list .img_fit:before{
  padding-top: 65%;
  display: block;
  content: "";
}
.recruit_list .img_comment {
  text-align: justify;
}
.recruit_list .txt{
  text-align: justify;
}
table.treatment,
table.treatment tr{
  width: 100%;
  border: 1px solid #b2b2b2;
}
table.treatment th,
table.treatment td{
  padding: 12px 5px;
}
table.treatment th{
  width: 100px;
  background: #f0f0f0;
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.08em;
}
table.treatment td{
  font-size: 15px;
  padding-right: 15px;
  letter-spacing: 0.16em;
  font-weight: 500;
  text-align: justify;
}
.recruit_list .linkBox {
  margin-top: 30px;
  text-align: center;
}
.recruit_list .linkBox a{
  width: 255px;
  margin: 0 auto;
  padding: 9px;
  display: block;
  border-radius: 24px;
  color: #ffffff;
  position: relative;
}
.recruit_list .linkBox a:after{
  font-size: 15px;
  content: "→";
  font-weight: 900;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}
.recruit_list .linkBox .btn1{
  background: #5057a0;
}
.recruit_list .linkBox .btn2{
  background: #dc0314;
}

.single_ttl {
  font-size: 20px;
  margin: 30px 0;
  background: #1f2774;
  color: #ffffff;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.075em;
  padding: 3px;
}
.recruit_list .box + .single_ttl{
  margin-top: 55px;
}
.recruit_list .single_item table.treatment th {
  text-align: left;
  vertical-align: top;
}
.recruit_list .single_item .linkBox .btn2{
  max-width: 220px;
}

.single-recruit .pagination{
  margin-top: 50px;
}
.single-recruit .nav-posts{
  justify-content: center;
}
.recruit_list .single_item .img{
  margin-bottom: 40px;
}
.recruit_list .single_item .img_fit:before{
  padding-top: 78%;
}
.recruit_list .single_item table.treatment td{
  font-size: 16px;
  line-height: 1.8125;
}
.recruit_list .single_item .linkBox a:after {
  right: 8px;
}

@media (max-width:767px){  
  table.treatment th,
  table.treatment td{
    width: 100%;
    padding: 10px 15px;
    display: block;
  }
  table.treatment th{
    font-size: 15px;
  }
  table.treatment td{
    font-size: 14px;
  }
  .recruit_list .linkBox .btn2{
    margin-top: 15px;
  }

}
@media (min-width:768px){
  .recruit_searchBox {
    display: flex;
  }
  .recruit_searchBox .ttl{
    width: 189px;
    padding: 12px 25px;
    display: flex;
    align-items: center;
  }
  .recruit_searchBox .content{
    width: calc(100% - 189px);
    padding: 13px 20px;
  }

  .pg_recruit .section#sec2{
    padding-top: 60px;
  }
  .recruit_list .item{
    padding: 25px 65px 60px;
  }
  .recruit_list .title{
    font-size: 21px;
  }
  table.treatment th{
    width: 159px;
  }
  table.treatment td{
    padding-left: 28px;
  }
  .recruit_list .linkBox {
    margin-top: 50px;
  }
  .recruit_list .linkBox a{
    margin: 0 12px;
    display: inline-block;
  }
  .pagination{
    margin-top: 80px;
  }

  .recruit_list .single_item table.treatment th {
    padding-left: 20px;
  }
  .recruit_list .box + .single_ttl{
    margin-top: 108px;
  }
  .single-recruit .pagination{
    margin-top: 80px;
  }
  .recruit_list .single_item .img{
    margin-bottom: 50px;
  }
  .recruit_list .single_item .txt{
    margin-top: -10px;
  }
  .recruit_list .single_item .linkBox{
    margin-top: 60px;
  }
}
@media (min-width:1024px){
  .recruit_list .box {
    display: flex;
    align-items: flex-start;
  }
  .recruit_list .img{
    width: 39%;
    margin-bottom: 0;
  }
  .recruit_list .txt{
    width: 61%;
    padding-left: 30px;
  }

  .recruit_list .single_item table.treatment th {
    width: 253px;
  }
  .recruit_list .single_item table.treatment td{
    padding-left: 31px;
  }
  .recruit_list .single_item .img{
    width: 42%;
    margin-bottom: 0;
  }
  .recruit_list .single_item .txt{
    width: 58%;
    padding-left: 65px;
  }
}
@media (min-width:1200px){
}


/* **********************************
 *  エントリー
 * ********************************* */
.pg_entry .contact_form_btns button{
  border-radius: 30px;
}
.pg_entry .contact_form {
  margin-top: 30px;
}

@media (max-width:767px){
}
@media (min-width:768px){
}
@media (min-width:1024px){
  .pg_entry{
    margin-top: -30px;
  }
}
@media (min-width:1200px){
  .pg_entry{
    margin-top: -45px;
  }
}

/*コピー用*/
@media (max-width:767px){
}
@media (min-width:768px){
}
@media (min-width:1024px){
}
@media (min-width:1200px){
}