@charset "UTF-8";

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

  /* カラー(ボタン背景色など) */
  --main-color: #2b6796;
  --sub-color: #e7161a;
  --txt-color: #153853;

  /* フォント関連 */
  --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: "Marcellus", 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;
  font-family: '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: auto;
  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-left: 20px;
}
.hdr_contact a{
  background: var(--main-color);
  color: #FFF;
  width: 185px;
  padding: 10px 5px;
  text-align: center;
  transition: 0.2s all;
}
.hdr_contact a.email p:before{
  content:"\f0e0";
  font-family: "fontAwesome";
  margin-right: 10px;
}
.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_contact{
    display: none;
  }
  .hdr_tel{
    display: none;
  }
  /* SNSボタン */
  .hdr_sns{
    margin-left: 20px;
  }
  .hdr_sns a img{
    height: 30px;
  }

  .hdr_logo{
    width: 110px;
    display: block;
  }
}
@media (min-width:768px){

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

    position: fixed;
    z-index: 3;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #009fff;
    background: none;
    transition: all .2s;
    padding-left: 27px;
  }
  .hdr_outer{
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  .hdr_btns{
    display: flex;
    align-items: center;
    margin-left: 50px;
  }
  .hdr_btn_item {
    width: 100px;
    height: 100px;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border: 1px solid transparent;
  }
  .hdr_btn_item.mail{
    background: #13b5b1;
  }
  .hdr_btn_item.entry:hover,
  .hdr_btn_item.mail:hover{
    background: #fff;
  }
  .hdr_btn_item.mail:hover{
    border: 1px solid #13b5b1;
    color: #13b5b1;
  }
  .hdr_btn_item.entry:hover{
    border: 1px solid #00479d;
    color: #00479d;;
  }
  .hdr_btn_item.entry{
    background: #00479d;
  }
  .hdr_btn_item.mail p:before{
    content: "";
    display: block;
    width: 19px;
    aspect-ratio: 35 / 34;
    background-image: url(/system_panel/uploads/images/mail_wh.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    margin-inline: auto;
    margin-bottom: 5px;
    transition: all .2s;
  }
  .hdr_btn_item.mail:hover p:before{
    background-image: url(/system_panel/uploads/images/mail_gr.png);
  }
  .hdr_btn_item.entry p:before{
    content: "";
    display: block;
    width: 26px;
    aspect-ratio: 35 / 34;
    background-image: url(/system_panel/uploads/images/entry_wh.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    margin-inline: auto;
    argin-bottom: 3px;
    transition: all .2s;
  }
  .hdr_btn_item.entry:hover p:before{
    background-image: url(/system_panel/uploads/images/edit_bl.png);
  }

  .hdr1{
    padding: 0 15px 0;
  }

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

  /* ヘッダースリム */
  .header.slim{
    background: rgba(255,255,255,0.8);
  }
  .header.slim .hdr_logo img{
    height: calc(var(--logo-height) * 0.8);
    height: auto;
  }

  /* TELボタン */
  .hdr_tel{

  }
  .hdr_tel_txt1{
    font-size: 24px;
  }
  .hdr_tel_link p:before{
    margin-right: 6px;
  }


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

  .header{
    --logo-height: 48px;
  }

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

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

  }
  .header.slim .hdr_logo img{
  }

  /* TELボタン */
  .hdr_tel{

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

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

  .header{
    --logo-height: 48px;
  }
  /* ロゴ */
  .hdr_logo{

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

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

  }
  .header.slim .hdr_logo img{
  }

}

/*******************************
*　メインビジュアル
********************************/
/* MV */
.mv{
  position: relative;
  z-index: 1;
}
.mv_img{
  position: relative;
  z-index: 1;
}
.mv_img.img_fit:before{
  /*padding-top: 250px;*/
  /* 画面高さ - ヘッダー分 */
  padding-top: calc(100svh - 64px);
  padding-top: 400px;
}

.mv_inner{
  position: absolute;
  top: 52%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  z-index: 2;
  width: 100%;
}


/* MVテキスト */
.mv_txt1{
  font-size: 30px;
  font-weight: 500;
  font-family: "Shippori Mincho", serif;
  line-height: 1.3em;
  text-shadow: 1px 1.732px 2.85px rgba(0, 0, 0, 0.6);
  color: #fff;
}
.mv_txt2{
  font-size: 15px;
  font-weight: 500;
  margin-top: 16px;
}
.mv_txt2 p{
  display: inline-block;
  background: #fff;
  padding: 5px 10px;

}

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

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

.gjs-dashed .mv_slider_item{
  background: #CCC;
  padding: 15px 15px;
}
@media (min-width:768px){

  /* MV */
  .mv{
  }
  .mv_img{
  }
  .mv_img.img_fit:before{
    padding-top: 400px;
  }

  .mv_inner{

  }


  /* MVテキスト */
  .mv_txt1{
    font-size: 30px;

  }
  .mv_txt2{
    font-size: 16px;
  }
  .mv_txt2 p{

  }

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


  /* MV */
  .mv{
  }
  .mv_img{
  }
  .mv_img.img_fit:before{
    padding-top: 500px;
  }

  .mv_inner{

  }


  /* MVテキスト */
  .mv_txt1{
    font-size: 40px;

  }
  .mv_txt2{

  }
  .mv_txt2 p{

  }

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

  /* MV */
  .mv{
  }
  .mv_img{
  }
  .mv_img.img_fit:before{
    padding-top: 880px;
    padding-top: 100vh;
  }

  .mv_inner{

  }


  /* MVテキスト */
  .mv_txt1{
    font-size: 60px;

  }
  .mv_txt2{

  }
  .mv_txt2 p{

  }

}


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

/* サイドバー */
.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: 60px;
  position: relative;
  z-index: 1;
}
.pg_header_mv_img{
  position: relative;
  z-index: 1;
}
.pg_header_img:before{
  padding-top: 180px;
}
.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: 50%;
  left: 0;
  right: 0;
  text-align: center;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.pg_header_title_txt{
  font-size: 32px;
  font-weight: 700;
  color: #FFF;
}

.pg_header_txt{
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  font-family: "Shippori Mincho", serif;
  color: #fff;
  text-shadow: 1px 1.732px 2.85px rgba(0, 0, 0, 0.6);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  z-index: 2;
}
.pg_header_txt strong{
  display: block;
  font-size: 16px;
  font-weight: 500;
}

@media (min-width:768px){
  .pg_header{
    margin-bottom: 80px;
  }
  .pg_header_img:before{
    padding-top: 350px;
  }

  .pg_header_title_txt{

  }

  .pg_header_txt{
    font-size: 40px;
  }
  .pg_header_txt strong{
    font-size: 23px;
  }
}
@media (min-width:1024px){
  .pg_header{
    margin-bottom: 100px;
  }
  .pg_header_img:before{
    padding-top: 450px;
  }

  .pg_header_title_txt{

  }

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

  .pg_header{
    margin-bottom: 140px;
  }
  .pg_header_img:before{
    padding-top:600px;
  }

  .pg_header_title_txt{

  }

}



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

.footer{
  margin-top: 80px;
}

.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: #153853;
  color: #fff;
  padding: 8px;
}

/* 追尾スマホメニュー */
.footer_fix{
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #7ecef4;
  /*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: #00479d;
  color: #fff;
  text-decoration: none;
  line-height: 1.2;
}
.footer_fix .footer_fix_item_1{
  width: 38%;
  border-right: 1px solid #fff;
}
.footer_fix .footer_fix_item_1.recruit{
  background: #eeeeee;
  color: #024b93;
}
.footer_fix .footer_fix_item_2{
  width: 24%;
  background: #fff;
}
.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: #4682b4;
}
.pagetop a i{
  font-size: 40px;
}


.ftr_contact_wrap{
  background: #002e73;
  padding-bottom: 30px;
}
.ftr_contact_box{
  display: flex;
  flex-wrap: wrap;
}
.ftr_contact_box1{
  width: 100%;
  color: #fff;
  padding-top: 40px;
}
.ftr_contact_box1_tt{

}
.ftr_contact_box1_tt1{
  font-size: clamp(2.5rem, 1.875rem + 3.13vw, 5.625rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
  font-family: var(--font-en);
}
.ftr_contact_box1_tt1.home_sec2_slide_tt2{
  font-size: 28px;
  font-family: "Oswald", sans-serif;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0;
}
.ftr_contact_box1_tt2{
  font-size: 16px;
  font-family: "Shippori Mincho", serif;
  letter-spacing: 0;
}
.ftr_contact_box1 .content_desc{
  font-size: 16px;
  line-height: 2.125em;
  text-shadow:none;
  margin-top: 37px;
}
.ftr_contact_box1 .content_desc p{
  letter-spacing: 0.075em;
}
.link_items{
  margin-top: 40px;
}
.link_0{
  width: 100%;
  max-width: 585px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 600;
  font-family: "Shippori Mincho B1", serif;
  padding: 17px 25px;
  margin-inline:auto;
  border: 1px solid transparent;
  transition: all .2s;
}
.link_0.line p,
.link_0.mail p{
  display: flex;
  align-items: center;
  letter-spacing: 0.075em;
}
.link_0.line p:before{
  content: "";
  display: block;
  width: 27px;
  aspect-ratio:1;
  background-image: url(/system_panel/uploads/images/line.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 5px;
}
.link_0.mail p:before{
  content: "\f0e0";
  font-family: "fontAwesome";
  font-size: 20px;
  margin-right: 5px;
}
.link_0.item1:hover{
  background:#002e73;;
  color: #fff;
  border: 1px solid #fff;
}
.link_0.item1:hover:before{
  background: #fff;
}
.link_0.item1:hover:after{
  color: #fff;

}
.link_0.item1:hover{
  border: 1px solid #fff;
}
.link_0.line:hover{
  background: #06C755;
}
.link_0:hover{
  transform: none;
}
.link_0:hover{
  background: var(--main-color);
}

.link_0.item1{
  background: #fff;
  border: 1px solid transparent;
  color: #181818;
  position: relative
}
.link_0.item1:before{
  content: "";
  display: block;
  width: 2px;
  max-height: 46px;
  height: 100%;
  background: #183663;
  position: absolute;
  top: 50%;
  right:12.3%;
  transform: translateY(-50%);
}
.link_0.item1:after{
  content: "▶";
  display: block;
  font-size: 17px;
  color: #183663;
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
}
.link_0.item2{
  border: 1px solid #fff;
  border-left: none;
  border-right: none;
  color: #fff;
  padding: 12px 13px 12px 25px;
}
.link_0.item2:hover{
  background: #fff;
  color: #000;
}
.link_0.item2:hover{
  color: #002e73;
}
.link_0 + .link_0{
  margin-top: 19px;
}
.link_0 .tel{
  font-size: 20px;
  font-weight: 600;
}
.ftr_contact_box2{
  width: 100%;
  margin-top: 40px;
}
.ftr_contact_box2_inner{

}
.ftr_contact_box2_img:before{
  padding-top: 81.01%;
  padding-top: 636px;
}

.ftr_detail_wrap{
  padding-top: 50px;
}
.ftr_detail_box{

}
.ftr_detail_head{
  display: flex;
  flex-wrap: wrap;
}
.ftr_detail_head_box1{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.ftr_detail_head_box1_logo{

}
.ftr_detail_head_box2{
  width: 100%;
}
.ftr_detail_head_box2_iso{
  text-align: center;
}
.ftr_detail_head_box3{
  width: 100%;
}
.ftr_links{

}
.ftr_link{

}
.ftr_links.no2{

}
.ftr_links.no2 .ftr_link{

}

.ftr_addl_box{
  margin-top: 40px;
  border-bottom: 1px solid #153853;
  padding-bottom: 50px;
}
.ftr_addl_box p{
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.875em;
}
p.ftr_add_text{
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0;
}
.ftr_addl_items{
  display: flex;
  flex-wrap: wrap;
  margin-top: 5px;
}
.ftr_addl_item{
  width: 100%;
  position: relative;
  color: #181818;
  padding: 30px 0;
}
.ftr_addl_item:before{
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #153853;
  position: absolute;
  bottom: 0;
  right: 0;
}

.ftr_addl_item:nth-child(n+2){
  margin-top: 0;
}
.ftr_addl_item:after{

}

.ftr_other_wrap{
  padding-top: 50px;
  padding-bottom: 40px;
}
.ftr_logo{
  display: block;
  width: 100%;
  text-align: center;
}
.ftr_group_items{
  display: flex;
  flex-wrap: wrap;
  margin-top: 40px;
}
.ftr_group_item{
  width: 100%;
  text-align: center;
}
.ftr_group_item:nth-child(n+2){
  margin-top: 10px;
}
.ftr_group_item_inner{

}
@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);
  }

  .header{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2;
    padding: 10px;
  }
  .hdr_btn_item{
    display: none;
  }
  .hdr_logo img{
    height: auto;
  }

  .ftr_contact_box2_item{
    border-top: 1px solid #fff;
    padding-top: 30px;
  }
  .ftr_contact_box2_item{
    margin-top: 30px;
  }
  .link_0.item2{
    flex-wrap: wrap;
    justify-content: center;
  }

  .ftr_contact_box2_img:before{
    padding-top: 250px;
  }

  .ftr_detail_head_box3{
    display: none;
  }
  .ftr_detail_head_box1_logo{
    display: block;
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
  }

  .ftr_add_text,
  .ftr_addl_item{
    text-align: center;
  }
  .ftr_addl_item:last-child:before{
    display: none;
  }

  .ftr_logo{
    width: 250px;
    margin-inline:auto;
  }

  .mv_inner{
   top: auto;
   bottom: 10px;;
   left: 0;
   transform: none;
  }
  .mv_txt1{
    color: #153853;
    text-shadow:none;
  }
  .mv_txt2 p{
    padding: 0;
  }
  .pg_home .section.sec1{
    padding-top: 50px;
  }
  .pg_home .section.sec1 .home_sec1_box2 .sec_tt{
         margin-top: 80px;
  }

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

  .footer{
    margin-top: 100px;
  }

  .ftr_contact_box1{
    padding-top: 54px;
  }
  .ftr_contact_box1_tt{

  }
  .ftr_contact_box1_tt1.home_sec2_slide_tt2{

  }
  .ftr_contact_box1_tt2.tt2_ja{

  }
  .ftr_contact_box1 .content_desc{

  }
  .link_items{
    margin-top: 86px;
  }
  .link_0{

  }
  .link_0.line,
  .link_0.mail{
    font-size: 24px;
  }
  .link_0 .tel{
    font-size: 28px;
  }
  .ftr_contact_box2{
    margin-top: 60px;
  }
  .ftr_contact_box2_inner{

  }
  .ftr_contact_box2_img:before{

  }

  .ftr_detail_wrap{
    padding-top: 100px;
  }
  .ftr_detail_box{

  }
  .ftr_detail_head{

  }
  .ftr_detail_head_box1{
    width: 50%;
    position: relative;
  }
  .ftr_detail_head_box1:after{
    content: "";
    display: block;
    width: 1px;
    height: 63px;
    background: #153853;
    position: absolute;
    top: 0;
    left: 57%;
    transform:translateX(-50%);
  }
  .ftr_detail_head_box1_logo{
    display: block;
  }
  .ftr_detail_head_box1_logo:first-child{
    width: 47.36%;
  }
  .ftr_detail_head_box1_logo:last-child{
    width: 31.57%;
  }
  .ftr_detail_head_box2{
    width: calc(100% - 25%);
    width: 50%;
  }
  .ftr_detail_head_box2_iso{

  }
  .ftr_detail_head_box3{
    margin-top: 40px;;
  }
  .ftr_links{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .ftr_link{
    font-size: 16px;
    font-weight: 500;
    line-height: 2.25em;
    margin: 0 20px;
    color: #181818;
  }
  .ftr_links.no2{

  }
  .ftr_links.no2 .ftr_link{

  }
  .ftr_links > div{
    position: relative;
    padding-right: 10px;
  }
  .ftr_links > div:after{
    content: "";
    display: block;
    width: 1px;
    height: 16px;
    background: #6f6f6f;
    position: absolute;
    top: 50%;
    right:0;
    transform: translateY(-50%);
  }

  .ftr_addl_box{
    margin-top: 77px;
    padding-bottom: 93px;
  }
  .ftr_add_text{

  }
  .ftr_addl_items{

  }
  .ftr_addl_item{
    width: 50%;
    padding:0 0 0 20px;
  }
  .ftr_addl_item:nth-child(n+2){
    margin-top: 0;
  }
  .ftr_addl_item:nth-child(n+3){
    margin-top: 30px;
  }
  .ftr_addl_item:before{
    display: none;
  }
  .ftr_addl_item:after{
    content: "";
    display: block;
    width: 1px;
    height: 165px;
    background: #153853;
    position: absolute;
    top: 0;
    right: 0;
  }
  .ftr_addl_item:nth-child(even):after{
    display: none;  
  }

  .ftr_other_wrap{
    padding-top: 80px;
    padding-bottom: 60px;
  }
  .ftr_logo{

  }
  .ftr_group_items{
    margin-inline:-20px;
    margin-top: 60px;
  }
  .ftr_group_item{
    width: 50%;
    padding-inline:20px;
  }
  .ftr_group_item:nth-child(n+2){
    margin-top: 0;
  }
  .ftr_group_item:nth-child(n+3){
    margin-top: 20px;;
  }
  .ftr_group_item_inner{

  }
}
@media (min-width:1024px){
  .footer{
    margin-top: 200px;
  }

  .ftr_addl_item{
    padding-left: 40px;
  }

}
@media (min-width:1200px){
  .ftr_contact_wrap{
    padding: 0;
  }
  .ftr_contact_box{

  }
  .ftr_contact_box1{
    width: 61.51%;
  }
  .ftr_contact_box1_tt{

  }
  .ftr_contact_box1_tt1.home_sec2_slide_tt2{
    font-size: 90px;
  }
  .ftr_contact_box1_tt2.tt2_ja{

  }
  .ftr_contact_box1 .content_desc{

  }
  .link_items{

  }
  .link_0{
    max-width: 585px;
    margin-left: 0;
  }
  .link_0 .tel{
    font-size: 32px;
  }
  .link_0.item1{
    font-size: 24px;
  }
  .link_0.item2{
    font-size: 20px;
  }
  .ftr_contact_box2{
    width: 38.48%;
    margin-top: 0;
  }
  .ftr_contact_box2_inner{
    margin-right: var(--margin-for-device-side-w);
    /*    margin-right: calc(960px - 50vw);
        margin-right: calc(50% - 50vw);*/
  }
  .ftr_contact_box2_img:before{
    padding-top: 636px;
  }

  .ftr_detail_wrap{
    padding-top: 120px;
  }
  .ftr_detail_box{

  }
  .ftr_detail_head{
    justify-content: space-between;
  }
  .ftr_detail_head_box1{
    width: 25%;
  }
  .ftr_detail_head_box1_logo{

  }
  .ftr_detail_head_box2{
    width: 31.25%;
  }
  .ftr_detail_head_box2_iso{

  }
  .ftr_detail_head_box3{
    width: 40.13%;
    margin-top: 0;
  }
  .ftr_links{
    justify-content: flex-start;
  }
  .ftr_link{
    margin:0 49px 0 0;
  }
  .ftr_link:last-child{
    margin-right: 0;
  }
  .ftr_links.no2{

  }
  .ftr_links.no2 .ftr_link{
    margin:0 24px 0 0;
  }

  .ftr_addl_box{

  }
  .ftr_add_text{

  }
  .ftr_addl_items{

  }
  .ftr_addl_item{
    padding-left: 30px;
  }
  .ftr_addl_item:nth-child(n+3){
    margin-top: 0;
  }
  .ftr_addl_item.no1{
    width: 23.15%;
    padding-left: 0;
  }
  .ftr_addl_item.no2{
    width: 26.51%;
  }
  .ftr_addl_item.no3{
    width: 29.14%;
  }
  .ftr_addl_item.no4{
    width: 20.25%;
  }
  .ftr_addl_item:after{

  }
  .ftr_addl_item:nth-child(even):after{
    display: block;  
  }
  .ftr_addl_item:last-child:after{
    display: none;
  }

  .ftr_other_wrap{
    padding-top: 100px;
    padding-bottom: 148px;
  }
  .ftr_logo{

  }
  .ftr_group_items{
    margin-top: 80px;
  }
  .ftr_group_item{
    width: 25%;
  }
  .ftr_group_item:nth-child(n+3){
    margin-top: 0;
  }
  .ftr_group_item:nth-child(n+5){
    margin-top: 25px;
  }
  .ftr_group_item_inner{

  }
}

@media (min-width:1366px){

}
@media (min-width:1536px){
  .ftr_addl_item{
    padding-left: 40px;
  }
  .ftr_addl_item.no1{
    width: 23.15%;
    padding-left: 0;
  }
}
@media (min-width:1720px){
  .ftr_addl_item{
    padding-left: 81px;
  }
  .ftr_addl_item.no1{
    width: 23.15%;
    padding-left: 0;
  }
}
/*******************************
*　共通パーツ
********************************/


/* テーブル用 */
.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 #1e3769;
  background: #ffffff;
  font-weight: 500;
}
.webgene-pagination li.selected{
  border: 0;
  background: #1e3769;
  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 a{
  min-width:300px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  text-align: left;
  border: 1px solid #153853;
  background:#fff;
  /*border-radius: 27px;*/
  color: #181818;
  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:"\f105";
  font-family: "fontAwesome";
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 18px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  transition: 0.2s all;
}
.read_more a:hover{
  color: #FFF;
  background:#002e73;
}
.read_more a:hover:after{
  margin-right: -5px;
}
.read_more.dark a{
  background: #153853;
  color: #fff;
  margin: 14px;
}
.read_more.dark a:hover{
  background: #fff;
  color: #153853;
}



/* 見出し */
.tt2{
  text-align: center;
  margin-bottom: 30px;
}
.tt2_en{
  font-size: 20px;
  font-weight: 400;
  font-family:var(--font-en);
  line-height: 1;
  color: #94aec2;
  letter-spacing: 0;
}
.tt2_ja{
  font-size: 18px;
  font-weight: 600;
  font-family: "Shippori Mincho", serif;
  margin-top: 5px;
  color: #153853;
}
.tt2_ja.sm{
  font-size: 18px;
  font-weight: 500;
}
.tt2_ja.gothic{
  font-family: "Noto Sans JP", sans-serif;
}
.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{

}


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

  .tt2_ja.sm{
    font-size: 15px;
  }
  .tt2_ja.sp_left{
    text-align: left;
  }
  
  .content_desc{
    line-height: 1.8em;
  }
}
@media (min-width:768px){

  .anchor{
    top: -100px;
  }

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

  /* ボタン */
  .read_more{
    margin-top: 35px;
  }
  .read_more.center{
    justify-content: center;
  }
  .read_more.left{
    justify-content: flex-start;
  }
  .read_more.right{
    justify-content: flex-end;
  }
  .read_more a{
    min-width: 300px;
    font-size: 16px;
    padding: 18px 23px;
    margin: 5px 5px;
  }
  .read_more a:after{
    right: 23px;
  }

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

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


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

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

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

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


}


@media (min-width:1366px){

  /* 見出し */
  .tt2{
    margin-bottom: 50px;
  }
  .tt2_en{
    font-size: 42px;
  }
  .tt2_en.mid{
    font-size: 20px;
  }
  .tt2_ja{
    font-size: 38px;
  }

}

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



/*******************************
*　HOME
********************************/
.pg_home{

}
.pg_home .section.sec1{
  position: relative;
}
.pg_home .section.sec2{
  position: relative;
}
.pg_home .section.sec2:after{
  content: "";
  display: block;
  width: 100%;
  height: 40%;
  background: #e4ecf3;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}
.pg_home .section.sec3{

}
.pg_home .section.sec4{
  position: relative;
}
.pg_home .section.sec4:before{
  content: "";
  display: block;
  width: 100%;
  height:200px;
  background: #e4ecf3;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.pg_home .section.sec5{

}
.pg_home .section.sec6{

}
.pg_home .section.sec7{

}
.pg_home .section.sec8{

}

@media (max-width:767px){

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

  .pg_home .section.sec1{

  }
  .pg_home .section.sec2{
    padding-top: 96px;
    padding-bottom: 65px;
  }
  .pg_home .section.sec2:after{
    height: 70%;
  }
  .pg_home .section.sec3{
    padding-top: 117px;
    padding-bottom: 100px;
  }
  .pg_home .section.sec4{
    padding-top: 75px;
  }
  .pg_home .section.sec4:before{
    height: 337px;
  }
  .pg_home .section.sec5{
    padding-top: 100px;
  }
  .pg_home .section.sec6{
    padding-top: 90px;
  }
  .pg_home .section.sec7{

  }
  .pg_home .section.sec8{

  }

}
@media (min-width:1024px){
  .pg_home .section.sec2:after{
        height: 50%;
  }

}
@media (min-width:1200px){
  .pg_home .section.sec1{

  }
  .pg_home .section.sec2{
    padding-top: 96px;
  }
  .pg_home .section.sec3{
    padding-bottom: 150px;
  }
  .pg_home .section.sec4{

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

  }
  .pg_home .section.sec7{

  }
  .pg_home .section.sec8{

  }

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


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


}

/*main*/
/*sec1*/
.home_sec1_img{

}
.home_sec1_img:before{
  padding-top: 1300px;
}
.home_sec1_img:after{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(348deg,rgba(255, 255, 255, 0) 39%, rgba(255, 255, 255, 1) 69%, rgba(255, 255, 255, 1) 100%);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1;
}
.home_sec1_wrap{
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  z-index: 1;
}
.home_sec1_box{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home_sec1_box1{
  width: 100%;
  order: 2;
  margin-top: 40px;
}
.home_sec1_box1_inner{
  position: relative;
  padding: 50px 0 60px;
}
.home_sec1_box1_inner:after{
  content: "";
  display: block;
  clip-path: polygon(0 0, 100% 0%, 65% 100%, 0% 100%);
  position: absolute;
  right: 0;
  top: 0;
  width: 100vw;
  height: 100%;
  background: #e4ecf3;
  margin-left: var(--margin-for-device-side-w);
  z-index: -1;
}

.home_sec1_box1_outer{
  position: relative;
  z-index: 0;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center top;
  aspect-ratio: 950 / 600;
}
.section_img_en{
  font-size: clamp(2.5rem, 2rem + 2.5vw, 5rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  font-family: var(--font-en);
  color: #94aec2;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 2;
}
.home_sec1_box1_img{
  max-width: none;
  position: absolute;
  z-index: 1;
  top: 0;
  -webkit-mask-size: contain;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
  -webkit-mask-image: url(/system_panel/uploads/images/mask1.png);
}
.home_sec1_box1_img:before{

}
.home_sec1_box2{
  width: 100%;
  order: 1;
}
.sec_tt{
  font-size: 22px;
  font-weight: 400;
  font-family: "Shippori Mincho", serif;
  line-height: 1.45em;
  text-shadow    : 
    2px  2px 1px #ffffff,
    -2px  2px 1px #ffffff,
    2px -2px 1px #ffffff,
    -2px -2px 1px #ffffff,
    2px  0px 1px #ffffff,
    0px  2px 1px #ffffff,
    -2px  0px 1px #ffffff,
    0px -2px 1px #ffffff; 
}
.sec_tt p{
  letter-spacing: 0;
}
.home_sec1_box2 .sec_tt{

}
.content_desc{
  font-size: 16px;
  font-weight: 500;
  line-height: 2.25em;
  text-align: justify;
  text-shadow    : 
    2px  2px 1px #ffffff,
    -2px  2px 1px #ffffff,
    2px -2px 1px #ffffff,
    -2px -2px 1px #ffffff,
    2px  0px 1px #ffffff,
    0px  2px 1px #ffffff,
    -2px  0px 1px #ffffff,
    0px -2px 1px #ffffff; 
}
.content_desc p{
  letter-spacing: 0;
}
.home_sec1_box2 .content_desc{
  margin-top: 20px;
}
.home_sec1_box2 .read_more{

}

/*sec2*/
.home_sec2_wrap{
  display: flex;
  flex-wrap: wrap;
}
.home_sec2_wrap:after{
  content: "";
  display: block;
  width: 100%;;
  height: 1px;
  background: #153853;
  position: absolute;
  top: 53%;;
  left:0;
  transform: translateY(-50%);
}
.home_sec2_item{
  width: 100%;
}
.home_sec2_item:nth-child(n+2){
  margin-top: 80px;
}
.home_sec2_item_inner{

}
.home_sec2_item_img:before{
  padding-top: 73.84%;
}
.home_sec2_item_tt{
  text-align: center;
  font-size: 20px;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  margin-top: 16px;
}
.pg_home .section.sec2 .home_sec2_item_tt{
  font-family: "Noto Sans JP", sans-serif;
}
.home_sec2_item .content_desc{
  line-height: 1.875em;
  font-weight: 400;
  margin-top: 19px;
  padding: 0 6px;
  text-shadow :none;
}
.read_more2{
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
}
.read_more2 a{
  font-size: 18px;
  font-weight: 400;
  font-family: "Oswald", sans-serif;
  line-height: 1;
  display: flex;
  align-items:center;
}
.read_more2 a:after{
  content: "";
  display: block;
  width: 87px;
  aspect-ratio:87 / 50;
  background-image: url(/system_panel/uploads/images/arr2.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: relative;
  right: 0;
  margin-left: 16px;
  transition: all .2s;
}
.read_more2 a:hover:after{
  right: -5px;;
}

/*sec3*/
.home_sec3_items{
  display: flex;
  flex-wrap: wrap;
}
.home_sec3_item{
  width: 100%;

}
.home_sec3_item:nth-child(n+2){
  margin-top: 30px;;
}
.home_sec3_item.txt{
  text-align: center;
}
.home_sec3_item_tt{
  font-size: 17px;
  font-weight: 500;
  width: 318px;
  display: inline-block;
  background: #153853;
  color: #fff;
  padding: 2px 16px;
}
.home_sec3_item_txt2{
  font-size: 18px;
  font-weight: 600;
  font-family: "Shippori Mincho", serif;
  line-height: 1.38em;
  color: #153853;
  margin-top: 20px;
}
.home_sec3_item_txt2:after{
  content: "";
  display: block;
  width: 200px;
  height: 1px;
  background: #153853;
  margin: 23px auto 0;
}
.home_sec3_item_txt2.ltr_none{
  line-height: 1.84em;
}
.home_sec3_item_txt2.ltr_none p{
  letter-spacing: 0;
}
.home_sec3_item_txt2.batu:after{
  display: none;
}
.home_sec3_item .content_desc{
  font-weight: 400;
  line-height: 1.875em;
  color: #153853;
  margin-top: 20px;
}
.home_sec3_item_imag:before{
  padding-top: 430px;
}

/*sec4*/
.news_list{

}
.news_list .webgene-blog{
  display: flex;
  flex-wrap: wrap;
  margin-inline:-5px;
}
.news_list .webgene-item{
  width: 50%;
  padding-inline:5px;
}
.news_list .webgene-item:nth-child(n+3){
  margin-top: 20px;
}
.news_list .webgene-item a{

}
.news_list .webgene-item .img:before{
  padding-top: 80%;
}
.news_list .webgene-item .box2{
  margin-top: 16px;
}
.news_list .webgene-item .category{
  display: inline-block;
  text-align: center;
  background: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
}
.news_list .webgene-item .title{
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75em;
  letter-spacing: 0;
}

/*sec5*/
.home_sec5_items{
  display: flex;
  flex-wrap: wrap;
}
.home_sec5_item{
  width: 100%;
}
.home_sec5_item_a{
  display: block;
  position: relative;
}
.home_sec5_item_a:after{
  content: "";
  display: block;
  width: 17.08%;;
  aspect-ratio:164 / 92;
  background-image: url(/system_panel/uploads/images/arrr3.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: 3.1%;
  right: 3.4%;;
  z-index: 1;
}
.home_sec5_item_img:before{
  padding-top: 250px;
}
.home_sec5_item_img{
  overflow: hidden;
}
.home_sec5_item_img img{
  transition: all .2s;
}
.home_sec5_item_a:hover .home_sec5_item_img img{
  transform: scale(1.02);
} 
.home_sec5_item_txt{
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  padding: 30px 16px;
}
.home_sec5_item_txt1{
  font-size: clamp(2.5rem, 1.862rem + 3.19vw, 5.688rem);
  font-weight: 400;
  font-family: var(--font-en);
  line-height: 0.95em;

  color: #94aec2;
}
.home_sec5_item_txt1 p{
  letter-spacing: 0;
}
.home_sec5_item_tt{
  text-align: center;
  width: 100%;
  max-width: 300px;
  display: inline-block;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0;
  font-family: "Shippori Mincho", serif;
  background: #fff;
  color: #153853;
  line-height: 1;
  padding: 5px 0;
  margin-top: 16px;
}

/*sec6*/
.news_list2{

}
.news_list2 .webgene-blog{

}
.news_list2 .webgene-item{

}
.news_list2 .webgene-item:nth-child(n+2){
  margin-top: 10px;
}
.news_list2 .webgene-item a{
  display: flex;
  align-items: center;
  border: 1px solid #192a4d;
  padding: 16px;
}
.news_list2 .webgene-item .date{
  font-size: 16px;
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  line-height: 1;
}
.news_list2 .webgene-item .title{
  font-size: 16px;
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  margin-top: 16px;
}

@media (max-width:374px){

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

}
@media (max-width:767px){
  .news_list2 .webgene-item a{
    display: block;
  }
  
  .home_sec3_item_imag:before{
    padding-top: 290px;
  }
  
    .home_sec1_img:before{
    padding-top: 1450px;
  }
}
@media (min-width:768px){
  /*main*/
  /*sec1*/
  .home_sec1_img{

  }
  .home_sec1_img:before{
    padding-top: 1300px;
  }
  .home_sec1_img:after{

  }
  .home_sec1_wrap{
    top: 52%;
  }
  .home_sec1_box{

  }
  .home_sec1_box1{
    margin-bottom: 40px;
  }
  .home_sec1_box1_inner{
    padding: 30px 0;
  }
  .home_sec1_box1_inner:after{
    clip-path: polygon(0 0, 100% 0%, 71% 100%, 0% 100%);
  }
  .home_sec1_box1_outer{

  }
  .section_img_en{

  }
  .home_sec1_box1_img{

  }
  .home_sec1_box1_img:before{

  }
  .home_sec1_box2{

  }
  .sec_tt{
    font-size: 30px;
  }
  .home_sec1_box2 .sec_tt{

  }
  .content_desc{

  }
  .home_sec1_box2 .content_desc{
    margin-top: 41px;
  }
  .home_sec1_box2 .read_more{

  }

  /*sec2*/
  .home_sec2_wrap{
    margin-inline:-10px;
    position: relative;
  }
  .home_sec2_wrap:before{
    content: "";
    display: block;
    width: 1px;
    height: 100%;
    background: #153853;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }
  .home_sec2_wrap:after{
    display: none;
  }
  .home_sec2_item{
    width: 50%;
    padding-inline:10px;
  }
  .home_sec2_item:nth-child(n+2){
    margin-top: 0;
  }
  .home_sec2_item_inner{

  }
  .home_sec2_item_img:before{

  }
  .home_sec2_item_tt{
    font-size: 24px;
  }
  .home_sec2_item .content_desc{

  }
  .read_more2{
    margin-top: 43px;
  }
  .read_more2 a{
    font-size: 18px;
  }
  .read_more2 a:after{

  }

  /*sec3*/
  .home_sec3_items{

  }
  .home_sec3_item{
    width: 50%;
    height: 500px;
  }
  .home_sec3_item:nth-child(n+2){
    margin-top: 0;
  }
  .home_sec3_item txt{

  }
  .home_sec3_item_tt{
    font-size: 18px;
  }
  .home_sec3_item_txt2{
    font-size: 22px;
    margin-top: 23px;
  }
  .home_sec3_item .content_desc{
    margin-top: 27px;
    padding-inline: 21px;
  }
  .home_sec3_item_imag:before{
    padding-top: 250px;
  }

  /*sec4*/
  .news_list{

  }
  .news_list .webgene-blog{
    margin-inline:-20px;
  }
  .news_list .webgene-item{
    width: 50%;
    padding-inline:20px;
  }
  .news_list .webgene-item:nth-child(n+3){
    margin-top: 0;
  }

  .home_sec4_wrap .read_more2{
    margin-top: 53px;
  }

  /*sec5*/
  .home_sec5_items{

  }
  .home_sec5_item{

  }
  .home_sec5_item_a{

  }
  .home_sec5_item_img:before{
    padding-top: 580px;
  }
  .home_sec5_item_txt{
    padding: 30px 30px 20px;
  }
  .home_sec5_item_txt1{

  }
  .home_sec5_item_tt{
    font-size: 28px;
    margin-top: 30px;
  }

  /*sec6*/
  .news_list2{

  }
  .news_list2 .webgene-blog{

  }
  .news_list2 .webgene-item{

  }
  .news_list2 .webgene-item:nth-child(n+2){
    margin-top: 21px;
  }
  .news_list2 .webgene-item a{
    padding: 30px 0;
    position: relative;
  }
  .news_list2 .webgene-item a:before{
    content: "";
    display: block;
    width: 1px;
    height: 60px;
    background: #a6a6a6;
    position: absolute;
    top: 50%;
    right: 6.2%;
    transform: translateY(-50%);
  }
  .news_list2 .webgene-item a:after{
    content: "▶";
    display: block;
    position: absolute;
    top: 50%;
    right: 2.2%;
    transform: translateY(-50%);
  }
  .news_list2 .webgene-item .date{
    width: 200px;
    position: relative;
    text-align: center;
  }
  .news_list2 .webgene-item .date:after{
    content: "";
    display: block;
    width: 1px;
    height: 16px;
    background: #a7a7a7;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
  }
  .news_list2 .webgene-item .title{
    width: calc(100% - 200px - 70px);
    padding-left: 60px;
    margin-top: 0;
  }
}
@media (min-width:1024px){
  .home_sec1_box1_inner:after{
    clip-path: polygon(0 0, 100% 0%, 71% 100%, 0% 100%);
  }

  .home_sec3_item{
    height: auto;
  }
 .home_sec3_item_imag:before{
    padding-top: 500px;
  }

}
@media (min-width:1200px){
  /*main*/
  /*sec1*/
  .home_sec1_img{

  }
  .home_sec1_img:before{
    padding-top: 970px;
  }
  .home_sec1_img:after{

  }
  .home_sec1_wrap{
    top: 47%;
  }
  .home_sec1_box{

  }
  .home_sec1_box1{
    width: 55.26%;
    order: 1;
    margin-top: 0;
  }
  .home_sec1_box1_inner{
    width: 112.85%;
    padding: 50px 0 60px;
  }
  .home_sec1_box1_inner:after{
    clip-path: polygon(0 0, 100% 0%, 82% 100%, 0% 100%);
  }
  .home_sec1_box1_outer{

  }
  .section_img_en{

  }
  .home_sec1_box1_img{

  }
  .home_sec1_box1_img:before{

  }
  .home_sec1_box2{
    width: 36.51%;
    padding-top: 30px;
    order: 2;
  }
  .sec_tt{
    font-size: 36px;
    margin-right: -20px;
  }
  .home_sec1_box2 .sec_tt{
    margin-right: -65px;
  }
  .content_desc{

  }
  .home_sec1_box2 .content_desc{

  }
  .home_sec1_box2 .read_more{

  }

  /*sec2*/
  .home_sec2_wrap{
    margin-inline:-30px;
  }
  .home_sec2_item{
    width: 50%;
    padding-inline:30px;
  }
  .home_sec2_item_inner{

  }
  .home_sec2_item_img:before{

  }
  .home_sec2_item_tt{

  }
  .home_sec2_item .content_desc{

  }
  .read_more2{

  }
  .read_more2 a{

  }
  .read_more2 a:after{

  }

  /*sec3*/
  .home_sec3_items{

  }
  .home_sec3_item{
    width: 33.333%;
  }
  .home_sec3_item.txt{
    padding-top: 35px;
  }
  .home_sec3_item_tt{

  }
  .home_sec3_item_txt2{
    font-size: 26px;
  }
  .home_sec3_item .content_desc{

  }
  .home_sec3_item_imag:before{
    padding-top: 550px;
  }

  /*sec4*/
  .home_sec4_wrap .tt2{
    margin-bottom: 45px;
  }
  .news_list{

  }
  .news_list .webgene-blog{

  }
  .news_list .webgene-item{
    width: 25%;
  }
  .news_list .webgene-item:nth-child(n+3){
    margin-top: 0;
  }
  .news_list .webgene-item:nth-child(n+4){
    margin-top: 0;
  }

  /*sec5*/
  .home_sec5_wrap .tt2{
    margin-bottom: 38px;
  }
  .home_sec5_items{

  }
  .home_sec5_item{
    width: 50%;
  }
  .home_sec5_item_a{

  }
  .home_sec5_item_img:before{
    padding-top: 580px;
  }
  .home_sec5_item_txt{

  }
  .home_sec5_item_txt1{

  }
  .home_sec5_item_tt{
    font-size: 38px;
  }
  .home_sec5_wrap .read_more2{
    margin-top: 60px;
  }

  /*sec6*/
  .news_list2{

  }
  .news_list2 .webgene-blog{

  }
  .news_list2 .webgene-item{

  }
  .news_list2 .webgene-item a{
    padding: 30px 0;
  }
  .news_list2 .webgene-item a:before{
    right: 6.2%;
  }
  .news_list2 .webgene-item a:after{
    right: 3.2%;
  }
  .news_list2 .webgene-item .date{

  }
  .news_list2 .webgene-item .title{
    width: calc(100% - 200px - 120px);
  }
  .home_sec6_wrap .read_more2{
    margin-top: 60px;
  }
}
@media (min-width:1470px){
  /*sec1*/
  .home_sec1_box1_inner{
    margin-left: 0;
  }
  .home_sec1_box1_inner:after{
    clip-path: polygon(0 0, 100% 0%, 82% 100%, 0% 100%);
  }


}
@media (min-width:1720px){
  /*sec1*/
  .home_sec1_box1_inner{
    margin-left: calc(960px - 50vw - 118px);
  }
  .sec_tt{
    font-size: 48px;
  }
  .home_sec1_box1_inner:after{
    clip-path: polygon(0 0, 100% 0%, 84.5% 100%, 0% 100%);
  }


  /*sec2*/
  .home_sec2_wrap{
    margin-inline:-110px;
  }
  .home_sec2_item{
    padding-inline:110px;
  }
  .home_sec3_item_imag:before{
padding-top: 480px;
  }
}




/*******************************
*　about
********************************/

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

}
.pg_about .section.sec1{

}
.pg_about .section.sec2{
  position: relative;
  padding: 0;
}


@media (max-width:374px){

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

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

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

  }
  .pg_about .section.sec1{
    padding-bottom: 0;
  }
  .pg_about .section.sec2{

  }
  .pg_about .section.sec3{
    padding-top: 100px;
  }
  .pg_about .section.sec4{
    padding-top: 40px;
  }
  .pg_about .section.sec5{
    padding-top: 95px;
  }

  .pg_about .section.sec7{
    padding-top: 100px;
  }

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


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

  }
  .pg_about .section.sec1{

  }
  .pg_about .section.sec2{

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

  .pg_about .section.sec7{
    padding-top: 140px;
  }
}
@media (min-width:1470px){


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


}

/* メイン部分 */
/*sec2*/
.about_sec2_img{

}
.about_sec2_img:before{
  padding-top: 757px;
}
.about_sec2_img:after{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg,rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.74) 86%, rgba(255, 255, 255, 1) 100%);
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.about_sec2_wrap{
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  z-index: 1;
}
.about_sec2_box{

}
.about_sec2_box .tt2{

}
.about_sec2_box .content_desc{
  font-weight: 500;
  text-shadow: 
    2px 2px 1px #ffffff,
    -2px 2px 1px #ffffff,
    2px -2px 1px #ffffff,
    -2px -2px 1px #ffffff,
    2px 0px 1px #ffffff,
    0px 2px 1px #ffffff,
    -2px 0px 1px #ffffff,
    0px -2px 1px #ffffff;
}

/*sec3*/
.about_sec3_wrap{

}
.about_sec3_wrap .tt2{

}
.about_sec3_items{

} 
.about_sec3_item{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  padding: 30px 0;
}
.about_sec3_item:nth-child(even):before{
  content: "";
  display: block;
  width: 100vw;
  height: 100%;
  background: #e4ecf3;
  position: absolute;
  top: 0;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.about_sec3_item_box1{
  width: 100%; 
  position: relative;
  z-index: 1;
  margin-top: 30px;
  order: 2;
}
.about_sec3_item_box1 .home_sec3_item_tt{
  width: auto;
  padding: 2px 20px;
}
.home_sec3_item_txt2.bdr_btm{
  border-bottom: 2px solid #153853;
  line-height: 1.73em;
  padding-bottom: 16px;
}
.about_sec3_item_box1 .home_sec3_item_txt2{
  margin-top: 20px;
}

.about_sec3_item_box1 .content_desc{
  font-size: 16px;
  font-weight: 500;
  line-height: 1.875em;
  margin-top: 20px;
  text-shadow:none;
}
.about_sec3_item_box1 .content_desc p{
  letter-spacing: 0;
}
.about_sec3_item_box2{
  width: 100%; 
  order: 1;
}
.about_sec3_item_box2_img:before{
  padding-top: 62.28%;
}

/*sec4*/
.tt2_sub{
  text-align: center;
}
.tt2_sub_txt1{
  font-size: 18px;
  font-weight: 400;
  font-family: "Shippori Mincho", serif;
}
.tt2_sub_txt2{
  font-size: 21px;
     font-weight: 500;
  font-family: "Shippori Mincho", serif;
}
.about_sec4_items{
  display: flex;
  flex-wrap: wrap;
  margin-top:40px;
}
.about_sec4_item{
  width: 100%;
}
.about_sec4_item:nth-child(n+2){
  margin-top: 30px;;
}
.about_sec4_item_inner{
  background: #e4ecf3;
  padding: 30px 16px;
}
.about_sec4_item_tt{
  font-size: 18px;
  font-weight: 500;
  font-family: "Shippori Mincho", serif;
  text-align: center;
  color: #153853;
  margin-bottom: 28px;
}
.content_desc.list{
  text-shadow:none;
  line-height: 1.94em;
  font-weight: 400;
}
.content_desc.list + .content_desc.list{
  margin-top: 37px;
}
.shojyo{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;;
  margin-top: 38px;
}

/*sec5*/
.gmap{
  margin-top: 40px;
}
.access_map iframe{
  width: 100%;
  border: none;
  height: 250px;
}
@media (max-width:767px){
  .about_sec2_box .content_desc{
    text-shadow    : 
      2px  2px 1px #ffffff,
      -2px  2px 1px #ffffff,
      2px -2px 1px #ffffff,
      -2px -2px 1px #ffffff,
      2px  0px 1px #ffffff,
      0px  2px 1px #ffffff,
      -2px  0px 1px #ffffff,
      0px -2px 1px #ffffff; 
  }

  .shojyo_item:nth-child(n+2){
    margin-top: 30px;
  }
}
@media (min-width:768px){
  /*sec2*/
  .about_sec2_img{

  }
  .about_sec2_img:before{
    padding-top: 757px;
  }
  .about_sec2_img:after{

  }
  .about_sec2_wrap{

  }
  .about_sec2_box{

  }
  .about_sec2_box .tt2{

  }
  .about_sec2_box .content_desc{
    font-size: 18px;
    line-height: 2.55em;
  }

  /*sec3*/
  .about_sec3_wrap{

  }
  .about_sec3_wrap .tt2{
    margin-bottom: 47px;
  }
  .about_sec3_items{

  } 
  .about_sec3_item{
    padding: 50px 0;
  }
  .about_sec3_item_box1{
    margin-top: 40px;
  }
  .about_sec3_item_box1 .home_sec3_item_tt{

  }
  .home_sec3_item_txt2.bdr_btm{
    padding-bottom: 20px;
  }
  .about_sec3_item_box1 .content_desc{
    margin-top: 28px;
  }
  .about_sec3_item_box2{

  }
  .about_sec3_item_box2_img:before{

  }

  /*sec4*/
  .tt2_sub{

  }
  .tt2_sub:after{
    content: "";
    display: block;
    width: 100%;
    max-width: 200px;
    height: 1px;
    background: #153853;
    margin-inline:auto;
    margin-top: 24px;
  }
  .tt2_sub_txt1{
    font-size: 24px;
  }
  .tt2_sub_txt2{
    font-size: 30px;
  }
  .about_sec4_items{
    margin-top: 70px;
  }
  .about_sec4_item{

  }
  .about_sec4_item_inner{
    padding: 30px 64px;
  }
  .about_sec4_item_tt{
    font-size: 22px;
  }
  .content_desc.list{
    font-size: 18px;
  }

  .shojyo{
    justify-content: space-between;
    align-items: flex-end;
  }
  .shojyo_item:first-child{
    width: 48.38%;
  }
  .shojyo_item:last-child{
    width: 45.96%;
  }

  /*sec5*/
  .gmap{
    margin-top: 80px;
  }
  .access_map iframe{
    height: 450px;
  }
}
@media (min-width:1024px){


}
@media (min-width:1200px){
  /*sec2*/
  .about_sec2_img{

  }
  .about_sec2_img:before{
    padding-top: 757px;
  }
  .about_sec2_img:after{

  }
  .about_sec2_wrap{

  }
  .about_sec2_box{

  }
  .about_sec2_box .tt2{
    margin-bottom: 60px;
  }
  .about_sec2_box .content_desc{

  }

  /*sec3*/
  .about_sec3_wrap{

  }
  .about_sec3_wrap .tt2{
    margin-bottom: 47px;
  }
  .about_sec3_items{

  } 
  .about_sec3_item{

  }
  .about_sec3_item:nth-child(odd) .about_sec3_item_box1{
    order: 1;
  }
  .about_sec3_item:nth-child(odd) .about_sec3_item_box2{
    order: 2;
  }
  .about_sec3_item:nth-child(even) .about_sec3_item_box1{
    order: 2;
  }
  .about_sec3_item:nth-child(even) .about_sec3_item_box2{
    order: 1;
  }
  .about_sec3_item_box1{
    width: 44.73%;
    margin-top: 0;
  }
  .about_sec3_item_box1 .home_sec3_item_tt{

  }
  .home_sec3_item_txt2.bdr_btm{

  }
  .about_sec3_item_box1 .content_desc{

  }
  .about_sec3_item_box2{
    width: 49.01%;
  }
  .about_sec3_item_box2_img:before{

  }

  /*sec4*/
  .about_sec4_wrap .tt2{
    margin-bottom: 60px;
  }
  .tt2_sub{

  }
  .tt2_sub_txt1{
    font-size: 26px;
  }
  .tt2_sub_txt2{
    font-size: 35px;
  }
  .about_sec4_items{
    margin-inline:-15px;
    margin-top: 100px;
  }
  .about_sec4_item{
    width: 50%;
    padding-inline:15px;
  }
  .about_sec4_item:nth-child(n+2){
    margin-top: 0px;
  }
  .about_sec4_item:nth-child(n+3){
    margin-top: 30px;;
  }
  .about_sec4_item_inner{
    height: 100%;
    padding: 30px 16px;
  }
  .about_sec4_item_tt{
    font-size: 26px;
  }
  .content_desc.list{

  }

  /*sec5*/
  .about_sec5_wrap .tt2{
    margin-bottom: 75px;
  }

  /*sec6*/
  .about_sec6_wrap .tt2{
    margin-bottom: 77px;
  }

  /*sec7*/
  .about_sec7_wrap .tt2{
    margin-bottom: 78px;
  }
}
@media (min-width:1470px){
  /*sec4*/
  .about_sec4_item_inner{
    padding: 30px 64px;
  }
}
@media (min-width:1720px){


}



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

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

}
.pg_service .section.sec1{

}
.pg_service .section.sec2{

}


@media (max-width:374px){

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

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

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

  }
  .pg_service .section.sec1{

  }
  .pg_service .section.sec2{
    padding-top: 34px;
  }
  .pg_service .section.sec3{
    padding-top: 95px;
  }

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


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

  }
  .pg_service .section.sec1{

  }
  .pg_service .section.sec2{

  }


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


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


}

/* メイン部分 */
/*sec1*/
.home_sec1_box.service{

}
.home_sec1_box.service .home_sec1_box1{

}
.home_sec1_box.service .home_sec1_box2{

}
.home_sec1_box.service .home_sec1_box1_inner:after{
  clip-path: polygon(100% 0, 0 0%, 34.5% 100%, 100% 100%);
  left: 0;
  right: auto;
  margin-right: var(--margin-for-device-side-w);
  margin-left: 0;
}
.home_sec1_box.service .home_sec1_box1_outer{
  aspect-ratio: 950 / 598;
}
.home_sec1_box.service .home_sec1_box1_img{
  -webkit-mask-image: url(/system_panel/uploads/images/qw1.png);
}
.home_sec1_box.service .section_img_en{
  right: auto;
  left: 0;
}

/*sec2*/
.service_sec3_items{

}
.service_sec3_item{
  position: relative;
  padding: 50px 0;
}
.service_sec3_item:nth-child(n+2){
  margin-top: 40px;
}
.service_sec3_item:before{
  content: "";
  display: block;
  width: 113.15%;
  height: 100%;
  background: #e4ecf3;
  position: absolute;
  top:0;
  left: 50%;
  transform:translateX(-50%);
  z-index: -1;
}
.service_sec3_item:nth-child(n+2):after{
  content: "";
  width: 1720px;
  height: 1px;
  background: #153853;
  position: absolute;
  top: -20px;
  left: 50%;
  transform:translateX(-50%);
}
.service_sec3_item .about_sec3_item{
  padding: 0;
}
.service_sec3_item .about_sec3_item_box1{

}
.service_sec3_item .content_desc{
  text-shadow:none;
}
.service_sec3_item .about_sec3_item_box2{

}

.service_sec3_item .about_sec3_item_box2_img:before{

}
.service_sec3_main .home_sec2_wrap{
  margin-top: 40px;
}
.service_sec3_can_box{
  background: #284d69;
  padding: 30px 16px;
  margin-top: 35px;
}
.service_sec3_can_tt{
  font-family: "Shippori Mincho", serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.075em;
  background: #ffffff;
  color: #284d69;
  text-align: center;
}
.service_sec3_can_tt.no_bg{
  background: none;
}
.service_sec3_can_lists{
  color: #fff;
  display: flex;
  flex-wrap: wrap;
}
.service_sec3_can_list{
  width: 100%;
  padding-left: 30px;
  position: relative;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0;
  margin-top: 30px;
}
.service_sec3_can_list:before{
  content: "●";
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
}

.service_sec3_main{
  margin-top: 40px;
}
.service_sec3_main .service_sec3_can_tt{
  font-weight: 600;
}
.home_sec2_wrap.service{

}
@media (max-width:767px){
  .service_sec3_item .home_sec2_wrap:after{
    display: none;
  }
  
  .service_sec3_can_list{
    margin-top: 10px;;
  }
  .service_sec3_can_list:nth-child(n+2){
   
  }
}
@media (min-width:768px){
  /*sec1*/
  .home_sec1_box.service{

  }
  .home_sec1_box.service .home_sec1_box1{

  }
  .home_sec1_box.service .home_sec1_box2{

  }
  .home_sec1_box.service .home_sec1_box1_inner:after{
    clip-path: polygon(100% 0, 0 0%, 26.5% 100%, 100% 100%);
  }

  /*sec2*/
  .service_sec3_items{

  }
  .service_sec3_item{
    padding: 80px 0 88px;
  }
  .service_sec3_item:nth-child(n+2){
    margin-top: 100px;
  }
  .service_sec3_item:nth-child(n+2):after{
    top: -50px;
  }
  .service_sec3_item .about_sec3_item{
    padding: 0;
  }
  .service_sec3_item .about_sec3_item_box1{

  }
  .service_sec3_item .about_sec3_item_box2{

  }
  .service_sec3_item .home_sec3_item_tt{
    font-size: 22px;
  }
  .service_sec3_item .about_sec3_item_box2_img:before{

  }
  .service_sec3_can_box{
    padding: 48px 20px;
    margin-top: 85px;
  }
  .service_sec3_can_tt{
    font-size: 22px;
  }
  .service_sec3_can_lists{
    margin-top: 19px;
  }
  .service_sec3_can_list{
    font-size: 20px;
  }

  .service_sec3_main .home_sec2_wrap{
    margin-top: 45px;
  }
  .service_sec3_main{
    margin-top: 60px;
  }
  .service_sec3_main .service_sec3_can_tt{

  }
  .home_sec2_wrap.service{

  }
}
@media (min-width:1024px){
  /*sec1*/
  .home_sec1_box.service .home_sec1_box1_inner:after{
    clip-path: polygon(100% 0, 0 0%, 26.5% 100%, 100% 100%);
  }
}
@media (min-width:1200px){

  /*sec1*/
  .home_sec1_box.service{

  }
  .home_sec1_box.service .home_sec1_box1{
    order: 2;
  }
  .home_sec1_box.service .home_sec1_box2{
    order: 1;
  }
  .home_sec1_box.service .home_sec1_box1_inner:after{
    clip-path: polygon(100% 0, 0 0%, 18.5% 100%, 100% 100%);
  }

  /*sec2*/
  .service_sec3_wrap .tt2{
    margin-bottom: 80px;
  }
  .service_sec3_items{

  }
  .service_sec3_item{

  }
  .service_sec3_item:nth-child(n+2){
    margin-top: 200px;
  }
  .service_sec3_item:nth-child(n+2):after{
    top: -100px;
  }
  .service_sec3_item:nth-child(odd) .about_sec3_item_box1{
    order: 2;
  }
  .service_sec3_item:nth-child(odd) .about_sec3_item_box2{
    order: 1;
  }
  .service_sec3_item:nth-child(even) .about_sec3_item_box1{
    order: 1;
  }
  .service_sec3_item:nth-child(even) .about_sec3_item_box2{
    order: 2;
  }
  .service_sec3_item .about_sec3_item{

  }
  .service_sec3_item .about_sec3_item_box1{

  }
  .service_sec3_item .about_sec3_item_box2{

  }
  .service_sec3_item .home_sec3_item_tt{
    font-size: 26px;
    padding: 5px 22px;
  }
  .service_sec3_item .about_sec3_item_box2_img:before{

  }
  .service_sec3_can_box{
    padding: 48px 85px;
  }
  .service_sec3_can_tt{
    font-size: 26px;
  }
  .service_sec3_can_lists{

  }
  .service_sec3_can_list{
    font-size: 22px;
    width: auto;
  }
  .service_sec3_can_list:nth-child(odd){
    width: 100%;
    max-width: 845px;
    padding-right: 20px;
  }
  .service_sec3_main{
    margin-top: 75px;
  }
  .service_sec3_main .service_sec3_can_tt{

  }
  .home_sec2_wrap.service{

  }

  .service_sec4_wrap .tt2{
    margin-bottom: 69px;
  }
}
@media (min-width:1470px){
  /*sec1*/
  .home_sec1_box.service .home_sec1_box1_inner:after{
    clip-path: polygon(100% 0, 0 0%, 17.5% 100%, 100% 100%);
  }

}
@media (min-width:1720px){
  /*sec1*/
  .home_sec1_box.service .home_sec1_box1_inner{
    margin-left: 0;
    margin-right: calc(960px - 50vw - 118px);
  }
  .home_sec1_box.service .home_sec1_box1_inner:after{
    clip-path: polygon(100% 0, 0 0%, 15.5% 100%, 100% 100%);
  }
  .home_sec1_box1_inner{

  }

}







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

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

}
.pg_toknowpeople .section.sec1{

}
.pg_toknowpeople .section.sec2{
  background: #e4ecf3;
  padding-bottom: 80px;
}

.body_toknowpeople .footer{
  margin-top: 0;
}
@media (max-width:374px){

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

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

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

  }
  .pg_toknowpeople .section.sec1{
    padding-bottom: 100px;
  }
  .pg_toknowpeople .section.sec2{
    padding-top: 100px;
    padding-bottom: 100px;
  }

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


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

  }
  .pg_toknowpeople .section.sec1{
    padding-bottom: 160px;
  }
  .pg_toknowpeople .section.sec2{
    padding-top: 116px;
    padding-bottom: 200px;
  }

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


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


}

/* メイン部分 */
/*sec1*/
.toknowpeople_sec1_wrap{

}
.toknowpeople_sec1_wrap .tt2{

}
.toknowpeople_sec1_wrap .toknowpeople_sec1_items{

}
.toknowpeople_sec1_items{

}
.toknowpeople_sec1_item{

}
.toknowpeople_sec1_item:nth-child(n+2){
  margin-top: 50px;
}
.toknowpeople_sec1_item_main_box2:before{
  content: "";
  display: block;
  width: 100vw;
  height: 100%;
  background: #e4ecf3;
  position: absolute;
  top: 0;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  z-index: -1;
}
.toknowpeople_sec1_item_tt{
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0;
  border-bottom: 1px solid #153853;
  padding-bottom: 19px;
}
.toknowpeople_sec1_item_main{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 30px;
}
.toknowpeople_sec1_item_main_box1{
  width: 100%;
}
.toknowpeople_sec1_item_main_box1_img:before{
  padding-top: 118.98%;
}
.toknowpeople_sec1_item_main_box2{
  width: 100%;
  position: relative;
  padding: 80px 0 30px;
  margin-top: -50px;
}
.toknowpeople_sec1_item_main_name{
  font-size: 20px;
  font-weight: 700;
  font-family: "Shippori Mincho", serif;
  letter-spacing: 0.075em;
  background: #153853;
  color: #fff;
  display: inline-block;
  padding: 7px 24px;
}
.toknowpeople_sec1_item_main_detail{
  margin-top: 20px;
}
.toknowpeople_sec1_item_main_prop{
  font-size: 16px;
  font-weight: 500;
  font-family: "Shippori Mincho", serif;
  line-height: 1.875em;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.toknowpeople_sec1_item_main_cmt{
  margin-top: 20px;
}
.toknowpeople_sec1_item_main_cmt_tt{
  font-size: 24px;
  font-weight: 500;
  font-family: var(--font-en);
  letter-spacing: 0;
  line-height: 1;
  color: #94aec2;
}
.content_cmt{
  font-size: 16px;
font-weight: 600;
  font-family: "Shippori Mincho", serif;
  line-height: 1.875em;
  margin-top: 20px;
}

/*sec2*/
.toknowpeople_sec2_items{

}
.toknowpeople_sec2_item{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.toknowpeople_sec2_item:nth-child(n+2){
  margin-top: 50px;
}
.toknowpeople_sec2_item_box1{
  width: 100%;
  position: relative;
  order: 2;
  margin-top: -50px;
  padding: 80px 0 50px
}
.toknowpeople_sec2_item_box1:before{
  content: "";
  display: block;
  width: 100vw;
  height: 100%;
  background: #fff;
  position: absolute;
  top: 0;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  z-index: 0;
}
.toknowpeople_sec2_item_faq{
  position: relative;
  z-index: 1;
}
.toknowpeople_sec2_item_faq:nth-child(n+2){
  margin-top: 20px;
}
.toknowpeople_sec2_item_faq_q{
  font-size: 18px;
  font-weight: 500;
  font-family: "Shippori Mincho", serif;
  background: #153853;
  color: #fff;
  padding: 5px 12px;
}
.toknowpeople_sec2_item_faq_a{
  font-size: 16px; 
    font-weight: 600;
  line-height: 2;
  font-family: "Shippori Mincho", serif;
  margin-top: 17px;
}
.toknowpeople_sec2_item_box2{
  width: 100%;
  position: relative;
  z-index: 1;
  order: 1;
}
.toknowpeople_sec2_item_box2_img:before{
  padding-top: 63.06%; 
}
.toknowpeople_sec2_item_box2_name{
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  font-family: "Shippori Mincho", serif;
  background: #153853;
  color: #fff;
}
@media (max-width:767px){

}
@media (min-width:768px){
  /*sec1*/
  .toknowpeople_sec1_wrap{

  }
  .toknowpeople_sec1_wrap .tt2{

  }
  .toknowpeople_sec1_wrap .toknowpeople_sec1_items{

  }
  .toknowpeople_sec1_items{

  }
  .toknowpeople_sec1_item{

  }
  .toknowpeople_sec1_item_tt{
    font-size: 20px;
  }
  .toknowpeople_sec1_item_main{
    margin-top: 50px;
  }
  .toknowpeople_sec1_item_main_box1{

  }
  .toknowpeople_sec1_item_main_box1_img:before{

  }
  .toknowpeople_sec1_item_main_box2{
    margin-top: -50px;
    padding: 120px 0 60px;
  }
  .toknowpeople_sec1_item_main_name{
    font-size: 22px;
  }
  .toknowpeople_sec1_item_main_detail{
    margin-top: 26px;
  }
  .toknowpeople_sec1_item_main_prop{

  }
  .toknowpeople_sec1_item_main_cmt{
    margin-top: 44px;
  }
  .toknowpeople_sec1_item_main_cmt_tt{
    font-size: 30px;
  }
  .content_cmt{

  }

  /*sec2*/
  .toknowpeople_sec2_items{

  }
  .toknowpeople_sec2_item{

  }
  .toknowpeople_sec2_item:nth-child(n+2){
    margin-top: 78px;
  }
  .toknowpeople_sec2_item_box1{
    padding: 80px 0 50px;
    margin-top: -50px;
  }
  .toknowpeople_sec2_item_faq{
    position: relative;
    z-index: 1;
  }
  .toknowpeople_sec2_item_faq:nth-child(n+2){
    margin-top: 43px;
  }
  .toknowpeople_sec2_item_faq_q{
    font-size: 22px;
  }
  .toknowpeople_sec2_item_faq_a{

  }
  .toknowpeople_sec2_item_box2{

  }
  .toknowpeople_sec2_item_box2_img:before{

  }
  .toknowpeople_sec2_item_box2_name{
    font-size: 18px;
  }
  .toknowpeople_sec1_wrap .read_more,
  .toknowpeople_sec2_wrap .read_more{
    margin-top: 68px;
  }

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


}
@media (min-width:1200px){
  /*sec1*/
  .toknowpeople_sec1_wrap{

  }
  .toknowpeople_sec1_wrap .tt2{
    margin-bottom: 82px;
  }
  .toknowpeople_sec1_wrap .toknowpeople_sec1_items{

  }
  .toknowpeople_sec1_items{

  }
  .toknowpeople_sec1_item{

  }
  .toknowpeople_sec1_item:nth-child(n+2){
    margin-top: 78px;
  }
  .toknowpeople_sec1_item_main_box2:before{
    display: none;
  }
  .toknowpeople_sec1_item_main_box2:after{
    content: "";
    display: block;
    width: 115.09%;
    height: 100%;
    background: #e4ecf3;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
  }
  .toknowpeople_sec1_item_tt{
    font-size: 25px;
  }
  .toknowpeople_sec1_item_main{

  }
  .toknowpeople_sec1_item_main_box1{
    width: 25.98%;
  }
  .toknowpeople_sec1_item_main_box1_img:before{

  }
  .toknowpeople_sec1_item_main_box2{
    width: 69.73%;
    padding: 60px 0;
    margin-top: 76px;
    padding-right: 45px;
  }
  .toknowpeople_sec1_item_main_name{
    font-size: 30px;
  }
  .toknowpeople_sec1_item_main_detail{

  }
  .toknowpeople_sec1_item_main_prop{

  }
  .toknowpeople_sec1_item_main_cmt{

  }
  .toknowpeople_sec1_item_main_cmt_tt{
    font-size: 40px;
  }
  .content_cmt{

  }

  /*sec2*/
  .toknowpeople_sec2_wrap .tt2{
    margin-bottom: 101px;
  }
  .toknowpeople_sec2_items{

  }
  .toknowpeople_sec2_item{

  }
  .toknowpeople_sec2_item_box1{
    width: 57.23%;
    padding: 50px 0;
    margin-top: 50px;
  }
  .toknowpeople_sec2_item_box1:before{
    display: none;
  }
  .toknowpeople_sec2_item_box1:after{
    content: "";
    display: block;
    width: 151.11%;
    height: 100%;
    background: #fff;
    position: absolute;
    top: 0;
    z-index: 0;
  }
  .toknowpeople_sec2_item:nth-child(odd) .toknowpeople_sec2_item_box1:after{
    left: 0;
  }
  .toknowpeople_sec2_item:nth-child(even) .toknowpeople_sec2_item_box1:after{
    right: 0;
  }
  .toknowpeople_sec2_item:nth-child(odd) .toknowpeople_sec2_item_box1{
    order: 1;
  }
  .toknowpeople_sec2_item:nth-child(odd) .toknowpeople_sec2_item_box2{
    order: 2;
  }
  .toknowpeople_sec2_item:nth-child(even) .toknowpeople_sec2_item_box1{
    order: 2;
  }
  .toknowpeople_sec2_item:nth-child(even) .toknowpeople_sec2_item_box2{
    order: 1;
  }
  .toknowpeople_sec2_item_faq{

  }
  .toknowpeople_sec2_item:nth-child(odd) .toknowpeople_sec2_item_faq{
    padding-left:56px;
  }
  .toknowpeople_sec2_item:nth-child(even) .toknowpeople_sec2_item_faq{
    padding-right:56px;
  }
  .toknowpeople_sec2_item_faq_q{

  }
  .toknowpeople_sec2_item_faq_a{

  }
  .toknowpeople_sec2_item_box2{
    width: 36.51%;

  }
  .toknowpeople_sec2_item_box2_img:before{

  }
  .toknowpeople_sec2_item_box2_name{
    font-size: 20px;
  }
}
@media (min-width:1470px){


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


}




/*******************************
*　働く環境
********************************/

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

}
.pg_workstyle .section.sec1{

}
.pg_workstyle .section.sec2{

}
.pg_workstyle .section.sec3{
  background: #e4ecf3;
}

@media (max-width:374px){

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

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

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

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

  }
  .pg_workstyle .section.sec1{

  }
  .pg_workstyle .section.sec2{
    padding-bottom: 100px;
  }
  .pg_workstyle .section.sec3{
    padding-top: 112px;
    padding-bottom: 100px;
  }
  .pg_workstyle .section.sec4{
    padding-top: 100px;
  }
}
@media (min-width:1024px){


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

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

  }
  .pg_workstyle .section.sec1{

  }
  .pg_workstyle .section.sec2{
    padding-bottom: 133px;
  }
  .pg_workstyle .section.sec3{
    padding-bottom: 164px;
  }
  .pg_workstyle .section.sec4{
    padding-top: 140px;
  }

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


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


}

/* メイン部分 */
/*sec2*/


/*sec3*/
.workstyle_sec3_items{
  display: flex;
  flex-wrap: wrap;
}
.workstyle_sec3_item{
  width: 100%;
  text-align: center;
}
.workstyle_sec3_item:nth-child(n+2){
  margin-top: 20px;;
}
.workstyle_sec3_item_inner{
  border: 2px solid #153853;
  background: #fff;
  padding: 16px;
  position: relative;
}
.workstyle_sec3_item_inner:after{
  content: "";
  display: block;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 40px;
}
.workstyle_sec3_item:nth-child(1) .workstyle_sec3_item_inner:after{
  width: 18.1%;
  aspect-ratio:88 / 93;
  background-image: url(/system_panel/uploads/images/icon1.png);
  right: 10.08%;
}
.workstyle_sec3_item:nth-child(2) .workstyle_sec3_item_inner:after{
  width: 14.6%;
  aspect-ratio:71 / 106;
  background-image: url(/system_panel/uploads/images/icon2.png);
  right: 8.75%;
}
.workstyle_sec3_item:nth-child(3) .workstyle_sec3_item_inner:after{
  width: 19.13%;
  aspect-ratio:1;
  background-image: url(/system_panel/uploads/images/icon3.png);
  right: 9.2%;
}
.workstyle_sec3_item:nth-child(4) .workstyle_sec3_item_inner:after{
  width:18.72%;
  aspect-ratio:91 / 80;
  background-image: url(/system_panel/uploads/images/sikaku.png);
  right: 9.6%;
}
.workstyle_sec3_item:nth-child(5) .workstyle_sec3_item_inner:after{
  width:14.4%;
  aspect-ratio:70 / 113;
  background-image: url(/system_panel/uploads/images/icon5.png);
  right: 12.55%;
}
.workstyle_sec3_item:nth-child(6) .workstyle_sec3_item_inner:after{
  width: 18.31%;
  aspect-ratio:89 / 76;
  background-image: url(/system_panel/uploads/images/icon6.png);
  right: 9.2%;
}

.workstyle_sec3_item_txt1{
  font-size: 20px;
  font-weight: 600;
}
.workstyle_sec3_item_txt2{
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
}
.workstyle_sec3_item_txt2 strong{
  font-size: clamp(3.125rem, 1.775rem + 6.75vw, 9.875rem);
  font-weight: 600;
  font-family: "Oswald", sans-serif;
  line-height: 1;
}
.workstyle_sec3_item_txt2 em{
  font-size: clamp(3.125rem, 1.775rem + 6.75vw, 9.875rem);
  font-weight: 600;
  font-style: normal;
  font-family: "Oswald", sans-serif;
  line-height: 1;
}

/*sec3*/
.workstyle_sec3_sub_wrap{
  margin-top: 60px;
}
.workstyle_sec3_sub_wrap .tt2{

}
.workstyle_sec3_sub_items{
  display: flex;
  flex-wrap: wrap;
}
.workstyle_sec3_sub_item{
  width: 100%; 
}
.workstyle_sec3_sub_item:nth-child(n+2){
  margin-top: 10px;;
}
.workstyle_sec3_sub_item_inner{
  background: #153853;
  color: #fff;
  text-align: center;
  padding: 20px 0;
}
.workstyle_sec3_sub_item_img{

}
.workstyle_sec3_sub_txt{
  font-size: 16px;
  font-weight: 600;
  line-height: 1.38em;
  margin-top: 14px;
}

/*sec4*/
.about_sec3_items.workstyle .content_desc{
  text-shadow:none;
}
@media (max-width:767px){
  .workstyle_sec3_item_inner:after{
    top: 27px;
  }
}
@media (min-width:768px){
  /*sec3*/
  .workstyle_sec3_items{
    margin-inline:-15px;
  }
  .workstyle_sec3_item{
    width: 50%;
    padding-inline:15px;
  }
  .workstyle_sec3_item:nth-child(n+2){
    margin-top: 0;
  }
  .workstyle_sec3_item:nth-child(n+3){
    margin-top: 30px;
  }
  .workstyle_sec3_item_inner{
    padding: 24px 16px;
  }
  .workstyle_sec3_item_txt1{
    font-size: 22px;
  }
  .workstyle_sec3_item_txt2{
    font-size: 30px;
  }

  /*sec3*/
  .workstyle_sec3_sub_wrap{
    margin-top: 100px;
  }
  .workstyle_sec3_sub_wrap .tt2{

  }
  .workstyle_sec3_sub_items{
    margin-inline:5px;
  }
  .workstyle_sec3_sub_item{
    width: 33.333%;
    padding-inline:5px;
  }
  .workstyle_sec3_sub_item:nth-child(n+2){
    margin-top: 0;
  }
  .workstyle_sec3_sub_item:nth-child(n+4){
    margin-top: 10px;
  }
  .workstyle_sec3_sub_item_inner{
    height: 100%;
    padding: 45px 0 25px;
  }
  .workstyle_sec3_sub_item_img{

  }
  .workstyle_sec3_sub_txt{
    font-size: 18px;
  }

  .workstyle_sec3_sub_wrap .read_more{
    margin-top: 67px;
  }
  .pg_workstyle .section.sec4 .read_more{
    margin-top: 45px;
  }
}
@media (min-width:1024px){


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

  /*sec2*/
  .workstyle_sec2_wrap .tt2{
    margin-bottom: 101px;
  }

  /*sec3*/
  .workstyle_sec3_wrap .tt2{
    margin-bottom: 76px;
  }
  .workstyle_sec3_items{

  }
  .workstyle_sec3_item{
    width: 33.333%;
  }
  .workstyle_sec3_item:nth-child(n+3){
    margin-top: 0;
  }
  .workstyle_sec3_item:nth-child(n+4){
    margin-top: 30px;
  }
  .workstyle_sec3_item_inner{

  }
  .workstyle_sec3_item_txt1{
    font-size: 24px;
  }
  .workstyle_sec3_item_txt2{
    font-size: 40px;
  }

  /*sec3*/
  .workstyle_sec3_sub_wrap{
    margin-top: 120px;
  }
  .workstyle_sec3_sub_wrap .tt2{

  }
  .workstyle_sec3_sub_items{

  }
  .workstyle_sec3_sub_item{
    width: 25%;
  }
  .workstyle_sec3_sub_item:nth-child(n+4){
    margin-top: 0;
  }
  .workstyle_sec3_sub_item:nth-child(n+5){
    margin-top: 22px;;
  }
  .workstyle_sec3_sub_item_inner{

  }
  .workstyle_sec3_sub_item_img{

  }
  .workstyle_sec3_sub_txt{

  }

  /*sec4*/
  .about_sec3_items.workstyle{

  }
  .about_sec3_items.workstyle .about_sec3_item:nth-child(odd) .about_sec3_item_box1{
    order: 2;
  }
  .about_sec3_items.workstyle .about_sec3_item:nth-child(odd) .about_sec3_item_box2{
    order: 1;
  }
  .about_sec3_items.workstyle .about_sec3_item:nth-child(even) .about_sec3_item_box1{
    order: 1;
  }
  .about_sec3_items.workstyle .about_sec3_item:nth-child(even) .about_sec3_item_box2{
    order: 2;
  }
}
@media (min-width:1470px){
  .workstyle_sec3_item_txt1{
    font-size: 30px;
  }

  /*sec3*/
  .workstyle_sec3_sub_wrap{

  }
  .workstyle_sec3_sub_wrap .tt2{

  }
  .workstyle_sec3_sub_items{

  }
  .workstyle_sec3_sub_item{
    width: 16.666%;
  }
  .workstyle_sec3_sub_item:nth-child(n+4){
    margin-top: 0;
  }
  .workstyle_sec3_sub_item:nth-child(n+7){
    margin-top: 22px;
  }
  .workstyle_sec3_sub_item_inner{

  }
  .workstyle_sec3_sub_item_img{

  }
  .workstyle_sec3_sub_txt{

  }
}
@media (min-width:1720px){
  .workstyle_sec3_item_txt1{
    font-size: 35px;
  }

}

/*******************************
*　
********************************/
.pg_entry{

}
.pg_entry .section.sec1{

}
.pg_entry .section.sec2{

}
.pg_entry .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_entry{

  }
  .pg_entry .section.sec1{

  }
  .pg_entry .section.sec2{
    padding-top: 81px;
  }
  .pg_entry .section.sec3{
    padding-top: 100px;
  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }


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


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

  }
  .pg_entry .section.sec1{

  }
  .pg_entry .section.sec2{

  }
  .pg_entry .section.sec3{
    padding-top: 120px;
  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }

}

    .home_sec1_box.entry .home_sec3_item_txt2
    {
      font-weight: 500;
    }
    .home_sec1_box.entry .home_sec1_box1_outer{
          aspect-ratio: 970 / 600;
    }

/*main*/
/*sec1*/
.home_sec1_box.entry .home_sec1_box2 .content_desc{
  margin-top: 17px;
}
.home_sec3_item_txt2.ltr_none{
  margin-top: 0;
}

.entry_sec2_wrap .company_tbl p{
  letter-spacing: 0;
}
.entry_sec2_wrap .company_tbl .table_rows_th,
.entry_sec2_wrap .company_tbl .table_rows_td{
  border-color: #a6a6a6;
}
.entry_sec2_wrap .company_tbl .table_rows_td{
  line-height: 2;
}
.entry_sec2_wrap .company_tbl .table_rows_td p{
  letter-spacing: 0;
}
@media (max-width:767px){

}
@media (min-width:768px){
  .entry_sec2_wrap .company_tbl .table_rows_th,
  .entry_sec2_wrap .company_tbl .table_rows_td{
    font-size: 16px;
    padding: 22px 20px 16px;
  }
  .entry_sec2_wrap .company_tbl .table_rows_td{
    padding: 22px 10px 16px 20px;
  }

}
@media (min-width:1024px){
  /*sec1*/
  .home_sec1_box .content_desc{

  }

}
@media (min-width:1200px){
  .pg_entry .section.sec1 .tt2{
    margin-bottom: 75px;
  }
  .home_sec1_box.entry .home_sec1_box2{
    padding-top: 0;
  }
  .entry_sec2_wrap .company_tbl .table_rows_th,
  .entry_sec2_wrap .company_tbl .table_rows_td{
    font-size: 16px;
    padding: 22px 51px 16px;
  }
  .entry_sec2_wrap .company_tbl .table_rows_td{
    padding: 22px 10px 16px 68px;
  }

  .home_sec1_box.entry .home_sec3_item_txt2{
    font-size: 19px;
  }

  /*sec3*/
  .pg_entry .section.sec3 .tt2{
    margin-bottom: 74px;
  }
}
@media (min-width:1366px){
  .home_sec1_box.entry .home_sec3_item_txt2{
    font-size: 22px;
  }
}
@media (min-width:1520px){
  .home_sec1_box.entry .home_sec3_item_txt2{
    font-size: 22px;
  }
}
@media (min-width:1720px){
  .home_sec1_box.entry .home_sec3_item_txt2{
    font-size: 26px;
  }
}
/*******************************
*　
********************************/

/* セクション設定 */
.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{

  }
  .pg_company .section.sec3{

  }
  .pg_company .section.sec4{

  }
  .pg_company .section.sec5{
    padding-top: 92px;
  }
}
@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: #153853;
  border-color: #888888;
  padding: 10px 10px;
  font-weight: 500;
}
.company_tbl .table_rows_th{
  background: #e4ecf3;
  font-weight: 500;
}
.company_tbl .table_rows_td{
  background: #FFF;
  line-height: 1.88em;
}
.company_tbl .table_rows_td p{
  letter-spacing: 0.075em;
}

/* マップ */
.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%;
}

/*沿革*/
.company_tbl.enkaku{

}
.company_tbl.enkaku .table_rows_th,
.company_tbl.enkaku .table_rows_td{
  border-color: #153853;
}
.company_tbl.enkaku .table_rows_th{
  background: #fff;
}
.company_tbl.enkaku .table_rows_td{

}

.company_tbl.works .table_rows_th,
.company_tbl.works .table_rows_td{

}
.company_tbl.works .table_rows_th{

}
.company_tbl.works .table_rows_td{

}
@media (max-width:767px){
  .company_tbl .table_rows_th,
  .company_tbl .table_rows_td{
    display: block;
    width: 100%;
    border: 1px solid #888888;
    border-bottom: none;
  }
  .company_tbl .table_rows_tr:last-child .table_rows_td{
    border-bottom: 1px solid #888888;
  }

  .company_tbl.enkaku .table_rows_th,
  .company_tbl.enkaku .table_rows_td{
    border: none;

  }
  .company_tbl.enkaku .table_rows_th{
    border-top: 1px solid #153853;
  }
}
@media (min-width:768px){

  /* 会社概要 */
  .company_tbl{

  }
  .company_tbl .table_rows_th,
  .company_tbl .table_rows_td{
    font-size: 17px;
    padding: 17px 30px 18px;
  }
  .company_tbl .table_rows_th{
    width: 200px;
  }
  .company_tbl .table_rows_td{
  }
  .company_tbl .table_rows_td .block:nth-child(n+2){
    margin-top: 26px;
  }

  /* マップ */
  .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;
  }

  /*沿革*/
  .company_tbl.enkaku{

  }
  .company_tbl.enkaku .table_rows_th,
  .company_tbl.enkaku .table_rows_td{
    border: none;
    border-top:1px solid #153853;
    padding: 24px 13px 20px;
  }
  .company_tbl.enkaku .table_rows_th{

  }
  .company_tbl.enkaku .table_rows_td{
    padding-left: 19px;
  }
  .company_tbl.enkaku .table_rows_tr:last-child .table_rows_th,
  .company_tbl.enkaku .table_rows_tr:last-child .table_rows_td{
    border-bottom:1px solid #153853;
  }

  .company_tbl.works .table_rows_th,
  .company_tbl.works .table_rows_td{

  }
  .company_tbl.works .table_rows_th{
    border-top: 1px solid #153853;
  }
  .company_tbl.works .table_rows_td{
    border-top: 1px solid #5984a5;
  }
}
@media (min-width:1024px){


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

  /* 会社概要 */
  .company_tbl{

  }
  .company_tbl .table_rows_th,
  .company_tbl .table_rows_td{
    padding: 16px 13px 16px;
  }
  .company_tbl .table_rows_th{
    width: 284px;
  }
  .company_tbl .table_rows_td{
    padding-left: 18px;
  }

  /* ギャラリー */
  .company_gallery_items{
    margin-left: -15px;
    margin-right: -15px;
  }
  * + .company_gallery_items{
    margin-top: 100px;
  }
  .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{

}
.cmn_cat_nav .webgene-blog{
  display: flex;
  flex-wrap: wrap;
  margin-left: -5px;
  margin-right: -5px;
}
.cmn_cat_nav .webgene-item{
  width: 50%;
  padding: 0 5px;
  margin: 5px 0;
  font-size: 12px;
  line-height: 1.4285;
}
.cmn_cat_nav .webgene-item 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 .webgene-item 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 .webgene-item.on a,
.cmn_cat_nav .webgene-item a:hover{
  background: var(--main-color);
  color: #FFF;
}
.cmn_cat_nav .webgene-item a:hover:after{
  margin-right: -2px;
}

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

@media (max-width:767px){

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

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

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

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

  }

  .cmn_cat_nav .webgene-item a:after{
    font-size: 14px;
    right: 10px;
  }
  .cmn_cat_nav .webgene-item 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 .webgene-item{
    padding: 0 15px;
    margin: 12.5px 0;
    font-size: 14px;
  }
  .cmn_cat_nav .webgene-item a{

  }

  .cmn_cat_nav.col2 .webgene-item{
    width: 50%;
  }
  .cmn_cat_nav.col3 .webgene-item{
    width: 33.333%;
  }
  .cmn_cat_nav.col4 .webgene-item{
    width: 25%;
  }
  .cmn_cat_nav.col5 .webgene-item{
    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{

}

.news_list.kasou .webgene-item .img:before{
  padding-top: 73.68%;
}

.topics_detail{
  border-bottom: 1px solid #b9b9b9;
  padding-bottom: 33px;
}
.topics_detail .date{
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0;
}
.topics_detail .title{
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.075em;
  border-bottom: 1px solid #b9b9b9;
  padding-bottom: 12px;
  margin-top: 10px;
}
.topics_detail .post_content{
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.075em;
  line-height: 2.125em;
  padding-top: 30px;
}
.topics_detail .post_content h3{
  font-size: 17px;
  font-weight: 500;
  background: #c4d8e7;
  padding: 8px 19px;
  margin-bottom: 19px;
}
.topics_detail .post_content img{
  margin-bottom: 30px;
}
.topics_detail .post_content img:nth-of-type(n+2) {
  margin-top: 30px;
}
@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{

  }

  .news_list.kasou .webgene-item:nth-child(n+3){
    margin-top: 20px;;
  }

  .topics_detail{

  }
  .topics_detail .date{

  }
  .topics_detail .title{
    font-size: 18px;
  }
  .topics_detail .post_content{
    padding-top: 39px;
  }
  .topics_detail .post_content h3{
    font-size: 18px;
  }
  .topics_detail .post_content img{
    margin-bottom: 40px;
  }
  .pg_topics .read_more{
    margin-top: 46px;
  }
}
@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;
  }

  .topics_detail{

  }
  .topics_detail .date{

  }
  .topics_detail .title{

  }
  .topics_detail .post_content{

  }
  .topics_detail .post_content h3{

  }
  .topics_detail .post_content img{

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


  .body_topics .posts_layout_box1{
    width: 80.26%;
  }
  .body_topics .posts_layout_box2{
    width: 16.77%;
  }
  .news_list.kasou .webgene-item{
    width: 33.333%;
  }
  .news_list.kasou .webgene-item:nth-child(n+3){
    margin-top: 0;
  }
  .news_list.kasou .webgene-item:nth-child(n+4){
    margin-top: 20px;
  }

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


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


}


/*******************************
*　記事一覧(2カラム)
********************************/
.pg_news{
  padding-top: 30px;
}
.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{

}

.news_list2.kasou{

}
.news_list2.kasou .webgene-item{

}
.news_list2.kasou .webgene-item a{

}
.news_list2.kasou .webgene-item .date{

}
.news_list2.kasou .webgene-item .title{

}

/* サイド */
.posts_side_wrap{

}
.posts_side_wrap + .posts_side_wrap{
  margin-top: 30px;
}
.posts_side_title {
  background: #153853;
  color: #FFF;
  padding: 10px 10px;
  font-weight: 500;
  letter-spacing: 0.025em;
  text-align: center;
  margin-bottom: 20px;
}

.posts_cat_item{
  padding-left: 0;
}
.posts_cat_item + .posts_cat_item{
  margin-top: 7px;
}
.posts_cat_item a{
  display: block;
  position: relative;
  padding-left: 33px;
  line-height: 1.5;
}
.posts_cat_item a:before{
  content: "■";
  position: absolute;
  left: 0;
}

/* 詳細 */
.posts_detail{
  border: 1px solid #d3d3d3;
  border-top: 15px solid #0069ba;
  padding: 15px 10px;
}
.posts_detail .webgene-item{

}
.posts_detail .meta{
  border-bottom: 1px solid #d3d3d3;
  padding-bottom: 5px;
  margin-bottom: 15px;
}
.posts_detail .meta .category{
  margin-bottom: 2px;
}
.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{

}
.posts_detail .meta .title{
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.065em;

}
.posts_detail .post_content{
  line-height: 1.875;
  letter-spacing: 0.065em;
  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;
}

.news_detail{
  border-bottom: 1px solid #3b5b74;
  padding-bottom: 22px;
}
.news_detail .webgene-item{

}
.news_detail .webgene-item .date{
  font-size: 16px;
  font-weight: 400;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0;
  line-height: 1;
}
.news_detail .webgene-item .title{
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0;
  border-bottom: 1px solid #3b5b74;
  margin-top: 16px;
  padding-bottom: 10px;
}
.news_detail .webgene-item .post_content{
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.875em;
  padding-top: 38px;
}

/* 動画 */
.post_video{

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

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

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

}
@media (max-width:767px){
  .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;
  }
}
@media (min-width:768px){

  .pg_news{
    padding-top: 50px;
  }
  .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: 156px;
  }

  .news_list2.kasou{

  }
  .news_list2.kasou .webgene-item{

  }
  .news_list2.kasou .webgene-item a{

  }
  .news_list2.kasou .webgene-item .date{
    width: 172px;
    text-align: left;
    padding-left: 30px;
  }
  .news_list2.kasou .webgene-item .title{
    width: calc(100% - 172px - 70px);
    padding-left: 20px;
  }
  .news_list2.kasou .webgene-item:nth-child(n+2){
    margin-top: 13px;
  }
  .news_list2.kasou .webgene-item a:before{

  }
  .news_list2.kasou .webgene-item a:before{
    right: 10.42%;
    background: #153853;
  }
  .news_list2.kasou .webgene-item a:after{
    right: 3.9%;
  }

  /* 詳細 */
  .posts_detail{
    padding: 20px 30px;
  }
  .posts_detail .webgene-item{

  }
  .posts_detail .meta{
    display: flex;
    flex-wrap: wrap;
    padding: 0 10px 5px;
    margin-bottom: 25px;
  }
  .posts_detail .meta .category{
    width: 100%;
  }
  .posts_detail .meta .category span{
    font-size: 13px;
    padding: 2px 5px;
  }
  .posts_detail .meta .date{
    width: 105px;
  }
  .posts_detail .meta .title{
    width: calc(100% - 105px);
    font-size: 20px;
  }
  .posts_detail .post_content{
    padding: 0 10px;
  }
  .posts_detail .thumb{
    margin-bottom: 20px;
  }

  .news_detail{

  }
  .news_detail .webgene-item{

  }
  .news_detail .webgene-item .date{

  }
  .news_detail .webgene-item .title{
    font-size: 20px;
    margin-top: 22px;
  }
  .news_detail .webgene-item .post_content{

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

  /* リスト */
  .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{

  }

  .news_list2.kasou .webgene-item .title{
    width: calc(100% - 172px - 120px);
    padding-left: 60px;
  }
}
@media (min-width:1200px){

  .pg_news{
    padding-top: 100px;
  }

  .news_list2.kasou .webgene-item a{
    padding: 33px 0;
  }
  .news_list2.kasou .webgene-item a:before{
    right: 10.42%;
  }
  .news_list2.kasou .webgene-item a:after{
    right: 3.9%;
  }
}



/*******************************
*　ギャラリー（サムネ横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){


}





/*******************************
*　お問い合わせ
********************************/

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

@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;
}
.contact_tt.privacy{
  font-size: 21px;
  letter-spacing: 0.2em;
  font-family: "Noto Sans JP";
  font-weight: 500;
  color: #153853;
}

/* フォーム */
.formTbl{
  border: 1px solid #b2b2b2;
  background: #ffffff;
}
.form.formWrap {
  letter-spacing: 0.1em;
  position: relative;
  z-index: 1;
}
.formRow + .formRow{
  border-top: 1px solid #b2b2b2;
}
.formTh {
  padding: 12px 15px 16px 20px;
  background: #e4ecf3;
  letter-spacing: 0.08em;
  font-weight: 500;
}
.formTh label{
  margin: 0;
}
.d-inline-block.requiredText {
  font-size: 13px;
  padding: 2px 12px;
  margin-top: 3px;
  float: right;
  font-weight: 500;
  letter-spacing: 0.05em;
  background: #b80000;
  color: #ffffff;
}
.d-inline-block.requiredText.nini{
  background: #fff;
  border: 1px solid #b80000;
  color: #b80000;;
}
.formTd {
  font-size: 15px;
  padding: 10px 16px;
}
.formTd.a-center{
  display: flex;
  align-items: center;
}
.formTd input[type="text"],
.formTd input[type="tel"],
.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;

}
.formTd input[name="year"]{
  max-width: 70px;
  margin-right: 11px;
}
.formTd input[name="month"],
.formTd input[name="day"],
.formTd input[name="calear"]{
  max-width: 42px;
  margin-right: 11px;
}
.formWrap .formTd.calear .d-inline-block{
  margin-left: 28px;
}
.formWrap .formTd.calear input[type=checkbox],
.formWrap .formTd.sex input[type=radio]{
  margin-right: 5px;
}
.formWrap .formTd.sex{
  display: flex;
  align-items: center;
}
.formWrap .formTd.sex .d-inline{
  margin-right: 31px;
}
.formTd select{
  border-radius: 0;
}
.formTd input[name="zip1"]{
  max-width: 120px;
}
.formTd input[name="zip2"]{
  max-width: 150px;
}
.formTd select[name="pref"]{
  max-width: 225px;
  width: 100%;
  font-size: 16px;
  padding: 7px 10px;
  border: 1px solid #d6d8d8;
}
.formTd input[name="city"]{
  max-width: 425px;
}
.formTd .addArea + .addArea{
  margin-top: 8px;
}
.formTd .addArea .labelText02{
  width: 75px;
}
.formTd textarea{
  width: 100%;
  height: 280px;
  font-size: 15px;
  padding: 5px 10px;
  border: 1px solid #d6d8d8;
  border-radius: 0;
  letter-spacing: 0.16em;
}
.formWrap .text-center{
  padding-top: 55px;
}
.formWrap input[name="privacy"]{
  margin-right: 7px;
}
.formWrap .privacyLabel{
  font-size: 17px;
  font-weight: 500;
  display: inline;
}
.formWrap .privacyLabel a{
  color: #13b5b1;
}
.formBtn.formSend {
  display: block;
  max-width: 300px;
  width: 100%;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0;
  text-align: left;
  border: 1px solid transparent;
  background: #153853;
  /* border-radius: 27px; */
  color: #fff;
  padding: 17px 25px;
  margin: 5px auto 0;
  position: relative;
  z-index: 1;
  transition: 0.2s all;
  cursor: pointer;
}
.formBtn.formSend:after{
  content: "\f105";
  font-family: "fontAwesome";
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 23px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  transition: 0.2s all;
}
.formBtn.formSend:hover{
  background: #fff;
  border: 1px solid #153853;
  color: #153853;
}
.formBtn.formSend:hover:after{
  right: 15px;
}

.formWrap label {
  display: inline-block;
  margin-bottom: 0;
}
.radioArea{
  padding: 0;
}
.radioArea .d-inline-block .label{
  margin-left: 9px;
  letter-spacing: 0;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.08em;
}
.radioArea .d-inline-block{
  margin-right: 28px;
}
.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.8em;
}

@media only screen and (min-width: 1024px){
  .formTh {
    -ms-flex: 0 0 28%;
    -webkit-box-flex: 0;
    -webkit-flex: 28%;
    flex: 0 0 28%;
    max-width: 28%;
  }
  .formTd {
    -ms-flex: 0 0 72%;
    -webkit-box-flex: 0;
    -webkit-flex: 72;
    flex: 0 0 72%;
    max-width: 72%;
  }

  .thanks_text{
    text-align: center; 
  }
}


/* プライバシー */
.contact_tt{
  margin-bottom: 60px;
  padding-left: 10px;
}
.privacy_item {
  margin-top: 29px;
  font-weight: 500;
  color: #153853;
}
.privacy_ttl {
  font-size: 18px;
  font-weight: 500;
  padding: 8px 15px;
  margin-bottom: 12px;
  letter-spacing: 0.04em;
  border-left: 6px solid #13b5b1;
  color: #153853;
}
.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 {
  margin-bottom: 46px;

}
.contact_tt.privacy br{
  display: none;
}
.formWrap .d-inline{
  display: inline-block!important;
}
.formWrap .d-inline-block {
  vertical-align: middle;
}

.privacy_box{
  padding: 30px 50px 30px 28px;
  height: 397px;
  overflow: auto;
  background: #fff;
  border: 1px solid #bfbfbf;
  margin-top: 0;
  color: #000000;
  margin-top: 60px;
  margin-bottom: 0;
}
@media only screen and (max-width: 1023px){
  .radioArea {
    padding: 0 5px;
  }
  .radioArea .d-inline-block .label {
    margin-left: 11px;
  }


  .privacy_ttl{
    font-size: 18px;
  }

}

@media only screen and (max-width: 767px){
  .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:18px;
  }
  .formTh {
    padding: 5px 10px;
  }
  .formTd {
    font-size: 13px;
    padding: 10px;
  }
  .formTd input[name="zip1"] {
    width: 80px;
  }
  .formTd input[name="zip2"] {
    width: 100px;
  }
  .formTd select[name="pref"] {
    width: 155px;
  }
  .formTd input[type="text"]::placeholder,
  .formTd input[type="tel"]::placeholder,
  .formTd input[type="email"]::placeholder{
    font-size: 14px;
    letter-spacing: 0.01em;
  }
  .formWrap .text-center {
    padding-top: 25px;
  }
  .formWrap .privacyLabel {
    font-size: 15px;
  }

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

  .contact_tt.privacy br{
    display: block;
  }
  .contact_tt.privacy {
    margin-bottom: 0;
    font-size: 19px;
  }
  .privacy_item {
    margin-top: 26px;
  }
  .contact_info_txt_1 {
    margin-bottom: 10px;
    padding-left: 0;
  }
  .formWrap .d-inline {
    display: block!important;
  }
  .formTd .addArea .labelText02 {
    display: block;
  }
  label.label.zipcode_i {
    padding: 7px 4px;
  }
  a.contact_info_txt_3 {
    width: 200px;
    margin: 10px 0;
  }

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



  .contact_info_bg {
    padding: 18px 10px;
  }

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

  .privacy_box{
    padding: 30px 10px;
  }
  .formTd.born .selectArea{
    display: flex;
    align-items: center;
  }
}

/*******************************
*　お問い合わせ送信完了
********************************/
.pg_thanks .link_3{
  margin-top: 50px;
}
.thanks_text{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

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


/*******************************
*　
********************************/
.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){


}
