@charset "UTF-8";

/* ******************************
   変数設定など
   ****************************** */
:root {

  /* カラー(ボタン背景色など) */
  --main-color: #7ecef4;
  --sub-color: #eb6100;
  --txt-color: #181818;
  --line-color: #fff45c;

  /* フォント関連 */
  --font-ja: "Noto Sans JP", sans-serif;
  /*--font-en: "Outfit",'Noto Sans JP', sans-serif;*/
  --font-en: "Oswald", 'Noto Sans JP',sans-serif;
  /*--font-en: "Cardo", 'Noto Sans JP', sans-serif;*/
  --font-mincho: 'Noto Serif JP', serif;
}


/* ******************************
   全体設定
   ****************************** */
body{
  font-family:  'Noto Sans JP', "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.075em;
  color: var(--txt-color);

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

#root{
  overflow: hidden;
}


/* ******************************
   コンテナ設定＋画面端までの距離
   ****************************** */
:root {

  /* 画面端までの距離（通常） */
  --margin-for-device-side: -15px;

  /* 画面端までの距離（ワイド） */
  --margin-for-device-side-w: -15px;

}
@media (min-width:768px){
  :root {
    --margin-for-device-side: calc(345px - 50vw);
    --margin-for-device-side-w: calc(345px - 50vw);
  }
}
@media (min-width:992px){
  :root {
    --margin-for-device-side: calc(465px - 50vw);
    --margin-for-device-side-w: calc(465px - 50vw);
  }
}
@media (min-width:1200px){
  :root {
    --margin-for-device-side: calc(555px - 50vw);
    --margin-for-device-side-w: calc(555px - 50vw);
  }
}
@media (min-width:1366px){

  /* コンテナサイズ:1286px */
  .container.wide{
    max-width: calc(1286px + 80px);
    padding-left: 40px;
    padding-right: 40px;
  }

  :root {
    --margin-for-device-side-w: calc(643px - 50vw);
  }

}
@media (min-width:1470px){

  /* コンテナサイズ:1370px */
  .container.wide{
    max-width: calc(1370px + 100px);
    padding-left: 50px;
    padding-right: 50px;
  }
  :root {
    --margin-for-device-side-w: calc(685px - 50vw);
  }

}
@media (min-width:1720px){

  /* コンテナサイズ:1520px */
  .container.wide{
    max-width: calc(1520px + 200px);
    padding-left: 100px;
    padding-right: 100px;
  }
  :root {
    --margin-for-device-side-w: calc(760px - 50vw);
  }
}


/* ******************************
   
   ****************************** */

/* 管理画面の余白調整 */
.gjs-dashed #wrapper{
  padding-bottom: 150px;
}

@media (max-width:767px){
  #chatbot-btn {
    bottom: 55px!important;
    z-index: 5;
  }
}

.mincho{
  font-family: 'Noto Serif JP', serif;
}

p,
h1, h2, h3, h4, h5, h6{
  margin: 0;
  letter-spacing: 0.075em;
}
h1, h2, h3, h4, h5, h6{
  line-height: 1.5;
}

a{
  color: inherit;
  transition: 0.3s;
}
a:hover{
  text-decoration: none;
  /*opacity: 0.7;*/
  /*color: inherit;*/
}
img{
  max-width: 100%;
  width: auto;
}

ul, ol, li{
  margin: 0;
  padding: 0;
  list-style: none;
}

.img_fit{
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.img_fit:before{
  content: "";
  display: block;
  padding-top: 100%;
}
.img_fit img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  z-index: 1;
  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);
}

/* 動画埋め込みのレスポンシブ対応 */
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%;
}

.gjs-dashed .responsive_video:before{
  display: none;
}
.gjs-dashed .responsive_video [data-gjs-type="video"]:before{
  content: "";
  display: block;
  padding-top:56.25%;
  pointer-events: none;
}


/* 指定デバイスのみで表示するclass */
@media (min-width:1200px){
  .md:not(.pc){
    display: none!important;
  }
  .tb:not(.pc){
    display: none!important;
  }
  .sp:not(.pc){
    display: none!important;
  }
}
@media (min-width:1024px) and (max-width:1199px){
  .pc:not(.md){
    display: none!important;
  }
  .tb:not(.md){
    display: none!important;
  }
  .sp:not(.md){
    display: none!important;
  }
}
@media (min-width:768px) and (max-width:1023px){
  .pc:not(.tb){
    display: none!important;
  }
  .md:not(.tb){
    display: none!important;
  }
  .sp:not(.tb){
    display: none!important;
  }
}
@media (max-width:767px){
  .pc:not(.sp){
    display: none!important;
  }
  .md:not(.sp){
    display: none!important;
  }
  .tb:not(.sp){
    display: none!important;
  }
}


/* 指定デバイスで改行を消す */
@media (min-width:1720px){
  .fw_nobr br{
    display: none !important;
  }
}
@media (min-width:1520px){
  .lg_nobr br{
    display: none !important;
  }
}
@media (min-width:1200px){
  .pc_nobr br{
    display: none !important;
  }
}

@media (min-width:1024px) and (max-width:1199px){
  .md_nobr br{
    display: none !important;
  }
}
@media (min-width:768px) and (max-width:1023px){
  .tb_nobr br{
    display: none !important;
  }
}
@media (max-width:767px){
  .sp_nobr br{
    display: none !important;
  }
}


/* 指定した行数での切り取り */
.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;
}



/*******************************
*　ヘッダー
********************************/
.header{
  /*  --logo-height: 30px;*/
}
.hdr1{
  display: flex;
  align-items: center;
  /*  justify-content: space-between;*/
  padding: 5px 10px;
}

/* ロゴ */
.hdr_logo{

}
.hdr_logo img{
  display: block;
  width: auto;
  height: var(--logo-height);
  transition: 0.2s all;
}

/* メニュー全般 */
.hdr_menu{
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

/* TELボタン */
.hdr_tel{

}
.hdr_tel_txt1{
  font-size: 20px;
  font-weight: 500;
  font-family: "Oswald", sans-serif;
}
.hdr_tel_link{

}
.hdr_tel_link p{

}
.hdr_tel_link p:before{
  display: inline-block;
  content:"\f095";
  font-family: "fontAwesome";
  margin-right: 6px;
  -webkit-transform: rotate(15deg);
  transform: rotate(15deg);
  color: var(--main-color);
}


/* お問い合わせボタン */
.hdr_contact{
  display: flex;
  align-items: center;
  margin-right: 45px;
}
.hdr_contact a{
  background: #FFF;
  color: var(--txt-color);
  width: 270px;
  padding: 5px 10px;
  text-align: center;
  transition: 0.2s all;
  border: 1px solid var(--sub-color);
  font-family: "Outfit";
  font-weight: 500;
  letter-spacing: 0.075;
  border-radius: 50px;
  font-size: 25px;
}
.hdr_contact a.email p:before{
  content:"\f003";
  font-family: "fontAwesome";
  margin-right: 10px;
  font-weight: 400;
}
.hdr_contact a:hover{
  background: var(--sub-color);
  color: #FFF;
}

/* SNSボタン */
.hdr_sns{
  display: flex;
  align-items: center;
  margin-left: 20px;
}
.hdr_sns a{
  width: 24px;
  transition: 0.2s all;
}
.hdr_sns a:hover{
  filter: brightness(1.1);
}
.hdr_sns a img{
  display: block;
}
.hdr_sns a + a{
  margin-left: 10px;
}


@media (min-width:375px){

}
@media (max-width:767px){

  .hdr1 {
    justify-content: center;
  }
  .hdr_logo{
    display: block;
    width: 180px;
    margin-left: auto;
    margin-right: auto;
  }

  /* お問い合わせボタン */
  .hdr_contact{
    display: none;
  }
  .hdr_tel{
    display: none;
  }
  /* SNSボタン */
  .hdr_sns{
    margin-left: 20px;
  }
  .hdr_sns a img{
    height: 30px;
  }

  .header{
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    padding: 10px;
  }

}
@media (min-width:768px){

  /* ヘッダー固定 */
  body{
    /* ヘッダーの高さに応じて */
    padding-top: 86px;
  }
  body.body_home{
    padding-top: 100px;
  }
  .header{
    /*    --logo-height: 50px;*/

    position: fixed;
    z-index: 3;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 25px;
  }

  .hdr1{
    padding: 0 15px 0;
  }

  /* ロゴ */
  .hdr_logo {
    display: block;
    width: 200px;
  }
  .hdr_logo img{
    /*width: 180px;*/
  }

  /* ヘッダースリム */
  .header.slim{

  }
  .header.slim .hdr_logo img{
    height: calc(var(--logo-height) * 0.8);
  }

  /* TELボタン */
  .hdr_tel{

  }
  .hdr_tel_txt1{
    font-size: 24px;
  }
  .hdr_tel_link p:before{
    margin-right: 6px;
  }
  /* お問い合わせボタン */
  .hdr_contact {
    margin-right: 35px;
  }
  .hdr_contact a{
    width: 210px;
    padding: 5px 10px;
    font-size: 20px;
  }

}
@media (min-width:1024px){

  .header{
    /*    --logo-height: 50px;*/
  }

  /* ロゴ */
  .hdr_logo{
    width: auto;
  }
  .hdr_logo img{
    /*width: 200px;*/
  }

  /* ヘッダースリム */
  .header.slim{

  }
  .header.slim .hdr_logo img{
  }

  /* TELボタン */
  .hdr_tel{

  }
  .hdr_tel_txt1{
    font-size: 26.5px;
  }

  /* お問い合わせボタン */
  .hdr_contact {
    margin-right: 35px;
  }
  .hdr_contact a{
    width: 210px;
    padding: 5px 10px;
    font-size: 20px;
  }

}
@media (min-width:1200px){

  .header{
    /* --logo-height: 75px;*/
    padding: 0 0 20px 25px;
  }
  /* ロゴ */
  .hdr_logo{

  }
  .hdr_logo img{
    /*width: 420px;*/
  }

  /* ヘッダースリム */
  .header.slim{

  }
  .header.slim .hdr_logo img{
  }

  /* お問い合わせボタン */
  .hdr_contact {
    margin-right: 45px;
  }
  .hdr_contact a{
    background: #FFF;
    color: var(--txt-color);
    width: 270px;
    padding: 5px 10px;
    text-align: center;
    transition: 0.2s all;
    border: 1px solid var(--sub-color);
    font-family: "Outfit";
    font-weight: 500;
    letter-spacing: 0.075;
    border-radius: 50px;
    font-size: 25px;
  }
}

/*******************************
*　メインビジュアル
********************************/
/* MV */
.mv{
  position: relative;
  z-index: 1;
  padding:20px 0;
}
/*.mv:before{
  content: "";
  display: block;
  width: 35.93%;
  height: 100%;
  background: #031274;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}*/
.mv_img{
  position: relative;
  z-index: 1;
  margin-top: 20px;
}
.mv_img.img_fit:before{
  /*padding-top: 250px;*/
  /* 画面高さ - ヘッダー分 */
  /*  padding-top: calc(100svh - 64px - 51px);*/
}

.mv_inner{
  position: relative;
}

.mv_txt_box{
  width: 100%;
  top: 50%;
  left: 0;
  transform: translateY(0%) translateX(0%);
  z-index: 2;
  color: #fff;
  text-align: center;
  position: relative;
}
.mv_banner_img{
  width: 70%;
  margin-top: 0;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.mv_banner_img .img{
  width: 80%;
}
.mv_banner_img:before{
  content: "";
  display: block;
  padding-top: 0;
}

/* MVテキスト */
.mv_txt{
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 30px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  color: #FFF;
  font-size: 32px;
  font-weight: 700;
}
.mv_txt_p1{

}
.mv_txt_p2{

}

/* スライダーの場合 */
.mv_slider{

}
.mv_slider_item{
  position: relative;
  z-index: 1;
}

.gjs-dashed .mv_slider_item{
  background: #CCC;
  padding: 15px 15px;
}


.mv_txt_box1{
  font-family: var(--font-ja);
  letter-spacing: 0.075;
  color: var(--txt-color);
  text-align: center;
  margin-top: 50px;
}
.mv_txt_box1_txt{
  font-size: 26px;
  font-weight: 900;
  letter-spacing: 0.075;
}
.mv_txt_box1_txt strong{
  color: var(--sub-color);
}
.mv_txt_box2{
  font-size: 16px;
  font-family: var(--font-ja);
  color: #181818;
  margin-top: 13px;
  text-align: center;
}
.mv_txt_box2_txt{
  font-size: 15px;
  font-weight: 900;
  display: inline-block;
  background: var(--line-color);
  padding: 4px 10px;
  letter-spacing: 0.075em;
}
@media (min-width:768px){

  /* MV */
  .mv{

  }
  .mv_img{
    width: auto;
    margin-top: 30px;
  }
  .mv_img.img_fit:before{
    padding-top: 27.5%;
  }

  .mv_banner_img{
    width: 50%;
    margin-top: 0;
  }

  /* MVテキスト */
  .mv_txt{
    left: 30px;
    font-size: 32px;
  }
  .mv_txt_p1{

  }
  .mv_txt_p2{

  }

  .mv_txt_box{

  }
  .mv_txt_box1{
    margin-top: 0;
  }
  .mv_txt_box1_txt{
    margin-top: 20px;
    font-size: 40px;
    line-height: 1.42;
  }
  .mv_txt_box2_txt{
    font-size: 15px;
    padding: 6px 5px;
  }
}
@media (min-width:1024px){


  /* MV */
  .mv{
  }
  .mv_img{
    margin-top: 40px;
  }
  .mv_img.img_fit:before{
    padding-top: 27.5%;
  }
  .mv_banner_img .img{
    width: 100%;
  }
  .mv_banner_img{
    width: 60%;
    margin-top: -25px;
    padding-top: 0;
  }

  /* MVテキスト */
  .mv_txt_box{

  }
  .mv_txt_box1_txt{
    font-size: 50px;
  }
  .mv_txt_box2_txt{
    font-size: 20px;
  }
}
@media (min-width:1200px){

  /* MV */
  .mv{
  }
  .mv_img{
    margin-top: 10px;
    margin-left: 45px;
  }
  .mv_img.img_fit:before{
    padding-top: 27.45%;
  }
  .mv_banner_img{
    width: 40%;
    margin-top: -25px;
    padding-top: 0;
  }
  .mv_txt_box2_txt{
    font-size: 30px;
    font-weight: 900;
    display: inline-block;
    background: var(--line-color);
    padding: 4px 30px;
    letter-spacing: 0.075em;
  }
  /* MVテキスト */
  .mv_txt_box{

  }
  .mv_txt_box1_txt{
    margin-top: 0;
    font-size: 55px;
  }
  .mv_txt_box2_txt{
    font-size: 20px;
  }

}
@media (min-width:1720px){
  .mv_txt_box1{
    margin-top: 0;
  }
  .mv_banner_img{
    width: 100%;
    margin-top: -35px;
    padding-top: 0;
  }
  .mv_txt_box1_txt{
    margin-top: 0;
    font-size: 70px;
  }
}

/*******************************
*　サイドバー
********************************/

/* サイドバー */
.sidebar{
  position: fixed;
  z-index: 2;
  top: 50%;
  right: 0;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

/* バナー */
.sidebar_bn{
  display: block;
}
.sidebar_bn img{
  width: 40px;
  transition: 0.2s all;
}
.sidebar_bn:hover{

}
.sidebar_bn:hover img{
  transform: scale(1.05);
  filter: brightness(1.05);
}


@media (min-width:768px){

  /* サイドバー */
  .sidebar{
    top: 50%;
  }

  /* バナー */
  .sidebar_bn{
  }
  .sidebar_bn img{
    width: 60px;
  }


}
@media (min-width:1024px){

}
@media (min-width:1200px){

  /* バナー */
  .sidebar_bn{
  }
  .sidebar_bn img{
    width: auto;
  }

}


/*******************************
*　下層ヘッダー
********************************/
.pg_header{
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
  height: 300px;
}
.pg_header_mv_img{
  position: relative;
  z-index: 1;
}
/*.pg_header_mv_img.img_fit:before{
  padding-top: 150px;
}
.pg_header_mv_img:after{
  content: "";
  background: rgba(0,0,0,0.3);
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
}*/

.pg_header_title{
  position: absolute;
  z-index: 2;
  top: 40%;
  left: 0;
  right: 0;
  text-align: center;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.pg_header_title_txt{
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 0.075em;
  color: var(--txt-color);
}
.pg_header_title_txt strong{
  color: var(--sub-color);
}
.header_mv_img{
  position: absolute;
  z-index: 2;
  top: 70%;
  left: 0;
  right: 0;
  text-align: center;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.header_mv_img img{
  width: 90%;
}

/* topics news mv*/
.mv_wrap{
  position: relative;
  top: 50%;
}
.mv_wrap.cmn_tt{

}
.header_mv_img.left{
  top: 80%;
  left: -60%;
}
.header_mv_img.right{
  top: 80%;
  right: -60%;
}
.header_mv_img.left img,
.header_mv_img.right img{
  width: 15%;
}
.header_mv_img.left_1{
  top: 80%;
  left: -60%;
}
.header_mv_img.right_1{
  top: 80%;
  right: -60%;
}
@media (min-width:768px){
  .pg_header{
    margin-bottom: 40px;
    height: 400px;
    height: 350px;
  }
  .pg_header_mv_img.img_fit:before{
    padding-top: 350px;
  }

  .pg_header_title {
    top: 20%;
  }
  .pg_header_title_txt{
    font-size: 35px;
  }
  .header_mv_img{
    top: 60%;
  }
  .header_mv_img img{
    width: 75%;
  }

  /* topics news mv*/
  .mv_wrap{
    position: relative;
    top: 32%;
  }
  .mv_wrap.cmn_tt{

  }
  .header_mv_img.left{
    top: 80%;
    left: -50%;
  }
  .header_mv_img.right{
    top: 80%;
    right: -50%;
  }
  .header_mv_img.left img,
  .header_mv_img.right img{
    width: 15%;
  }
  .header_mv_img.left_1{
    top: 80%;
    left: -50%;
  }
  .header_mv_img.right_1{
    top: 80%;
    right: -50%;
  }
}
@media (min-width:1024px){
  .pg_header{
    margin-bottom: 70px;
    height: 350px;
  }
  .pg_header_mv_img.img_fit:before{
    padding-top: 350px;
  }

  .pg_header_title_txt{

  }
  .pg_header_title {
    top: 20%;
  }
  .header_mv_img{
    top: 70%;
  }
  .header_mv_img img{

  }


  /* topics news mv*/
  .mv_wrap{
    position: relative;
    top: 32%;
  }
  .mv_wrap.cmn_tt{

  }
  .header_mv_img.left{
    top: 80%;
    left: -50%;
  }
  .header_mv_img.right{
    top: 80%;
    right: -50%;
  }
  .header_mv_img.left img,
  .header_mv_img.right img{
    width: auto;
  }
  .header_mv_img.left_1{
    top: 80%;
    left: -40%;
  }
  .header_mv_img.right_1{
    top: 80%;
    right: -40%;
  }

}
@media (min-width:1200px){

  .pg_header{
    margin-bottom: 120px;
    height: 400px;
  }
  .pg_header_mv_img.img_fit:before{
    padding-top: 350px;
  }
  .pg_header_title{
    top: 28%;
    left: 0;
    right: 0;
  }
  .pg_header_title_txt{
    font-size: 40px;
  }
  .header_mv_img{
    top: 73%;
  }
  .header_mv_img img{
    width: auto;
  }

  /* topics news mv*/
  .mv_wrap{
    position: relative;
    top: 42%;
  }
  .mv_wrap.cmn_tt{

  }
  .header_mv_img.left{
    top: 60%;
    left: -40%;
  }
  .header_mv_img.right{
    top: 60%;
    right: -40%;
  }
  .header_mv_img.right_1{
    top: 60%;
    right: -35%;
  }
}
@media (min-width:1720px){

  .pg_header{
    margin-bottom: 120px;
    height: 400px;
  }
  .pg_header_mv_img.img_fit:before{
    padding-top: 350px;
  }
  .pg_header_title{
    top: 28%;
    left: 0;
    right: 0;
  }
  .pg_header_title_txt{
    font-size: 60px;
  }
  .header_mv_img{
    top: 73%;
  }
  .header_mv_img img{
    width: auto;
  }
  /* topics news mv*/
  .mv_wrap{
    position: relative;
    top: 42%;
  }
  .mv_wrap.cmn_tt{

  }
  .header_mv_img.left{
    top: 60%;
    left: -32%;
  }
  .header_mv_img.right{
    top: 60%;
    right: -35%;
  }
  .header_mv_img.right_1{
    top: 60%;
    right: -31%;
  }
}

/*******************************
*　フッター
********************************/

.footer{
  margin-top: 50px;
  padding-bottom: 30px;
}

.ftr1{
  border-top: 1px solid #7d7d7d;
  border-bottom: 1px solid #7d7d7d;
  padding: 30px 0;
  margin-bottom: 25px;
}

.ftr1>.container{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.ftr1_box1{

}
.ftr1_box2{

}

.ftr_logo{
  margin-bottom: 25px;
}
.ftr_name{
  font-weight: 500;
  letter-spacing: 0.075em;
  margin-bottom: 10px;
}
.ftr_addr{
  margin-bottom: 10px;
}


.ftr_contact{
  display: block;
  background: #ef7f1a;
  border-radius: 10px;
  color: #FFF;
  width: 255px;
  padding: 13px 5px;
  text-align: center;
}

.ftr_contact p:before{
  content:"\f0e0";
  font-family: "FontAwesome";
  margin-right: 10px;
}

.ftr_addr em{
  font-style: normal;
}
.ftr_copy{
  font-size: 14px;
  text-align: center;
  background: var(--main-color);
  color: #fff;
  padding: 8px;
  margin-top: 50px
}

/* 追尾スマホメニュー */
.footer_fix{
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--main-color);
  /*z-index: 1000;*/
  z-index: 5; /* チャットボットがある場合 */
  flex-wrap: wrap;
}
.footer_fix > a{
  font-size: 12px;
  text-align: center;
  display: block;
  padding: 10px 5px 5px;
  background: var(--sub-color);
  text-decoration: none;
  line-height: 1.2;
  color: #fff;
}
.footer_fix .footer_fix_item_1{
  width: 38%;
  border-right: 1px solid #fff;
  color: #FFF !important;
}
.footer_fix .footer_fix_item_1.recruit{
  background: #eeeeee;
  color: #024b93;
}
.footer_fix .footer_fix_item_2{
  width: 24%;
  background: var(--main-color);
}
.footer_fix > a i{
  font-size: 20px;
  margin-bottom: 8px;
}
.footer_fix .footer_fix_item_1.remorte i{
  margin-bottom: 0;
}

/* ページTOPに戻る */
.pagetop{
  display: none;
  position: fixed;
  z-index: 5;
  right: 10px;
  bottom: 60px;
  z-index: 3;
}
.pagetop a{
  display: block;
  font-size: 0;
  width: 42px;
  height: 42px;
  text-align: center;
  color: var(--sub-color);
}
.pagetop a i {
  font-size: 40px;
}

.ftr_contact_wrap{

}
.ftr_contact_box{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #bfbfbf;
  border-bottom: 1px solid #bfbfbf;
  padding: 25px 0;
}
.ftr_contact_box1{
  width: 100%;
}
.ftr_contact_box1 .content_desc strong{
  color: var(--sub-color);
  font-size: 15px;
}
.ftr_contact_box_en{
  font-size: 30px;
  font-weight: 400;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0;
  line-height: 1;
  color: var(--main-color);
}
.ftr_contact_box1 .content_desc{

}
.ftr_contact_box2{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.ftr_contact_box2_item{
  width: 100%;
}
.ftr_contact_box2_item_head{
  text-align: center;
}
.ftr_contact_box2_item_head_tt{
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0;
}
.ftr_contact_box2_item_head_tt:before{
  content: "";
  display: block;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  margin-inline:auto;
  min-height: 24px;
  margin-bottom: 19px;
}
.ftr_contact_box2_item.mail .ftr_contact_box2_item_head_tt:before{
  background-image: url(/system_panel/uploads/images/mail.png);
  width: 25px;
  aspect-ratio:25 / 18;
}
.ftr_contact_box2_item.tel .ftr_contact_box2_item_head_tt:before{
  background-image: url(/system_panel/uploads/images/tel.png);
  width: 25px;
  aspect-ratio:25 / 24;
}
.ftr_contact_box2_item_head_tt:after{
  content: "";
  display: block;
  width: 60px;
  height: 1px;
  background: #a39c92;
  margin: 20px auto 31px;
}
.ftr_contact_box2_item_box{

}
.ftr_contact_box2_item_tel{
  text-align: center;
}
.ftr_contact_box2_item_tel1{
  font-size: 28px;
  font-weight: 400;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.075em;
  ;
  line-height: 1;
}
.ftr_contact_box2_item_tel2{
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.075em;
  ;
  margin-top: 7px;
}
.link_1{
  text-align: center;
  display: block;
  font-size: 15px;
  font-weight: 500;
  background: var(--sub-color);
  color: #fff !important;
  width: 100%;
  max-width: 202px;
  margin-inline:auto;
  transition: all .2s;
  border-radius: 5px;
  padding: 12px;
}
.link_1:hover{
  background: var(--main-color);
  color: #181818!important;
}

.ftr_1{
  margin-top: 40px;
}
.ftr_1_box{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.ftr_1_box1{
  width: 100%;
}
.ftr_logo{

}
.ftr_add{
  font-size: 16px;
  font-weight: 400;
  line-height: 1.875em;
  margin-top: 32px;
}
.ftr_tel{
  font-size: 16px;
  font-weight: 400;
  margin-top: 32px;
}
.ftr_1_box2{
  width: 100%;
}
.ftr_links{

}
.ftr_link{

}



/*  採用情報ボタン */
.ftr_recruit_links{
  display: flex;
  flex-wrap: wrap;
  background: var(--line-color);
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  padding: 0px 5px;
  position: relative;
  height: 60px;
  z-index: 2;
}
.ftr_recruit_links_a{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 30px;
}
.ftr_recruit_links:before{
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid var(--sub-color);
  border-radius: 10px;
  z-index: -1;
}
.ftr_recruit_tt{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.ftr_recruit_tt_en{
  font-size: 30px;
  font-weight: 500;
  letter-spacing: 0.075;
  font-family: var(--font-en);
  padding-right: 18px;
}
.ftr_recruit_tt_ja{
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.075;
}
.ftr_recruit_links_a:hover{
  color: var(--sub-color);
}

@media (min-width:375px){

}
@media (max-width:767px){

  body{
    padding-bottom: 56px;
  }

  .footer_fix{
    display: flex;
  }

  .footer_fix{
    display: flex;
    transform: translateY(100%);
    transition: 0.2s all;
  }
  .footer_fix.show{
    transform: translateY(0);
  }

  #chatbot-btn{
    transform: translateX(100%);
    transition: 0.2s all;
  }
  #chatbot-btn.show{
    transform: translateX(0);
  }

  .ftr_contact_box{
    padding-bottom: 0;
  }
  .ftr_contact_box2_item{
    border-top: 1px solid #bfbfbf;
    padding: 30px 0;
  }
  .ftr_contact_box2_item:first-child{
    margin-top: 30px;
  }

  .ftr_logo{
    display: block;
    width: 180px;
    margin-inline: auto;
  }
  .ftr_1_box1{
    text-align: center;
  }
  .ftr_1_box2{
    display: none;
  }
}
@media (min-width:768px){
  .footer{
    margin-top: 100px;
  }
  .ftr_copy{
    margin-top: 80px;
  }

  .ftr_contact_wrap{

  }
  .ftr_contact_box{

  }
  .ftr_contact_box1{

  }
  .ftr_contact_box_en{
    font-size: 36px;
  }
  .ftr_contact_box1 .content_desc{

  }
  .ftr_contact_box2{
    margin-top: 40px;
    ;
  }
  .ftr_contact_box2_item{
    width: 50%;
    border-left: 1px solid #bfbfbf;
    padding: 20px 0;
  }
  .ftr_contact_box2_item:last-child{
    border-right: 1px solid #bfbfbf;
  }
  .ftr_contact_box2_item_head{

  }
  .ftr_contact_box2_item_head_tt{

  }
  .ftr_contact_box2_item_head_tt:before{

  }
  .ftr_contact_box2_item_head_tt:after{

  }
  .ftr_contact_box2_item_box{

  }
  .ftr_contact_box2_item_tel{

  }
  .ftr_contact_box2_item_tel1{
    font-size: 28px;
  }
  .ftr_contact_box2_item_tel2{

  }
  .link_1{

  }

  .ftr_1{
    margin-top: 80px;
  }
  .ftr_1_box{

  }
  .ftr_1_box1{
    width: 40.98%;
  }
  .ftr_logo{

  }
  .ftr_add{

  }
  .ftr_tel{

  }
  .ftr_1_box2{
    width: 53.01%;
  }
  .ftr_links{
    display: flex;
    flex-wrap: wrap;
    margin-top: 60px;
  }

  .ftr_link{
    width: 100%;
    font-size: 16px;
    font-weight: 400;
  }
  .ftr_link p{
    letter-spacing: 0;
  }
  .ftr_link{
    position: relative;
  }
  .ftr_link:nth-child(n+3){
    margin-top: 15px;
  }
  .ftr_link:nth-child(odd){
    width: 47.31%;
  }
  .ftr_link:nth-child(odd):after{
    content: "";
    display: block;
    width: 1px;
    height: 16px;
    background: #a7a7a7;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
  }
  .ftr_link:nth-child(even){
    width: 50.23%;
    padding-left: 69px;
  }
}
@media (min-width:1024px){
  .footer{
    margin-top: 180px;
  }
  .ftr_1_box1{
    width: 25.98%;
  }
  .ftr_1_box2{
    width: 39.01%;
    padding-top: 0;
  }

}
@media (min-width:1200px){
  .ftr_contact_wrap{

  }
  .ftr_contact_box{

  }
  .ftr_contact_box1{
    width: 45%;
  }
  .ftr_contact_box_en{
    font-size: 42px;
  }
  .ftr_contact_box1 .content_desc{

  }
  .ftr_contact_box2{
    width: 50.98%;
    margin-top: 0;
  }
  .ftr_contact_box2_item{
    padding: 43px 0;
  }
  .ftr_contact_box2_item:last-child{
    border-right: 0;
  }
  .ftr_contact_box2_item_head{

  }
  .ftr_contact_box2_item_head_tt{

  }
  .ftr_contact_box2_item_head_tt:before{

  }
  .ftr_contact_box2_item_head_tt:after{

  }
  .ftr_contact_box2_item_box{

  }
  .ftr_contact_box2_item_tel{

  }
  .ftr_contact_box2_item_tel1{
    font-size: 30px;
  }
  .ftr_contact_box2_item_tel2{

  }
  .link_1{

  }

  .ftr_1{

  }
  .ftr_1_box{

  }
  .ftr_1_box1{

  }
  .ftr_logo{

  }
  .ftr_add{
    margin-top: 60px;
  }
  .ftr_tel{

  }
  .ftr_1_box2{
    width: 34.01%;
  }
  .ftr_links{

  }
  .ftr_link{

  }
}

@media (min-width:1720px){
  .ftr_1_box2{
    width: 24.01%;
  }
}


/*******************************
*　共通パーツ
********************************/


/* テーブル用 */
.table_rows{
  display: table;
  table-layout: fixed;
  border-collapse: collapse;
  width: 100%;
}
.table_rows_tr{
  display: table-row;
}
.table_rows_th,
.table_rows_td{
  display: table-cell;
  border: 1px solid #dcdcdc;
  vertical-align: middle;
  padding: 10px 15px;
  letter-spacing: 0.075em;
}
.table_rows_th{
  background-color: #eeeeee;
  vertical-align: top;
  border-right: 0;
}
.table_rows_td{
  background-color: #eeeeee;
  vertical-align: top;
  border-left: 0;
}
.table_rows_td_pad0{
  padding: 0 !important;
}

/* テーブル入れ子 */
.table_rows .table_rows{

}
.table_rows .table_rows > .table_rows_tr:first-child .table_rows_th,
.table_rows .table_rows > .table_rows_tr:first-child .table_rows_td{
  border-top:0;
}
.table_rows .table_rows > .table_rows_tr:last-child .table_rows_th,
.table_rows .table_rows > .table_rows_tr:last-child .table_rows_td{
  border-bottom:0;
}
.table_rows .table_rows > .table_rows_tr .table_rows_th:first-child,
.table_rows .table_rows > .table_rows_tr .table_rows_td:first-child{
  border-left:0;
}
.table_rows .table_rows > .table_rows_tr .table_rows_th:last-child,
.table_rows .table_rows > .table_rows_tr .table_rows_td:last-child{
  border-right:0;
}


/* ページネーション */
.webgene-pagination {
  width: 100%;
  margin: 50px 0 0;
  line-height: 1.85;
}
.webgene-pagination ul{
  display: flex;
  justify-content: center;
  align-items: center;
}
.webgene-pagination li{
  padding: 4px 13px;
  margin: 0 4px;
  border: 1px solid var(--main-color);
  background: #ffffff;
  font-weight: 500;
}
.webgene-pagination li.selected{
  border: 0;
  background: var(--main-color);
  color: #FFF;
}
.webgene-pagination li.next a:after{
  content: "\f101";
  font-family: 'FontAwesome';
  font-weight: 900;
  display: inline-block;
  margin-left: 10px;
}
.webgene-pagination li.prev a:before{
  content: "\f100";
  font-family: 'FontAwesome';
  font-weight: 900;
  display: inline-block;
  margin-right: 10px;
}

/* アンカー */
.anchor{
  position: relative;
  top: -30px;
}

/* ボタン */
.read_more{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 30px;
  margin-left: -5px;
  margin-right: -5px;
}
.read_more .left{
  justify-content: left;
}
.read_more a{
  width: 100%;
  max-width: 280px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.075;
  text-align: center;
  /* border: 1px solid #181818;*/
  background: var(--main-color);
  border-radius: 50px;
  color: var(--txt-color);
  padding: 16px 20px;
  margin: 5px 5px;
  position: relative;
  z-index: 1;
  transition: 0.2s all;
}
.read_more a p{
  /*letter-spacing: 0;*/
}
/*.read_more a:after{
  content: "";
  position: absolute;
  z-index: 1;
  width: 47.61%;
  height: 1px;
  background: #181818;
  top: 50%;
  right: -23.8%;
  transform: translateY(-50%);
  transition: 0.2s all;
}*/
.read_more a:hover{
  color: #FFF;
  background: var(--sub-color);
}
.read_more a:hover:after{
  margin-right: -5px;
}


/* 見出し */
.tt2{
  text-align: center;
  margin-bottom: 30px;
}
.tt2_en{
  font-size: 60px;
  font-weight: 700;
  font-family: var(--font-en);
  line-height: 1;
  color: #f3f3f3;
}
.tt2_en_txt{
  letter-spacing: 0;
}
.tt2_ja{
  font-size: 16px;
  font-weight: 900 ;
  font-family: var(--font-ja);
  margin-top: 5px;
  letter-spacing: 0 ;
}
.tt2_ja2{
  font-size: 18px;
  font-weight: 500;
  margin-top: 15px;
}
.tt2_ja2 strong{
  display: block;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
}


/* セクション */
.section{
  padding-top: 50px;
  padding-bottom: 50px;
}
.section.sec1{
  padding-top: 0;
}
.section:last-child{
  padding-bottom: 0;
}

.section.beige{
  background-color: #c3b9a9;
}

/* コンテナ */
.container.wide{

}

.sec_sub{
  font-size:18px;
  font-weight: 600;
  font-family: "Zen Old Mincho", serif;
  line-height: 1.57em;
}
.content_desc{
  font-size:16px;
  font-weight: 400;
  line-height: 1.875em;
  text-align: justify;
  margin-top: 15px;
}
.content_desc.cmn_txt{
  font-weight: 500 !important;
}
.content_desc p{
  letter-spacing: 0.075em ;
}
.content_desc.cmn_txt p{
  letter-spacing: 0!important;
}

/*ボーダーあり*/
.tt2_outer{
  text-align: center;
}
.tt2_outer .tt2_ja{
  display: inline-block;
  border-bottom: 1px solid #031274;
  padding-bottom: 5px;
}
.tt2_ja_sub{
  font-size: 17px;
  font-weight: 500;
  font-family: "Zen Old Mincho", serif;
  margin-top: 14px;
}
@media (max-width:374px){

}
@media (min-width:375px){

}
@media (max-width:767px){

  /* スマホ用テーブル */
  .table_rows.resp{

  }
  .table_rows.resp,
  .table_rows.resp .table_rows_tr,
  .table_rows.resp .table_rows_th,
  .table_rows.resp .table_rows_td{
    display: block;
    width: 100%;
    border: 0;
  }

  .table_rows.resp{
    border: 1px solid #dcdcdc;
    border-top: 0;
  }
  .table_rows.resp .table_rows_th,
  .table_rows.resp .table_rows_td{
    border-top: 1px solid #dcdcdc;
  }

}
@media (min-width:768px){

  .anchor{
    top: -100px;
  }

  /* ページネーション */
  .webgene-pagination {
    margin-top: 50px;
  }

  /* ボタン */
  .read_more{
    margin-top: 40px;
  }
  .read_more.center{
    justify-content: center;
  }
  .read_more.left{
    justify-content: flex-start;
  }
  .read_more.right{
    justify-content: flex-end;
  }
  .read_more a{
    font-size: 16px;
    padding: 15px 25px;
    margin: 5px 5px;
  }
  /*  .read_more a:after{
      content: "";
      top: 50%;
      right: -23.8%;
    }*/
  .read_more a:hover:after{
    right: -23.8%;
  }

  /* 見出し */
  .tt2{
    margin-bottom: 50px;
  }
  .tt2_en{
    font-size: 100px;
  }
  .tt2_ja{
    font-size: 20px;
    margin-top: 15px;
  }

  .tt2_ja2{
    font-size: 24px;
    margin-top: 30px;
  }
  .tt2_ja2 strong{
    font-size: 18px;
  }

  .sec_sub{
    font-size: 22px;
  }
  .content_desc{

  }

  /*ボーダーあり*/
  .tt2_outer{

  }
  .tt2_outer .tt2_ja{

  }
  .tt2_ja_sub{
    font-size: 18px;
  }
}
@media (min-width:1024px){

  /* ページネーション */
  .webgene-pagination{
    margin-top: 80px;
  }
  .posts_list .webgene-pagination{
    margin-top: 80px;
  }

  /* 見出し */
  /*.tt2{
    margin-bottom: 50px;
  }
  */
  .tt2_en{
    font-size: 110px;
  }
  .tt2_ja{
    font-size: 20px;
    margin-top: 15px;
  }

}
@media (min-width:1200px){
  .sec_sub{
    font-size: 33px;
  }
  .content_desc{

  }
  .content_desc.center{
    text-align: center
  }

  /* 見出し */
  /*.tt2{
    margin-bottom: 50px;
  }
  */
  .tt2_en{
    font-size: 120px;
  }
  .tt2_ja{
    font-size: 20px;
    margin-top: 15px;
  }


  /*ボーダーあり*/
  .tt2_outer{

  }
  .tt2_outer .tt2_ja{

  }
  .tt2_ja_sub{

  }
}


@media (min-width:1366px){

  /* 見出し */
  .tt2{
    margin-bottom: 39px;
  }
  .tt2_en{

  }
  .tt2_en.mid{
    font-size: 20px;
  }
  .tt2_ja{
    font-size: 24px;
  }

}

.swiper-pagination{
  position: static;
  margin-top: 5px;
}
.swiper-pagination-bullet{
  background-color: var(--main-color);
}
.swiper-pagination-bullet-active{
  background-color: var(--sub-color);
}

@media (min-width:1720px){
  .tt2_en{
    font-size: 180px;
  }
}
/*******************************
*　HOME
********************************/
.pg_home{

}
.pg_home .section.sec1{

}
.pg_home .section.sec2{

}
.pg_home .section.sec3{

}
.pg_home .section.sec4{

}
.pg_home .section.sec5{

}
.pg_home .section.sec6{

}


@media (max-width:767px){
  .pg_home{

  }
  .pg_home .section.sec1{

  }
  .pg_home .section.sec2{

  }
  .pg_home .section.sec3{
    padding-top: 0;
  }
  .pg_home .section.sec4{

  }
  .pg_home .section.sec5{

  }
  .pg_home .section.sec6{

  }
}
@media (min-width:768px){
  .pg_home{

  }
  .pg_home .section.sec1{

  }
  .pg_home .section.sec2{

  }
  .pg_home .section.sec3{

  }
  .pg_home .section.sec4{

  }
  .pg_home .section.sec5{

  }
  .pg_home .section.sec6{

  }


}
@media (min-width:1024px){


}
@media (min-width:1200px){


}
@media (min-width:1470px){


}
@media (min-width:1720px){
  .pg_home{

  }
  .pg_home .section.sec1{

  }
  .pg_home .section.sec2{
    padding-top: 65px;
  }
  .pg_home .section.sec3{
    padding-top: 25px;
  }
  .pg_home .section.sec4{

  }
  .pg_home .section.sec5{
    padding-top: 50px;
  }
  .pg_home .section.sec6{
    padding-top: 70px;
  }

}

/* メイン */

/* ABOUT US */
.cmn_box{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 50px;
}
.cmn_box1{
  width: 100%;

}
.cmn_box2{
  width: 100%;
}
.cmn_title_ja{
  margin-top: -18px;
  margin-bottom: 30px;
}
.cmn_title_ja_txt{
  font-family: var(--font-ja);
  font-size: 26px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.32;
}
.content_desc{

}
.cmn_box_img{
  top: 30px;
  right: 0;
  aspect-ratio: 116 / 121;
  width: 80%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}
.cmn_box_img:before{

}

/*その不安、本当に事実ですか*/
.cmn_inner{
  background: #f0f9fe;
  padding: 70px 0;
}
.home_problem_tittle{

}
.home_problem_tittle_txt{
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 0;
  color: var(--txt-color);
  text-align: center;
}
.home_problem_tittle_txt strong{
  color: var(--sub-color);
}
.home_problem_boxs{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 20px;
}
.home_problem_box1{
  width: 100%;
}
.home_problem_box2{
  width: 100%;
  margin-top: 30px;
  margin-bottom: 30px;
}
.home_problem_box3{
  width: 100%;
}

/*.problem_box{
  position: relative;
  background-image: url(/system_panel/uploads/images/home_02.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  aspect-ratio: 490 / 253;
  width: auto;
  height: auto;
}*/
.problem_box_1{
  position: relative;
  background-image: url(/system_panel/uploads/images/home_02.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  /*  aspect-ratio: 490 / 253;*/
  width: 100%;
  height: auto;
}
.problem_box_2{
  position: relative;
  background-image: url(/system_panel/uploads/images/home_04.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  /*  aspect-ratio: 477 / 250;*/
  margin-top: 20px;
  width: 100%;
  height: auto;
}
.problem_box_3{
  position: relative;
  background-image: url(/system_panel/uploads/images/home_03.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  /*  aspect-ratio: 492 / 250;*/
  width: 100%;
  height: auto;
}
.problem_box_4{
  position: relative;
  background-image: url(/system_panel/uploads/images/home_05.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  /*  aspect-ratio: 490 / 253;*/
  margin-top: -5px;
  width: 100%;
  height: auto;
}
.problem_box_txt_1{
  position: absolute;
  top: 50px;
  right: 40px;
  bottom: 0;
  text-align: center;
}
.problem_box_txt_2{
  position: absolute;
  top: 56px;
  left: 45px;
  bottom: 0;
  text-align: center;
}
.problem_box_txt_3{
  position: absolute;
  top: 60px;
  right: 133px;
  bottom: 0;
  text-align: center;
}
.problem_box_txt_4{
  position: absolute;
  top: 63px;
  right: 16px;
  bottom: 0;
  text-align: center;
}
.problem_box_title{
  display: inline;
  padding: 0 5px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.075em;
  line-height: 1.44;
  text-align: center;
  position: relative;
  z-index: 2;
}
.problem_box_title_left{
  text-align: left;
}

.problem_box_title:after{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 14px;
  background: var(--line-color);
  z-index: -1;
}
.problem_box_txt .content_desc{
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  margin-top: 35px;
}

.home_problem_box2_inner{
  background: var(--main-color);
  padding: 30px 20px;
  position: relative;
  border-radius: 10px;
}
.home_problem_box2_inner::before{
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid #FFF;
  border-radius: 10px;
}
.read_more.wh{
  margin-top: 35px;
}
.read_more.wh .read_more_a{
  background: #FFF;
  color: var(--txt-color);
  padding: 5px 25px;
  max-width: 300px;
}
.read_more.wh a:hover{
  background: var(--sub-color);
  color: #FFF;
}
.home_problem_box_tittle{
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.75;
  text-align: center;
}
.home_problem_box2_inner .content_desc{
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  text-align: justify;
  line-height: 1.875;
  margin-top: 20px;
}
.home_problem_box_tittle_txt1{

}
.read_more .wh{

}
.read_more .wh .read_more_a{

}
.read_more .wh:after{

}
.home_reason_box_inner{

}
.home_reason_head{
  font-size: 68px;
  font-weight: 900;
  letter-spacing: 0;
}

.home_reason_head_txt{
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0;
  color: var(--txt-color);
}
.home_reason_head_txt strong{
  color: var(--sub-color);
}


.home_reason_content{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 35px;
  margin-left: auto;
  margin-right: auto;
}
.home_reason_side{
}
.home_reason_side_txt{
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0;
  color: var(--txt-color);
  /*  writing-mode: vertical-rl;*/
}
.home_reason_side_txt strong{
  color: var(--sub-color);
}
.home_reason_boxs{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 10px;
}
.home_reason_box{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}
.home_reason_box:nth-child(n+2){
  margin-top: 15px;
}
.home_reason_box_inner{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border: 5px solid var(--main-color);
  border-radius: 20px;
  padding: 30px 10px;
  background-image: linear-gradient(0deg, transparent calc(100% - 1px), #f0f0f0 calc(100% - 1px)),
    linear-gradient(90deg, transparent calc(100% - 1px), #f0f0f0 calc(100% - 1px));
  background-size: 16px 16px;
  background-repeat: repeat;
  background-position: center center;
}
.home_reason_box1{
  width: 100%;
  margin-top: 0;
  text-align: center;
}
.home_reason_box2{
  width: 100%;
  margin-top: 15px;
}
.home_reason_img{
  width: 40%;
  aspect-ratio: 194 / 227;
  margin-left: auto;
  margin-right: auto;
}
/*.home_reason_img.first{
  height: auto;
  aspect-ratio: 194 / 227;
}
.home_reason_img.second{
  height: auto;
  aspect-ratio: 162 / 225;
}
.home_reason_img.third{
  height: auto;
  aspect-ratio: 181 / 187;
}
.home_reason_img.fourth{
  height: auto;
  aspect-ratio: 62 / 117;
}*/
.home_reason_img:before{

}
.home_reason_titlle{
  font-size: 17px;
  font-weight: 900;
  line-height: 1.75;
}
.home_reason_titlle_txt{
  letter-spacing: 0;
}

.home_reason_titlle_txt strong{
  color: var(--sub-color);
}

.home_reason_box2 .content_desc{
  margin-top: 13px;
}

.home_industry_wrap{
  margin-top: 30px;
}
.home_industry_tittle{
  font-size: 22px;
  font-weight: 900;
  text-align: center;
}
.home_industry_tittle:after{
  content: "";
  display: block;
  width: auto;
  height: 2px;
  background-image: url(/system_panel/uploads/images/border.png);
  background-repeat: no-repeat;
  margin-top: 19px;
  margin-bottom: 30px;
}
.home_industry_items{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-inline: 5px;
}
.home_item{
  width: 50%;
  border-radius: 10px;
  padding: 20px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  margin-inline: -5px;
}
.home_item:nth-child(n+3){
  margin-top: 10px;
}
.home_item:nth-child(even){
  background: #fbf2ec;
}
.home_item:nth-child(odd){
  background: #f0f9fe;
}
.home_item_img{

}
.home_item_img:before{

}
.home_item_img:before{


}
.home_item_txt{
  font-size: 15px;
  font-weight: 900;
  margin-top: 15px;
}

.cmn_tt{
  text-align: center;
}
.cmn_tt2_ja{
  font-family: var(--font-ja);
  margin-top: -20px;
}
.home_workers_boxs{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home_workers_box1{
  width: 100%;
  z-index: -1
}
.home_workers_box2{
  width: 100%;
  z-index: 1;
  margin-right: -48px;
  margin-top: 30px;
}
.home_workers_box2 .cmn_title_ja {
  margin-top: 0;
  margin-bottom: 30px;
}
.home_workers_img{
  margin-top: -30px;
}
.cmn_tt2_ja_txt{
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0;
}
.cmn_sub_title{
  font-size: 17px;
  font-weight: 900;
  line-height: 1.61;
}
.cmn_sub_title_txt{
  letter-spacing: 0;
}
.home_workers_box2 .content_desc{
  margin-top: 15px;
  font-weight: 400 !important;
}


@media (max-width:374px){

}
@media (min-width:375px){

}
@media (max-width:767px){
  /*その不安、本当に事実ですか*/
  /* イラスト(sp) */
  .problem_box_1{
    position: relative;
    background-image: url(/system_panel/uploads/images/home_02_sp.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    aspect-ratio: 173 / 120;
    width: 100%;
    height: auto;
  }
  .problem_box_2{
    position: relative;
    background-image: url(/system_panel/uploads/images/home_04_sp.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    aspect-ratio: 691 / 511;
    margin-top: 50px;
    width: 100%;
    height: auto;
  }
  .problem_box_3{
    position: relative;
    background-image: url(/system_panel/uploads/images/home_03_sp.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    aspect-ratio: 701 / 538;
    width: 100%;
    height: auto;
  }
  .problem_box_4{
    position: relative;
    background-image: url(/system_panel/uploads/images/home_05_sp.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    aspect-ratio: 690 / 530;
    margin-top: 20px;
    width: 100%;
    height: auto;
  }
  .problem_box_title{
    display: inline-block;
    /*    background: var(--line-color);*/
    padding: 0 5px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.075em;
    line-height: 1.44;
    text-align: center;
  }

  .home_problem_box1 .problem_box_txt_1{
    position: absolute;
    top: 50px;
    left: 50px;
    bottom: 0;
    text-align: center;
    padding: 0 5px;
  }
  .home_problem_box1 .problem_box_txt_2{
    position: absolute;
    top: 40px;
    right: 40px;
    left: 45px;
    bottom: 0;
    text-align: center;
    padding: 10px 5px;
  }
  .home_problem_box3 .problem_box_txt_3{
    position: absolute;
    top: 80px;
    right: 40px;
    bottom: 0;
    text-align: center;
    padding: 0 5px;
  }
  .home_problem_box3 .problem_box_txt_4{
    position: absolute;
    top: 60px;
    left: 45px;
    bottom: 0;
    text-align: center;
    padding: 0 5px;
  }
  .problem_box_txt .content_desc.left{
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0;
    margin-top: 10px;
    line-height: 1.6;
    padding-inline: 20px;
    padding-left: 20px;
  }
  .problem_box_txt .content_desc.right{
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0;
    margin-top: 10px;
    line-height: 1.6;
    padding-inline: 5px;
    padding-right: 20px;
  }
}
@media (min-width:768px){
  /* メイン */

  /* ABOUT US */
  .cmn_box{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 20px;
  }
  .cmn_box1{

  }
  .cmn_box2{

  }
  .cmn_title_ja{
    margin-top: -20px;
    margin-bottom: 25px;
  }
  .cmn_title_ja_txt{
    font-family: var(--font-ja);
    font-size: 35px;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.32;
  }
  .content_desc{

  }
  .cmn_box_img{
    top: 40px;
    width: 70%;
    margin-left: auto;
    margin-right: auto;
  }
  .cmn_box_img:before{

  }

  /*その不安、本当に事実ですか*/
  .cmn_inner{
    background: #f0f9fe;
    padding: 80px 0;
  }
  .home_problem_tittle{

  }
  .home_problem_tittle_txt{
    font-size: 40px;
    font-weight: 900;
    letter-spacing: 0;
    color: var(--txt-color);
    text-align: center;
  }
  .home_problem_tittle_txt strong{
    color: var(--sub-color);
  }
  .home_problem_boxs{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 35px;
  }
  .home_problem_box1{
    display: flex;
    width: 100%;
  }
  .home_problem_box2{
    width: 100%;
    margin-top: 50px;
    margin-bottom: 50px;
  }
  .home_problem_box3{
    display: flex;
    width: 100%;
  }

  /*  .problem_box{
      position: relative;
      background-image: url(/system_panel/uploads/images/home_02.png);
      background-repeat: no-repeat;
      background-position: center bottom;
      background-size: contain;
      aspect-ratio: 490 / 253;
    }
    .problem_box_1{
      position: relative;
      background-image: url(/system_panel/uploads/images/home_02.png);
      background-repeat: no-repeat;
      background-position: center bottom;
      background-size: contain;
      aspect-ratio: 490 / 253;
    }
    .problem_box_2{
      position: relative;
      background-image: url(/system_panel/uploads/images/home_04.png);
      background-repeat: no-repeat;
      background-position: center bottom;
      background-size: contain;
      aspect-ratio: 477 / 250;
      margin-top: -10px;
    }
    .problem_box_3{
      position: relative;
      background-image: url(/system_panel/uploads/images/home_03.png);
      background-repeat: no-repeat;
      background-position: center bottom;
      background-size: contain;
      aspect-ratio: 492 / 250;
    }
    .problem_box_4{
      position: relative;
      background-image: url(/system_panel/uploads/images/home_05.png);
      background-repeat: no-repeat;
      background-position: center bottom;
      background-size: auto auto;
      aspect-ratio: 490 / 253;
      margin-top: -5px;
    }*/
  /*その不安、本当に事実ですか*/
  /* イラスト(sp) */
  .problem_box_1{
    position: relative;
    background-image: url(/system_panel/uploads/images/home_02_sp.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    aspect-ratio: 173 / 120;
    width: 100%;
    height: auto;
  }
  .problem_box_2{
    position: relative;
    background-image: url(/system_panel/uploads/images/home_04_sp.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    aspect-ratio: 691 / 511;
    width: 100%;
    height: auto;
    margin-top: 0;
  }
  .problem_box_3{
    position: relative;
    background-image: url(/system_panel/uploads/images/home_03_sp.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    aspect-ratio: 701 / 538;
    width: 100%;
    height: auto;
  }
  .problem_box_4{
    position: relative;
    background-image: url(/system_panel/uploads/images/home_05_sp.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    aspect-ratio: 690 / 530;
    width: 100%;
    height: auto;
  }
  .problem_box_title{
    display: inline-block;
    /*    background: var(--line-color);*/
    padding: 0 5px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.075em;
    line-height: 1.44;
    text-align: center;
  }
  .problem_box_title_left{

  }
  .home_problem_box1 .problem_box_txt_1{
    position: absolute;
    top: 55px;
    left: 50px;
    bottom: 0;
    text-align: center;
  }
  .home_problem_box1 .problem_box_txt_2{
    position: absolute;
    top: 35px;
    right: 50px;
    bottom: 0;
    text-align: center;
  }
  .home_problem_box3 .problem_box_txt_3{
    position: absolute;
    top: 55px;
    right: 30px;
    bottom: 0;
    text-align: center;
  }
  .home_problem_box3 .problem_box_txt_4{
    position: absolute;
    top: 45px;
    left: 35px;
    bottom: 0;
    text-align: center;
  }
  .problem_box_txt .content_desc.left{
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0;
    margin-top: 10px;
    line-height: 1.5;
    padding-inline: 40px;
    padding-left: 40px;
  }
  .problem_box_txt .content_desc.right{
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0;
    margin-top: 10px;
    line-height: 1.5;
    padding-inline: 10px;
    padding-right: 30px;
  }

  .home_problem_box2_inner{
    background: var(--main-color);
    padding: 50px 10px;
    position: relative;
    border-radius: 10px;
  }
  .home_problem_box2_inner::before{
    content: "";
    position: absolute;
    inset: 10px;
    border: 1px solid #FFF;
    border-radius: 10px;
  }
  .read_more.wh{
    margin-top: 35px;
  }
  .read_more.wh .read_more_a{
    background: #FFF;
    color: var(--txt-color);
    padding: 5px 25px;
    max-width: 300px;
  }
  .home_problem_box_tittle{
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.75;
    text-align: center;
  }
  .home_problem_box2_inner .content_desc{
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0;
    text-align: center;
    line-height: 1.875;
    margin-top: 35px;
  }
  .home_problem_box_tittle_txt1{

  }
  .read_more .wh{

  }
  .read_more .wh .read_more_a{

  }
  .read_more .wh:after{

  }
  .home_reason_box_inner{

  }
  .home_reason_head{
    font-size: 68px;
    font-weight: 900;
    letter-spacing: 0;
  }

  .home_reason_head_txt{
    font-size: 45px;
    font-weight: 900;
    letter-spacing: 0;
    color: var(--txt-color);
  }
  .home_reason_head_txt strong{
    color: var(--sub-color);
  }

  .home_reason_content{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 35px;
    margin-left: -15px;
  }
  .home_reason_side{
  }
  .home_reason_side_txt{
    font-size: 45px;
    font-weight: 900;
    letter-spacing: 0;
    color: var(--txt-color);
    writing-mode: vertical-rl;
  }
  .home_reason_side_txt strong{
    color: var(--sub-color);
  }
  .home_reason_boxs{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 10px;
  }
  .home_reason_box{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 50%;
    padding-inline: 10px;
  }
  .home_reason_box:nth-child(n+2) {
    margin-top: 0;
  }
  .home_reason_box:nth-child(n+3) {
    margin-top: 15px;
  }
  .home_reason_box_inner{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    border: 5px solid var(--main-color);
    border-radius: 20px;
    padding: 20px 25px;
    background-image: linear-gradient(0deg, transparent calc(100% - 1px), #f0f0f0 calc(100% - 1px)),
      linear-gradient(90deg, transparent calc(100% - 1px), #f0f0f0 calc(100% - 1px));
    background-size: 16px 16px;
    background-repeat: repeat;
    background-position: center center;
    align-content: flex-start;
  }
  .home_reason_box1{
    width: 100%;
    margin-top: 0;
  }
  .home_reason_box2{
    width: 100%;
    margin-top: 20px;
  }
  .home_reason_img{
    margin-left: auto;
    margin-right: auto;
  }
  /*  .home_reason_img.first{
      height: auto;
      aspect-ratio: 194 / 227;
    }
    .home_reason_img.second{
      height: auto;
      aspect-ratio: 162 / 225;
    }
    .home_reason_img.third{
      height: auto;
      aspect-ratio: 181 / 187;
    }
    .home_reason_img.fourth{
      height: auto;
      aspect-ratio: 62 / 111;
    }*/
  .home_reason_titlle{
    font-size: 17px;
    font-weight: 900;
    line-height: 1.75;
  }
  .home_reason_titlle_txt{
    letter-spacing: 0;
  }

  .home_reason_titlle_txt strong{
    color: var(--sub-color);
  }

  .home_reason_box2 .content_desc{
    margin-top: 13px;
  }

  .home_industry_wrap{

  }
  .home_industry_tittle{
    font-size: 24px;
    font-weight: 900;
    text-align: center;
  }
  .home_industry_tittle:after{
    content: "";
    display: block;
    width: auto;
    height: 2px;
    background-image: url(/system_panel/uploads/images/border.png);
    background-repeat: no-repeat;
    margin-top: 19px;
    margin-bottom: 30px;
  }
  .home_industry_items{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .home_item{
    width: 33.333%;
    border-radius: 10px;
    padding: 35px10px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .home_item:nth-child(n+3) {
    margin-top: 0;
  }
  .home_item:nth-child(n+4) {
    margin-top: 10px;
  }
  .home_item:nth-child(even){
    background: #fbf2ec;
  }
  .home_item:nth-child(odd){
    background: #f0f9fe;
  }
  .home_item_img{

  }
  .home_item_img:before{

  }
  .home_item_img:before{


  }
  .home_item_txt{
    font-size: 18px;
    font-weight: 900;
    margin-top: 15px;
  }

  .cmn_tt{
    text-align: center;
  }
  .cmn_tt2_ja{
    font-family: var(--font-ja);
    margin-top: -35px;
  }
  .home_workers_boxs{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .home_workers_box1{
    width: 100%;
    z-index: -1
  }
  .home_workers_box2{
    width: 100%;
    z-index: 1;
    margin-right: -48px;
    margin-top: 30px;
  }
  .home_workers_img{
    margin-top: -55px;
  }
  .cmn_tt2_ja_txt{
    font-size: 25px;
    font-weight: 900;
    letter-spacing: 0;
  }
  .cmn_sub_title{
    font-size: 26px;
    font-weight: 900;
    line-height: 1.61;
  }
  .cmn_sub_title_txt{
    letter-spacing: 0;
  }
  .home_workers_box2 .content_desc{
    margin-top: 37px;
  }

}
@media (min-width:1024px){
  /* メイン */

  /* ABOUT US */
  .cmn_box{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 20px;
  }
  .cmn_box1{
    width: 56.39%;
  }
  .cmn_box2{
    width: 31.61%;
  }
  .cmn_title_ja{
    margin-top: -25px;
    margin-bottom: 30px;
  }
  .cmn_title_ja_txt{
    font-family: var(--font-ja);
    font-size: 40px;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.32;
  }
  .content_desc{

  }
  .cmn_box_img{
    top: 170px;
    right: 50px;
    aspect-ratio: 116 / 121;
    width: auto;
    height: auto;
  }
  .cmn_box_img:before{

  }

  /*その不安、本当に事実ですか*/
  .cmn_inner{
    background: #f0f9fe;
    padding: 80px 0;
  }
  .home_problem_tittle{

  }
  .home_problem_tittle_txt{
    font-size: 60px;
    font-weight: 900;
    letter-spacing: 0;
    color: var(--txt-color);
    text-align: center;
  }
  .home_problem_tittle_txt strong{
    color: var(--sub-color);
  }
  .home_problem_boxs{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 50px;
  }
  .home_problem_box1{
    width: 100%;
  }
  .home_problem_box2{
    width: 100%;
  }
  .home_problem_box3{
    width: 100%;
  }

  .problem_box{
    position: relative;
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: auto auto;
    aspect-ratio: 490 / 253;
  }
  .problem_box_1{
    position: relative;
    background-image: url(/system_panel/uploads/images/home_02.png);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: contain;
    aspect-ratio: 490 / 253;
  }
  .problem_box_2{
    position: relative;
    background-image: url(/system_panel/uploads/images/home_04.png);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: contain;
    aspect-ratio: 477 / 250;
    margin-top: 0;
  }
  .problem_box_3{
    position: relative;
    background-image: url(/system_panel/uploads/images/home_03.png);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: contain;
    aspect-ratio: 492 / 250;
  }
  .problem_box_4{
    position: relative;
    background-image: url(/system_panel/uploads/images/home_05.png);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: contain;
    aspect-ratio: 490 / 253;
  }

  .problem_box_title{
    display: inline-block;
    /*    background: var(--line-color);*/
    padding: 0 5px;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.075em;
    line-height: 1.44;
    text-align: center;
  }
  .home_problem_box1 .problem_box_txt_1{
    position: absolute;
    top: 50px;
    left: 110px;
    bottom: 0;
    text-align: center;
  }
  .home_problem_box1 .problem_box_txt_2{
    position: absolute;
    top: 50px;
    right: 140px;
    bottom: 0;
    text-align: center;
  }
  .home_problem_box3 .problem_box_txt_3{
    position: absolute;
    top: 60px;
    right: 116px;
    bottom: 0;
    text-align: center;
  }
  .home_problem_box3 .problem_box_txt_4{
    position: absolute;
    top: 80px;
    left: 126px;
    bottom: 0;
    text-align: center;
  }
  .problem_box_txt .content_desc.left{
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0;
    margin-top: 10px;
    line-height: 1.5;
    padding-inline: 0;
    padding-left: 0;
  }
  .problem_box_txt .content_desc.right{
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0;
    margin-top: 10px;
    line-height: 1.5;
    padding-inline: 0;
    padding-right: 0;
  }

  .home_problem_box2_inner{
    background: var(--main-color);
    padding: 50px 10px;
    position: relative;
    border-radius: 10px;
  }
  .home_problem_box2_inner::before{
    content: "";
    position: absolute;
    inset: 10px;
    border: 1px solid #FFF;
    border-radius: 10px;
  }
  .read_more.wh{
    margin-top: 35px;
  }
  .read_more.wh .read_more_a{
    background: #FFF;
    color: var(--txt-color);
    padding: 5px 25px;
    max-width: 300px;
  }
  .home_problem_box_tittle{
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.75;
    text-align: center;
  }
  .home_problem_box2_inner .content_desc{
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0;
    text-align: center;
    line-height: 1.875;
    margin-top: 35px;
  }
  .home_problem_box_tittle_txt1{

  }
  .read_more .wh{

  }
  .read_more .wh .read_more_a{

  }
  .read_more .wh:after{

  }
  .home_reason_box_inner{

  }
  .home_reason_head{

  }
  .home_reason_head_txt{
    font-size: 55px;
    font-weight: 900;
    letter-spacing: 0;
    color: var(--txt-color);
  }
  .home_reason_head_txt strong{
    color: var(--sub-color);
  }

  .home_reason_content{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 35px;
    margin-left: -15px;
  }
  .home_reason_side{
  }
  .home_reason_side_txt{
    font-size: 55px;
    font-weight: 900;
    letter-spacing: 0;
    color: var(--txt-color);
    writing-mode: vertical-rl;
  }
  .home_reason_side_txt strong{
    color: var(--sub-color);
  }
  .home_reason_boxs{
    /*width: 100%;*/
    width: 88.78%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-content: flex-start;
    margin-top: 10px;
  }
  .home_reason_box{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    /*width: 100%;*/
    width: 50%;
  }
  .home_reason_box:nth-child(n+3){
    margin-top: 25px;
  }
  .home_reason_box_inner{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    border: 5px solid var(--main-color);
    border-radius: 20px;
    padding: 20px 15px;
    background-image: linear-gradient(0deg, transparent calc(100% - 1px), #f0f0f0 calc(100% - 1px)),
      linear-gradient(90deg, transparent calc(100% - 1px), #f0f0f0 calc(100% - 1px));
    background-size: 16px 16px;
    background-repeat: repeat;
    background-position: center center;
  }
  .home_reason_box1{
    width: 100%;
    /*         width: 24.95%;*/
    margin-top: 0;
  }
  .home_reason_box2{
    width: 100%;
    /*    width: 70.94%;*/
  }
  .home_reason_img{

  }
  /*  .home_reason_img.first{
      height: auto;
      aspect-ratio: 194 / 227;
    }
    .home_reason_img.second{
      height: auto;
      aspect-ratio: 162 / 225;
    }
    .home_reason_img.third{
      height: auto;
      aspect-ratio: 181 / 187;
    }
    .home_reason_img.fourth{
      height: auto;
      aspect-ratio: 62 / 111;
    }*/
  .home_reason_titlle{
    font-size: 22px;
    font-weight: 900;
    line-height: 1.75;
  }
  .problem_box_title_left{
    padding-left: 20px;
  }
  .home_reason_titlle_txt{
    letter-spacing: 0;
  }

  .home_reason_titlle_txt strong{
    color: var(--sub-color);
  }

  .home_reason_box2 .content_desc{
    margin-top: 13px;
  }

  .home_industry_wrap{
    margin-top: 35px;
  }
  .home_industry_tittle{
    font-size: 24px;
    font-weight: 900;
    text-align: center;
  }
  .home_industry_tittle:after{
    content: "";
    display: block;
    width: auto;
    height: 2px;
    background-image: url(/system_panel/uploads/images/border.png);
    background-repeat: no-repeat;
    margin-top: 19px;
    margin-bottom: 30px;
  }
  .home_industry_items{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .home_item{
    width: 33.333%;
    border-radius: 10px;
    padding: 35px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .home_item:nth-child(even){
    background: #fbf2ec;
  }
  .home_item:nth-child(odd){
    background: #f0f9fe;
  }
  .home_item_img{

  }
  .home_item_img:before{

  }
  .home_item_img:before{


  }
  .home_item_txt{
    font-size: 18px;
    font-weight: 900;
    margin-top: 15px;
  }

  .cmn_tt{
    text-align: center;
  }
  .cmn_tt2_ja{
    font-family: var(--font-ja);
    margin-top: -35px;
  }
  .home_workers_boxs{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .home_workers_box1{
    width: 46%;
    z-index: -1;
    margin-top: 50px;
  }
  .home_workers_box2{
    /*  width: 100%;*/
    width: 53.98%;
    z-index: 1;
    margin-right: -20px;
    margin-top: 30px;
  }
  .home_workers_img{
    margin-top: -45px;
  }
  .cmn_tt2_ja_txt{
    /*  font-size: 16px;*/
    font-size: 34px;
    font-weight: 900;
    letter-spacing: 0;
  }
  .cmn_sub_title{
    font-size: 20px;
    font-weight: 900;
    line-height: 1.61;
  }
  .cmn_sub_title_txt{
    letter-spacing: 0;
  }
  .home_workers_box2 .content_desc{
    margin-top: 37px;
  }
}
@media (min-width:1200px){
  /* メイン */

  /* ABOUT US */
  .cmn_box{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 20px;
  }
  .cmn_box1{
    /*  width: 100%;*/
    width: 58.39%;
  }
  .cmn_box2{
    /*  width: 100%;*/
    width: 28.61%;
  }
  .cmn_title_ja{
    margin-top: -53px;
    margin-bottom: 30px;
  }
  .cmn_title_ja_txt{
    font-family: var(--font-ja);
    font-size: 50px;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.32;
  }
  .content_desc{

  }
  .cmn_box_img{
    top: 170px;
    right: 100px;
    aspect-ratio: 116 / 121;
    width: 108%;
    height: auto;
  }
  .cmn_box_img:before{

  }

  /*その不安、本当に事実ですか*/
  .cmn_inner{
    background: #f0f9fe;
    padding: 70px 0 120px;
  }
  .home_problem_tittle{

  }
  .home_problem_tittle_txt{
    font-size: 48px;
    font-weight: 900;
    letter-spacing: 0;
    color: var(--txt-color);
    text-align: center;
  }
  .home_problem_tittle_txt strong{
    color: var(--sub-color);
  }
  .home_problem_boxs{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 82px;
  }
  .home_problem_box1{
    width: 100%;
    /*    width: 32.30%;*/
  }
  .home_problem_box2{
    display: block;
    width: 100%;
    /*    width: 31.57%;*/
  }
  .home_problem_box3{
    width: 100%;
    /*    width: 32.43%;*/
  }

  .problem_box{
    position: relative;
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: contain;
    aspect-ratio: 490 / 253;
    margin-inline: 10px;
  }
  .problem_box_1{
    position: relative;
    background-image: url(/system_panel/uploads/images/home_02.png);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: contain;
    aspect-ratio: 490 / 253;
  }
  .problem_box_2{
    position: relative;
    background-image: url(/system_panel/uploads/images/home_04.png);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: contain;
    aspect-ratio: 477 / 250;
    margin-top: -10px;
  }
  .problem_box_3{
    position: relative;
    background-image: url(/system_panel/uploads/images/home_03.png);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: contain;
    aspect-ratio: 492 / 250;
  }
  .problem_box_4{
    position: relative;
    background-image: url(/system_panel/uploads/images/home_05.png);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: contain;
    aspect-ratio: 490 / 253;
    margin-top: -5px;
  }

  .problem_box_title{
    display: inline-block;
    /*    background: var(--line-color);*/
    padding: 0 5px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.075em;
    line-height: 1.44;
    text-align: center;
  }
  .home_problem_box1 .problem_box_txt_1{
    position: absolute;
    top: 50px;
    left: 140px;
    bottom: 0;
    text-align: center;
    padding: 0;
  }
  .home_problem_box1 .problem_box_txt_2{
    position: absolute;
    top: 80px;
    right: 140px;
    left: 85px;
    bottom: 0;
    text-align: center;
    padding: 0;
  }
  .home_problem_box3 .problem_box_txt_3{
    position: absolute;
    top: 70px;
    right: 170px;
    bottom: 0;
    text-align: center;
    padding: 0;
  }
  .home_problem_box3 .problem_box_txt_4{
    position: absolute;
    top: 70px;
    left: 165px;
    bottom: 0;
    text-align: center;
    padding: 0;
  }
  .problem_box_txt .content_desc.left{
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0;
    margin-top: 30px;
    line-height: 1.875;
    padding-inline: 30px;
    padding-left: 10px;
  }

  .problem_box_txt .content_desc.right{
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0;
    margin-top: 30px;
    line-height: 1.875;
    padding-inline: 10px;
    padding-right: 10px;
  }


  .home_problem_box2_inner{
    background: var(--main-color);
    padding: 50px 10px;
    position: relative;
    border-radius: 10px;
  }
  .home_problem_box2_inner::before{
    content: "";
    position: absolute;
    inset: 10px;
    border: 1px solid #FFF;
    border-radius: 10px;
  }
  .read_more.wh{
    margin-top: 35px;
  }
  .read_more.wh .read_more_a{
    background: #FFF;
    color: var(--txt-color);
    padding: 5px 25px;
    max-width: 300px;
  }
  .home_problem_box_tittle{
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.75;
    text-align: center;
  }
  .home_problem_box2_inner .content_desc{
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0;
    text-align: center;
    line-height: 1.875;
    margin-top: 35px;
  }
  .home_problem_box_tittle_txt1{

  }
  .read_more .wh{

  }
  .read_more .wh .read_more_a{

  }
  .read_more .wh:after{

  }
  .home_reason_box_inner{

  }

  .home_reason_head{
    font-size: 68px;
    font-weight: 900;
    letter-spacing: 0;
  }

  .home_reason_head_txt{
    font-size: 68px;
    font-weight: 900;
    letter-spacing: 0;
    color: var(--txt-color);
  }
  .home_reason_head_txt strong{
    color: var(--sub-color);
  }


  .home_reason_content{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 35px;
    margin-left: -15px;
  }
  .home_reason_side{
  }
  .home_reason_side_txt{
    font-size: 60px;
    font-weight: 900;
    letter-spacing: 0;
    color: var(--txt-color);
    writing-mode: vertical-rl;
            white-space: nowrap;
  }
  .home_reason_side_txt strong{
    color: var(--sub-color);
  }
  .home_reason_boxs{
    /*width: 100%;*/
    width: 89.78%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-content: flex-start;
    margin-top: 10px;
  }
  .home_reason_box{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    /*width: 100%;*/
    width: 50%;
    padding-inline: 10px;
  }
  .home_reason_box:nth-child(n+3){
    margin-top: 30px;
  }
  .home_reason_box_inner{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    border: 5px solid var(--main-color);
    border-radius: 20px;
    padding: 20px 15px;
    background-image: linear-gradient(0deg, transparent calc(100% - 1px), #f0f0f0 calc(100% - 1px)),
      linear-gradient(90deg, transparent calc(100% - 1px), #f0f0f0 calc(100% - 1px));
    background-size: 16px 16px;
    background-repeat: repeat;
    background-position: center center;
  }
  .home_reason_box1{
    /*width: 100%;*/
    width: 21.95%;
    margin-top: 30px;
  }
  .home_reason_box2{
    width: 74.94%;
    margin-top: 5px;
  }
  .home_reason_img{
    width: auto;
  }
  /*  .home_reason_img.first{
      height: auto;
      aspect-ratio: 194 / 227;
      margin-left: 0;
    }
    .home_reason_img.second{
      height: auto;
      aspect-ratio: 162 / 225;
      margin-left: 5px;
    }
    .home_reason_img.third{
      height: auto;
      aspect-ratio: 181 / 187;
      margin-top: 20px;
      margin-left: 5px;
    }
    .home_reason_img.fourth{
      height: auto;
      aspect-ratio: 62 / 111;
      margin-left: 35px;
    }*/
  .home_reason_img:before{

  }
  .home_reason_titlle{
    font-size: 20px;
    font-weight: 900;
    line-height: 1.75;
  }
  .home_reason_titlle_txt{
    letter-spacing: 0;
  }

  .home_reason_titlle_txt strong{
    color: var(--sub-color);
  }

  .home_reason_box2 .content_desc{
    margin-top: 15px;
  }

  .home_industry_wrap{
    margin-top: 16px;
  }
  .home_industry_tittle{
    font-size: 24px;
    font-weight: 900;
    text-align: center;
  }
  .home_industry_tittle:after{
    content: "";
    display: block;
    width: auto;
    height: 2px;
    background-image: url(/system_panel/uploads/images/border.png);
    background-repeat: no-repeat;
    margin-top: 19px;
    margin-bottom: 30px;
  }
  .home_industry_items{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .home_item{
    width: 16.11%;
    border-radius: 10px;
    padding: 20px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .home_item:nth-child(n+4) {
    margin-top: 0;
  }
  .home_item:nth-child(even){
    background: #fbf2ec;
  }
  .home_item:nth-child(odd){
    background: #f0f9fe;
  }
  .home_item_img{

  }
  .home_item_img:before{


  }
  .home_item_txt{
    font-size: 16px;
    font-weight: 900;
    margin-top: 15px;
  }

  .cmn_tt{
    text-align: center;
  }
  .cmn_tt2_ja{
    font-family: var(--font-ja);
    margin-top: -35px;
  }
  .home_workers_boxs{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .home_workers_box1{
    width: 46%;
    z-index: -1;
    margin-top: 80px;
  }
  .home_workers_box2{
    /*  width: 100%;*/
    width: 53.98%;
    z-index: 1;
    margin-right: -20px;
    margin-top: 50px;
  }
  .home_workers_img{
    margin-top: -75px;
  }
  .cmn_tt2_ja_txt{
    /*  font-size: 16px;*/
    font-size: 34px;
    font-weight: 900;
    letter-spacing: 0;
  }
  .cmn_sub_title{
    /*  font-size: 16px;*/
    font-size: 26px;
    font-weight: 900;
    line-height: 1.61;
  }
  .cmn_sub_title_txt{
    letter-spacing: 0;
  }
  .home_workers_box2 .content_desc{
    margin-top: 37px;
  }

}
@media (min-width:1470px){
  .cmn_title_ja {
    margin-top: -35px;
    margin-bottom: 30px;
  }
  /*その不安、本当に事実ですか*/
  .cmn_inner{
    background: #f0f9fe;
    padding: 70px 0 120px;
  }
  .home_problem_tittle{

  }
  .home_problem_tittle_txt{
    font-size: 70px;
    font-weight: 900;
    letter-spacing: 0;
    color: var(--txt-color);
    text-align: center;
  }
  .home_problem_tittle_txt strong{
    color: var(--sub-color);
  }
  .home_problem_boxs{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 82px;
  }
  .home_problem_box1{
    display: block;
    /*width: 100%;*/
    width: 32.30%;
  }
  .home_problem_box2{
    /*width: 100%;*/
    width: 31.57%;
    margin-top: 0;
    margin-bottom: 0;
  }
  .home_problem_box3{
    display: block;
    /*width: 100%;*/
    width: 32.43%;
  }

  .problem_box{
    position: relative;
    background-image: url(/system_panel/uploads/images/home_02.png);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: contain;
    aspect-ratio: 490 / 253;
  }
  .problem_box_1{
    position: relative;
    background-image: url(/system_panel/uploads/images/home_02.png);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: contain;
    aspect-ratio: 490 / 253;
  }
  .problem_box_2{
    position: relative;
    background-image: url(/system_panel/uploads/images/home_04.png);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: contain;
    aspect-ratio: 477 / 250;
    margin-top: 0;
  }
  .problem_box_3{
    position: relative;
    background-image: url(/system_panel/uploads/images/home_03.png);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: contain;
    aspect-ratio: 492 / 250;
  }
  .problem_box_4{
    position: relative;
    background-image: url(/system_panel/uploads/images/home_05.png);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: contain;
    aspect-ratio: 490 / 253;
    margin-top: -5px;
  }
  .problem_box_title{
    display: inline-block;
    /*    background: var(--line-color);*/
    padding: 0 5px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.075em;
    line-height: 1.44;
    text-align: center;
  }
  .problem_box_title_left{
    padding-left: 40px;
  }
  .home_problem_box1 .problem_box_txt_1{
    position: absolute;
    top: 30px;
    left: 120px;
    bottom: 0;
    text-align: center;
  }
  .home_problem_box1 .problem_box_txt_2{
    position: absolute;
    top: 40px;
    right: 120px;
    left: 35px;
    bottom: 0;
    text-align: center;
  }
  .home_problem_box3 .problem_box_txt_3{
    position: absolute;
    top: 50px;
    right: 110px;
    bottom: 0;
    text-align: center;
  }
  .home_problem_box3 .problem_box_txt_4{
    position: absolute;
    top: 50px;
    left: 120px;
    bottom: 0;
    text-align: center;
  }
  .problem_box_txt .content_desc.left{
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0;
    margin-top: 10px;
    line-height: 1.5;
    padding-inline: 20px;
    padding-left: 30px;
  }
  .problem_box_txt .content_desc.right{
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0;
    margin-top: 10px;
    line-height: 1.5;
    padding-inline: 5px;
    padding-right: 20px;
  }
  .home_problem_box2_inner{
    background: var(--main-color);
    padding: 50px 9px;
    position: relative;
    border-radius: 10px;
  }
  .home_problem_box2_inner::before{
    content: "";
    position: absolute;
    inset: 5px;
    border: 1px solid #FFF;
    border-radius: 10px;
  }
  .read_more.wh{
    margin-top: 35px;
  }
  .read_more.wh .read_more_a{
    background: #FFF;
    color: var(--txt-color);
    padding: 5px 25px;
    max-width: 300px;
  }
  .home_reason_titlle {
    font-size: 25px;
    font-weight: 900;
    line-height: 1.75;
  }
  .home_item{
    width: 16.11%;
    border-radius: 10px;
    padding: 40px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .home_reason_box_inner{
    padding: 20px 15px;
  }
}
@media (min-width:1720px){
  /* メイン */

  /* ABOUT US */
  .cmn_box{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 30px;
  }
  .cmn_box1{
    /*  width: 100%;*/
    width: 58.39%;
  }
  .cmn_box2{
    /*  width: 100%;*/
    width: 28.61%;
  }
  .cmn_title_ja{
    margin-top: -53px;
    margin-bottom: 30px;
  }
  .cmn_title_ja_txt{
    font-family: var(--font-ja);
    font-size: 68px;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.32;
  }
  .content_desc{

  }
  .cmn_box_img{
    top: 170px;
    right: 100px;
    aspect-ratio: 116 / 121;
    width: 108%;
    height: auto;
  }
  .cmn_box_img:before{

  }

  /*その不安、本当に事実ですか*/
  .cmn_inner{
    background: #f0f9fe;
    padding: 70px 0 120px;
  }
  .home_problem_tittle{

  }
  .home_problem_tittle_txt{
    font-size: 90px;
    font-weight: 900;
    letter-spacing: 0;
    color: var(--txt-color);
    text-align: center;
  }
  .home_problem_tittle_txt strong{
    color: var(--sub-color);
  }
  .home_problem_boxs{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 82px;
  }
  .home_problem_box1{
    /*width: 100%;*/
    width: 32.30%;
  }
  .home_problem_box2{
    /*width: 100%;*/
    width: 31.57%;
  }
  .home_problem_box3{
    /*width: 100%;*/
    width: 32.43%;
  }

  .problem_box{
    position: relative;
    background-image: url(/system_panel/uploads/images/home_02.png);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: auto auto;
    aspect-ratio: 490 / 253;
    margin-inline: 0;
  }
  .problem_box_1{
    position: relative;
    background-image: url(/system_panel/uploads/images/home_02.png);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: auto auto;
    aspect-ratio: 490 / 253;
  }
  .problem_box_2{
    position: relative;
    background-image: url(/system_panel/uploads/images/home_04.png);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: auto auto;
    aspect-ratio: 477 / 250;
    margin-top: -10px;
  }
  .problem_box_3{
    position: relative;
    background-image: url(/system_panel/uploads/images/home_03.png);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: auto auto;
    aspect-ratio: 492 / 250;
  }
  .problem_box_4{
    position: relative;
    background-image: url(/system_panel/uploads/images/home_05.png);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: auto auto;
    aspect-ratio: 490 / 253;
    margin-top: -5px;
  }

  .home_problem_box1 .problem_box_txt_1{
    position: absolute;
    top: 50px;
    right: 40px;
    bottom: 0;
    text-align: center;
    padding: 0;
  }
  .home_problem_box1 .problem_box_txt_2{
    position: absolute;
    top: 62px;
    right: 90px;
    left: 25px;
    bottom: 0;
    text-align: center;
    padding: 0;
  }
  .home_problem_box3 .problem_box_txt_3 {
    position: absolute;
    top: 60px;
    right: 130px;
    bottom: 0;
    text-align: center;
    padding: 10px 10px;
    padding: 0;
  }
  .home_problem_box3 .problem_box_txt_4{
    position: absolute;
    top: 65px;
    left: 125px;
    bottom: 0;
    text-align: center;
    padding: 0;
  }
  .problem_box_title{
    display: inline-block;
    /*    background: var(--line-color);*/
    padding: 0 5px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.075em;
    line-height: 1.44;
    text-align: center;
  }
  .problem_box_txt .content_desc.left,
  .problem_box_txt .content_desc.right{
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0;
    margin-top: 23px;
    padding-inline: 12px;
    padding-left: 10px;
    line-height: 1.875;
  }
  .home_problem_box2_inner{
    background: var(--main-color);
    padding: 50px 10px;
    position: relative;
    border-radius: 10px;
  }
  .home_problem_box2_inner::before{
    content: "";
    position: absolute;
    inset: 10px;
    border: 1px solid #FFF;
    border-radius: 10px;
  }
  .read_more.wh{
    margin-top: 35px;
  }
  .read_more.wh .read_more_a{
    background: #FFF;
    color: var(--txt-color);
    padding: 5px 25px;
    max-width: 300px;
  }
  .home_problem_box_tittle{
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.75;
    text-align: center;
  }
  .home_problem_box2_inner .content_desc{
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0;
    text-align: center;
    line-height: 1.875;
    margin-top: 35px;
  }
  .home_problem_box_tittle_txt1{

  }
  .read_more .wh{

  }
  .read_more .wh .read_more_a{

  }
  .read_more .wh:after{

  }
  .home_reason_box_inner{

  }

  .home_reason_head{
    font-size: 68px;
    font-weight: 900;
    letter-spacing: 0;
  }

  .home_reason_head_txt{
    font-size: 68px;
    font-weight: 900;
    letter-spacing: 0;
    color: var(--txt-color);
  }
  .home_reason_head_txt strong{
    color: var(--sub-color);
  }


  .home_reason_content{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 35px;
    margin-left: -15px;
  }
  .home_reason_side{
  }
  .home_reason_side_txt{
    font-size: 66px;
    font-weight: 900;
    letter-spacing: 0;
    color: var(--txt-color);
    writing-mode: vertical-rl;
  }
  .home_reason_side_txt strong{
    color: var(--sub-color);
  }
  .home_reason_boxs{
    /*width: 100%;*/
    width: 89.78%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-content: flex-start;
    margin-top: 10px;
  }
  .home_reason_box{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    /*width: 100%;*/
    width: 50%;
    margin-inline: -10px;
  }
  .home_reason_box:nth-child(n+3){
    margin-top: 40px;
  }
  .home_reason_box_inner{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    border: 5px solid var(--main-color);
    border-radius: 20px;
    padding: 20px 25px 20px 10px;
    background-image: linear-gradient(0deg, transparent calc(100% - 1px), #f0f0f0 calc(100% - 1px)),
      linear-gradient(90deg, transparent calc(100% - 1px), #f0f0f0 calc(100% - 1px));
    background-size: 16px 16px;
    background-repeat: repeat;
    background-position: center center;
    padding-bottom: 35px;
  }
  .home_reason_box1{
    width: 29.95%;
    margin-top: 45px;
  }
  .home_reason_box2{
    width: 65.94%;
    margin-top: 5px;
  }
  .home_reason_img img{

  }
  /*  .home_reason_img.first{
      width: 107%;
      height: auto;
      aspect-ratio: 194 / 227;
      margin-left: 0;
    }
    .home_reason_img.second{
      width: 90%;
      height: auto;
      aspect-ratio: 162 / 225;
      margin-left: 5px;
    }
    .home_reason_img.third{
      width: 100%;
      height: auto;
      aspect-ratio: 181 / 187;
      margin-top: 20px;
      margin-left: 5px;
    }
    .home_reason_img.fourth{
      width: 66%;
      height: auto;
      aspect-ratio: 62 / 111;
      margin-left: 35px;
    }*/
  .home_reason_img:before{

  }
  .home_reason_titlle{
    font-size: 24px;
    font-weight: 900;
    line-height: 1.75;
  }
  .home_reason_titlle_txt{
    letter-spacing: 0;
  }

  .home_reason_titlle_txt strong{
    color: var(--sub-color);
  }

  .home_reason_box2 .content_desc{
    margin-top: 13px;
  }

  .home_industry_wrap{
    margin-top: 16px;
  }
  .home_industry_tittle{
    font-size: 24px;
    font-weight: 900;
    text-align: center;
  }
  .home_industry_tittle:after{
    content: "";
    display: block;
    width: auto;
    height: 2px;
    background-image: url(/system_panel/uploads/images/border.png);
    background-repeat: no-repeat;
    margin-top: 19px;
    margin-bottom: 30px;
  }
  .home_industry_items{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .home_item{
    width: 16.11%;
    border-radius: 10px;
    padding: 63px 10px 35px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .home_item:nth-child(even){
    background: #fbf2ec;
  }
  .home_item:nth-child(odd){
    background: #f0f9fe;
  }
  .home_item_img{

  }
  .home_item_img:before{

  }
  .home_industry_items .home_item_txt{
    font-size: 18px;
    font-weight: 900;
    margin-top: 18px;
  }

  .cmn_tt{
    text-align: center;
  }
  .cmn_tt2_ja{
    font-family: var(--font-ja);
    margin-top: -35px;
  }
  .home_workers_boxs{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .home_workers_box1{
    width: 46%;
    z-index: -1;
    margin-top: 50px;
  }
  .home_workers_box2{
    /*  width: 100%;*/
    width: 53.98%;
    z-index: 1;
    margin-right: -48px;
    margin-top: 30px;
  }
  .home_workers_img{
    margin-top: -75px;
  }
  .cmn_tt2_ja_txt{
    /*  font-size: 16px;*/
    font-size: 34px;
    font-weight: 900;
    letter-spacing: 0;
  }
  .cmn_sub_title{
    /*  font-size: 16px;*/
    font-size: 26px;
    font-weight: 900;
    line-height: 1.61;
  }
  .cmn_sub_title_txt{
    letter-spacing: 0;
  }
  .home_workers_box2 .content_desc{
    margin-top: 37px;
  }

}

/*topics*/

.home_contents4_wrap{
  margin-top: -20px;
}
.home_contents4_wrap .news_list,
.home_contents5_wrap .news_list {
  overflow: hidden;
  position: relative;
  z-index: 1;
  margin-top: 50px;
}
.news_list .webgene-blog {
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
  margin-inline: -5px;
}
.news_list .webgene-item {
  width: 50%;
  padding-inline: 5px;
  border-bottom: 0;
  border-top: 0;
  padding: 0 5px 10px;
}
.news_list .webgene-item {
  border-bottom: 0;
  position: relative;
}
.news_list .webgene-item a {
  border-bottom: 0;
  border-top: 0;
}
.news_list .webgene-item:before {
  width: 1px;
  height: 100000px;
}
.news_list .webgene-item:before,
.news_list .webgene-item:after {
  background: #ffffff;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
}
.news_list .webgene-item:before,
.news_list .webgene-item:after {
  background: #ffffff;
}
.news_list .webgene-item:after {
  height: 1px;
}
.news_list .webgene-item .box2{
  margin-top: 8px;
}
.home_contents4_wrap .meta{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.home_contents4_wrap .meta .date,
.home_contents5_wrap .meta .date{
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  font-family: "Oswald", sans-serif;
}
.home_contents4_wrap .meta .category,
.home_contents5_wrap .meta .category{
  background: #fff;
  color: #181818;
  width: 100px;
  text-align: center;
  border: 1px solid var(--main-color);
  font-size: 12px;
  padding: 3px 0;
}
.news_list .webgene-item .title{
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.75em;
  margin-top: 10px;
}
.news_list .webgene-item .img{
  border-radius: 10px;
}
.news_list .webgene-item .img:before{
  padding-top: 77.71%;
}
.home_contents4_wrap .news_list .webgene-item:before,
.home_contents4_wrap .news_list .webgene-item:after {
  background: #181818;
}

/*news*/
.home_contents5_wrap{

}
.home_contents5_wrap .posts_list_head{
  color: #181818;
}
.home_contents5_wrap .posts_list_head_en:after{
  background: #181818;
}
.home_contents5_wrap .meta{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.home_contents5_wrap .news_list .webgene-item:before,
.home_contents5_wrap .news_list .webgene-item:after {
  background: #181818;
}
@media (max-width:374px){

}
@media (min-width:375px){

}
@media (max-width:767px){

  .news_list .webgene-item:nth-last-child(n+2) {
    padding-bottom: 20px;
  }
  .news_list .webgene-item:nth-child(n+3) {
    padding-top: 20px;
    padding-bottom: 0;
  }
  .news_list .webgene-item:nth-child(2):before,
  .news_list .webgene-item:nth-child(3):before,
  .news_list .webgene-item:nth-child(4):before {
    content: "";
  }
  .news_list .webgene-item:nth-child(2n+1):not(:first-child):after{
    content: "";
    width: 200%;
  }
}
@media (min-width: 768px) {
  .home_contents4_wrap .read_more,
  .home_contents5_wrap .read_more{
    margin-top: 65px;
  }
  .news_list .webgene-blog {
    margin-inline: -15px;
  }
  .news_list .webgene-item {
    width: 50%;
    padding: 0 15px;
  }

  .home_contents4_wrap .news_list .webgene-item:nth-child(n+3) ,
  .home_contents5_wrap .news_list .webgene-item:nth-child(n+3) {
    padding-top: 30px;
    padding-bottom: 0;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .home_contents4_wrap .news_list .webgene-item:nth-child(2):before,
  .home_contents4_wrap .news_list .webgene-item:nth-child(3):before,
  .home_contents4_wrap .news_list .webgene-item:nth-child(4):before {
    content: "";
  }
  .home_contents5_wrap .news_list .webgene-item:nth-child(2):before,
  .home_contents5_wrap .news_list .webgene-item:nth-child(3):before,
  .home_contents5_wrap .news_list .webgene-item:nth-child(4):before {
    content: "";
  }
  .home_contents4_wrap .news_list .webgene-item:nth-child(2n+1):not(:first-child):after {
    content: "";
    width: 200%;
  }
  .home_contents5_wrap .news_list .webgene-item:nth-child(2n+1):not(:first-child):after {
    content: "";
    width: 200%;
  }
  .home_contents4_wrap .news_list .webgene-item:nth-last-child(n+2) ,
  .home_contents5_wrap .news_list .webgene-item:nth-last-child(n+2) {
    padding-bottom: 20px;
  }
}
@media (min-width:1024px){
  /* TOP*/
  .home_contents4_wrap .news_list .webgene-item,
  .home_contents5_wrap .news_list .webgene-item {
    width: 25%;
    padding: 0 20px 40px;
  }

  .news_list .webgene-item {
    width: 50%;
    padding: 0 20px 40px;
  }
  .news_list .webgene-item:nth-child(2):before,
  .news_list .webgene-item:nth-child(3):before,
  .news_list .webgene-item:nth-child(4):before {
    content: "";
  }
  .home_contents4_wrap .news_list .webgene-item:nth-child(n+3) ,
  .home_contents5_wrap .news_list .webgene-item:nth-child(n+3) {
    padding-top: 0;
    padding-bottom: 0;
  }
}
/*******************************
*　私たちについて
********************************/

/* セクション設定 */
.pg_about{

}
.pg_abou　.section.sec1{

}
.pg_about .section.sec2{

}
.pg_about .section.sec3{

}

@media (max-width:374px){

}
@media (min-width:375px){

}
@media (max-width:767px){

}
@media (min-width:768px){

  .pg_about{

  }
  .pg_about .section.sec1{

  }
  .pg_about .section.sec2{

  }
  .pg_about .section.sec3{

  }

}
@media (min-width:1024px){


}
@media (min-width:1200px){
  .pg_about{

  }
  .pg_about .section.sec1{

  }
  .pg_about .section.sec2{

  }
  .pg_about .section.sec3{

  }

}
@media (min-width:1470px){


}
@media (min-width:1720px){
  .pg_about{

  }
  .pg_about.section.sec1{

  }
  .pg_about .section.sec2{
    padding-top: 65px;
  }
  .pg_about .section.sec3{

  }

}

/* メイン部分 */
.cmn_content_box1{
  width: 100%;
}
.cmn_content_box2{
  width: 100%;
  margin-top: 25px;
}
.cmn_content_title_ja {
  margin-top: -18px;
  margin-bottom: 30px;
}
.cmn_box_img:before {
}

/* 福山商事の事業内容 */
.cmn_inner{

}
.tt2_en.wh{
  color: #FFF !important;
}
.cmn_tt2_ja strong{
  color:var(--sub-color);
}
.about_work_boxs{
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 30px;
}
.about_work_box{
  width: 100%;
  padding-inline: 10px;
}
.about_work_box:nth-child(n+2){
  margin-top: 15px;
  margin-top: 15px;
}
.about_work_box_inner{
  background-color: #FFF;
  height: auto;
  padding: 20px 10px;
}
.about_work_box1 .home_reason_img{
  width: 40%;
  aspect-ratio: 196 / 247;
}
.cmn_contents_img:before{
  padding-top: 100%;
}
.about_work_box1{
  width: 100%;
  margin-top: 20px;
}
.about_work_box2{
  width: 100%;
  margin-top: 15px;
}

@media (max-width:767px){

}
@media (min-width:768px){
  /* メイン部分 */
  .cmn_content_box1{
    width: 100%;
  }
  .cmn_content_box2{
    margin-top: 30px;
  }
  .cmn_content_title_ja {
    margin-top: -18px;
    margin-bottom: 30px;
  }
  .cmn_box_img:before {
  }

  /* 福山商事の事業内容 */
  .cmn_inner{

  }
  .tt2_en.wh{
    color: #FFF !important;
  }
  .cmn_tt2_ja strong{
    color:var(--sub-color);
  }
  .about_work_boxs{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin-top: 50px;
  }
  .about_work_box{
    width: 50%;
    padding-inline: 10px;
  }
  .about_work_box:nth-child(n+2){
    margin-top: 15px;
    margin-top: 0;
  }
  .about_work_box:nth-child(n+3){
    margin-top: 35px;
  }
  .about_work_box_inner{
    background-color: #FFF;
    height: auto;
    padding: 20px 12x;
  }
  .about_work_box1 .home_reason_img{

  }
  .cmn_contents_img:before{
    padding-top: 100%;
  }
  .about_work_box1{
    width: 100%;
    margin-top: 20px;
  }
  .about_work_box2{
    width: 100%;
    margin-top: 15px;
  }
}
@media (min-width:1024px){
  /* メイン部分 */
  .cmn_content_box1{
    width: 100%;
    width: 57.23%;
  }
  .cmn_content_box2{
    width: 100%;
    width: 36.61%;
    margin-top: 10px;
  }
  .cmn_content_title_ja {
    margin-top: -35px;
    margin-bottom: 30px;
  }
  .cmn_box_img:before {
  }

  /* 福山商事の事業内容 */
  .cmn_inner{

  }
  .tt2_en.wh{
    color: #FFF !important;
  }
  .cmn_tt2_ja strong{
    color:var(--sub-color);
  }
  .about_work_boxs{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin-top: 50px;
  }
  .about_work_box{
    width: 50%;
    padding-inline: 10px;
  }
  .about_work_box:nth-child(n+2){
    margin-top: 15px;
    margin-top: 0;
  }
  .about_work_box:nth-child(n+3){
    margin-top: 35px;
  }
  .about_work_box_inner{
    background-color: #FFF;
    height: auto;
    padding: 20px 15px;
  }
  .about_work_box1 .home_reason_img{

  }
  .cmn_contents_img:before{
    padding-top: 104%;
  }
  .about_work_box1{
    width: 100%;
    margin-top: 25px;
  }
  .about_work_box2{
    width: 100%;
    margin-top: 15px;
  }

}
@media (min-width:1200px){
  /* メイン部分 */
  .cmn_content_box1{
    width: 100%;
    width: 57.23%;
  }
  .cmn_content_box2{
    width: 100%;
    width: 36.61%;
    margin-top: 10px;
  }
  .cmn_content_title_ja {
    margin-top: -53px;
    margin-bottom: 30px;
  }
  .cmn_box_img:before {
  }

  /* 福山商事の事業内容 */
  .cmn_inner{

  }
  .tt2_en.wh{
    color: #FFF !important;
  }
  .cmn_tt2_ja strong{
    color:var(--sub-color);
  }
  .about_work_boxs{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin-top: 50px;
  }
  .about_work_box{
    width: 50%;
    padding-inline: 10px;
  }
  .about_work_box:nth-child(n+2){
    margin-top: 15px;
    margin-top: 0;
  }
  .about_work_box:nth-child(n+3){
    margin-top: 35px;
  }
  .about_work_box_inner{
    background-color: #FFF;
    height: auto;
    padding: 20px 20px;
  }
  .about_work_box1 .home_reason_img{
    width: auto;
  }
  .cmn_contents_img:before{
    padding-top: 104%;
  }
  .about_work_box1{
    width: 24.34%;
    margin-top: 15px;
  }
  .about_work_box2{
    width: 70.58%;
    margin-top: 15px;
  }

}
@media (min-width:1470px){
  /* メイン部分 */
  .cmn_content_box1{
    width: 100%;
    width: 57.23%;
  }
  .cmn_content_box2{
    width: 100%;
    width: 36.61%;
    margin-top: 10px;
  }
  .cmn_content_title_ja {
    margin-top: -65px;
    margin-bottom: 30px;
  }
  .cmn_box_img:before {
  }

  /* 福山商事の事業内容 */
  .cmn_inner{

  }
  .tt2_en.wh{
    color: #FFF !important;
  }
  .cmn_tt2_ja strong{
    color:var(--sub-color);
  }
  .about_work_boxs{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin-top: 50px;
  }
  .about_work_box{
    width: 50%;
    padding-inline: 10px;
  }
  .about_work_box:nth-child(n+2){
    margin-top: 15px;
    margin-top: 0;
  }
  .about_work_box:nth-child(n+3){
    margin-top: 35px;
  }
  .about_work_box_inner{
    background-color: #FFF;
    height: auto;
    padding: 20px 20px;
  }
  .cmn_contents_img:before{
    padding-top: 104%;
  }
  .about_work_box1{
    width: 24.34%;
    margin-top: 25px;
  }
  .about_work_box2{
    width: 69.58%;
    margin-top: 15px;
  }

}
@media (min-width:1720px){
  /* メイン部分 */
  .cmn_content_box1{
    width: 100%;
    width: 57.23%;
  }
  .cmn_content_box2{
    width: 100%;
    width: 36.61%;
    margin-top: 10px;
  }
  .cmn_content_title_ja {
    margin-top: -65px;
    margin-bottom: 30px;
  }
  .cmn_box_img:before {
  }

  /* 福山商事の事業内容 */
  .cmn_inner{

  }
  .tt2_en.wh{
    color: #FFF !important;
  }
  .cmn_tt2_ja strong{
    color:var(--sub-color);
  }
  .about_work_boxs{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin-top: 50px;
  }
  .about_work_box{
    width: 50%;
    padding-inline: 10px;
  }
  .about_work_box:nth-child(n+2){
    margin-top: 0;
  }
  .about_work_box:nth-child(n+3){
    margin-top: 25px;
  }
  .about_work_box_inner{
    background-color: #FFF;
    height: auto;
    padding: 10px 15px 18px 35px;
  }
  .cmn_contents_img:before{
    padding-top: 104%;
  }
  .about_work_box1{
    width: 29.34%;
    margin-top: 25px;
  }
  .about_work_box2{
    width: 66.58%;
    margin-top: 15px;
  }
}



/*******************************
*　企業の方
********************************/

/* セクション設定 */
.pg_forcompany{

}
.pg_forcompany .section.sec1{

}
.pg_forcompanyy .section.sec2{

}

@media (max-width:374px){

}
@media (min-width:375px){

}
@media (max-width:767px){

}
@media (min-width:768px){
  /* セクション設定 */
  .pg_forcompany{

  }
  .pg_forcompany .section.sec1{
    padding-top: 50px;
  }
  .pg_forcompany .section.sec2{

  }
}
@media (min-width:1024px){


}
@media (min-width:1200px){


}
@media (min-width:1470px){


}
@media (min-width:1720px){
  /* セクション設定 */
  .pg_forcompany{

  }
  .pg_forcompany .section.sec1{
    padding-top: 50px;
  }
  .pg_forcompany .section.sec2{
    padding-top: 60px;
  }
}


/* メイン部分 */
.cmn_content_box_row{

}
.cmn_content_box_row + .cmn_content_box_row{
  margin-top: 50px;
}
.cmn_content_box1_row{
  order: 1;
}
.cmn_content_box2_row{
  order: 2;
}
.cmn_content_box_row.second .cmn_content_box2{
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  margin-top: 22px;
}
.cmn_content_box_row.second .cmn_contents_img{
  height: auto;
}
.cmn_content_box_row .cmn_contents_img:before{
  padding-top: 103%;
}
.cmn_content_box_row.second .cmn_contents_img:before{
  padding-top: 116%;
}
.cmn_content_box_row.second .cmn_title_ja{

}
.cmn_content_box_row.second .cmn_title_ja_txt{

}
.cmn_content_box_row.second .cmn_title_ja_txt strong{
  color: var(--sub-color);
}
.cmn_content_box_row.second .cmn_sub_title{
  font-weight: 900;
}
.cmn_content_box_row.second .cmn_sub_title_txt{
  letter-spacing: 0.075em;
}
.cmn_content_box_row.second .content_desc{
  margin-top: 35px;
}

/* PROBLEM */
.cmn_inner.cmn_content_inner{
  background: #e7f5fc !important;
}
.compnay_content_boxs{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 35px;
}
.compnay_content_box{
  width: 100%;
}
.compnay_content_box:nth-child(n+2){
  margin-top: 15px;
}
/* イラスト背景 */
.compnay_content_box{
  position: relative;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  height: auto;
}
.compnay_content_box:nth-of-type(1){
  background-image: url(/system_panel/uploads/images/pro_01_sp.png);
  aspect-ratio: 691 / 948;
  /*  background-image: url(/system_panel/uploads/images/pro_01.png);
    aspect-ratio: 490 / 253;*/
}
.compnay_content_box:nth-of-type(2){
  background-image: url(/system_panel/uploads/images/pro_02_sp.png);
  aspect-ratio: 690 / 948;
  /*  background-image: url(/system_panel/uploads/images/pro_02.png);
    aspect-ratio: 355 / 202;*/
}
.compnay_content_box:nth-of-type(3){
  background-image: url(/system_panel/uploads/images/pro_03_sp.png);
  aspect-ratio: 690 / 948;
  /*  background-image: url(/system_panel/uploads/images/pro_03.png);
    aspect-ratio: 721 / 402;*/
}
.compnay_content_box:nth-of-type(4){
  background-image: url(/system_panel/uploads/images/pro_04_sp.png);
  aspect-ratio: 692 / 948;
  /*  background-image: url(/system_panel/uploads/images/pro_04.png);
    aspect-ratio: 371 / 201;*/
}
.compnay_content_boxs_inner{
  padding-inline: 34px;
  margin-left: -8px;
  margin-top: 30px;
}
.compnay_content_box1{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.compnay_content_number{
  display: block;
  font-size: 15px;
  font-family: var(--font-en);
  font-weight: 600;
  background: var(--sub-color);
  color: #FFF;
  padding: 2px 8px;
  margin-right: 200px;
  margin-bottom: 8px;
}
.compnay_content_head{
  font-size: 15px;
  font-weight: 700;
}
.compnay_content_box2{

}
.compnay_content_title{
  margin-top: 13px;
}
.compnay_content_title_txt{
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0;
}
.compnay_content_box2 .content_desc{
  font-size: 15px;
  line-height: 1.5;
}

/* OUR VALUE */
.company_content_item{

}
.company_content_item .cmn_item1{

}
.company_content_item .cmn_item2{

}
.company_content_item .cmn_item1_img:before{

}
.company_content_item .cmn_title_ja{

}
.company_content_item .cmn_title_ja_txt{

}
.company_content_item .content_desc{

}

@media (max-width:767px){

}
@media (min-width:768px){
  /* メイン部分 */
  .cmn_content_box_row{

  }
  .cmn_content_box_row + .cmn_content_box_row{
    margin-top: 60px;
  }
  .cmn_content_box1_row{
    order: 1;
  }
  .cmn_content_box2_row{
    order: 2;
  }
  .cmn_content_box_row.second .cmn_content_box2{
    width: 70%;
    margin-top: 30px;
  }
  .cmn_content_box_row.second .cmn_contents_img{
    height: auto;
  }
  .cmn_content_box_row .cmn_contents_img:before{
    padding-top: 70%;
  }
  .cmn_content_box_row.second .cmn_contents_img:before{
    padding-top: 116%;
  }
  .cmn_content_box_row.second .cmn_title_ja{

  }
  .cmn_content_box_row.second .cmn_title_ja_txt{

  }
  .cmn_content_box_row.second .cmn_title_ja_txt strong{
    color: var(--sub-color);
  }
  .cmn_content_box_row.second .cmn_sub_title{
    font-size: 22px;
  }
  .cmn_content_box_row.second .content_desc{
    margin-top: 35px;
  }

  /* PROBLEM */
  .compnay_content_boxs{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 35px;
  }
  .compnay_content_box{
    width: 49%;
  }
  .compnay_content_box:nth-child(n+2){
    margin-top: 0;
  }
  .compnay_content_box:nth-child(n+3){
    margin-top: 30px;
  }
  /* イラスト背景 */
  .compnay_content_box{
    position: relative;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    height: auto;
  }
  .compnay_content_box:nth-of-type(1){
    background-image: url(/system_panel/uploads/images/pro_01_sp.png);
    aspect-ratio: 691 / 948;
    /*  background-image: url(/system_panel/uploads/images/pro_01.png);
      aspect-ratio: 490 / 253;*/
  }
  .compnay_content_box:nth-of-type(2){
    background-image: url(/system_panel/uploads/images/pro_02_sp.png);
    aspect-ratio: 690 / 948;
    /*  background-image: url(/system_panel/uploads/images/pro_02.png);
      aspect-ratio: 355 / 202;*/
  }
  .compnay_content_box:nth-of-type(3){
    background-image: url(/system_panel/uploads/images/pro_03_sp.png);
    aspect-ratio: 690 / 948;
    /*  background-image: url(/system_panel/uploads/images/pro_03.png);
      aspect-ratio: 721 / 402;*/
  }
  .compnay_content_box:nth-of-type(4){
    background-image: url(/system_panel/uploads/images/pro_04_sp.png);
    aspect-ratio: 692 / 948;
    /*  background-image: url(/system_panel/uploads/images/pro_04.png);
      aspect-ratio: 371 / 201;*/
  }
  .compnay_content_boxs_inner{
    padding-inline: 38px;
    margin-left: -8px;
    margin-top: 24px;
  }
  .compnay_content_box1{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
  .compnay_content_number{
    display: block;
    font-size: 15px;
    font-family: var(--font-en);
    font-weight: 600;
    background: var(--sub-color);
    color: #FFF;
    padding: 2px 8px;
    margin-right: 35px;
    margin-bottom: 8px;
  }
  .compnay_content_head{
    font-size: 15px;
  }
  .compnay_content_box2{

  }
  .compnay_content_title{
    margin-top: 16px;
  }
  .compnay_content_title_txt{
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 0;
  }
  .compnay_content_box2 .content_desc{
    font-size: 14px;
    line-height: 1.5;
  }

  /* OUR VALUE */
  .company_content_item{

  }
  .company_content_item .cmn_item1{

  }
  .company_content_item .cmn_item2{

  }
  .company_content_item .cmn_item1_img:before{

  }
  .company_content_item .cmn_title_ja{

  }
  .company_content_item .cmn_title_ja_txt{

  }
  .company_content_item .content_desc{

  }

}
@media (min-width:1024px){
  /* メイン部分 */
  .cmn_content_box_row{

  }
  .cmn_content_box_row + .cmn_content_box_row{
    margin-top: 60px;
  }
  .cmn_content_box1_row{
    order: 2;
  }
  .cmn_content_box2_row{
    order: 1;
  }
  .cmn_content_box_row.second .cmn_content_box1{
    width: 45%;
    /*    margin-top: 30px;*/
  }
  .cmn_content_box_row.second .cmn_content_box2{
    width: 49.01%;
    margin-top: 30px;
    margin-right: 0;
    margin-left: 0;
  }
  .cmn_content_box_row.second .cmn_contents_img{
    height: auto;
  }
  .cmn_content_box_row .cmn_contents_img:before{
    padding-top: 70%;
  }
  .cmn_content_box_row.second .cmn_contents_img:before{
    padding-top: 116%;
  }
  .cmn_content_box_row.second .cmn_title_ja{

  }
  .cmn_content_box_row.second .cmn_title_ja_txt{
    font-size: 32px;
  }
  .cmn_content_box_row.second .cmn_title_ja_txt strong{
    color: var(--sub-color);
  }
  .cmn_content_box_row.second .cmn_sub_title{
    font-size: 20px;
  }
  .cmn_content_box_row.second .content_desc{
    margin-top: 35px;
  }

  /* PROBLEM */
  .cmn_content_inner .content_desc.center{
    margin-top: 25px;
  }
  .compnay_content_boxs{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 35px;
  }
  .compnay_content_box{
    width: 49%;
  }
  .compnay_content_box:nth-child(n+2){
    margin-top: 0;
  }
  .compnay_content_box:nth-child(n+3){
    margin-top: 30px;
  }
  /* イラスト背景 */
  .compnay_content_box{
    position: relative;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    height: auto;
  }
  .compnay_content_box:nth-of-type(1){
    background-image: url(/system_panel/uploads/images/pro_01_sp.png);
    aspect-ratio: 691 / 948;
    /*  background-image: url(/system_panel/uploads/images/pro_01.png);
      aspect-ratio: 490 / 253;*/
  }
  .compnay_content_box:nth-of-type(2){
    background-image: url(/system_panel/uploads/images/pro_02_sp.png);
    aspect-ratio: 690 / 948;
    /*  background-image: url(/system_panel/uploads/images/pro_02.png);
      aspect-ratio: 355 / 202;*/
  }
  .compnay_content_box:nth-of-type(3){
    background-image: url(/system_panel/uploads/images/pro_03_sp.png);
    aspect-ratio: 690 / 948;
    /*  background-image: url(/system_panel/uploads/images/pro_03.png);
      aspect-ratio: 721 / 402;*/
  }
  .compnay_content_box:nth-of-type(4){
    background-image: url(/system_panel/uploads/images/pro_04_sp.png);
    aspect-ratio: 692 / 948;
    /*  background-image: url(/system_panel/uploads/images/pro_04.png);
      aspect-ratio: 371 / 201;*/
  }
  .compnay_content_boxs_inner{
    padding-inline: 36px;
    margin-left: -5px;
    margin-top: 70px;
  }
  .compnay_content_box1{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
  .compnay_content_number{
    display: block;
    font-size: 18px;
    font-family: var(--font-en);
    font-weight: 600;
    background: var(--sub-color);
    color: #FFF;
    padding: 2px 8px;
    margin-right: 150px;
    margin-bottom: 10px;
  }
  .compnay_content_head{
    font-size: 18px;
  }
  .compnay_content_box2{

  }
  .compnay_content_title{
    margin-top: 15px;
  }
  .compnay_content_title_txt{
    font-size: 25px;
    font-weight: 900;
    letter-spacing: 0;
  }
  .compnay_content_box2 .content_desc{
    font-size: 15px;
    line-height: 1.875;
  }

  /* OUR VALUE */
  .company_content_item{

  }
  .cmn_item.company_content_item + .cmn_item.company_content_item{
    margin-top: 95px;
  }
  .company_content_item .cmn_item1{

  }
  .company_content_item .cmn_item2{

  }
  .company_content_item:nth-child(odd) .cmn_item1 {
    order: 1 !important;
  }
  .company_content_item:nth-child(odd) .cmn_item2 {
    order: 2 !important;
    ;
  }
  .company_content_item:nth-child(even) .cmn_item1 {
    order: 2 !important;
  }
  .company_content_item:nth-child(even) .cmn_item2 {
    order: 1 !important;
    ;
  }
  .company_content_item .cmn_item1_img:before{

  }
  .company_content_item .cmn_title_ja{

  }
  .company_content_item .cmn_title_ja_txt{

  }
  .company_content_item .content_desc{
    margin-top: 55px;
  }

}
@media (min-width:1200px){
  /* MV */
  .com_mv_img {
    top: 81.5% !important;
  }
  /* メイン部分 */
  .cmn_content_box_row{

  }
  .cmn_content_box_row + .cmn_content_box_row{
    margin-top: 110px;
  }
  .cmn_content_box1_row{
    order: 2;
  }
  .cmn_content_box2_row{
    order: 1;
  }
  .cmn_content_box_row.second .cmn_content_box1{
    width: 60.23%;
  }
  .cmn_content_box_row.second .cmn_content_box2{
    /*width: 100%;*/
    width: 32.96%;
    margin-right: 0;
    margin-top: 22px;
  }
  .cmn_content_box_row.second .cmn_contents_img{
    height: auto;
  }
  .cmn_content_box_row .cmn_contents_img:before{
    padding-top: 103%;
  }
  .cmn_content_box_row.second .cmn_contents_img:before{
    padding-top: 116%;
  }
  .cmn_content_box_row.second .cmn_title_ja{
    margin-top: -53px;
  }
  .cmn_content_box_row.second .cmn_title_ja_txt{
    font-size: 50px;
  }
  .cmn_content_box_row.second .cmn_title_ja_txt strong{
    color: var(--sub-color);
  }
  .cmn_content_box_row.second .cmn_sub_title{
    font-size: 25px;
  }
  .cmn_content_box_row.second .content_desc{
    margin-top: 35px;
  }

  /* PROBLEM */
  .cmn_content_inner .content_desc.center{
    margin-top: 35px;
  }
  .compnay_content_boxs{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 70px;
  }
  .compnay_content_box{
    width: 49%;
  }
  .compnay_content_box:nth-child(n+2){
    margin-top: 0;
  }
  .compnay_content_box:nth-child(n+3){
    margin-top: 30px;
  }
  /* イラスト背景 */
  .compnay_content_box{
    position: relative;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    height: auto;
  }
  .compnay_content_box:nth-of-type(1){
    background-image: url(/system_panel/uploads/images/pro_01_md.png);
    aspect-ratio: 693 / 778;
    /*  background-image: url(/system_panel/uploads/images/pro_01.png);
      aspect-ratio: 490 / 253;*/
  }
  .compnay_content_box:nth-of-type(2){
    background-image: url(/system_panel/uploads/images/pro_03_md.png);
    aspect-ratio: 693 / 778;
    /*  background-image: url(/system_panel/uploads/images/pro_02.png);
      aspect-ratio: 355 / 202;*/
  }
  .compnay_content_box:nth-of-type(3){
    background-image: url(/system_panel/uploads/images/pro_02_md.png);
    aspect-ratio: 693 / 778;
    /*  background-image: url(/system_panel/uploads/images/pro_03.png);
      aspect-ratio: 721 / 402;*/
  }
  .compnay_content_box:nth-of-type(4){
    background-image: url(/system_panel/uploads/images/pro_04_md.png);
    aspect-ratio: 693 / 778;
    /*  background-image: url(/system_panel/uploads/images/pro_04.png);
      aspect-ratio: 371 / 201;*/
  }
  .compnay_content_boxs_inner{
    padding-inline: 86px;
    margin-left: -45px;
    margin-top: 40px;
    padding: 30px 90px;
  }
  .compnay_content_box1{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
  .compnay_content_number{
    display: block;
    font-size: 18px;
    font-family: var(--font-en);
    font-weight: 600;
    background: var(--sub-color);
    color: #FFF;
    padding: 2px 8px;
    margin-right: 100%;
    margin-bottom: 10px;
  }
  .compnay_content_head{
    font-size: 18px;
  }
  .compnay_content_box2{

  }
  .compnay_content_title{
    margin-top: 15px;
  }
  .compnay_content_title_txt{
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 0;
  }
  .compnay_content_box2 .content_desc{
    font-size: 15px;
    line-height: 1.875;
  }

  /* OUR VALUE */
  .company_content_item{

  }
  .cmn_item.company_content_item + .cmn_item.company_content_item{
    margin-top: 95px;
  }
  .company_content_item .cmn_item1{

  }
  .company_content_item .cmn_item2{

  }
  .company_content_item .cmn_item1_img:before{

  }
  .company_content_item .cmn_title_ja{

  }
  .company_content_item .cmn_title_ja_txt{

  }
  .company_content_item .content_desc{
    margin-top: 55px;
  }


}
@media (min-width:1470px){
  /* MV */
  .com_mv_img {
    top: 81.5% !important;
  }
  .cmn_content_box_row.second .cmn_content_box1{
    width: 56.23%;
  }
  /* イラスト背景 */
  .compnay_content_box{
    position: relative;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    height: auto;
  }
  .compnay_content_box:nth-of-type(1){
    background-image: url(/system_panel/uploads/images/pro_01.png);
    aspect-ratio: 490 / 253;
  }
  .compnay_content_box:nth-of-type(2){
    background-image: url(/system_panel/uploads/images/pro_02.png);
    aspect-ratio: 355 / 202;
  }
  .compnay_content_box:nth-of-type(3){
    background-image: url(/system_panel/uploads/images/pro_03.png);
    aspect-ratio: 721 / 402;
  }
  .compnay_content_box:nth-of-type(4){
    background-image: url(/system_panel/uploads/images/pro_04.png);
    aspect-ratio: 371 / 201;
  }
  .compnay_content_boxs_inner{
    padding-inline: 120px;
    margin-left: -59px;
    margin-top: 30px;
  }
  .compnay_content_box1{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
  .compnay_content_number{
    display: block;
    font-size: 18px;
    font-family: var(--font-en);
    font-weight: 600;
    background: var(--sub-color);
    color: #FFF;
    padding: 2px 10px;
    margin-right: 15px;
    margin-bottom: 0;
  }
  .compnay_content_head{
    font-size: 18px;
  }
  .compnay_content_box2{

  }
  .compnay_content_title{
    margin-top: 18px;
  }
  .compnay_content_title_txt{
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 0;
  }
  .compnay_content_box2 .content_desc{
    font-size: 15px;
    line-height: 1.6;
  }
}
@media (min-width:1720px){
  /* MV */
  .com_mv_img {
    top: 81.5% !important;
  }
  /* メイン部分 */
  .cmn_content_box_row{

  }
  .cmn_content_box_row + .cmn_content_box_row{
    margin-top: 110px;
  }
  .cmn_content_box1_row{
    order: 2;
  }
  .cmn_content_box2_row{
    order: 1;
  }
  .cmn_content_box_row.second .cmn_content_box2{
    /*width: 100%;*/
    width: 32.96%;
    margin-right: 58px;
    margin-top: 22px;
  }
  .cmn_content_box_row.second .cmn_contents_img{
    height: auto;
  }
  .cmn_content_box_row .cmn_contents_img:before{
    padding-top: 103%;
  }
  .cmn_content_box_row.second .cmn_contents_img:before{
    padding-top: 116%;
  }
  .cmn_content_box_row.second .cmn_title_ja{
    margin-top: -85px;
  }
  .cmn_content_box_row.second .cmn_title_ja_txt{
    font-size: 50px;
  }
  .cmn_content_box_row.second .cmn_title_ja_txt strong{
    color: var(--sub-color);
  }
  .cmn_content_box_row.second .content_desc{
    margin-top: 35px;
  }

  /* PROBLEM */
  .compnay_content_boxs{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 70px;
  }
  .compnay_content_box{
    width: 49%;
  }
  .compnay_content_box:nth-child(n+2){
    margin-top: 0;
  }
  .compnay_content_box:nth-child(n+3){
    margin-top: 30px;
  }

  /* イラスト背景 */
  .compnay_content_box{
    position: relative;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    height: auto;
  }
  .compnay_content_box:nth-of-type(1){
    background-image: url(/system_panel/uploads/images/pro_01.png);
    aspect-ratio: 490 / 253;
  }
  .compnay_content_box:nth-of-type(2){
    background-image: url(/system_panel/uploads/images/pro_02.png);
    aspect-ratio: 355 / 202;
  }
  .compnay_content_box:nth-of-type(3){
    background-image: url(/system_panel/uploads/images/pro_03.png);
    aspect-ratio: 721 / 402;
  }
  .compnay_content_box:nth-of-type(4){
    background-image: url(/system_panel/uploads/images/pro_04.png);
    aspect-ratio: 371 / 201;
  }
  .compnay_content_boxs_inner{
    padding-inline: 150px;
    margin-left: -80px;
    margin-top: 30px;
  }
  .compnay_content_box1{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
  .compnay_content_number{
    display: block;
    font-size: 18px;
    font-family: var(--font-en);
    font-weight: 600;
    background: var(--sub-color);
    color: #FFF;
    padding: 2px 10px;
    margin-right: 15px;
  }
  .compnay_content_head{
    font-size: 18px;
  }
  .compnay_content_box2{

  }
  .compnay_content_title{
    margin-top: 25px;
  }
  .compnay_content_title_txt{
    font-size: 30px;
    font-weight: 900;
    letter-spacing: 0;
  }
  .compnay_content_box2 .content_desc{
    font-size: 15px;
    line-height: 1.8;
  }

  /* OUR VALUE */
  .company_content_item{

  }
  .cmn_item.company_content_item + .cmn_item.company_content_item{
    margin-top: 95px;
  }
  .company_content_item .cmn_item1{

  }
  .company_content_item .cmn_item2{

  }
  .company_content_item .cmn_item1_img:before{

  }
  .company_content_item .cmn_title_ja{
    margin-inline: -3px;
  }
  .company_content_item .cmn_title_ja_txt{
    font-size: 50px !important;
  }
  .company_content_item .content_desc{
    margin-top: 55px;
  }

}







/*******************************
*　外国人の方
********************************/

/* セクション設定 */
.pg_workers{

}
.pg_workers .section.sec1{

}
.pg_workers .section.sec2{

}
.pg_workers .section.sec3{

}

@media (max-width:374px){

}
@media (min-width:375px){

}
@media (max-width:767px){

}
@media (min-width:768px){

  /* セクション設定 */
  .pg_workers{

  }
  .pg_workers .section.sec1{

  }
  .pg_workers .section.sec2{

  }
  .pg_workers .section.sec3{

  }

}
@media (min-width:1024px){
  /* セクション設定 */
  .pg_workers{

  }
  .pg_workers .section.sec1{

  }
  .pg_workers .section.sec2{

  }
  .pg_workers .section.sec3{

  }

}
@media (min-width:1200px){
  /* セクション設定 */
  .pg_workers{

  }
  .pg_workers .section.sec1{

  }
  .pg_workers .section.sec2{

  }
  .pg_workers .section.sec3{

  }

}
@media (min-width:1470px){


}
@media (min-width:1720px){
  /* セクション設定 */
  .pg_workers{

  }
  .pg_workers .section.sec1{

  }
  .pg_workers .section.sec2{

  }
  .pg_workers .section.sec3{

  }

}

/* メイン部分 */
.cmn_content_title_ja strong{
  color: var(--sub-color);
}
.workeers_spr_tt .content_desc.center{
  text-align: justify;
  margin-top: 15px;
}
.workeers_spr_content_boxs{
  margin-top: 35px;
}
.workeers_spr_content_box{
  width: 50%;
  padding: 20px 10px;
}

/* 8つのサポート */
.workeers_spr_content_box:nth-of-type(1){
  background: #cdedfe;
}
.workeers_spr_content_box:nth-of-type(2){
  background: #ffe5d3;
}
.workeers_spr_content_box:nth-of-type(3){
  background: #cdedfe;
}
.workeers_spr_content_box:nth-of-type(4){
  background: #ffe5d3;
}
.workeers_spr_content_box:nth-of-type(5){
  background: #ffe5d3;
}
.workeers_spr_content_box:nth-of-type(6){
  background: #cdedfe;
}
.workeers_spr_content_box:nth-of-type(7){
  background: #ffe5d3;
}
.workeers_spr_content_box:nth-of-type(8){
  background: #cdedfe;
}

.workeers_spr_content_box:nth-child(n+3){
  margin-top: 10px;
}
.workeers_spr_content_box .home_item_txt.center{
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  margin-top: 15px;
}

/* REASON*/
.workeers_rea_content_boxs .cmn_title_ja_txt{

}

@media (max-width:767px){
  .workeers_spr_content_box{
    width: 50%;
    padding: 20px 10px;
    justify-content: flex-start;
  }
}
@media (min-width:768px){
  /* メイン部分 */
  .workeers_spr_tt .content_desc.center{
    text-align: justify;
    /*text-align: center;*/
    margin-top: 35px;
  }
  .workeers_spr_content_boxs{
    margin-top: 50px;
  }
  .workeers_spr_content_box{
    /*width: 100%;*/
    width: 50%;
    padding: 20px 10px;
    height: 270px;
  }

  /* 8つのサポート */
  .workeers_spr_content_box:nth-of-type(1){
    background: #cdedfe;
  }
  .workeers_spr_content_box:nth-of-type(2){
    background: #ffe5d3;
  }
  .workeers_spr_content_box:nth-of-type(3){
    background: #cdedfe;
  }
  .workeers_spr_content_box:nth-of-type(4){
    background: #ffe5d3;
  }
  .workeers_spr_content_box:nth-of-type(5){
    background: #ffe5d3;
  }
  .workeers_spr_content_box:nth-of-type(6){
    background: #cdedfe;
  }
  .workeers_spr_content_box:nth-of-type(7){
    background: #ffe5d3;
  }
  .workeers_spr_content_box:nth-of-type(8){
    background: #cdedfe;
  }

  .workeers_spr_content_box:nth-child(n+3){
    margin-top: 10px;
  }
  .workeers_spr_content_box .home_item_txt.center{
    /*text-align: justify;*/
    text-align: center;
    font-size: 18px;
    margin-top: 10px;
  }

  /* REASON*/
  .workeers_rea_content_boxs .cmn_title_ja_txt{

  }
}
@media (min-width:1024px){
  /* メイン部分 */
  .workeers_spr_tt .content_desc.center{
    /*text-align: justify;*/
    text-align: center;
    margin-top: 35px;
  }
  .workeers_spr_content_boxs{
    margin-top: 50px;
  }
  .workeers_spr_content_box{
    /*width: 100%;*/
    width: 24.32%;
    padding: 48px 0px 20px;
    height: 270px;
  }

  /* 8つのサポート */
  .workeers_spr_content_box:nth-of-type(1){
    background: #cdedfe;
  }
  .workeers_spr_content_box:nth-of-type(2){
    background: #ffe5d3;
  }
  .workeers_spr_content_box:nth-of-type(3){
    background: #cdedfe;
  }
  .workeers_spr_content_box:nth-of-type(4){
    background: #ffe5d3;
  }
  .workeers_spr_content_box:nth-of-type(5){
    background: #ffe5d3;
  }
  .workeers_spr_content_box:nth-of-type(6){
    background: #cdedfe;
  }
  .workeers_spr_content_box:nth-of-type(7){
    background: #ffe5d3;
  }
  .workeers_spr_content_box:nth-of-type(8){
    background: #cdedfe;
  }

  .workeers_spr_content_box:nth-child(n+3){
    margin-top: 0;
  }
  .workeers_spr_content_box:nth-child(n+5){
    margin-top: 10px;
  }
  .workeers_spr_content_box .home_item_txt.center{
    /*text-align: justify;*/
    text-align: center;
    font-size: 18px;
    margin-top: 10px;
  }

  /* REASON*/
  .workeers_rea_content_boxs .cmn_title_ja_txt{

  }
}
@media (min-width:1200px){
  /* メイン部分 */
  .workeers_spr_tt .content_desc.center{
    /*text-align: justify;*/
    text-align: center;
    margin-top: 35px;
  }
  .workeers_spr_content_boxs{
    margin-top: 50px;
  }
  .workeers_spr_content_box{
    /*width: 100%;*/
    width: 24.32%;
    padding: 48px 0px 20px;
    height: 270px;
  }

  /* 8つのサポート */
  .workeers_spr_content_box:nth-of-type(1){
    background: #cdedfe;
  }
  .workeers_spr_content_box:nth-of-type(2){
    background: #ffe5d3;
  }
  .workeers_spr_content_box:nth-of-type(3){
    background: #cdedfe;
  }
  .workeers_spr_content_box:nth-of-type(4){
    background: #ffe5d3;
  }
  .workeers_spr_content_box:nth-of-type(5){
    background: #ffe5d3;
  }
  .workeers_spr_content_box:nth-of-type(6){
    background: #cdedfe;
  }
  .workeers_spr_content_box:nth-of-type(7){
    background: #ffe5d3;
  }
  .workeers_spr_content_box:nth-of-type(8){
    background: #cdedfe;
  }

  .workeers_spr_content_box:nth-child(n+3){
    margin-top: 0;
  }
  .workeers_spr_content_box:nth-child(n+5){
    margin-top: 10px;
  }
  .workeers_spr_content_box .home_item_txt.center{
    /*text-align: justify;*/
    text-align: center;
    font-size: 18px;
    margin-top: 10px;
  }

  /* REASON*/
  .workeers_rea_content_boxs .cmn_title_ja_txt{

  }

  .workeers_rea_content_boxs .cmn_item2{
    margin-top: 15px;
  }
  .workeers_rea_content_boxs .content_desc{
    margin-top: 50px;
  }
}
@media (min-width:1470px){


}
@media (min-width:1720px){
  /* メイン部分 */
  .workeers_spr_tt .content_desc.center{
    /*text-align: justify;*/
    text-align: center;
    margin-top: 35px;
  }
  .workeers_spr_content_boxs{
    margin-top: 50px;
  }
  .workeers_spr_content_box{
    /*width: 100%;*/
    width: 24.32%;
    padding: 48px 0px 20px;
    height: 270px;
  }

  /* 8つのサポート */
  .workeers_spr_content_box:nth-of-type(1){
    background: #cdedfe;
  }
  .workeers_spr_content_box:nth-of-type(2){
    background: #ffe5d3;
  }
  .workeers_spr_content_box:nth-of-type(3){
    background: #cdedfe;
  }
  .workeers_spr_content_box:nth-of-type(4){
    background: #ffe5d3;
  }
  .workeers_spr_content_box:nth-of-type(5){
    background: #ffe5d3;
  }
  .workeers_spr_content_box:nth-of-type(6){
    background: #cdedfe;
  }
  .workeers_spr_content_box:nth-of-type(7){
    background: #ffe5d3;
  }
  .workeers_spr_content_box:nth-of-type(8){
    background: #cdedfe;
  }

  .workeers_spr_content_box:nth-child(n+3){
    margin-top: 0;
  }
  .workeers_spr_content_box:nth-child(n+5){
    margin-top: 10px;
  }
  .workeers_spr_content_box .home_item_txt.center{
    /*text-align: justify;*/
    text-align: center;
    font-size: 18px;
    margin-top: 10px;
  }

  /* REASON*/
  .workeers_rea_content_boxs .cmn_title_ja_txt{
    font-size: 50px !important;
    margin-inline: -3px;
  }

  .workeers_rea_content_boxs .cmn_item2{
    margin-top: 15px;
  }
  .workeers_rea_content_boxs .content_desc{
    margin-top: 50px;
  }
}




/*******************************
*　
********************************/

/* セクション設定 */
.pg_xxx{

}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}


@media (max-width:374px){

}
@media (min-width:375px){

}
@media (max-width:767px){

}
@media (min-width:768px){

  .pg_xxx{

  }
  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }

}
@media (min-width:1024px){


}
@media (min-width:1200px){


}
@media (min-width:1470px){


}
@media (min-width:1720px){


}

/* メイン部分 */

@media (max-width:767px){

}
@media (min-width:768px){

}
@media (min-width:1024px){


}
@media (min-width:1200px){


}
@media (min-width:1470px){


}
@media (min-width:1720px){


}


/*******************************
*　会社概要
********************************/

/* セクション設定 */
.pg_company{

}
.pg_company .section.sec1{

}
.pg_company .section.sec2{

}

/*テーブル*/
.copmany_tbl{
  position: relative;
  z-index: 1;
}
.copmany_tbl p{
  letter-spacing: 0.08em;
}
.copmany_tbl .table_rows_th,
.copmany_tbl .table_rows_td{
  font-size: 16px;
  border: 1px solid #bfbfbf;
  padding: 17.4px 16px;
}
.copmany_tbl .table_rows_th{
  background: #000;
  font-weight: 400;
  /*border-left: none;*/
}
.copmany_tbl .table_rows_td{
  background: var(--main-color);
  color: var(--txt-color);
  font-weight: 400;
  /*border-right: none;*/
}

/*地図*/
.gmap{
  margin-top: 50px;
}
.access_map iframe{
  width: 100%;
  border: none;
  height: 250px;
}
.body_company .pg_contact .form.formWrap{
  margin-top: 0;
}

/* SCHOOL*/
.school_content_boxs{
  margin-top: 35px;
}
.school_content_box{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.school_content_box:nth-child(n+2){
  margin-top: 50px;
}
.school_content_box + .school_content_box{
  margin-top: 30px;
}
.school_content_box1{
  width: 100%;
}
.school_content_box1_img:before{
  padding-top: 75%;
}
.school_content_box2{
  width: 100%;
  margin-top: 15px;
}
.school_content_box2_head{
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 15px;
}
.school_content_box2_head_txt{
  font-size: 22px;
  font-weight: 600;
}
.school_info_list{

}
* +.school_info_list{
  border-bottom: 1px solid #e5e5e5;
}
.school_info_list + .school_info_list{
  margin-top: 15px;
}
.info_list_title_row{
  font-size: 16px;
  font-weight: 500;
  margin-top: 10px;
}
.info_list_txt_row{
  font-size: 14px;
  font-weight: 400;
  margin-top: 10px;
  padding-bottom: 20px;
}
.school_content_boxs .read_more{
  margin-top: 20px;
}
.school_content_boxs .read_more_a{
  color: var(--txt-color);
}


@media (max-width:374px){

}
@media (min-width:375px){

}
@media (max-width:767px){
  /*テーブル*/
  .copmany_tbl{
    margin-top: -15px;
  }
  .company_tbl .table_rows_th,
  .company_tbl .table_rows_td {
    width: 100%;
    display: block;
    border-bottom: none;
    border-left: none;
    border-right: none;
  }
  .copmany_tbl .table_rows_th{

  }
  .copmany_tbl .table_rows_td{

  }
  .copmany_tbl .table_rows_tr:last-child .table_rows_td{
    /* border-bottom: 1px solid #24b30b;*/
  }
}
@media (min-width:768px){
  /* セクション設定 */
  .pg_company{

  }
  .pg_company .section.sec1{

  }
  .pg_company .section.sec2{

  }

  /*テーブル*/
  .copmany_tbl{
    margin-top: -105px;
  }
  .copmany_tbl .table_rows_th,
  .copmany_tbl .table_rows_td{
    font-size: 18px;
    padding: 18px 15px;
  }
  .copmany_tbl .table_rows_th{
    width: 200px;
    border-right: 0;
  }
  .copmany_tbl .table_rows_td{
    border-left: 0;
    padding-left: 20px;
  }

  /*地図*/
  .gmap{

  }
  .access_map iframe{
    height: 450px;
  }

  .pg_contact .section.sec2 .contact_tt.head{
    font-size: 30px;
  }

  /* SCHOOL*/
  .school_content_boxs{
    margin-top: 75px;
  }
  .school_content_box{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .school_content_box:nth-child(n+2){
    margin-top: 80px;
  }
  .school_content_box + .school_content_box{
    margin-top: 30px;
  }
  .school_content_box1{
    /*  width: 100%;*/
    width: 42.79%;
  }
  .school_content_box1_img:before{
    padding-top: 80%;
  }
  .school_content_box2{
    /*  width: 100%;*/
    width: 51.35%;
    margin-top: -10px;
  }
  .school_content_box2_head{
    margin-bottom: 20px;
  }
  .school_content_box2_head{
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 20px;
  }
  .school_content_box2_head_txt{
    font-size: 22px;
  }
  .school_info_list{

  }
  * +.school_info_list{
    border-bottom: 1px solid #e5e5e5;
  }
  .school_info_list + .school_info_list{
    margin-top: 20px;
  }
  .school_info_list:after{
    border-bottom: 1px solid #e5e5e5;
  }
  .info_list_title_row{
    font-size: 18px;
    font-weight: 500;
  }
  .info_list_txt_row{
    font-size: 15px;
    font-weight: 400;
    margin-top: 10px;
    padding-bottom: 20px;
  }
  .school_content_boxs .read_more{
    margin-top: 45px;
  }
  .school_content_boxs .read_more_a{
    color: var(--txt-color);
  }
}
@media (min-width:1024px){
  /* セクション設定 */
  .pg_company{

  }
  .pg_company .section.sec1{

  }
  .pg_company .section.sec2{

  }

  /*テーブル*/
  .copmany_tbl{
    margin-top: -100px;
  }
  .copmany_tbl .table_rows_th,
  .copmany_tbl .table_rows_td{

  }
  .copmany_tbl .table_rows_th{
    width: 285px;
  }
  .copmany_tbl .table_rows_td{

  }

  /*地図*/
  .gmap{
    margin-top: 70px;
  }
  .access_map iframe{

  }

  .pg_contact .section.sec2 .contact_tt.head{
    font-size: 38px;
  }
  .pg_contact .form.formWrap{
    margin-top: 0;
  }
}
@media (min-width:1200px){
  .copmany_tbl{
    margin-top: -123px;
  }
  .pg_contact .form.formWrap{
    margin-top: 0;
  }

}
@media (min-width: 1366px) {
  /*  .pg_company .tt2_en {
      font-size: 240px;
    }*/
}
@media (min-width:1470px){
  /*  .pg_company .tt2_en {
      font-size: 260px;
    }*/
  .copmany_tbl{
    margin-top: -123px;
  }

}
@media (min-width:1720px){
  /*  .pg_company .tt2_en {
      font-size: 300px;
    }*/
  .copmany_tbl{
    margin-top: -123px;
  }

  /* SCHOOL*/
  .school_content_boxs{
    margin-top: 75px;
  }
  .school_content_box{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .school_content_box:nth-child(n+2){
    margin-top: 115px;
  }
  .school_content_box + .school_content_box{
    margin-top: 30px;
  }
  .school_content_box1{
    /*  width: 100%;*/
    width: 42.79%;
  }
  .school_content_box1_img:before{
    padding-top: 80%;
  }
  .school_content_box2{
    /*  width: 100%;*/
    width: 51.35%;
    margin-top: -10px;
  }
  .school_content_box2_head{
    margin-bottom: 20px;
  }
  .school_content_box2_head{
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 20px;
  }
  .school_content_box2_head_txt{
    font-size: 25px;
    font-weight: 600;
  }
  .school_info_list{

  }
  * +.school_info_list{
    border-bottom: 1px solid #e5e5e5;
  }
  .school_info_list + .school_info_list{
    margin-top: 20px;
  }
  .school_info_list:after{
    border-bottom: 1px solid #e5e5e5;
  }
  .info_list_title_row{
    font-size: 20px;
    font-weight: 500;
  }
  .info_list_txt_row{
    font-size: 15px;
    font-weight: 400;
    margin-top: 10px;
    padding-bottom: 20px;
  }
  .school_content_boxs .read_more{
    margin-top: 45px;
  }
  .school_content_boxs .read_more_a{
    color: var(--txt-color);
  }
}

/* メイン部分 */

@media (max-width:767px){

}
@media (min-width:768px){

}
@media (min-width:1024px){


}
@media (min-width:1200px){


}
@media (min-width:1470px){


}
@media (min-width:1720px){


}

/*******************************
*　
********************************/

/* セクション設定 */
.pg_company{

}
.pg_company .section.sec1{

}
.pg_company .section.sec2{

}


@media (max-width:374px){

}
@media (min-width:375px){

}
@media (max-width:767px){

}
@media (min-width:768px){

  .pg_company{

  }
  .pg_company .section.sec1{

  }
  .pg_company .section.sec2{
    padding-top: 40px;
  }

}
@media (min-width:1024px){


}
@media (min-width:1200px){


}
@media (min-width:1470px){


}
@media (min-width:1720px){


}


/* メイン部分 */


/* 会社概要 */
.company_tbl{

}
.company_tbl .table_rows_th,
.company_tbl .table_rows_td{
  color: #000;
  border-color: #000;
  padding: 10px 10px;
}
.company_tbl .table_rows_th{
  background: #ebebeb;
  font-weight: 400;
  border-left: none;
}
.company_tbl .table_rows_td{
  background: #FFF;
  border-right: none;
}

/* マップ */
.company_map{

}
* + .company_map{
  margin-top: 50px;
}
.company_map iframe{
  border: 0;
  width: 100%;
  height: 250px;
}

/* ギャラリー */
.company_gallery_items{
  display: flex;
  flex-wrap: wrap;
  margin-left: -5px;
  margin-right: -5px;
}
* + .company_gallery_items{
  margin-top: 30px;
}
.company_gallery_item{
  width: 50%;
  padding: 0 5px;
}
.company_gallery_item:nth-child(n+3){
  margin-top: 10px;
}
.company_gallery_item_img{

}
.company_gallery_item_img.img_fit:before{
  padding-top: 71.400%;
}

@media (max-width:767px){

}
@media (min-width:768px){

  /* 会社概要 */
  .company_tbl{

  }
  .company_tbl .table_rows_th,
  .company_tbl .table_rows_td{
    padding: 17px 20px 18px;
  }
  .company_tbl .table_rows_th{
    width: 200px;
  }
  .company_tbl .table_rows_td{
  }

  /* マップ */
  .company_map{

  }
  * + .company_map{
    margin-top: 50px;
  }
  .company_map iframe{
    height: 400px;
  }


  /* ギャラリー */
  .company_gallery_items{
    margin-left: -10px;
    margin-right: -10px;
  }
  * + .company_gallery_items{
    margin-top: 40px;
  }
  .company_gallery_item{
    width: 33.333%;
    padding: 0 10px;
  }
  .company_gallery_item:nth-child(n+3){
    margin-top: 0;
  }
  .company_gallery_item:nth-child(n+4){
    margin-top: 20px;
  }

}
@media (min-width:1024px){


}
@media (min-width:1200px){

  /* 会社概要 */
  .company_tbl{

  }
  .company_tbl .table_rows_th,
  .company_tbl .table_rows_td{
    padding: 17px 30px 18px;
  }
  .company_tbl .table_rows_th{
    width: 300px;
  }
  .company_tbl .table_rows_td{
  }

  /* ギャラリー */
  .company_gallery_items{
    margin-left: -15px;
    margin-right: -15px;
  }
  * + .company_gallery_items{
    margin-top: 60px;
  }
  .company_gallery_item{
    width: 33.333%;
    padding: 0 15px;
  }
  .company_gallery_item:nth-child(n+3){
    margin-top: 0;
  }
  .company_gallery_item:nth-child(n+4){
    margin-top: 30px;
  }

}
@media (min-width:1470px){


}
@media (min-width:1720px){


}


/* カテゴリNav */
.cmn_cat_nav{
  display: flex;
  flex-wrap: wrap;
  margin-left: -5px;
  margin-right: -5px;
}
.cmn_cat_nav li{
  width: 50%;
  padding: 0 5px;
  margin: 5px 0;
  font-size: 12px;
  line-height: 1.4285;
}
.cmn_cat_nav li a{
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 50px;
  padding: 2px 10px 3px;
  font-family: var(--font-gothic);
  color: var(--main-color);
  border: 1px solid var(--main-color);
  position: relative;
  z-index: 1;
  transition: 0.2s all;
}

.cmn_cat_nav li a:after{
  content: "→";
  font-size: 10px;
  font-family: var(--font-mincho);
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 10px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  transition: 0.2s all;
}
.cmn_cat_nav li.on a,
.cmn_cat_nav li a:hover{
  background: var(--main-color);
  color: #FFF;
}
.cmn_cat_nav li a:hover:after{
  margin-right: -2px;
}

.cmn_cat_nav.color2 li a{
  background: #b8d200;
  border-color: #b8d200;
  color: #FFF;
}
.cmn_cat_nav.color2 li a:hover{
  background: var(--main-color);
  border-color: var(--main-color);
}
.cmn_cat_nav.color2 li a:before{
  content: "";
  position: absolute;
  z-index: 1;
  border: 2px solid #FFF;
  inset: 0;
}

@media (max-width:767px){

  .cmn_cat_nav.col1_sp li{
    width: 100%;
  }
  .cmn_cat_nav.col2_sp li{
    width: 50%;
  }
  .cmn_cat_nav.col3_sp li{
    width: 33.333%;
  }
  .cmn_cat_nav.col4_sp li{
    width: 25%;
  }

  .cmn_cat_nav.txt_sm_sp li{
    font-size: 10px;
  }

}
@media (min-width:768px){

  .cmn_cat_nav{
    margin-left: -15px;
    margin-right: -15px;
  }
  .cmn_cat_nav li{
    width: 50%;
    padding: 0 15px;
    margin: 12.5px 0;
    font-size: 14px;
  }
  .cmn_cat_nav li a{

  }

  .cmn_cat_nav li a:after{
    font-size: 14px;
    right: 10px;
  }
  .cmn_cat_nav li a:hover:after{
    margin-right: -5px;
  }
}
@media (min-width:1024px){

}
@media (min-width:1200px){

  .cmn_cat_nav{
    margin-left: -15px;
    margin-right: -15px;
  }
  .cmn_cat_nav li{
    padding: 0 15px;
    margin: 12.5px 0;
    font-size: 14px;
  }
  .cmn_cat_nav li a{

  }

  .cmn_cat_nav.col2 li{
    width: 50%;
  }
  .cmn_cat_nav.col3 li{
    width: 33.333%;
  }
  .cmn_cat_nav.col4 li{
    width: 25%;
  }
  .cmn_cat_nav.col5 li{
    width: 20%;
  }

}


/*******************************
*　記事一覧
********************************/

/* 一覧（サムネあり） */
.news_list_thumb{

}
* + .news_list_thumb{
  margin-top: 50px;
}
.posts_category_sp + .news_list_thumb{
  margin-top: 0;
}
.news_list_thumb .webgene-blog{
  display: flex;
  flex-wrap: wrap;
  margin-left: -5px;
  margin-right: -5px;
}
.news_list_thumb .webgene-item{
  width: 50%;
  padding: 0 5px;
}
.news_list_thumb .webgene-item:nth-child(n+3){
  margin-top: 15px;
}
.news_list_thumb .webgene-item{

}
.news_list_thumb .webgene-item .inner{
  display: block;
  position: relative;
  z-index: 1;
  color: #000;
  background: #e6e6e6;
}
.news_list_thumb .webgene-item .box1{

}
.news_list_thumb .webgene-item .box2{
  padding: 10px 10px;
}
.news_list_thumb .webgene-item .img{
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.news_list_thumb .webgene-item .img.img_fit:before{
  padding-top: 75%;
  padding-top: 67.92%;
}
.news_list_thumb .webgene-item .meta{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 5px;
}
.news_list_thumb .webgene-item .meta .category{
  font-size: 13px;
  font-weight: 500;
  background: #2850a1;
  color: #FFF;
  padding: 3px 8px;
  margin: 5px 0;
  margin-right: 10px;
}
.news_list_thumb .webgene-item .meta .date{
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font-en);
  margin: 5px 0;
  /*margin-right: 10px;*/
}
.news_list_thumb .webgene-item .title{
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}


.news_list_thumb.col3{

}
.news_list_thumb.col4{

}


@media (max-width:767px){

}
@media (min-width:768px){

  /* 一覧（サムネあり） */
  .news_list_thumb{

  }
  * + .news_list_thumb{
    margin-top: 50px;
  }
  .news_list_thumb .webgene-blog{
    margin-left: -7.5px;
    margin-right: -7.5px;
  }
  .news_list_thumb .webgene-item{
    width: 50%;
    padding: 0 7.5px;
  }
  .news_list_thumb .webgene-item:nth-child(n+3){
    margin-top: 15px;
  }
  .news_list_thumb .webgene-item{

  }
  .news_list_thumb .webgene-item .inner{
  }
  .news_list_thumb .webgene-item .box1{

  }
  .news_list_thumb .webgene-item .box2{
    padding: 20px 10px;
  }
  .news_list_thumb .webgene-item .meta{
    margin-bottom: 5px;
  }
  .news_list_thumb .webgene-item .meta .category{
    font-size: 13px;
    /*margin-right: 10px;*/
  }
  .news_list_thumb .webgene-item .meta .date{
    font-size: 15px;
    /*margin-right: 10px;*/
  }
  .news_list_thumb .webgene-item .title{

  }

}
@media (min-width:1024px){

  /* 一覧（サムネあり） */


  /* 3カラム */
  .news_list_thumb.col3 .webgene-item{
    width: 33.333%;
  }
  .news_list_thumb.col3 .webgene-item:nth-child(n+3){
    margin-top: 0;
  }
  .news_list_thumb.col3 .webgene-item:nth-child(n+4){
    margin-top: 15px;
  }

  /* 4カラム */
  .news_list_thumb.col4 .webgene-item{
    width: 25%;
  }
  .news_list_thumb.col4 .webgene-item:nth-child(n+3){
    margin-top: 0;
  }
  .news_list_thumb.col4 .webgene-item:nth-child(n+5){
    margin-top: 15px;
  }

}
@media (min-width:1200px){

  /* 一覧（サムネあり） */
  .news_list_thumb{

  }
  * + .news_list_thumb{
    margin-top: 50px;
  }
  .news_list_thumb .webgene-blog{
    margin-left: -7.5px;
    margin-right: -7.5px;
  }
  .news_list_thumb .webgene-item{
    padding: 0 7.5px;
  }
  .news_list_thumb .webgene-item .box1{

  }
  .news_list_thumb .webgene-item .box2{
    padding: 20px 25px;
  }

  .news_list_thumb .webgene-item .title{
    font-size: 16px;
    line-height: 1.875;
  }



}
@media (min-width:1470px){


}
@media (min-width:1720px){


}


/*******************************
*　記事一覧(2カラム)
********************************/
.topics_list{
  position: relative;
  overflow: hidden;
}
.topics_list .webgene-item {
  position: relative;
}

.topics_list .webgene-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 100%;   /* ← 親要素と同じ高さだけにする */
  background: #c3bfbf;
}
.webgene-blog .webgene-item:after {
  background: #c3bfbf;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
}
.topics_list .webgene-item:after {
  height: 1px;
}

/*.topics_list .webgene-item{
  overflow: hidden;
}*/

.pg_news{
  padding-top: 0;
}
.posts_layout{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;

}
.posts_layout_box1{
  width: 100%;
}
.posts_layout_box2{
  width: 100%;
  margin-top: 50px;
}

.select_wrap{
  position: relative;
  z-index: 1;
}
.select_wrap:after{
  content: "\f078";
  content: "\f107";
  font-family: "FontAwesome";
  font-weight: 900;
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.select_wrap select{
  width: 100%;
  padding: 10px 10px;
  /*height: 40px;*/
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}
.posts_category_sp{
  margin-bottom: 30px;
}

/* リスト */
.posts_list{

}
.posts_list .webgene-item{
  display: flex;
  align-items: center;
  border-bottom: 1px dotted;
  padding-bottom: 10px;
}
.posts_list .webgene-item + .webgene-item{
  margin-top: 10px;
}
.posts_list .webgene-item .date{
  width: 95px;
  letter-spacing: 0.1em;
}
.posts_list .webgene-item .category{
  width: auto;
  font-size: 0.75em;
}
.posts_list .webgene-item .category span{
  display: block;
  background: #0069ba;
  color: #FFF;
  padding: 3px 5px;
  text-align: center;
}
.posts_list .webgene-item .title{
  width: 100%;
  letter-spacing: 0.075em;
}
.posts_list .webgene-item .title a{

}

.topics_list{

}
.topics_list .webgene-blog{
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
  margin-inline:-5px;
}
.topics_list.webgene-item{
  width: 50%;
  padding-inline:5px;
}
.topics_list .webgene-item a{
  display: block;
  height: 100%;
  background: #fff;
}
.topics_list .webgene-item .img:before{
  padding-top: 79.6%;
}
.topics_list .webgene-item .box2{
  background: #fff;
  padding: 5px;
}
.topics_list .webgene-item .meta{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  /*  justify-content: space-between;*/
}
.topics_list .webgene-item .date{
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  font-family: "Oswald", sans-serif;
}
.topics_list .webgene-item .category{
  background: #fff;
  color: #181818;
  width: 120px;
  text-align: center;
  border: 1px solid var(--main-color);
  font-size: 12px;
  padding: 3px 0;
}
.topics_list .webgene-item .title{
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.75em;
  margin-top: 10px;
}

/* サイド */
.posts_side_wrap{

}
.posts_side_wrap + .posts_side_wrap{
  margin-top: 30px;
}
.posts_side_title {
  background: var(--sub-color);
  color: #FFF;
  padding: 13px 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 20px;
}

.posts_cat_item{
  padding-left:0;
}
.posts_cat_item + .posts_cat_item{
  margin-top: 12px;
}
.posts_cat_item a{
  display: block;
  position: relative;
  padding-left: 32px;
  line-height: 1.2;
}
.posts_cat_item a:before{
  content: "■";
  position: absolute;
  left: 0;
  color: #000;
}

/* 詳細 */
.posts_detail{
  border: none;
  border-bottom: 1px solid #b9b9b9;
  padding: 0 0 30px;
}
.posts_detail .webgene-item{

}
.posts_detail .meta{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 0;
  margin-bottom: 12px;
  border-bottom:none;
  padding-bottom: 5px;
}
.posts_detail .meta .category{
  background: #fff;
  color: #181818;
  width: 100px;
  text-align: center;
  border: 1px solid var(--main-color);
  font-size: 14px;
  font-weight: 500;
  padding: 3px 0;
}
.posts_detail .meta .category span{
  display: inline-block;
  background: #0069ba;
  border-radius: 5px;
  color: #FFF;
  min-width: 150px;
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  padding: 2px 5px;
  line-height: 1.2;
}
.posts_detail .meta .date{
  width: 75px;
  font-size: 17px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  font-family: var(--font-en);
  /*  border-right: 1px solid #d6d6d6;*/
}
.posts_detail .title{
  font-size: 16px;
  font-family: "Noto Sans JP";
  font-weight: 700;
  letter-spacing: 0.075em;
  border-bottom: 1px solid #bfbfbf;
  padding-bottom: 12px;
}
.posts_detail .post_content{
  font-size: 16px;
  font-weight: 500;
  line-height: 2.125em;
  letter-spacing: 0.075em;
  text-align: justify;
  word-break: break-all;
}
.posts_detail .thumb{
  margin-bottom: 10px;
}

.posts_back_list{

}
.posts_back_list a{
  display: block;
  width: 255px;
  max-width: 100%;
  margin: 30px auto 0;
  background: #f3f2f2;
  padding: 4px;
  border-radius: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-align: center;
}
.posts_back_list a p{
  border: 2px dashed #0069b6;
  border-radius: 10px;
  padding: 10px 6px;
}
.posts_back_list a p:after{
  content: "\f105";
  font-family: "FontAwesome";
  margin-left: 18px;
}

/* PDFリンク */
.post_pdf{
  text-align: left;
}
.post_pdf a{
  display: inline-block;
  margin-top: 30px;
  border-bottom: 1px solid;
  transition: 0.2s all;
}
.post_pdf a[href=""]{
  display: none;
}
.post_pdf a:hover{
  border-bottom: 0;
}
.post_pdf a:before{
  /*
  * f054 > (大)
  * f105 > (小)
  */
  content: "\f105";
  font-family: "FontAwesome";
  margin-right: 5px;
}


/* 動画 */
.post_video{

}
.post_video .responsive_video{
  margin-top: 15px;
}
.post_video .responsive_video:empty{
  display: none;
}

/* ブロまる */
.entry-content{

}
.post_content h2{
  background: #c8e9f9;
  color: var(--txt-color);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.075em;
  padding: 8px 20px;
  margin: 2em 0;
}
.post_content h3{
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.075em;
  border-bottom: 2px solid var(--main-color);
  margin: 1.2em 0;
}
.post_content h4{
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.075em;
  border-bottom: 1px solid var(--main-color);
  margin: 1.2em 0;
}
.entry-content a{
  color: red;
}
.entry-content p img{
  margin: 1em 0;
}

/* コピー用 */
@media (max-width:374px){

}
@media (min-width:375px){

}
@media (max-width:767px){
  .topics_list .webgene-item:nth-child(2):before,
  .topics_list  .webgene-item:nth-child(3):before,
  .topics_list .webgene-item:nth-child(4):before {
    content: "";
  }
  .topics_list .webgene-item:nth-child(2n+1):not(:first-child):after {
    content: "";
    width: 200%;
  }

  .posts_list .webgene-item{
    flex-wrap: wrap;
  }
  .posts_list .webgene-item .title{
    margin-top: 5px;
  }
  .posts_list .webgene-item .category{
    max-width: calc(100% - 95px);
    line-height: 1.2;
  }

  .topics_list .webgene-item .category{
    margin-top: 14px;
  }
  .topics_list .webgene-item .title{
    margin-top: 10px;
  }

  .posts_detail .meta .date{
    margin-right: 25px;
  }

  .entry-content h2{
    font-size: 18px;
  }
  .entry-content h3{
    font-size: 17px;
  }
  .entry-content h4{
    font-size: 16px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  /*  .topics_list .webgene-item:nth-child(2):before,
    .topics_list .webgene-item:nth-child(3):before,
    .topics_list .webgene-item:nth-child(4):before {
      content: "";
    }*/

  .topics_list .webgene-item:nth-child(2n+1):not(:first-child):after {
    content: "";
    width: 200%;
  }
}

@media (min-width:768px){

  .pg_news{
    padding-top: 0;
  }
  .posts_layout_box1{
    width: 74.32%;
  }
  .posts_layout_box2{
    width: 22.97%;
    margin-top: 0;
  }

  .posts_category_sp{
    display: none;
  }

  /* リスト */
  .posts_list{

  }
  .posts_list .webgene-item{
    padding-bottom: 20px;
  }
  .posts_list .webgene-item + .webgene-item{
    margin-top: 20px;
  }
  .posts_list .webgene-item .date{
    width: 90px;
    font-size: 14px;
    letter-spacing: 0.075em;
  }
  .posts_list .webgene-item .category{
    width: 160px;
  }
  .posts_list .webgene-item .category span{
  }
  .posts_list .webgene-item .title{
    width: calc(100% - 100px - 150px - 15px);
    margin-left: 15px;
  }
  .posts_list .webgene-item .title a{

  }

  .posts_side_wrap + .posts_side_wrap{
    margin-top: 75px;
  }

  .topics_list{

  }
  .topics_list .webgene-blog{
    margin-inline:-20px;
  }
  .topics_list .webgene-item{
    padding-inline:20px;
  }
  .topics_list .webgene-item:nth-child(n+3){
    margin-top: 0;
    padding-top: 30px;
    ;
  }
  .topics_list .webgene-item a{
    display: block;
    height: 100%;
  }
  .topics_list .webgene-item .img:before{
    padding-top: 73.68%;
  }
  .topics_list .webgene-item .box2{
    padding: 21px 5px;
  }
  .topics_list .webgene-item .meta{
    justify-content: space-between;
  }
  .topics_list .webgene-item .date{
    /*    margin-right: 150px;*/
  }
  .topics_list .webgene-item .category{

  }
  .topics_list .webgene-item .title{

  }

  /* 詳細 */
  .posts_detail{
    padding: 0 0 35px;
  }
  .posts_detail .webgene-item{

  }
  .posts_detail .meta{
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin-bottom: 9px;
  }
  .posts_detail .meta .category{
    width: auto;
    font-size: 16px;
    padding: 2px 24px;
    /*    margin-left: 52px;*/
  }
  .news_detail .meta .category{
    width: auto;
    font-size: 12px;
    padding: 3px 22px;
    /*    margin-left: 52px;*/
  }
  .posts_detail .meta .category span{
    font-size: 13px;
    padding: 2px 5px;
  }
  .posts_detail .meta .date{
    width: 96px;
  }
  .posts_detail .title{
    width:100%;
    font-size: 18px;
    padding-bottom: 10px;
  }
  .posts_detail .post_content{
    /*padding: 0 10px;*/
  }
  .posts_detail .thumb{
    margin-bottom: 20px;
  }
  .pg_news.pg_topics .read_more{
    margin-top: 45px;
  }
  .pg_news .read_more a{
    width: 266px;
    padding: 24px 20px;
  }


}
@media (min-width:1024px){
  /*  .topics_list .webgene-item:nth-child(2):before,
    .topics_list .webgene-item:nth-child(3):before {
      content: "";
    }*/
  .topics_list .webgene-item:nth-child(2n+1):not(:first-child):after{
    content: "";
    width: 200%;
  }

  .posts_layout_box1.wide{
    width: 80.26%;
  }
  .posts_layout_box2.wide{
    width: 16.77%;
  }

  /* リスト */
  .posts_list{

  }
  .posts_list .webgene-item{
  }
  .posts_list .webgene-item + .webgene-item{
  }
  .posts_list .webgene-item .date{
    width: 120px;
    font-size: 16px;
  }
  .posts_list .webgene-item .category{
    width: 160px;
  }
  .posts_list .webgene-item .category span{
  }
  .posts_list .webgene-item .title{
    width: calc(100% - 120px - 160px - 25px);
    margin-left: 25px;
  }
  .posts_list .webgene-item .title a{

  }

  .topics_list{

  }
  .topics_list .webgene-blog{

  }

  .topics_list .webgene-item a{

  }
  .topics_list .webgene-item .img:before{

  }
  .topics_list .webgene-item .box2{
    padding: 30px 5px;
  }
  .topics_list .webgene-item .meta{

  }
  .topics_list .webgene-item .date{
    margin-right: 5px;
  }
  .topics_list .webgene-item .category{
    /*    margin-right: 160px;*/
  }
  .topics_list .webgene-item .title{

  }

}
@media (min-width:1200px){
  .topics_list .webgene-item:nth-child(3n+1):not(:first-child):after{
    content: "";
    width: 300%;
  }
  .topics_list .webgene-item:nth-child(-n+3)::after {
    display: none;
  }

  .pg_news{
    padding-top: 0;
  }
  .topics_list .webgene-item{
    width: 33.333%;
    padding: 0 20px 34px;
  }
  .topics_list .webgene-item:nth-child(n+3){
    margin-top: 0;
    padding-top: 0;
  }
  .topics_list .webgene-item:nth-child(n+4){
    margin-top: 0;
    padding-top: 50px;
    padding-bottom: 30px;
  }
  .topics_list .webgene-item:nth-child(n+5){

  }
  .topics_list .webgene-item .box2{
    padding: 13px 10px 0 0;
  }
  .posts_side_wrap + .posts_side_wrap{
    margin-top: 160px;
  }

}
@media (min-width:1340px){
  .topics_list .webgene-item .date{
    margin-right: 12px;
  }
}

@media (min-width:1720px){
  .topics_list .webgene-item{
    width: 33.333%;
    padding: 0 20px 9px;
  }
  .topics_list .webgene-item:nth-child(n+3){
    margin-top: 0;
  }
  .topics_list .webgene-item:nth-child(n+4){
    margin-top: 0;
    padding-top: 30px;
  }
  .topics_list .webgene-item:nth-child(n+5){

  }
  .topics_list .webgene-item .box2{
    padding: 13px 10px 13px 0;
  }
}

/*******************************
*　ギャラリー（サムネ横ver）
********************************/
.pg_xxx{

}
.pg_xxx .section.sec1{
  padding-top: 0;
  padding-bottom: 0;
}

/* スライド */
.gallery_wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.gallery_box1{
  width: 100%;
}
.gallery_box2{
  width: 100%;
  margin-top: 15px;
}

/* メイン */
.gallery_main{

}
.gallery_main .img{
  background: #EEE;
}
.gallery_main .img.img_fit:before{
  padding-top: 75.34%;
}
.gallery_main .img.img_fit img{
  object-fit: contain;
  object-position: center;
}
/* サムネ */
.gallery_thumb{

}
.gallery_thumb .img{
  width: 100%;
  background: #EEE;
  overflow: hidden;
}
.gallery_thumb .img.img_fit:before{
  padding-top: 76.47%;
}
.gallery_thumb .img.img_fit img{

}


/* 詳細 */
.gallery_detail{

}
.gallery_detail .meta{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-bottom: 1px solid #e5e5e5;
  margin-top: 20px;
  margin-bottom: 15px;
  padding-bottom: 10px;

}
.gallery_detail .meta .title{
  font-size: 18px;
  line-height: 1.5;
}
.gallery_detail .meta .price{
  font-size: 18px;
  line-height: 1.5;
  margin-left: auto;
}
.gallery_detail .post_content{
  font-size: 16px;
  line-height: 2;
  text-align: justify;
  word-break: break-all;
}
.gallery_detail .read_more{
  margin-top: 50px;
}


/* コピー用 */
@media (max-width:374px){

}
@media (min-width:375px){

}
@media (max-width:767px){

}
@media (min-width:768px){
  .pg_xxx{

  }
  .pg_xxx .section.sec1{
    padding-top: 0;
    padding-bottom: 0;
  }
  .pg_xxx .section.sec2{
    padding-top: 0;
    padding-bottom: 0;
  }
  .pg_xxx .section.sec3{
    padding-top: 0;
    padding-bottom: 0;
  }

  /* 詳細 */
  .gallery_wrap{
  }
  .gallery_box1{
    width: 65.76%;
  }
  .gallery_box2{
    width: 31.53%;
    margin-top: 0;

    position: absolute;
    z-index: 1;
    top: 0;
    bottom: 0;
    right: 0;
    overflow: hidden;
  }

  /* サムネ */
  .gallery_thumb{
    width: 100%;
    height: 100%;
  }
  .gallery_thumb .swiper-slide {
    overflow: hidden;
  }
  .gallery_thumb .img{
    height: 100%;
  }
  .gallery_thumb .img.img_fit:before{

  }

  /* 詳細 */
  .gallery_detail{
    width: 65.76%;
    margin-top: 30px;
  }
  .gallery_detail .meta{
    margin-top: 10px;
    margin-bottom: 15px;
    padding-bottom: 10px;
  }
  .gallery_detail .meta .title{
    font-size: 18px;
  }
  .gallery_detail .meta .price{
    font-size: 18px;
  }
  .gallery_detail .post_content{
    font-size: 16px;
    line-height: 2;
  }
  .gallery_detail .read_more{
    margin-top: 50px;
  }
}
@media (min-width:1024px){

  /* 詳細 */
  .gallery_detail{
    width: 65.76%;
    margin-top: 30px;
  }
  .gallery_detail .meta{
    margin-top: 10px;
    margin-bottom: 15px;
    padding-bottom: 10px;
  }
  .gallery_detail .meta .title{
    font-size: 20px;
  }
  .gallery_detail .meta .price{
    font-size: 20px;
  }
  .gallery_detail .post_content{
    font-size: 16px;
    line-height: 2;
  }
  .gallery_detail .read_more{
    margin-top: 50px;
  }

}
@media (min-width:1200px){


}

/*******************************
*　お問い合わせ
********************************/
.pg_contact .formTbl{
  border: 1px solid #bfbfbf;
  background: #ffffff;
}
.contact_info_wrap{
  background: #EEE;
  color: #FFF;
  padding: 30px 25px 20px;
  margin-bottom: 45px;
}
.contact_info_tt{
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-align: center;
  margin-bottom: 15px;
  color: #111;
}
.contact_info_box{
  display: flex;
  justify-content: center;
  align-items: flex-end;
  background: #FFF;
  color: #181818;
  padding: 25px 10px 25px 30px;
}
.contact_info_tel{
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact_info_tel_icon{
  background: #b1c274;
  color: #FFF;
  border-radius: 5px;
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  padding: 6px 16px;
  margin-right: 20px;
}
.contact_info_tel_link{
  font-size: 44px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1;
}
.contact_info_txt{
  font-weight: 700;
  margin-left: 0;
  letter-spacing: 0.16em;
}
.pg_contact .privacyLabel{
  font-weight: 700;
}

.contact_tt.privacy{
  font-family: var(--font-mincho);
  font-weight: 500;
}
.pg_thanks .read_more {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 30px;
}
.pg_thanks .read_more a p {
  color: var(--txt-color);
  /*  border-bottom: 2px solid #000;*/
}
@media (max-width:1023px){

  .contact_info_box{
    flex-wrap: wrap;
  }
  .contact_info_tel{
    width: 100%;
  }
  .contact_info_tt {
    font-size: 18px;
  }
  .contact_info_tel_link{
    font-size: 30px;
  }
}
@media (max-width:767px){

  .contact_info_wrap{
    margin-bottom: 50px;
    padding: 15px 10px;
  }
  .contact_info_box{
    padding: 20px 10px;
  }
  .contact_info_tt {
    font-size: 16px;
  }
  .contact_info_tel_icon{
    font-size: 14px;
    margin-right:5px;
  }
  .contact_info_tel_link{
    font-size: 24px;
  }
  .contact_info_txt{
    margin-left:0;
    margin-top: 5px;
    font-size: 10px;
  }

  .contact_info_box{
    flex-wrap: wrap;
  }
  .contact_info_tel{
    width: 100%;
  }
}

.contact_tt {
  font-size: 26px;
  text-align: center;
  margin-bottom: 25px;
  letter-spacing: 0.16em;
  font-family: var(--font-mincho);
  font-weight: 900;
  letter-spacing: 0.025em;
  color: var(--txt-color);
}

/* フォーム */
.pg_contact .formTbl{
  border: 1px solid #bfbfbf;
  background: #ffffff;
  color: #505050;
  margin-top: 35px;
}
.pg_contact .form.formWrap {
  letter-spacing: 0.1em;
  position: relative;
  z-index: 1;
}
.pg_contact .formRow + .formRow{
  border-top: 1px solid #bfbfbf;
}
.pg_contact .formTh {
  padding: 16px 15px 14px 15px;
  background: #ebebeb;
  letter-spacing: 0.08em;
  font-weight: 400;
  color: var(--txt-color);
}
.pg_contact .formTd.a_center{
  display:flex;
  align-items: center;
}
.pg_contact .formTh label{
  margin: 0;
  font-weight: 400;
}
.d-inline-block.requiredText {
  font-size: 13px;
  padding: 2px 12px;
  margin-top: 3px;
  float: right;
  font-weight: 600;
  letter-spacing: 0.05em;
  background: #b80000;
  color: #ffffff;
}
.d-inline-block.requiredText.nini{
  background: #fff;
  border: 1px solid #b80000;
  color: #b80000;
}
.pg_contact .formTd {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 15px;
  color: var(--txt-color);
}
.pg_contact .formTd input[type="text"],
.pg_contact .formTd input[type="tel"],
.pg_contact .formTd input[type="email"]{
  max-width: 461px;
  height: 39px;
  width: 100%;
  font-size: 15px;
  padding: 5px 10px;
  border: 1px solid #d6d8d8;
  border-radius: 0;
  letter-spacing: 0.16em;
  font-weight: 500;
}
.pg_contact .formTd select{
  border-radius: 0;
}
.pg_contact .formTd input[name="zip1"]{
  max-width: 120px;
}
.pg_contact .formTd input[name="zip2"]{
  max-width: 150px;
}
.pg_contact .formTd select[name="pref"]{
  max-width: 225px;
  width: 100%;
  font-size: 16px;
  padding: 7px 10px;
  border: 1px solid #d6d8d8;
}
.pg_contact .formTd input[name="city"]{
  max-width: 425px;
}
.pg_contact .formTd .addArea + .addArea{
  margin-top: 8px;
}
.pg_contact .formTd .addArea .labelText02{
  width: 75px;
}
.pg_contact .formTd textarea{
  width: 100%;
  height: 280px;
  font-size: 15px;
  padding: 5px 10px;
  border: 1px solid #d6d8d8;
  border-radius: 0;
  letter-spacing: 0.16em;
}
.pg_contact .formWrap .text-center{
  padding-top: 44px;
}
.pg_contact input[name="privacy"]{
  margin-right: 7px;
}
.pg_contact .privacyLabel{
  font-size: 17px;
  display: inline;
  color: #353535;
  letter-spacing: 0.08em;
  font-weight: 400;
}
.pg_contact .privacyLabel a{
  color: var(--sub-color);
}
.pg_contact .privacyLabel a:hover{
  border-bottom: none;
}

/*ボタン*/
.contact_form{
  margin-top: 45px;
}
.pg_contact .formBtn.formSend{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 30px;
  width: 100%;
  max-width: 280px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.075;
  text-align: center;
  border: 0;
  background: var(--main-color);
  border-radius: 50px;
  color: var(--txt-color);
  padding: 16px 20px;
  margin: 5px 5px;
  position: relative;
  z-index: 1;
  transition: 0.2s all;
  margin-top: 35px;
  margin-left: auto;
  margin-right: auto;
}
/*.pg_contact .formBtn.formSend::before{
  content: "";
  position: absolute;
  left: 0;
  bottom: auto;
  top: 75%;
  width: calc(100% - 85px);
  height: 2px;
  background: #000;
}*/
/*.pg_contact .formBtn.formSend:after{
  content: "\f054";
  font-family: 'FontAwesome';
  display: block;
  width: 42px;
  aspect-ratio: 1;
  background: var(--sub-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 50%;
  font-size: 12px;
  transition: 0.2s all;
  position: relative;
  right: 0;
  padding-top: 2px;
}*/
.pg_contact .formBtn.formSend:hover{
  color: #FFF;
  background: var(--sub-color);
}
.pg_contact .formBtn.formSend:hover:after{
  margin-right: -5px;
}
.radioArea{
  padding: 0;
}
.radioArea .d-inline-block .label{
  margin-left: 10px;
  letter-spacing: 0.025em;
  line-height: 2.25em;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7em;
}
.radioArea .d-inline-block{
  margin-right: 23px;
}
.radioArea .d-inline-block:last-child{
  margin-right: 0;
}
label.label.zipcode_i {
  padding: 5px;
  background: #cccccc;
  margin: 0;
  display: inline-block;
  border: 1px solid #d6d8d8;
  border-right: 0;
  vertical-align: top;
  line-height: 1.8;
}
.pg_contact .section.sec1 {
  padding: 0 0 0;
}

.privacy_item_box {
  padding: 30px 43px 30px 24px;
  height: 397px;
  overflow: auto;
  background: #fff;
  border: 1px solid #808080;
  margin-top: 0;
  color: #000000;
  margin-top: 100px;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .pg_contact .formTbl {
    margin-top: 55px;
  }
  .pg_contact .formBtn.formSend:after{
    right: 20px;
    width: 50px;
  }

  /*ボタン*/
  .pg_contact .formBtn.formSend {
    min-width: 180px;
  }
  /*  .pg_contact .formBtn.formSend::before {
      width: calc(100% - 115px);
    }*/
}
@media only screen and (min-width: 1024px){
  .pg_contact .section.sec1{
    padding-top: 250px;
    padding-bottom: 0;
  }

  .pg_contact .formTh {
    -ms-flex: 0 0 28%;
    -webkit-box-flex: 0;
    -webkit-flex: 28%;
    flex: 0 0 28%;
    max-width: 28%;
  }
  .pg_contact .formTd {
    -ms-flex: 0 0 72%;
    -webkit-box-flex: 0;
    -webkit-flex: 72;
    flex: 0 0 72%;
    max-width: 72%;
    line-height: 2.25em;
  }

  .thanks_text{
    text-align: center;
  }

  .pg_contact .formTd{
    padding: 11px 11px 11px 19px;
  }
  .privacy_item_box {
    margin-bottom: 0;
  }
  /* ボタン*/
  .contact_form{
    margin-top: 35px;
  }
  .pg_contact .formBtn.formSend {
    min-width: 190px;
    font-size: 18px;
  }

}

@media (min-width:1200px){
  .pg_contact .section.sec1{
    padding-top: 220px;
    padding-bottom: 0;
  }

  .pg_contact .formTbl {
    margin-top: 100px;
  }
  .pg_contact .form.formWrap{
    margin-top: -160px;
  }
  .pg_contact .formBtn.formSend{
    margin-top: 0;
  }
}

@media (min-width:1470px){
  .pg_contact .formTbl {
    margin-top: 70px;
  }
}
@media (min-width:1720px){
  .pg_contact .formTbl {
    margin-top: 50px;
  }
  /*ボタン*/
  .contact_form{
    margin-top: 45px;
  }
  .pg_contact .formBtn.formSend{
    min-width: 215px;
  }
  /*  .pg_contact .formBtn.formSend::before{
      content: "";
      position: absolute;
      left: 0;
      bottom: auto;
      top: 75%;
      width: calc(100% - 110px);
      height: 2px;
      background: #000;
    }*/
  .contact_tt {
    font-size: 50px;
  }

}
.privacy_item_box{
  padding: 30px 43px 30px 24px;
  height: 397px;
  overflow: auto;
  background: #fff;
  border: 1px solid #808080;
  margin-top: 0;
  color: #000000;
  margin-top: 56px;
  margin-bottom:0;
}
/* プライバシー */
.pg_contact .section.sec2{
  padding: 150px 0 20px;
}
.pg_contact .section.sec2 .contact_tt{
  font-size: 21px;
  font-weight: 500;
  letter-spacing: 0.2em;
  margin-bottom: 44px;
  padding-left: 10px;
}
.privacy_item {
  margin-top: 28px;
}
.privacy_ttl {
  font-size: 18px;
  font-weight: 500;
  padding: 8px 15px;
  margin-bottom: 12px;
  letter-spacing: 0.05em;
  border-left: 6px solid var(--sub-color);
}
.privacy_txt{
  letter-spacing: 0.04em;
  line-height: 1.875;
  text-align: justify;
}
.privacy_txt p{
  letter-spacing: 0.04em;
}

.privacy_txt_type1{
  text-indent: -1.5em;
  padding-left: 1.5em;
}
.privacy_txt_type1_b{
  text-indent: -1em;
  padding-left: 1em;
}
.privacy_txt_type1_c{
  text-indent: -3em;
  padding-left: 3em;
}
.privacy_txt_type2{

}
.privacy_txt_type2 p{
  text-indent: -1em;
  padding-left: 1em;
}

.privacy_txt ol li{
  padding-left: 1.6em;
  text-indent: -1.6em;
}
.privacy_txt ul li{
  padding-left: 1em;
  text-indent: -1em;
}

.contact_tt.privacy {
  font-size: 21px;
  font-weight: 500;
  letter-spacing: 0.2em;
  margin-bottom: 46px;
  font-family: var(--font-ja);
}
.contact_tt.privacy br{
  display: none;
}
.pg_contact .d-inline{
  display: inline-block!important;
}
.pg_contact .d-inline-block {
  vertical-align: middle;
}

@media only screen and (max-width: 1023px){
  .pg_contact .section.sec1{
    padding-top: 240px;
    /*    padding-bottom: 100px;*/
  }

  .radioArea {
    padding: 0 5px;
  }
  .radioArea .d-inline-block .label {
    margin-left: 11px;
  }


  .privacy_ttl{
    font-size: 18px;
  }

}

@media only screen and (max-width: 767px){
  .pg_contact .section.sec1{
    padding-top: 100px;
    padding-bottom: 30px;
  }

  .contact_info {
    padding: 18px 15px 10px;
  }
  .contact_info_txt_1 br{
    display: block;
  }
  .contact_info_txt_2 {
    padding: 0 6px 0 10px;
    margin-right: 10px;
  }
  .contact_tt {
    margin-bottom: 25px;
    font-size: 21px;
  }
  .pg_contact .formTh {
    padding: 5px 10px;
  }
  .pg_contact .formTd {
    font-size: 14px;
    padding: 10px;
  }
  .pg_contact .formTd input[name="zip1"] {
    width: 80px;
  }
  .pg_contact .formTd input[name="zip2"] {
    width: 100px;
  }
  .pg_contact .formTd select[name="pref"] {
    width: 195px;
  }
  .pg_contact .formTd input[type="text"]::placeholder,
  .pg_contact .formTd input[type="tel"]::placeholder,
  .pg_contact .formTd input[type="email"]::placeholder{
    font-size: 14px;
    letter-spacing: 0.01em;
  }
  .pg_contact .formWrap .text-center {
    padding-top: 25px;
  }
  .pg_contact .privacyLabel {
    font-size: 15px;
  }

  .pg_contact .section.sec1 .contact_tt {
    margin-bottom: 20px;
  }

  .privacyformError{
    margin-top:-40px !important;
  }

  .contact_tt.privacy br{
    display: block;
  }
  .contact_tt.privacy {
    margin-bottom: 0;
  }
  .privacy_item {
    margin-top: 26px;
  }
  .contact_info_txt_1 {
    margin-bottom: 10px;
    padding-left: 0;
  }
  .pg_contact .d-inline {
    display: block!important;
  }
  .pg_contact .formTd .addArea .labelText02 {
    display: block;
  }
  label.label.zipcode_i {
    padding: 8px 4px;
    line-height: 1.45;
  }
  a.contact_info_txt_3 {
    width: 200px;
    margin: 10px 0;
  }

  .radioArea .d-inline-block {
    margin-right: 10px;
  }


  .pg_contact .section.sec1 {
    padding-top: 100px;
  }
  .contact_info_bg {
    padding: 18px 10px;
  }

  .pg_contact .section.sec2{
    padding: 65px 0 30px;
  }

  .privacy_ttl {
    font-size: 18px;
    padding-left: 10px;
  }

  .privacy_item_box{
    margin-top: 50px;
    padding: 30px 10px;
  }

  .body_thanks .tt3_ja{
    font-size: 19px;
  }
}

/*******************************
*　お問い合わせ送信完了
********************************/
.pg_thanks .tt3{
  text-align: center;
}
.pg_thanks .link_3{
  margin-top: 50px;
}
.thanks_text{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 50px;
  color: var(--txt-color);
}

@media only screen and (max-width: 767px){
  .thanks_text{
    /*display: block;*/
    letter-spacing: -0.08em;
  }
}

/*******************************
*　
********************************/
.pg_xxx{

}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}
.pg_xxx .section.sec3{

}
.pg_xxx .section.sec4{

}
.pg_xxx .section.sec5{

}


@media (max-width:374px){

}
@media (min-width:375px){

}
@media (max-width:767px){

}
@media (min-width:768px){
  .pg_xxx{

  }
  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }
  .pg_xxx .section.sec3{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }


}
@media (min-width:1024px){


}
@media (min-width:1200px){


}
