@charset "UTF-8";

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

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

  /* フォント関連 */
  --font-ja: "Shippori Mincho B1", serif;
  /*--font-en: "Outfit",'Noto Sans JP', sans-serif;*/
  /*--font-en: "Oswald", 'Noto Sans JP',sans-serif;*/
  --font-en: "Bellefair", serif;
  --font-mincho: "Shippori Mincho B1", 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;*/
  letter-spacing: inherit;
}
p{

}
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;*/
  color: var(--main-color);
}
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: 22px;
  padding: 10px;
}
.hdr1{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 10px;
}

/* ロゴ */
.hdr_logo{

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

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

/* TELボタン */
.hdr_tel{

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

}
.hdr_tel_link p{

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


/* お問い合わせボタン */
.hdr_contact{
  display: flex;
  align-items: center;
  margin-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;
}

.hdr_lang {
    width: 150px;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.05em;
    background: #fff;
    color: #181818;
    border-radius: 5px;
    padding: 0px 21px 0px 13px;
    position: relative;
    transition: all .2s;
    border: 1px solid #181818;
    margin-right: 0;
    margin-left: auto;
    margin-top: 0;
}
.hdr_lang:hover{
  border: 1px solid #1c1c1c;
    background: #ccc;
    color: #181818;
}
.hdr_lang:hover .hdr_lang_select{
      display: block;
}
.hdr_lang_select{
      display: none;
    position: absolute;
    z-index: 1;
    top: 100%;
    left: 0;
    right: 0;
    background: #333;
    color: #FFF;
    padding: 5px 0;
    transition: 0.2s all;
}
.hdr_lang_select p{
      padding: 5px 10px;
    cursor: pointer;
}
.hdr_lang_btn{
  
}
.hdr_lang_btn:before{
  font-size: 18px;
    content:"\f0ac";
  font-family: "fontAwesome";
  margin-right: 5px;
}

#gt-nvframe{
 display: none; 
}
@media (min-width:375px){

}
@media (max-width:767px){
  .header{
        display: flex;
    align-items: center;
    justify-content: space-between;
            position: relative;
        z-index: 2;
  }
  
  .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_contact_btns{
    display: none; 
  }

  
  .translated-ltr .mv_txt_1{
            font-size: 34px;
  }
  .translated-ltr .mv_txt_sub{
        font-size: 8px;
  }
  .translated-ltr .mv_txt_sub p{
        padding: 9px 5px 9px 5px;
  }
}
@media (min-width:768px){

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

    position: fixed;
    z-index: 3;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 29px 26px 29px 23px;
  }
  .gnav_outer{
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  .hdr_contact_btns{
    display: flex;
    align-items: center;
    margin-left: 24px;
  }
  .hdr_contact_btn{
    display: block;
    font-size: 15px;
    font-weight: 700;
    font-family: var(--font-ja);
    width: 120px;
    text-align: center;
    color: #fff;
    border-radius: 19px;
    padding: 7px;
    margin-left: 6px;
  }
  .hdr_contact_btn.est{
    background: #006050;
  }
  .hdr_contact_btn.est:hover{
    background: #3cc8b1;
    color: #fff;
  }
  .hdr_contact_btn.contact{
    background: #a40000;
  }
  .hdr_contact_btn.contact:hover{
    background: #dd4d4d;
    color: #fff;
  }

  .hdr1{
    padding: 0 15px 0;
  }

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

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

  /* TELボタン */
  .hdr_tel{

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

  .hdr_lang{
            display: flex;
        align-items: center;
         width: 140px;
        margin-top: 0;
        margin-right: 0;
  }
  
  
  .translated-ltr .mv_txt_sub{
  width: 80%;  
  }
}
@media (min-width:1024px){

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

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

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

  }
  .header.slim .hdr_logo img{
  }
  
  .hdr_contact_btn{
     width: 160px;
  }

  /* TELボタン */
  .hdr_tel{

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

    .hdr_lang{
            display: flex;
        align-items: center;
         width: 160px;
              margin-left: 30px;
                      margin-top: 2px;
    }
}
@media (min-width:1200px){

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

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

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

  }
  .header.slim .hdr_logo img{
  }

}
@media (min-width:1720px){
  .header{
    --logo-height: 53px;
  }
}
/*******************************
*　メインビジュアル
********************************/
/* MV */
.mv{
  position: relative;
  z-index: 1;
  padding: 0 10px;
}
.mv_img{
  position: relative;
  z-index: 1;
}
.mv_img.img_fit:before{
  /*padding-top: 250px;*/
  /* 画面高さ - ヘッダー分 */
  padding-top: calc(100svh - 64px);
}
.mv_img:after{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1;
}

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

}
.mv_txt_p2{

}

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

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

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

.mv_txt_box{
  width: 100%;
  font-family: var(--font-ja);
  position: absolute;
  top: 47.5%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  z-index: 1;
  padding: 10px;
}
.mv_txt_1{
  display: flex;
  flex-wrap: wrap;
  font-size: 40px;
  font-weight: 500;
  line-height: 1.3em;
  text-shadow: 0.5px 0.866px 4.25px rgba(24, 24, 24, 1);
  color: #fff;
}
.mv_txt_1 p{
  letter-spacing: 0;
}
.mv_txt_1 .tate{

}
.mv_txt_sub{
  font-size: 14px;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: absolute;
  top: 10rem;
  left: 0;
  padding-left: 20px;
}
.mv_txt_sub p{
  letter-spacing: 0;
  background: #fff;
  padding: 9px 10px 9px 10px;
}
.mv_txt_sub p + p{
  margin-top: 8px;
}
@media (min-width:768px){

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

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

  }
  .mv_txt_p2{

  }

  .mv_txt_box{
    width: auto;
    top: 52.5%;
    padding: 0;
    z-index: 1;
  }
  .mv_txt_1{
    font-size: 52px;
  }
  .translated-ltr .mv_txt_1{
           font-size: 42px;
  }
  .mv_txt_1 .tate{
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    margin-left: 0rem;
  }
  .mv_txt_sub{
    font-size: 13px;
    top: 6rem;
  }
  .mv_txt_sub p{

  }
  .mv_txt_sub p + p{
    margin-top: 25px;
  }
}
@media (min-width:1024px){


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

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

  }
  .mv_txt_p2{

  }

  .mv_txt_1{
    font-size: 60px;
  }
  .translated-ltr .mv_txt_1{
           font-size: 48px;
  }
  .mv_txt_1 .tate{
    margin-left: 0rem;
  }
  .mv_txt_sub{
    font-size: 14px;
  }
}
@media (min-width:1200px){

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

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

  }
  .mv_txt_p2{

  }

  .mv_txt_box{

  }
  .mv_txt_1{
    font-size: 80px;
  }
  .mv_txt_1 .tate{
    margin-left: -1.5rem;
  }
  .translated-ltr .mv_txt_1{
     font-size: 80px;
  }
  .mv_txt_sub{
    font-size: 18px;
    top: 10rem;
  }
  .mv_txt_sub p{

  }
}
@media (min-width:1470px){
  .mv_txt_1 .tate{
    margin-left: -1.5rem;
  }
}
@media (min-width:1536px){

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

}


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

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

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

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


@media (min-width:768px){

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

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


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

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

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

}


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

.pg_header_title{
  position: absolute;
  z-index: 2;
  top: 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;
}




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

  .pg_header_title_txt{

  }

}
@media (min-width:1024px){
  .pg_header{
    margin-bottom: 70px;
  }
  .pg_header_mv_img.img_fit:before{
    padding-top: 350px;
  }

  .pg_header_title_txt{

  }

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

  .pg_header{
    margin-bottom: 70px;
  }
  .pg_header_mv_img.img_fit:before{
    padding-top: 350px;
  }

  .pg_header_title_txt{

  }

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

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

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

}


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

.footer{
  margin-top: 90px;
}

.ftr1{
  border-top: 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;
  font-family: var(--font-ja);
  text-align: right;
  font-weight: 700;
  background: #006050;
  border-top: 1px solid #fff;
  padding: 14px 0 24px;
  color: #fff;
}
/* 追尾スマホメニュー */
.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: 11px;
  text-align: center;
  display: block;
  padding: 10px 5px 5px;
  background: #fff;
  text-decoration: none;
  line-height: 1.2;
}
.footer_fix .footer_fix_item_1{
  width: 24%;
  border-right: 1px solid #ef7f1a;
}
.footer_fix .footer_fix_item_1.joy{
  width: 52%;
}
.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{

}
.ftr_contact_img:before{
  padding-top: 250px;
}
.ftr_contact_outer{
  background: #006050;
  padding-bottom: 50px;
}
.ftr_contact_inner{
  background: #fff;
  padding: 44px 0;
  margin-top: -60px;
  position: relative;
  z-index: 1;
}
.ftr_contact_head{
  text-align: center;
}
.ftr_contact_txt1{
  font-size:50px;;
  font-weight: 400;
  font-family: var(--font-en);
  line-height: 1;
  color: #d9e8e6;
}
.ftr_contact_txt2{
  font-size: 18px;
  font-weight: 400;
  font-family: var(--font-ja);
  letter-spacing: 0;
  margin-top: 10px;
}
.ftr_contact_head .content_desc{
  font-weight: 400;
  text-align: center;
  margin-top: 9px;
}
.ftr_contact_head .content_desc p{
  letter-spacing: 0;
}
.ftr_contact_btm{
  margin-top: 39px;
}
.ftr_contact_btm_txt1{
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--font-ja);
}
.ftr_contact_btm_txt1 p{
  display: inline-block;
  background: #d9e8e6;
  padding: 5px 45px;
}
.ftr_contact_btm .read_more{
  margin-top: 16px;
}
.ftr_contact_btm .read_more a{
  font-size: 18px;
}

.ftr_1{
  background: #006050;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  padding-top: 60px;
  padding-bottom:40px;
}
.ftr_1_box{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.ftr_1_box1{
  width: 100%;
}
.ftr_logo{

}
.ftr_add{
  font-size: 16px;
  font-weight: 700;
  font-family: var(--font-ja);
  line-height: 2.25em;
  color: #fff;
  margin-top: 30px;
}
.ftr_1_box2{
  width: 100%;
}
.ftr_1_box2 .hdr_contact_btns{
  flex-wrap: wrap;
}
.ftr_1_box2 .hdr_contact_btn{
  border-radius: 21px;
  border: 1px solid #b3b3b3;
}
.ftr_1_box2 .hdr_contact_btn.joy{
  width: 100%;
  max-width: 256px;
  background: #b7aa00;
}
.ftr_1_box2 .hdr_contact_btn.joy:hover{
  background: #dfd338;
  color: #fff;
}
.ftr_1_box2 .hdr_contact_btn.contact{
  width: 100%;
  max-width: 210px;
}
.ftr_links{

}
.ftr_link{

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

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

  body{
    padding-bottom: 56px;
  }

  .mv_txt_box{
            top: 40.5%;
  }
  .mv_txt_1{
    font-size: 48px;
  }

  .footer_fix{
    display: flex;
  }

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

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

  .ftr_1_box1{
    text-align: center;
  }
  .ftr_links{
    display: none;
  }
  .ftr_logo{
    width: 75%;
    display: block;
    margin-inline: auto;
  }
  .ftr_copy{
    text-align: center;
  }
}
@media (min-width:768px){

  .footer{
    margin-top: 100px;
  }

  .ftr_contact_wrap{

  }
  .ftr_contact_outer{
    padding-bottom: 80px;
  }
  .ftr_contact_img:before{   
    padding-top: 500px;
  }
  .ftr_contact_inner{
    margin-top: -120px;
  }
  .ftr_contact_head{

  }
  .ftr_contact_txt1{
    font-size:80px;;
  }
  .ftr_contact_txt2{
    font-size: 20px;
  }
  .ftr_contact_btm{

  }
  .ftr_contact_btm_txt1{

  }
  .ftr_contact_btm_txt1 p{

  }
  .ftr_contact_btm .read_more{

  }

  .ftr_1{
    padding-top: 134px;
    padding-bottom: 121px;
  }
  .ftr_1_box{

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

  }
  .ftr_add{
    margin-top: 47px;
  }
  .ftr_1_box2{
    width: 56.64%;
  }
  .ftr_1_box2 .hdr_contact_btns{
    justify-content: flex-end;
  }
  .ftr_1_box2 .hdr_contact_btn{
    padding: 10px;
    margin-bottom: 10px;
  }
  .ftr_links{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-left: -33px;
    margin-top: 68px;
  }
  .ftr_link{
    font-size: 16px;
    font-weight: 700;
    font-family: var(--font-ja);
    color: #fff;
    margin-left: 5px;
  }
  .ftr_link:hover{
    opacity: .5; 
    color: #fff;
  }
}
@media (min-width:1024px){
  .footer{
    margin-top: 200px;
  }

  .ftr_1_box2 .hdr_contact_btn{
    margin-bottom: 0;
    margin-left: 17px;
  }
  .ftr_link{
    margin-left: 20px;
  }
}
@media (min-width:1200px){
  .ftr_contact_wrap{

  }
  .ftr_contact_img:before{
    padding-top: 500px;
  }
  .ftr_contact_inner{
    margin-top: -120px;
  }
  .ftr_contact_head{

  }
  .ftr_contact_txt1{

  }
  .ftr_contact_txt2{

  }
  .ftr_contact_btm{

  }
  .ftr_contact_btm_txt1{

  }
  .ftr_contact_btm_txt1 p{

  }
  .ftr_contact_btm .read_more{

  }

  .ftr_1{

  }
  .ftr_1_box{

  }
  .ftr_1_box1{

  }
  .ftr_logo{

  }
  .ftr_add{

  }
  .ftr_1_box2{
    width: 48.64%;
  }
  .ftr_1_box2 .hdr_contact_btns{

  }
  .ftr_1_box2 .hdr_contact_btn{

  }
  .ftr_links{

  }
  .ftr_link{
    margin-left: 33px;
  }
}
@media (min-width:1470px){

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

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

}

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


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

}


/* テーブル用 */
.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: #FFF;
  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 #c0c0c0;
  background: #ffffff;
  font-weight: 500;
}
.webgene-pagination li.selected{
  border: 0;
  background: #e5e5e5;
}
.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: inherit;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--font-ja);
  line-height: 1.2;
  text-align: center;
  border: none;
  background: none;
  /*border-radius: 27px;*/
  color: #181818;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 1;
  transition: 0.2s all;
  display: flex;
  align-items: center;
}
.read_more a p{
  /*letter-spacing: 0;*/
  padding-right: 22px;
}
.read_more a:after{
  content: "→";
  font-weight: 900;
  font-family: "Noto Sans JP", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #006050;
  color: #fff;
  width: 48px;
  aspect-ratio:1;
  border-radius: 50%;
  position: relative;
  z-index: 1;
  top: auto;
  right: 0;
  transition: transform .2s;

}
.read_more a:hover{
  color: #181818;
  background: none;
}
.read_more a:hover:after{
  transform: translateX(10px);
}
.read_more a p{
  letter-spacing: 0;
}
.read_more.wh a{
  color: #fff;
}
.read_more.en a{
  font-size: 20px;
  font-family: var(--font-en);
}
.read_more.en p{
  letter-spacing: 0;
}
.read_more.wh a:after{
  font-size: 18px;
  background: #fff;
  color: #006050;
}


/* 見出し */
.tt2{
  text-align: center;
  margin-bottom: 30px;
}
.tt2_en{
  font-size: 32px;
  font-weight: 400;
  font-family: "Oswald", sans-serif;
  line-height: 1;
  color: #565656;
}
.tt2_ja{
  font-size: 16px;
  font-weight: 500;
  margin-top: 5px;
}

/* 文章 */
.cmn_txt{
  font-size: 16px;
  line-height: 1.875;
  text-align: justify;
}

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

/* テキストアニメーション */
.flicker-heading{
  /*  text-transform: uppercase;*/
  white-space: pre-wrap;
  visibility: hidden;
}
.gjs-dashed .flicker-heading,
.flicker-heading.is-ready{
  visibility: visible;
}

.flicker-heading .ch{
  display:inline-block;
  opacity: 1;
  will-change: opacity;
}

.flicker-heading .sp{
  display:inline-block!important;
  width: .25em;
}

/* 発火中だけアニメーションを付ける（JSが文字ごとにCSS変数を入れる） */
.flicker-heading.is-flickering .ch{
  animation-name: letterFlicker;
  animation-duration: var(--dur, 700ms);
  animation-delay: var(--delay, 0ms);
  animation-iteration-count: infinite;     /* ← JS側で“切りの良い所”で止める */
  animation-timing-function: ease-in-out;  /* 参考は緩やか */
  animation-fill-mode: both;
}

/* JSが停止させた文字（待機状態） */
.flicker-heading .ch.is-hold{
  animation: none !important;
  opacity: 1 !important;
}

/* 0→1→0→1 の2往復風。最後は1で終わる */
@keyframes letterFlicker{
  0%   { opacity: 0; }
  25%  { opacity: 1; }
  50%  { opacity: 0; }
  75%  { opacity: 1; }
  100% { opacity: 1; }
}

/* 動き軽減 */
@media (prefers-reduced-motion: reduce){
  .flicker-heading .ch{
    opacity: 1 !important;
    animation: none !important;
  }
}

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

  .read_more a{
    justify-content: center;
  }
}
@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: inherit;
    font-size: 18px;
    padding: 0;
    margin: 0;
  }
  .read_more a:after{
    right: 0;
  }
  .read_more.en a{
    font-size: 26px;

  }
  .ftr_contact_btm .read_more a{
    font-size: 18px;
  }

  /* 見出し */



  .table_rows_th{
    width: 200px;
  }
  .table_rows_td{

  }


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

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


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


  /* 文章 */
  .cmn_txt{
    font-size: 16px;
    line-height: 2.25;
  }


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

  }
}


@media (min-width:1366px){


}

@media (min-width:1470px){

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

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

}



/*******************************
*　HOME
********************************/
.translated-ltr body{
  margin-top: 0!important;
}

.pg_home{

}
.pg_home .section.sec1{
  padding-top: 60px;
  padding-bottom: 150px;
  position: relative;
}
.pg_home .section.sec1:after{
  content: "";
  display: block;
  width: 343px;
  aspect-ratio:1107 / 505;
  background-image: url(/system_panel/uploads/images/earth.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: 0rem;
  left: 50%;
  transform:translateX(-50%);
}
.pg_home .section.sec2{
  background: #006050;
  padding: 0;
  position: relative;
  z-index: 1;
}
.pg_home .section.sec3{
  padding: 100px 0;
}
.pg_home .section.sec4{

}
.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{
    padding-top: 91px;
    padding-bottom: 212px;
  }
  .pg_home .section.sec1:after{
    width: 57.65%;;
    bottom: 3rem;
  }
  .pg_home .section.sec2{

  }
  .pg_home .section.sec3{
    padding: 120px 0;
  }
  .pg_home .section.sec4{

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

  }
  .pg_home .section.sec8{

  }

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


}
@media (min-width:1200px){
  .pg_home .section.sec1{
    padding-top: 91px;
    padding-bottom: 212px;
  }
  .pg_home .section.sec1:after{
    bottom: -8rem;
  }
  .pg_home .section.sec2{

  }
  .pg_home .section.sec3{
    padding: 40px 0 78px;
  }
  .pg_home .section.sec4{

  }
  .pg_home .section.sec5{

  }
  .pg_home .section.sec6{

  }
  .pg_home .section.sec7{

  }
  .pg_home .section.sec8{

  }

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


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


}

/*main*/

/*sec1*/
.lg_en{
  font-size:clamp(5.625rem, 4.5rem + 5.63vw, 11.25rem);
  font-weight: 400;
  font-family: var(--font-en);
  line-height: 1;
}
.lg_en.lg{
  font-size:clamp(5.625rem, 4.5rem + 5.63vw, 11.25rem);
}
.lg_en.sm{
  font-size:clamp(4.375rem, 3rem + 6.88vw, 11.25rem);
}
.home_sec1_wrap .lg_en{
  font-size:clamp(4.375rem, 3rem + 6.88vw, 11.25rem);
}
.lg_en p{
  letter-spacing: 0;
}
.home_sec1_wrap .lg_en{
  text-align: right;
}
.home_sec1_wrap .lg_en{
  color: #d9e8e6;
}
.home_sec1_box{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: -1.5rem;
}
.home_sec1_box1{
  width: 100%;
  order: 2;
  margin-top: 20px;
}
.bdr_txt{
  font-size: 16px;
  font-weight: 400;
}
.bdr_txt p{
  letter-spacing: 0;
  border-top: 1px solid #d9d9d9;
  padding: 22px 5px 22px 5px;
}
.bdr_txt p:last-child{
  border-bottom: 1px solid #d9d9d9;
}
.home_sec1_box2{
  width: 100%;
  order: 1;
}
.home_sec1_box2_tt{
  font-size: 28px;
  font-weight: 400;
  font-family: var(--font-ja);
}
.home_sec1_box2_tt p{

}

/*sec2*/
.home_sec2_wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home_sec2_box1{
  width: 100%;
}
.home_sec2_box1_inner{
  margin-top: -2rem;
}
.home_sec2_box1_img:before{
  padding-top: 94.49%;
}
.home_sec2_box2{
  width: 100%;
  padding: 40px 0;
}
.home_sec2_box2 .lg_en{
  color: #fff;
  line-height: 0.6;
  text-align: right;
}
.tt_ja{
  font-size: 17px;
  font-weight: 600;
  font-family: var(--font-ja);
  letter-spacing: 0;
}
.home_sec2_box2 .tt_ja{
  color: #fff;
  text-align: right;
  margin-top: 27px;
}
.home_sec2_box2_items{
  margin-top: 50px;
}
.home_sec2_box2_item{
  border-bottom: 1px solid #fff;
  padding-bottom: 46px;
}
.home_sec2_box2_item + .home_sec2_box2_item{
  margin-top: 50px;
}
.home_sec2_box2_item_tt{
  display: flex;
  align-items: center;
}
.home_sec2_box2_item_tt_num{
  font-size: 36px;
  font-weight: 400;
  font-family: var(--font-en);
  line-height: 1;
  letter-spacing: 0;
  color: #006050;
  width: 70px;
  aspect-ratio:1;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  padding-top: 5px;
}
.home_sec2_box2_item_tt_h3{
  font-size: 20px;
  font-weight: 600;
  font-family: var(--font-ja);
  letter-spacing: 0;
  color: #fff;
}
.content_desc{
  font-size: 16px;
  font-weight: 500;
  line-height: 2.25em;
  text-align: justify;
}
.translated-ltr .content_desc{
  text-align: left;
}
.content_desc.fw400{
  font-weight: 400;
}
.home_sec2_box2_item .content_desc{
  color: #fff;
  margin-top: 10px;
}
.home_sec2_box2_item .read_more{

}
.home_sec2_box3{
  width: 100%;
}
.home_sec2_box3_inner{
  margin-bottom: -2.5rem;
}
.home_sec2_box3_img:before{
  padding-top: 84.8%;
}

.home_sec2_box2_links{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 17px;
}
.est_btn{
  display: block;
  width: 100%;
  max-width: 220px;
  background: #fff;
  border-radius: 19px;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font-ja);
  padding: 9px 0;
  transition: all .2s;
}
.est_btn:hover{
  background: #a40000;
  color: #fff;
}
.home_sec2_box2_links .read_more{

}

/*sec3*/
.home_sec3_wrap{

}
.home_sec3_wrap .lg_en{
  line-height: 0.68;
  color: #d9e8e6;
}
.home_sec3_wrap .lg_en p{

}
.home_sec3_wrap .lg_en p:first-child{
  padding-left: 40px;
}
.home_sec3_wrap .tt_ja{

}
.home_sec3_box_img{

}
.home_sec3_box_img img{

}
.home_sec3_box_img:before{
  padding-top: 1050px;
}
.home_sec3_box{
  position: relative;
  margin-top: 30px;
}
.home_sec3_items{
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  gap:0;
  z-index: 1;
}
.home_sec3_item{
  width: 100%;
  position: relative;
  color: #fff;
  padding: 16px;
}
.home_sec3_item:before{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1;
  transition: all .2s;
}
.home_sec3_item:hover:before{
  background: rgba(0, 0, 0, 0.5);
}
.home_sec3_item_inner{
  position: relative;
  z-index: 2;
  border: 1px solid #fff;
  height: 100%;
  padding: 33px 5px 0;
}
.gjs-dashed .home_sec3_item_inner{
  height: auto;
}
.home_sec3_item_num{
  font-size: 32px;
  font-weight: 400;
  font-family: var(--font-en);
  line-height: 1;
  letter-spacing: 0.05em;
  text-align: center;
}
.home_sec3_item_h3{
  font-size: 22px;
  font-weight: 500;
  font-family: var(--font-ja);
  letter-spacing: 0;
  text-align: center;
  margin-top: 5px;
}
.home_sec3_item .content_desc{
  line-height: 1.75em;
  text-align: center;
  margin-top: 19px;
}

/*sec4*/
.home_sec2_box2_tt_outer.center{
  text-align: center;
  margin-right: 0;
}
.home_sec4_wrap .home_sec2_box2_tt_outer{
  margin-bottom: 30px;
}
.home_sec4_wrap .lg_en{
  line-height: 0.8;
}
.home_sec2_box2_tt_outer.gr .lg_en{
  color: #d9e8e6;
}
.home_sec4_wrap .tt_ja{
  font-weight: 400;
}
.product_list{

}
.product_list .webgene-blog{
  display: flex;
  flex-wrap: wrap;
  margin-inline:-5px;
}
.product_list .webgene-item{
  width: 50%;
  padding-inline:5px;
}
.product_list .webgene-item:nth-child(n+3){
  margin-top: 10px;;
}
.product_list .webgene-item a{
  display: block;
  background: #006050;
  height: 100%;
  color: #fff;
  padding: 5px;
  position: relative;
}
.product_list .webgene-item a:after{
  content: "→";
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #006050;
  width: 48px;
  aspect-ratio: 1;
  border-radius: 50%;
  position: absolute;
  z-index: 1;
  bottom: 20px;
  right: 9px;
  transition: transform .2s;
}
.product_list .webgene-item .box2{
  margin-top: 15px;
  padding: 0 10px 75px;
}
.product_list .webgene-item .img:before{
  padding-top: 69.23%;
}
.product_list .webgene-item .title{
  font-size: 17px;
  font-weight: 600;
  font-family: var(--font-ja);
  line-height: 1.55em;
}
.product_list .webgene-item .desc:before{
  content: "";
  display: block;
  width: 78px;
  height: 1px;
  background: #fff;
  margin-bottom: 14px;
}
.product_list .webgene-item .desc{
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55em;
  margin-top: 13px;
}
.home_sec4_wrap .read_more{
  margin-top: 26px;
}

/*sec5*/
.home_sec5_wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home_sec5_box1{
  width: 100%;
}
.home_sec5_box1_img:before{
  padding-top: 122.1%;
}
.home_sec5_box2{
  width: 100%;
  margin-top: 20px;
}
.home_sec5_box2 .home_sec2_box2_tt_outer{
  text-align: right;
  margin-right: 0;
}
.home_sec5_box2 .lg_en{
  line-height: 0.68;
  color: #d9e8e6;
}
.home_sec5_box2_sub{
  font-size: 17px;
  font-weight: 600;
  font-family: var(--font-ja);
  letter-spacing: 0;
  text-align: center;
  margin-top: 20px;
}
.home_sec5_box2 .content_desc{
  margin-top: 18px;
}
.home_sec5_box2 .read_more{
  margin-top: 19px;
}

/*sec6*/
.home_sec6_top{

}
.home_sec6_top .home_sec2_box2_tt_outer{

}
.home_sec6_top .lg_en{
  line-height: 0.8;
  color: #d9e8e6;
  margin-left: -13px;
}
.home_sec6_top .read_more{

}
.home_sec6_btm{
  margin-top: 22px;
}
.news_list .webgene-blog{

}
.news_list .webgene-item{

}
.news_list .webgene-item:last-child a{
  border-bottom: 1px solid #d9d9d9;
}
.news_list .webgene-item a{
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #d9d9d9;
  padding: 10px 0;
}
.news_list .webgene-item .date{
  font-size: 16px;
  font-weight: 400;
  font-family: var(--font-ja);
  letter-spacing: 0.075em;
  line-height: 1.57em;
  text-align: center;
}
.news_list .webgene-item .category{
  font-size: 15px;
  font-weight: 400;
  font-family: var(--font-ja);
  letter-spacing: 0.075em;
  display: inline-block;
  border: 1px solid #006050;
  padding: 0 16px;
}
.news_list .webgene-item .box{
  width: 80.05%;
}
.news_list .webgene-item .title{
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.075em;
  margin-top: 10px;
}

.news_list.kasou{

}
.news_list.kasou .webgene-item{

}
.news_list.kasou .webgene-item:nth-last-child(2) a{
  border-bottom: 1px solid #d9d9d9;
}
.news_list.kasou .webgene-item .box{
  width: 80%;
}
.news_list.kasou .webgene-item .date{
  width: 8.8%;
}
.news_list.kasou .webgene-item .category{
  padding: 0 7px;
}
@media (max-width:374px){

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

}
@media (max-width:767px){
  .home_sec2_box2_links{
    flex-wrap: wrap;
    justify-content: center;
  }
  .home_sec2_box1_inner{

  }

  .est_btn{
    width: 100%;
    max-width: 350px;
  }
}
@media (min-width:768px){
  /*sec1*/
  .lg_en{

  }
  .lg_en p{

  }
  .home_sec1_wrap .lg_en{
    text-align: right;
  }
  .home_sec1_box{
    margin-top: -2.5rem;
  }
  .home_sec1_box1{
    margin-top: 30px;
  }
  .bdr_txt{
    font-size: 14px;
  }
  .bdr_txt p{
    padding: 22px 10px 22px 30px;
  }
  .home_sec1_box1 .read_more{
    margin-top: 98px;
  }
  .home_sec1_box2{

  }
  .home_sec1_box2_tt{
    font-size: 50px;
  }
  .home_sec1_box2_tt p{

  }

  /*sec2*/
  .home_sec2_wrap{

  }
  .home_sec2_box1{

  }
  .home_sec2_box1_inner{
    margin-top: -6rem;
  }
  .home_sec2_box1_img:before{

  }
  .home_sec2_box2{
    padding: 40px 0;
  }
  .home_sec2_box2 .lg_en{

  }
  .tt_ja{
    font-size: 20px;
  }
  .home_sec2_box2 .tt_ja{
    margin-top: 27px;
  }
  .home_sec2_box2_items{
    margin-top: 41px;
  }
  .home_sec2_box2_item{
    padding-bottom: 31px;
  }
  .home_sec2_box2_item + .home_sec2_box2_item{
    margin-top: 30px;
  }
  .home_sec2_box2_item_tt{

  }
  .home_sec2_box2_item_tt_num{
    font-size: 46px;
    margin-right: 21px;
  }
  .home_sec2_box2_item_tt_h3{
    font-size: 30px;
  }
  .content_desc{

  }
  .home_sec2_box2_item .content_desc{

  }
  .home_sec2_box2_item .read_more{
    margin-top: 21px;
  }
  .home_sec2_box3{

  }
  .home_sec2_box3_inner{
    margin-bottom: -3.5rem;
  }
  .home_sec2_box2_links{

  }
  .est_btn{

  }
  .home_sec2_box2_links .read_more{

  }

  /*sec3*/
  .home_sec3_wrap{

  }
  .home_sec3_wrap .lg_en{

  }
  .home_sec3_wrap .lg_en p{

  }
  .home_sec3_wrap .lg_en p:first-child{
    padding-left: 93px;
  }
  .home_sec3_wrap .tt_ja{

  }
  .home_sec3_box_img{

  }
  .home_sec3_box_img img{

  }
  .home_sec3_box_img:before{
    padding-top: 900px;
  }
  .home_sec3_box{
    margin-top: 47px;
  }
  .home_sec3_items{

  }
  .home_sec3_item{

  }
  .home_sec3_item_inner{
    padding: 15px 0 0 0;
  }
  .home_sec3_item_num{
    font-size: 30px;
  }
  .home_sec3_item_h3{
    font-size: 22px;
  }
  .home_sec3_item .content_desc{

  }

  /*sec4*/
  .home_sec4_wrap .tt_ja{
    font-size: 16px;
    font-weight: 400;

  }
  .home_sec4_wrap .home_sec2_box2_tt_outer{
    margin-bottom: 47px;
  }
  .product_list{

  }
  .product_list .webgene-blog{
    margin-inline:-4.5px;
  }
  .product_list .webgene-item{
    padding-inline:4.5px;
  }
  .product_list .webgene-item:nth-child(n+3){
    margin-top: 10px;;
  }
  .product_list .webgene-item .box2 {
    margin-top: 15px;
    padding: 0 10px 40px;
  }
  .product_list .webgene-item a{

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

  }
  .product_list .webgene-item .title{
    font-size: 18px;
  }
  .product_list .webgene-item .desc{

  }

  /*sec5*/
  .home_sec5_wrap{

  }
  .home_sec5_box1{

  }
  .home_sec5_box1_img:before{

  }
  .home_sec5_box2{
    margin-top: 30px;
  }
  .home_sec5_box2 .home_sec2_box2_tt_outer{

  }
  .home_sec5_box2 .lg_en{

  }
  .home_sec5_box2_sub{
    font-size: 22px;
    margin-top: 47px;
  }
  .home_sec5_box2 .content_desc{

  }
  .home_sec5_box2 .read_more{

  }

  /*sec6*/
  .tt_ja.sm{
    font-size: 16px;
  }
  .home_sec6_top{
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .home_sec6_top .home_sec2_box2_tt_outer{

  }
  .home_sec6_top .read_more{
    margin-top: 76px;
  }
  .home_sec6_btm{

  }
  .news_list .webgene-blog{

  }
  .news_list .webgene-item{

  }
  .news_list .webgene-item a{
    justify-content: space-between;
    padding: 27px 0;
  }
  .news_list .webgene-item .date{
    font-size: 19px;
    width: 6.8%;
    padding-left: 19px;
  }
  .news_list .webgene-item .box{
    width: 85.05%;
  }
  .news_list .webgene-item .category{

  }
  .news_list .webgene-item .title{

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

  }
  .lg_en p{

  }
  .home_sec1_wrap .lg_en{
    text-align: right;
    margin-right: 0;
  }
  .home_sec1_box{
    justify-content: space-between;
    margin-top: -3.5rem;
  }
  .home_sec1_box1{
    width: 81.17%;
    padding-top: 78px;
    order: 1;
    margin-top: 0;
  }
  .bdr_txt{
    font-size: 16px;
  }
  .bdr_txt p{
    padding: 22px 10px 22px 30px;
  }
  .home_sec1_box2{
    width: 14.41%;
    order: 2;
  }
  .home_sec1_box2_tt{
    font-size: 50px;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    position: relative;
    right: -26px;
  }
  .home_sec1_box2_tt p{

  }
  .home_sec1_box2_tt.tate p:last-child{
    padding-top: 104px;
  }

  /*sec2*/
  .home_sec2_wrap{

  }
  .home_sec2_box1{
    width: 25.68%;
  }
  .home_sec2_box1_inner{
    margin-left: var(--margin-for-device-side);
    margin-top: -6rem;
  }
  .home_sec2_box1_img:before{

  }
  .home_sec2_box2{
    width: 47.05%;
    padding: 40px 0 64px;
  }
  .home_sec2_box2 .lg_en{

  }
  .tt_ja{

  }
  .home_sec2_box2 .tt_ja{

  }
  .home_sec2_box2_tt_outer{
    margin-right: -10rem;
  }
  .home_sec2_box2_items{

  }
  .home_sec2_box2_item{

  }
  .home_sec2_box2_item_tt{

  }
  .home_sec2_box2_item_tt_num{
    font-size: 46px;
  }
  .home_sec2_box2_item_tt_h3{
    font-size: 30px;
  }
  .content_desc{

  }
  .home_sec2_box2_item .content_desc{

  }
  .home_sec2_box2_item .read_more{

  }
  .home_sec2_box3{
    width: 21.5%;
    align-self: flex-end;
  }
  .home_sec2_box3_inner{
    margin-right: var(--margin-for-device-side);
    margin-bottom: -8.5rem;
  }
  .home_sec2_box2_links{

  }
  .est_btn{
    margin-top: 16px;
  }
  .home_sec2_box2_links .read_more{
    margin-top: 0;
  }

  /*sec3*/
  .home_sec3_wrap{

  }
  .home_sec3_wrap .lg_en{

  }
  .home_sec3_wrap .lg_en p{

  }
  .home_sec3_wrap .tt_ja{

  }
  .home_sec3_box_img{
    position: relative;
    z-index: 0;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center top;
    aspect-ratio: 1110 / 482;
  }
  .home_sec3_box_img 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_sec3_box{

  }
  .home_sec3_items{
    gap:2px;
  }    
  .home_sec3_item{
    width: calc(50% - 1px);
  }
  .home_sec3_item_inner{
    padding-top: 15px;
  }
  .home_sec3_item_num{

  }
  .home_sec3_item_h3{

  }
  .home_sec3_item .content_desc{

  }

  /*sec4*/
  .product_list{

  }
  .product_list .webgene-blog{

  }
  .product_list .webgene-item{
    width: 25%;
  }
  .product_list .webgene-item:nth-child(n+3){
    margin-top: 0;
  }
  .product_list .webgene-item .box2 {
    margin-top: 15px;
    padding: 0 10px 74px;
  }
  .product_list .webgene-item a{

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

  }
  .product_list .webgene-item .title{

  }
  .product_list .webgene-item .desc{

  }

  /*sec5*/
  .home_sec5_wrap{

  }
  .home_sec5_box1{
    width: 42.79%;
  }
  .home_sec5_box1_img:before{

  }
  .home_sec5_box2{
    width: 51.35%;
    padding-top: 17px;
    margin-top: 0;
  }
  .home_sec5_box2 .home_sec2_box2_tt_outer{

  }
  .home_sec5_box2 .lg_en{

  }
  .home_sec5_box2_sub{

  }
  .home_sec5_box2 .content_desc{

  }
  .home_sec5_box2 .read_more{

  }

  /*sec6*/
  .home_sec6_top{

  }
  .home_sec6_top .home_sec2_box2_tt_outer{

  }
  .home_sec6_top .read_more{

  }
  .home_sec6_btm{

  }
  .news_list .webgene-blog{

  }
  .news_list .webgene-item{

  }
  .news_list .webgene-item a{

  }
  .news_list .webgene-item .date{

  }
  .news_list .webgene-item .category{

  }
  .news_list .webgene-item .title{

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

  }
  .lg_en p{

  }
  .home_sec1_wrap .lg_en{
    text-align: right;
    margin-right: 0;
  }
  .home_sec1_box{
    justify-content: flex-end;
  }
  .home_sec1_box1{
    width: 71.17%;
  }
  .bdr_txt{

  }
  .bdr_txt p{

  }
  .home_sec1_box2{

  }

  .home_sec1_box2_tt{

  }
  .home_sec1_box2_tt p{

  }

  /*sec2*/
  .home_sec2_box1{
    width: 25.68%;
  }
  .home_sec2_box2{
    width: 47.05%;
  }
  .home_sec2_box3{
    width: 21.5%;
  }
  .home_sec2_box2_tt_outer{
    margin-right: -10rem;
  }

  /*sec3*/
  .home_sec3_wrap{

  }
  .home_sec3_wrap .lg_en{
    margin-left: -10px;
  }
  .home_sec3_wrap .lg_en p{

  }
  .home_sec3_wrap .tt_ja{

  }
  .home_sec3_box_img{
    position: relative;
    z-index: 0;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center top;
    aspect-ratio: 1110 / 482;
  }
  .home_sec3_box_img 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_sec3_box{

  }
  .home_sec3_items{
    gap:2px;
  }
  .home_sec3_item{
    width: calc(50% - 1px);
  }
  .home_sec3_item_inner{
    padding-top: 30px;
  }
  .home_sec3_item_num{

  }
  .home_sec3_item_h3{

  }
  .home_sec3_item .content_desc{

  }
}
@media (min-width:1470px){
  .home_sec1_wrap .lg_en{
    text-align: right;
    margin-right: -9rem;
  }

  /*sec2*/
  .home_sec2_box1{
    width: 25.68%;
  }
  .home_sec2_box2{
    width: 54.05%;
  }
  .home_sec2_box3{
    width: 8.5%;
  }


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


}


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

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

}
.pg_about .section.sec1{

}
.pg_about .section.sec2{

}
.pg_about .section.sec3{

}
.pg_about .section.sec4{
  background: #006050;
  padding: 28px 0;
}
.pg_about .section.sec5{

}
.pg_xxx .section.sec6{

}


@media (max-width:374px){

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

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

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

  }
  .pg_about .section.sec1{
    padding-top: 75px;
  }
  .pg_about .section.sec2{
    padding-top: 34px;
  }
  .pg_about .section.sec3{
    padding-bottom: 94px;
  }
  .pg_about .section.sec4{
    padding: 28px 0;
  }
  .pg_about .section.sec5{

  }
  .pg_xxx .section.sec6{

  }

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


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

  }
  .pg_about .section.sec1{

  }
  .pg_about .section.sec2{

  }
  .pg_about .section.sec3{

  }
  .pg_about .section.sec4{
    padding: 28px 0 80px;
  }
  .pg_about .section.sec5{

  }
  .pg_xxx .section.sec6{

  }

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


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


}

/* メイン部分 */

/*sec1*/
.about_sec1_wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.about_sec1_box1{
  width: 100%;
  order: 3;
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.about_sec1_box1_img:before{
  padding-top: 76.31%;
}
.about_sec1_box1_img{
  width: 48%;
}
.about_sec1_box2{
  width: 100%;
  order: 2;
}
.about_sec1_box3 .home_sec1_box2_tt{
  font-size: 26px;
}
.about_sec1_box2_items{

}
.about_sec1_box2_item{

}
.about_sec1_box2_item + .about_sec1_box2_item{
  margin-top: 23px;
}
.about_sec1_box3{
  order: 1;
  margin-bottom: 30px;
}
.about_sec1_box3 .home_sec1_box2_tt{
  font-weight: 600;
}
.about_sec1_box3 .home_sec1_box2_tt p{
  letter-spacing: 0.075em;
}
.about_sec1_box2_item_tt{
  font-size: 19px;
  font-weight: 600;
  font-family: var(--font-ja);
  letter-spacing: 0.075em;
  margin-bottom: 8px;
}
.about_sec1_box2_item .content_desc{

}

/*sec2*/
.lg_en.gr{
  color: #d9e8e6;
}
.about_sec2_wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.about_sec2_box1{
  width: 100%;
}
.about_sec2_box1 .content_desc{
  margin-top: 20px;
}
.about_sec2_box1 .content_desc p{
  letter-spacing: 0;
}
.sign{
  text-align: right;
  margin-top: 17px;
}
.about_sec2_box2{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 30px;;
}
.about_sec2_box2_img{
  width: 48%;
}
.about_sec2_box2_img + .about_sec2_box2_img{

}
.about_sec2_box2_img:first-child:before{
  padding-top: 177.14%;
}
.about_sec2_box2_img:last-child:before{
  padding-top: 97.14%;
}

/*sec3*/
.about_sec3_tt{

}
.about_sec3_tt .lg_en p:first-child{
  padding-left: 30px;
}
.about_sec3_tt .lg_en{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.lg_en.center{
  text-align: center;
}
.lg_en.double{
  line-height: 0.65em;
}
.about_sec3_tt .tt_ja{

}
.content_desc.box{
  margin-top: 31px;
}
.content_desc.box p{
  letter-spacing: 0;
}

.about_sec3_items{
  display: flex;
  flex-wrap: wrap;
  /*  gap:30px 0;*/
  margin-top: 40px;
}
.about_sec3_item{
  width: 100%;

}
.about_sec3_item_inner{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.about_sec3_item:nth-child(n+2){
  margin-top: 50px;
}
.about_sec3_item_box1{
  width: 100%;
}
.about_sec3_item_box1_img_outer{
  position: relative;
}
.about_sec3_item_box1_img_outer:after{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #006050;
  position: absolute;
  top: 10px;
  left: 10px;
}
.about_sec3_item_box1_img{

}
.about_sec3_item_box1_img:before{
  padding-top: 65.3%; 
}
.about_sec3_item_box1_tt{
  font-size: 21px;
  font-weight: 600;
  font-family: var(--font-ja);
  letter-spacing: 0.05em;
  margin-top: 24px;
}
.about_sec3_item_box1 .content_desc{
  line-height: 1.875em;
  margin-top: 11px;
}
.about_sec3_item_box1 .content_desc p{
  letter-spacing: 0;
}
.about_sec3_item_box2{
  width: 100%;
}
.about_sec3_item_box1_en{
  font-size: 30px;
  font-weight: 400;
  line-height: 1;
  font-family: var(--font-en);

}
.about_sec3_item_box1_en p{
  letter-spacing: 0;
}


/*sec4*/
.about_sec4_tt{
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: flex-end;
  color: #fff;
}
.about_sec4_tt .tt_ja{

}
.about_sec4_tt .lg_en{

}
.about_sec4_tt .lg_en p:first-child{
  text-align: right; 
}
.about_sec4_items{
  background: #fff;
  display: flex;
  flex-wrap: wrap;
  gap:30px 0;
  padding: 13px 13px 25px;
  margin-top: 25px;
}
.about_sec4_item{
  width: 100%;
}
.about_sec4_item_img:before{
  padding-top: 77.84%;
}
.about_sec4_item .about_sec3_item_box1_tt{
  margin-top: 7px;
  letter-spacing: 0;
}
.about_sec4_item .content_desc{
  margin-top: 10px;
  line-height: 1.875em;
}
.about_sec4_item .content_desc p{
  letter-spacing: 0;
}

/*sec3*/
.service_sec3_wrap{

}
.service_item{

}
.service_item_top{

}
.service_item_top_box1{

}
.service_item_top_box1_img:before{

}
.service_item_top_box2{

}
.service_item_top_box2_tt{

}
.service_item_top_box2_tt1{

}
.service_item_top_box2_tt{

}
.home_sec2_box2_item_tt_h3{

}
.service_item_top_box2 .content_desc{

}

.service_sec5_tbl{

}
.service_sec5_tbl .table_rows_tr:nth-child(odd) .table_rows_td{
  background: #f4f4f4;
}
.service_sec5_tbl .table_rows_th:nth-child(1){
  width: 380px;
  background: #e2eeec;
}
.service_sec5_tbl .table_rows_th:nth-child(2){
  width: 221px;
  background: #e5e5e5;
}
.service_sec5_tbl .table_rows_th:nth-child(3){
  width: 416px;
  background: #f5f3f3;
}
.service_sec5_tbl .table_rows_th:nth-child(4){
  width: 95px;
  background: #eaeff6;
  border-right: 1px solid #006050;
}
.service_sec5_tbl .table_rows_th,
.service_sec5_tbl .table_rows_td{
  border-color: #006050;
}
.service_sec5_tbl .table_rows_th{
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  padding: 12px 0;
}
.service_sec5_tbl .table_rows_th p{
  letter-spacing: 0.05em;
}
.service_sec5_tbl .table_rows_td{
  font-size: 15px;
  font-weight: 500;
  line-height: 1.86em;
  vertical-align: middle;
  padding: 12px 15px;
}
.service_sec5_tbl .table_rows_td p{
  letter-spacing: 0;
}
.service_sec5_tbl .table_rows_td:nth-child(1){
  border-left: 1px solid #006050;
}
.service_sec5_tbl .table_rows_td:nth-child(2){
  text-align: center;
  padding: 12px 5px;
}
.service_sec5_tbl .table_rows_td:nth-child(4){
  padding: 10px 0;

}
.side_link{
  display: block;
  width: 80px;
  background: #a40000;
  color: #fff;
  border-radius: 13px;
  font-size: 14px;
  font-weight: 500;
  margin-inline:auto;
  text-align: center;
  border: 1px solid #a40000;
  transition: all .2s;
  line-height: 1;
  padding: 5px 0;
}
.side_link[href=""] {
  display: none;
}
.side_link p{
  letter-spacing: 0;
}
.side_link:hover{
  background: #fff;
  color: #a40000;
}
@media (max-width:767px){
  .about_sec3_tt .tt_ja{
    padding-left: 27px;
  }

  .about_sec3_item_box1{
    order: 2;
    margin-top: 10px;
  }
  .about_sec3_item_box2{
    order: 1;
  }

  .about_sec4_tt .tt_ja{
    font-size: 14px;
  }

  .about_sec4_wrap .lg_en{
    font-size: clamp(4.375rem, 3rem + 6.88vw, 11.25rem);
  }

  .about_sec2_box2_img{
    width: 90%;
    margin-inline: auto;
  }
  .about_sec4_item .about_sec3_item_box1_tt{
    font-size: 24px;
  }
}
@media (min-width:768px){
  /*sec1*/
  .about_sec1_wrap{

  }
  .about_sec1_box1{
    display: block;
    width: 34.23%;
    margin-top: 0;
    order: 2;
  }
  .about_sec1_box1_img{
    width: 100%;
  }
  .about_sec1_box1_img:before{

  }
  .about_sec1_box1_img + .about_sec1_box1_img{
    margin-top: 15px;
  }
  .about_sec1_box3 .home_sec1_box2_tt{
    font-size: 50px;
  }
  .about_sec1_box2{
    width: 58.79%;
    order: 3;
  }
  .about_sec1_box2_items{

  }
  .about_sec1_box2_item{

  }
  .about_sec1_box2_item_tt{
    font-size: 21px;
  }
  .about_sec1_box2_item .content_desc{

  }
  .about_sec1_box3{
    order: 1;
  }

  /*sec2*/
  .about_sec2_wrap{

  }
  .about_sec2_box1{

  }
  .about_sec2_box1 .tt_ja{
    margin-top: -16px;
  }
  .about_sec2_box1 .lg_en{
    margin-left: -16px;
  }
  .about_sec2_box1 .content_desc{
    margin-top: 45px;
  }
  .sign{

  }
  .about_sec2_box2{
    margin-top: 30px;
  }
  .about_sec2_box2_img + .about_sec2_box2_img{
  }
  .about_sec2_box2_img:first-child:before{

  }
  .about_sec2_box2_img:last-child:before{

  }

  /*sec3*/
  .about_sec3_tt{
    max-width: 54%;
    width: 100%;
    margin-inline:auto;
  }
  .about_sec3_tt .lg_en p:first-child{
    padding-left: 106px;
  }
  .lg_en.double{

  }
  .about_sec3_tt .tt_ja{
    margin-top: 7px;
    padding-left: 20px;

  }
  .content_desc.box{

  }

  .about_sec3_items{
    margin-top: 57px;
  }
  .about_sec3_item{

  }
  .about_sec3_item:nth-child(n+2){
    margin-top: 60px;
  }
  .about_sec3_item_box1{
    width: 90.74%;
  }
  .about_sec3_item_box1_img_outer{

  }
  .about_sec3_item_box1_img{

  }
  .about_sec3_item_box1_img:before{

  }
  .about_sec3_item_box1_tt{
    font-size: 24px;
    margin-top: 21px;
  }
  .about_sec3_item_box1 .content_desc{

  }
  .about_sec3_item_box2{
    width: 6.6%;
  }
  .about_sec3_item_box1_en{
    font-size: 42px; 
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
  }

  /*sec4*/
  .about_sec4_tt{

  }
  .about_sec4_tt .tt_ja{
    padding: 10px 0px 10px 0;
    margin-right: -29px;
  }
  .about_sec4_tt .lg_en{

  }
  .about_sec4_items{
    gap:60px 0;
  }
  .about_sec4_item{

  }
  .about_sec4_item_img:before{

  }
  .about_sec3_item_box1_tt{

  }
  .about_sec4_item .content_desc{

  }

  /*sec3*/
  .service_sec3_wrap{

  }
  .service_item{

  }
  .service_item_top{

  }
  .service_item_top_box1{

  }
  .service_item_top_box1_img:before{

  }
  .service_item_top_box2{

  }
  .service_item_top_box2_tt{

  }
  .service_item_top_box2_tt1{

  }
  .service_item_top_box2_tt{

  }
  .home_sec2_box2_item_tt_h3{

  }
  .service_item_top_box2 .content_desc{

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

  }
  .about_sec1_box1{
    width: 34.23%;
    padding-top: 7px;
    order: 1;
  }
  .about_sec1_box1_img:before{

  }
  .about_sec1_box1_img + .about_sec1_box1_img{

  }
  .about_sec1_box2{
    width: 42.79%;
    order: 2;
    margin-left: 31px;
  }
  .about_sec1_box2_items{

  }
  .about_sec1_box2_item{

  }
  .about_sec1_box2_item_tt{
    font-size: 21px;
   margin-right: -20px;
  }
  .about_sec1_box3 .home_sec1_box2_tt{
    line-height: 1.8em;
    position: relative;
    right: 0;
  }
  .about_sec1_box2_item .content_desc{

  }
  .about_sec1_box3{
    width: 14.41%;
    order: 3;
    margin-bottom: 0;
  }

  /*sec2*/
  .about_sec2_wrap{

  }
  .about_sec2_box1{
    width: 65.75%;
  }
  .about_sec2_box1 .content_desc{
    padding-right: 11px;
  }
  .sign{

  }
  .about_sec2_box2{
    display: block;
    width: 31.53%;
    padding-top: 21px;
    margin-top: 0;
  }
  .about_sec2_box2_img{
    width: 100%;
  }
  .about_sec2_box2_img + .about_sec2_box2_img{
    margin-top: 19px;
  }
  .about_sec2_box2_img:first-child:before{

  }
  .about_sec2_box2_img:last-child:before{

  }

  /*sec3*/
  .about_sec3_tt{

  }
  .lg_en.double{

  }
  .about_sec3_tt .tt_ja{

  }
  .content_desc.box{
    width: 100%;
    line-height: 1.875em;
    max-width: 928px;
    margin-inline:auto;
  }

  .about_sec3_items{

  }
  .about_sec3_item{

  }
  .about_sec3_item_box1{

  }
  .about_sec3_item_box1_img_outer{

  }
  .about_sec3_item_box1_img{

  }
  .about_sec3_item_box1_img:before{

  }
  .about_sec3_item_box1_tt{
    font-size: 24px;
  }
  .about_sec3_item_box1 .content_desc{

  }
  .about_sec3_item_box2{
    padding-top: 7px;
  }
  .about_sec3_item_box1_en{

  }

  /*sec4*/
  .about_sec4_tt{

  }
  .about_sec4_tt .tt_ja{

  }
  .about_sec4_tt .lg_en{

  }
  .about_sec4_items{
    gap:0 39px;
  }
  .about_sec4_item{
    width: calc(33.33% - 26px);
  }
  .about_sec4_item_img:before{

  }
  .about_sec3_item_box1_tt{

  }
  .about_sec4_item .content_desc{

  }
  .service_sec5_tbl .table_rows_th:nth-child(4){
    width: auto;
  }

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

  }
  .about_sec1_box1{

  }
  .about_sec1_box1_img:before{

  }
  .about_sec1_box1_img + .about_sec1_box1_img{

  }
  .about_sec1_box2{

  }
  .about_sec1_box2_items{

  }
  .about_sec1_box2_item{

  }

  .about_sec3_items{
    /*    gap:30px;*/
    margin-inline:-15px;
  }
  .about_sec3_item{
    /*    width: calc(50% - 15px);*/
    width: 50%;
    padding-inline:15px;
  }
  .about_sec3_item:nth-child(n+2){
    margin-top: 0;
  }
  .about_sec3_item:nth-child(n+3){
    margin-top: -15px;
  }
  .about_sec3_item:nth-child(even){
    margin-top: 120px;
  }
}
@media (min-width:1470px){


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


}




/*******************************
*　service
********************************/

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

}
.pg_service .section.sec1{

}
.pg_service .section.sec2{

}
.pg_service .section.sec3{
  background: #006050;
}
.pg_service .section.sec4{

}
.pg_service .section.sec5{

}
.pg_service .section.sec6{

}


@media (max-width:374px){

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

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

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

  }
  .pg_service .section.sec1{
    padding-top: 55px;
  }
  .pg_service .section.sec2{
    padding-bottom: 94px;
  }
  .pg_service .section.sec3{
    padding-top: 50px;
    padding-bottom: 100px;
  }
  .pg_service .section.sec4{
    padding-top: 80px;
  }
  .pg_service .section.sec5{
    padding-top: 76px;
  }
  .pg_service .section.sec6{

  }

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


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

  }
  .pg_service .section.sec1{

  }
  .pg_service .section.sec2{
    padding-top: 0;
  }
  .pg_service .section.sec3{

  }
  .pg_service .section.sec4{

  }
  .pg_service .section.sec5{

  }
  .pg_service .section.sec6{

  }

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


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


}

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

}
.home_sec1_box2_tt.yoko{

}
.service_sec1_wrap .home_sec1_box2_tt{
  font-size: 24px;
  line-height: 1.8em;
  font-weight: 600;
}
.service_sec1_wrap .home_sec1_box2_tt p{
  letter-spacing: 0.075em;
}
.service_sec1_wrap .content_desc{
  font-weight: 400;
  margin-top: 28px;
}

/*sec2*/
.service_sec2_wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.service_sec2_box1{
  width: 100%;
}
.service_sec2_box1_tt{

}
.service_sec2_box1_tt .lg_en{
  margin-left: -16px;
}
.service_sec2_box1_tt .lg_en p:first-child{
  padding-left: 3rem;
}
.service_sec2_box1_tt .tt_ja{
  margin-top: 10px;
}
.service_sec2_box1 .home_sec2_box2_item_tt_h3{
  color: #181818;
  line-height: 1.66em;
  margin-top: 20px;
}
.service_sec2_box1 .content_desc{
  margin-top: 20px;
}
.service_sec2_box1 .content_desc p{
  letter-spacing: 0.05em;
}
.service_sec2_box2{
  width: 100%;
  margin-top:20px;;
}
.service_sec2_box2_img:before{
  padding-top: 126.57%;
}

/*sec3*/
.service_sec3_wrap{

}
.service_item{

}
.service_item_top{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.service_item_top_box1{
  width: 100%;
}
.service_item_top_box1_img:before{
  padding-top: 128.31%;
}
.service_item_top_box2{
  width: 100%;
  margin-top: 20px;
}
.service_item_top_box2_tt{
  text-align: right;
  color: #fff;
  width: fit-content;
  margin-left: auto;
}
.service_item_top_box2_tt.bk{
  color: #181818;
}
.service_item_top_box2_tt1{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.lg_en.sub{
  margin-top: -1.5rem;
}
.service_item_top_box2_tt{

}

.service_item_top_box2_tt .tt_ja{
  padding-left: 16px;
}
.service_item_top_box2 .home_sec2_box2_item_tt_h3{
  line-height: 1.7em;
  margin-top: 35px;
}
.service_item_top_box2 .content_desc{
  color: #fff;
  margin-top: 20px;
}
.service_item_top_box2 .content_desc p{
  letter-spacing: 0.05em;
}

.service_item_btm{
  margin-top: 40px;
}
.service_item_btm_tt_outer{
  position: relative;
  text-align: center;
  margin-bottom: 22px;
}
.service_item_btm_tt_outer.gr:before{
  background: #006050;
}
.service_item_btm_tt_outer:before{
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  top: 50%;
  left: 0;
  background: #fff;
}
.service_item_btm_tt{
  display: inline-block;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #fff;
  position: relative;
  z-index: 1;
  background: #006050;
  padding: 0 10px;
}
.service_item_btm_tt_outer.gr .service_item_btm_tt{
  background: #fff;
}
.service_item_btm_items1{
  display: flex;
  flex-wrap: wrap;
  gap:10px 0;
  border-bottom: 1px solid #fff;
  padding-bottom: 28px;
}
.service_item_btm_item{
  width: 100%;
  background: #fff;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  padding: 13px 5px;
}
.service_item_btm_item p{
  letter-spacing: 0.05em;
}
.service_item_btm_items2_box{
  background: #fff;
  padding: 26px 0 37px;
  margin-top: 40px;
}
.service_item_btm_items2_box .service_item_btm_tt{
  color: #181818;
}
.service_item_btm_items2{
  display: flex;
  flex-wrap: wrap;
  gap:10px 0;
  padding: 0 10px;
}
.service_item_btm_items2 .service_item_btm_item{
  background: #006050;
  color: #fff;
}

.service_item_top.no2 .service_item_top_box2_tt{
  color: #181818;
  margin-left: -16px;
}
.service_item_top.no2 .home_sec2_box2_item_tt_h3{
  color: #181818;
}
.service_item_top.no2 .content_desc{
  color: #181818;
}

/*sec4*/
.hdr_contact_btn.custom{
  min-width: 220px;
  width: 100%;
  background: #b7aa00;

  margin-top: 24px;
  display: block;
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font-ja);
  width: 160px;
  text-align: center;
  color: #fff;
  border-radius: 19px;
  padding: 7px;
  margin-left: 6px;
}
.hdr_contact_btn.custom:hover{
  background: #dfd338;
  color: #fff;
}

.service_item_btm_items2.panf{

}
.service_item_btm_items2.panf .service_item_btm_item{
  background: none;
  padding: 0;
}
.service_item_btm_items2.panf .service_item_btm_item a{

}
.panf_img_outer{
  padding: 5px;
  background: #006050;
}
.panf_img:before{
  padding-top: 117.55%;
}
.panf_txt{
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #181818;
  margin-top: 5px;
}
.service_sec4_wrap .service_item_btm_items2_box{
  border-bottom: 1px solid #006050;

}

/*sec5*/
.service_sec5_head_box{
  margin-bottom: 40px;
}
.service_sec5_wrap .service_item_top_box2_tt,
.service_sec5_wrap .home_sec2_box2_item_tt_h3{
  color: #181818;
}
.service_sec5_wrap .service_item_top_box2_tt{
  margin-inline:auto;
}
.service_sec5_wrap .home_sec2_box2_item_tt_h3{
  line-height: 1.66em;
}
.service_sec5_head_box .content_desc{
  margin-top: 30px;
} 
.service_sec5_head_box .content_desc p{
  letter-spacing: 0.05em;
} 
@media (max-width:767px){
  .service_item_top_box2_tt .tt_ja{
    margin-right: 10px;
    padding-left: 0px;
  }
  .service_item_top.no2 .service_item_top_box2_tt{
    margin-left: auto;
  }
  .hdr_contact_btn.custom{
    min-width: 300px;
    width: 100%;
    margin-inline:auto;
  }
}
@media (min-width:768px){
  /*sec1*/
  .service_sec1_wrap{

  }
  .home_sec1_box2_tt.yoko{
    -ms-writing-mode: lr-tb;
    writing-mode: horizontal-tb;
    right: 0;
  }
  .service_sec1_wrap .home_sec1_box2_tt{
    font-size: 42px;
  }
  .service_sec1_wrap .content_desc{

  }

  /*sec2*/
  .service_sec2_wrap{

  }
  .service_sec2_box1{

  }
  .service_sec2_box1_tt{

  }
  .service_sec2_box1_tt .lg_en p:first-child{
    padding-left: 12rem;
  }
  .service_sec2_box1 .home_sec2_box2_item_tt_h3{
    margin-top: 39px;
  }
  .service_sec2_box1 .content_desc{
    margin-top: 39px;
  }
  .service_sec2_box2{
    margin-top: 40px;;
  }
  .service_sec2_box2_img:before{

  }

  /*sec3*/
  .service_sec3_wrap{

  }
  .service_item{

  }
  .service_item_top{

  }
  .service_item_top_box1{

  }
  .service_item_top_box1_img:before{

  }
  .service_item_top_box2{
    margin-top: 30px;
  }
  .service_item_top_box2_tt{

  }
  .service_item_top_box2_tt1{

  }
  .service_item_top_box2_tt{

  }
  .home_sec2_box2_item_tt_h3{

  }
  .service_item_top_box2_tt .tt_ja{
    font-size: 22px;
  }
  .service_item_top_box2 .content_desc{
    margin-top: 34px;
  }
  .lg_en.sub{
    margin-top: -2.5rem;
  }
  .service_item_btm{
    margin-top: 67px;
  }
  .service_item_btm_tt{
    font-size: 21px;
    padding: 0 34px;
  }
  .service_item_btm_items1{

  }
  .service_item_btm_item{

  }
  .service_item_btm_items2_box{
    margin-top: 70px;
  }
  .service_item_btm_items2{

  }
  .service_item_btm_items2 .service_item_btm_item{

  }

  /*sec4*/
  .service_item_btm_items2.panf{

  }
  .service_item_btm_items2.panf .service_item_btm_item{

  }
  .service_item_btm_items2.panf .service_item_btm_item a{

  }
  .panf_img_outer{

  }
  .panf_img:before{

  }
  .panf_txt{

  }
  .service_sec4_wrap .service_item_btm{
    margin-top: 33px;
  }

  /*sec5*/
  .service_sec5_head_box{
    margin-bottom: 50px;
  }
}
@media (min-width:1024px){
  /*sec1*/
  .service_sec1_wrap{

  }
  .home_sec1_box2_tt.yoko{

  }
  .service_sec1_wrap .home_sec1_box2_tt{
    font-size: 50px;
  }
  .service_sec1_wrap .content_desc{

  }

  /*sec2*/
  .service_sec2_wrap{

  }
  .service_sec2_box1{
    width: 57.2%;
  }
  .service_sec2_box1_tt{

  }
  .service_sec2_box1_tt .lg_en p:first-child{
    padding-left: 12rem;
  }
  .service_sec2_box1 .home_sec2_box2_item_tt_h3{

  }
  .service_sec2_box1 .content_desc{

  }
  .service_sec2_box2{
    width: 34.23%;
    padding-top: 107px;
    margin-top: 0;
  }
  .service_sec2_box2_img:before{

  }

  /*sec3*/
  .service_sec3_wrap{

  }
  .service_item{

  }
  .service_item_top{

  }
  .service_item_top_box1{
    width: 40.19%;
    padding-top: 151px;
  }
  .service_item_top_box1_img:before{

  }
  .service_item_top_box2{
    width: 57.2%;
    margin-top: 0;
  }
  .service_item_top_box2_tt{

  }
  .service_item_top_box2_tt1{

  }
  .service_item_top_box2_tt{

  }
  .home_sec2_box2_item_tt_h3{

  }
  .service_item_top_box2 .content_desc{

  }

  .lg_en.sub{
    margin-top: -3.5rem;
  }
  .service_item_btm{

  }
  .service_item_btm_tt{

  }
  .service_item_btm_items1{
    gap: 17px 30px;
  }
  .service_item_btm_item{
    font-size: 14px;
    width: calc(33.333% - 20px);
  }
  .service_item_btm_items2_box{

  }
  .service_item_btm_items2{
    gap: 20px 20px;
  }
  .service_item_btm_items2 .service_item_btm_item{
    width: calc(33.33% - 13.333px);
  }
  .service_item_btm_item.half{
    width: calc(50% - 10px);
  }

  .service_item_top.no2 .service_item_top_box1{
    order: 2;
  }
  .service_item_top.no2 .service_item_top_box2{
    order: 1;
  }

  /*sec4*/
  .service_item_btm_items2.panf{
    padding: 0;
    gap:0 30px;
  }
  .service_item_btm_items2.panf .service_item_btm_item{
    width: calc(25% - 22.5px);
  }
  .service_item_btm_items2.panf .service_item_btm_item a{

  }
  .panf_img_outer{

  }
  .panf_img:before{

  }
  .panf_txt{

  }
  .service_sec4_wrap .service_item_btm_items2_box{
    margin-top: 0;
    padding-bottom: 53px;
  }
  .service_sec4_wrap .service_item_btm_tt_outer{
    margin-bottom: 42px;
  }

  /*sec5*/
  .service_sec5_head_box{
    max-width: 920px;
    width: 100%;
    margin-inline:auto;
    padding: 0 12px 0 30px;
    margin-bottom: 71px;
  }
}
@media (min-width:1200px){

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


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


}



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

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

}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}
.pg_xxx .section.sec3{

}
.pg_xxx .section.sec4{

}
.pg_xxx .section.sec5{

}
.pg_xxx .section.sec6{

}


@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{

  }
  .pg_xxx .section.sec6{

  }

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


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

  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }
  .pg_xxx .section.sec3{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }
  .pg_xxx .section.sec6{

  }

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


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


}

/* メイン部分 */

@media (max-width:767px){

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

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


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


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


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


}



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

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

}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}
.pg_xxx .section.sec3{

}
.pg_xxx .section.sec4{

}
.pg_xxx .section.sec5{

}
.pg_xxx .section.sec6{

}


@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{

  }
  .pg_xxx .section.sec6{

  }

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


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

  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }
  .pg_xxx .section.sec3{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }
  .pg_xxx .section.sec6{

  }

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


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


}

/* メイン部分 */

@media (max-width:767px){

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

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


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


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


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


}



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

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

}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}
.pg_xxx .section.sec3{

}
.pg_xxx .section.sec4{

}
.pg_xxx .section.sec5{

}
.pg_xxx .section.sec6{

}


@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{

  }
  .pg_xxx .section.sec6{

  }

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


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

  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }
  .pg_xxx .section.sec3{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }
  .pg_xxx .section.sec6{

  }

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


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


}

/* メイン部分 */

@media (max-width:767px){

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

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


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


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


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


}



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

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

}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}
.pg_xxx .section.sec3{

}
.pg_xxx .section.sec4{

}
.pg_xxx .section.sec5{

}
.pg_xxx .section.sec6{

}


@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{

  }
  .pg_xxx .section.sec6{

  }

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


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

  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }
  .pg_xxx .section.sec3{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }
  .pg_xxx .section.sec6{

  }

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


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


}

/* メイン部分 */

@media (max-width:767px){

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

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


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


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


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


}



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

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

}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}
.pg_xxx .section.sec3{

}
.pg_xxx .section.sec4{

}
.pg_xxx .section.sec5{

}
.pg_xxx .section.sec6{

}


@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{

  }
  .pg_xxx .section.sec6{

  }

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


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

  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }
  .pg_xxx .section.sec3{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }
  .pg_xxx .section.sec6{

  }

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


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


}

/* メイン部分 */

@media (max-width:767px){

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

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


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


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


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


}


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

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

}
.pg_company .section.sec1{

}
.pg_company .section.sec2{

}


@media (max-width:374px){

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

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

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

  .pg_company{

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

  }

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


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


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


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


}


/* メイン部分 */


/* 会社概要 */
.company_tbl{

}
.company_tbl .table_rows_th,
.company_tbl .table_rows_td{
  color: #000;
  border-color: #a6a6a6;
  padding: 10px 10px;
  font-size: 16px;
  font-weight: 500;
}
.company_tbl .table_rows_th{
  background: #f2f2f2;
  font-weight: 500;
}
.company_tbl .table_rows_td{
  background: #FFF;
  line-height: 1.875em;
}

/* マップ */
.company_map{

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

.gmap{
  margin-top: 30px;
}
.access_map iframe{
  border: none;
  height: 250px;
  width: 100%;
}


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

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

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

  /* 会社概要 */
  .company_tbl{

  }
  .company_tbl .table_rows_th,
  .company_tbl .table_rows_td{
    padding: 17px 30px 18px;
  }
  .company_tbl .table_rows_th{
    width: 200px;
    vertical-align: middle;
  }
  .company_tbl .table_rows_td{
  }

  /* マップ */
  .company_map{

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

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

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


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

  /* 会社概要 */
  .company_tbl{

  }
  .company_tbl .table_rows_th,
  .company_tbl .table_rows_td{
    padding: 20px 55px 20px;
  }
  .company_tbl .table_rows_th{
    width: 284px;
  }
  .company_tbl .table_rows_td{
  }

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

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


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


}



/* カテゴリNav */
.cmn_cat_nav{

}
.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_detail{

}
.news_detail .meta{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.news_detail .date{
  font-size: 16px;
  font-weight: 400;
  font-family: var(--font-ja);
  letter-spacing: 0.075em;
}
.news_detail .category{
  font-size: 15px;
  font-weight: 400;
  font-family: var(--font-ja);
  letter-spacing: 0.075em;
  display: inline-block;
  border: 1px solid #006050;
  padding: 0 6px;
}
.news_detail .contents{
  background: #f6f6f6;
  padding: 10px 10px 40px;
}
.news_detail .inner{
  background: #fff;
  padding: 40px 10px;
}
.news_detail .inner .title{
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.075em;
  font-family: var(--font-ja);
  border-bottom: 3px solid #006050;
  padding-bottom: 10px;
}
.news_detail .inner .post_content{
  font-size: 16px;
  font-weight: 400;
  line-height: 2.25em;
  letter-spacing: 0.075em;
  padding-top: 30px;
}
.pg_news .read_more{

}
.news_detail img{
  margin-bottom: 37px;
}
@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_detail{

  }
  .news_detail .meta{

  }
  .news_detail .date{
    font-size: 19px;
  }
  .news_detail .category{

  }
  .news_detail .contents{
    padding: 15px 14px 35px;
  }
  .news_detail .inner{
    padding: 45px 18px;
  }
  .news_detail .inner .title{
    font-size: 20px;
    padding-bottom: 14px;
  }
  .news_detail .inner .post_content{
    padding-top: 46px;
  }
  .pg_news .read_more{

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

  .news_detail{

  }
  .news_detail .meta{

  }
  .news_detail .date{

  }
  .news_detail .category{

  }
  .news_detail .contents{

  }
  .news_detail .inner{

  }
  .news_detail .inner .title{

  }
  .news_detail .inner .post_content{

  }
  .pg_news .read_more{

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

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

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

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

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



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


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


}


/*******************************
*　記事一覧(2カラム)
********************************/
.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{

}


/* サイド */
.posts_side_wrap{

}
.posts_side_wrap + .posts_side_wrap{
  margin-top: 30px;
}
.posts_side_title {
  background: #006050;
  color: #FFF;
  padding: 12px 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: 5px;
}
.posts_cat_item a{
  display: block;
  position: relative;
  padding-left: 31px;
  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;
}


/* 動画 */
.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: 155px;
  }

  /* 詳細 */
  .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;
  }


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

  }

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

  .pg_news{
    padding-top: 80px;
  }

}






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

.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-family: "Noto Sans JP";
  font-weight: 500;
}

/* フォーム */
.formTbl{
  border: 1px solid #7e7e7e;
  background: #ffffff;
}
.form.formWrap {
  letter-spacing: 0.1em;
  position: relative;
  z-index: 1;
}
.formRow + .formRow{
  border-top: 1px solid #7e7e7e;
}
.formTh {
  padding: 16px 15px 16px 20px;
  background: #f2f2f2;
  letter-spacing: 0.08em;
  font-weight: 500;
}
.formTh label{
  margin: 0;
}
.d-inline-block.requiredText {
  font-size: 13px;
  padding: 3px 12px;
  margin-top: 3px;
  float: right;
  font-weight: 500;
  letter-spacing: 0.05em;
  background: #b80000;
  color: #ffffff;
}
.d-inline-block.requiredText.nini{
  background: #fff;
  color: #b80000;
  border: 1px solid #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 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: 600;
  display: inline;
}
.formWrap .privacyLabel a{
  color: #008bd5;
}
.formBtn.formSend {
  max-width: 270px;
  width: 100%;
  font-size: 16px;
  padding: 13px 26px;
  margin: 4px auto 0;
  border: 0;
  background: #006050;
  color: #ffffff;
  font-weight: 500;
  letter-spacing: 0;
  display: block;
  font-weight: 500;
  cursor: pointer;
  text-align: left;
  position: relative;
  transition: all .2s;
}
.formBtn.formSend:after{
  content: "→";
  display: block;
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  transition: all .2s;
}
.formBtn.formSend:hover{
  background: #a40000;
  color: #fff;
}
.formBtn.formSend:hover:after{
  right: 10px;
}
.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: 27px;
}
.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){
  .pg_contact .section.sec1{
    padding-top: 80px;
  }

  .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: 28px;
}
.privacy_ttl {
  font-size: 18px;
  font-weight: 500;
  padding: 8px 15px;
  margin-bottom: 12px;
  border-left: 6px solid #006050;
  letter-spacing: 0.04em;
}
.privacy_txt{
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.875;
  text-align: justify;
}
.privacy_txt p{
  letter-spacing: 0.04em;
}

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

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

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

.contact_tt.privacy {
  font-size: 21px;
  font-weight: 500;
  letter-spacing: 0.2em;
  margin-bottom: 48px;
}
.contact_tt.privacy br{
  display: none;
}
.formWrap .d-inline{
  display: inline-block!important;
}
.formWrap .d-inline-block {
  vertical-align: middle;
}

.privacy_item_box {
  padding: 28px 43px 30px 27px;
  height: 397px;
  overflow: auto;
  background: #fff;
  border: 1px solid #bfbfbf;
  margin-top: 0;
  color: #000000;
  margin-top: 58px;
}
@media only screen and (max-width: 1023px){
  .pg_contact .section.sec1{
    padding-top: 60px;
  }

  .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 {
    font-size: 19px;
    margin-bottom: 0;
  }
  .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_item_box{
    padding: 30px 10px;
  }
}

/*******************************
*　お問い合わせ送信完了
********************************/
.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;
  }
}


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


}
