@charset "UTF-8";

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

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

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


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

@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.025em;
}
h1, h2, h3, h4, h5, h6{
  line-height: 1.5;
}

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

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

.img_fit{
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.img_fit:before{
  content: "";
  display: block;
  padding-top: 100%;
}
.img_fit img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-family: 'object-fit: cover';
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
}

a.img_fit{
  display: block;
}
a .img.img_fit img{
  transition: 0.2s all;
}
a:hover .img.img_fit img{
  transform: scale(1.05);
}

/* 動画埋め込みのレスポンシブ対応 */
iframe{
  max-width: 100%;
}
.responsive_video {
  position: relative;
}

.responsive_video:before{
  content: "";
  display: block;
  padding-top:56.25%;
}
.responsive_video video,
.responsive_video iframe,
.responsive_video object,
.responsive_video embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

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


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


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

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


/* 指定した行数での切り取り */
.txt_ellipsis_line1,
.txt_ellipsis_line2,
.txt_ellipsis_line3,
.txt_ellipsis_line4,
.txt_ellipsis_line5,
.txt_ellipsis_line6,
.txt_ellipsis_line7,
.txt_ellipsis_line8,
.txt_ellipsis_line9,
.txt_ellipsis_line10{
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}
.txt_ellipsis_line1{
  -webkit-line-clamp: 1;
}
.txt_ellipsis_line2{
  -webkit-line-clamp: 2;
}
.txt_ellipsis_line3{
  -webkit-line-clamp: 3;
}
.txt_ellipsis_line4{
  -webkit-line-clamp: 4;
}
.txt_ellipsis_line5{
  -webkit-line-clamp: 5;
}



/*******************************
*　ヘッダー
********************************/
.header{
  --logo-height: 20px;
}
.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: #FFF;
  color: #000000;
  border: 1px solid #000;
  border-radius: 18px;
  width: 160px;
  padding: 5px 5px;
  font-size: 16px;
  text-align: center;
  transition: 0.2s all;
}
.hdr_contact a.email{
  font-family: var(--font-en);
}
.hdr_contact a.email p:before{
  content:"\f0e0";
  font-family: "fontAwesome";
  margin-right: 10px;
}
.hdr_contact a:hover{
  background: #000000;
  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;
}

.mv .animated2.blurInUp.inview{
  transform: translateY(-50%);
}
@media (min-width:375px){

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

  .header{
    position: absolute;
    z-index: 4;
    top: 0;
    left: 0;
    right: 0;
    text-align: center;
  }
  .hdr1 {
    padding: 10px;
    justify-content: center;
    position: relative;
    z-index: 2;
  }
  
  .body_home .hdr1{
    padding-top: 30px;
  }
  
  .hdr_logo_a{
    display: block;
    filter: invert(1);
  }

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



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

  /* ヘッダー固定 */
  body{
    /* ヘッダーの高さに応じて */
    padding-top: 0;
  }
  .header{
    --logo-height: 27px;
    position: fixed;
    z-index: 5;
    top: 0;
    left: 0;
    right: 0;
    padding: 40px 40px 0;
    transition: 0.2s all;
  }

  .hdr1{
    background: #ddddd9;
    border-radius: 5px;
    padding: 10px 20px;
    transition: 0.2s all;
  }
  
  /* ロゴ */
  .hdr_logo img{
    /*width: 180px;*/
  }

  /* ヘッダースリム */
  .header.slim{
    padding-top: 15px;
  }
  .header.slim .hdr1{
    box-shadow: 0 0 1px 2px #ccc;
  }
  .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;
  }


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

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

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

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

  }
  .header.slim .hdr_logo img{
  }

  /* TELボタン */
  .hdr_tel{

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

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

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

  .hdr1{
    padding: 20px 40px;
    
  }

  /* ロゴ */
  .hdr_logo{

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

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

  }
  .header.slim .hdr_logo img{
  }
  .header.slim .hdr1{
    padding-top: 12px;
    padding-bottom: 12px;
  }

}

/*******************************
*　メインビジュアル
********************************/
/* MV */
.mv{
  position: relative;
  z-index: 1;
}
.mv_img{
  position: relative;
  z-index: 1;
}
.mv_img.img_fit:before{
  /*padding-top: 250px;*/
  /* 画面高さ - ヘッダー分 */
  padding-top: calc(100svh - 64px);
  padding-top: 100svh;
}
.mv:after{
  content: "";
  background: rgba(0,0,0,0.36);
  background: rgba(0, 0, 0, 0.4);
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
}

/* MVテキスト */
.mv_txt{
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 0;
  width: 100%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  color: #FFF;
  text-align: center;
  padding: 0 16px;
}
.mv_txt_p1{
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.025em;
}
.mv_txt_p2{
  font-size: 34px;
  font-family: var(--font-en);
  margin-top: 10px;
}
.mv_txt_p2 p{
  letter-spacing: 0;
}
.mv_txt_p3{
  font-size: 15px;
  font-weight: 500;
  line-height: 2.25;
  margin-top: 20px;
 
}
.mv_txt_p3 p{
  letter-spacing: 0.025em;
}

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

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

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

.mv_scroll{
  font-size: 14px;
  font-weight: 400;
  font-family: var(--font-en);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  color: #fff;
}
.mv_scroll p:after{
  content: "";
  display: block;
  width: 1px;
  height: 80px;
  background: #fff;
}
.mv_scroll p{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  letter-spacing: 0;
}
@media (min-width:768px){

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

  /* MVテキスト */
  .mv_txt{
  }

  .mv_txt_p1{
    font-size: 36px;
  }
  .mv_txt_p2{
    font-size: 150px;
    margin-top: 10px;
  }
  .mv_txt_p3{
    font-size: 16px;
    line-height: 2.25;
    margin-top: 0;
  }

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


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

  /* MVテキスト */
  .mv_txt{
  }
  .mv_txt_p1{

  }
  .mv_txt_p2{

  }

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

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

  /* MVテキスト */
  .mv_txt{
  }

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

  /* MVテキスト */
  .mv_txt{
  }

  .mv_txt_p1{
    font-size: 36px;
  }
  .mv_txt_p2{
    font-size: 150px;
    margin-top: 18px;
  }
  .mv_txt_p3{
    font-size: 16px;
    margin-top: 10px;
  }

}


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

/* サイドバー */
.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{
  position: relative;
  z-index: 0;
}
.pg_header_mv_img{
  position: relative;
  z-index: 1;
}
.pg_header_mv_img.img_fit:before{
  padding-top: 150px;
}

.pg_header_title{
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 0;
  right: 0;
  text-align: left;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  color: #FFF;
}
.pg_header_title_ja{
  font-size: 20px;
  font-weight: 700;
}
.pg_header_title_en{
  font-size: 14px;
  font-family: var(--font-en);
  letter-spacing: 0;
  margin-top: 5px;
}




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

  .pg_header_title_ja{
    font-size: 30px;
  }
  .pg_header_title_en{
    font-size: 18px;
    margin-top: 10px;
  }

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

  .pg_header_title_txt{

  }

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

  .pg_header{
  }
  .pg_header_mv_img.img_fit:before{
    padding-top: 480px;
  }

  .pg_header_title_ja{
    font-size: 40px;
  }
  .pg_header_title_en{
    font-size: 24px;
    margin-top: 10px;
  }

}



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

.footer{
  margin-top: 50px;
  background-image: url(/system_panel/uploads/images/footer_bg.jpg);
  background-size: cover;
  position: relative;
  z-index: 3;
  padding-top: 50px;
  overflow: hidden;
}
.footer:before{
  content: "";
  background: rgba(0,0,0,0.75);
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
}
.footer .container{
  position: relative;
  z-index: 2;
}

.ftr1{
  border-top: none;
  border-bottom: none;
  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: flex;
  flex-wrap: wrap;
  color: #FFF;
}
.ftr_contact_box1{

}
.ftr_contact_box2{

}

.ftr_contact_items{
  display: flex;
  flex-wrap: wrap;
}
.ftr_contact_items_item{

}

.ftr_contact_tt_en{
  font-size: 100px;
  font-family: var(--font-en);
  letter-spacing: 0;
  line-height: 1;

}
.ftr_contact_tel{

}
.ftr_contact_tel_txt1{

}
.ftr_contact_tel_txt2{

}

.ftr_contact_email{

}
.ftr_contact_email a{

}
.ftr_contact_email a{

}

.ftr_addr em{
  font-style: normal;
}
.ftr_copy{
  width: 100%;
  font-size: 14px;
  text-align: center;
  border-top: 1px solid #000;
  position: relative;
  z-index: 1;
  margin-top: 40px;
  padding: 10px 0;
}

/* 追尾スマホメニュー */
.footer_fix{
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #7ecef4;
  /*z-index: 1000;*/
  z-index: 5; /* チャットボットがある場合 */
  flex-wrap: wrap;
}
.footer_fix > a{
  font-size: 12px;
  text-align: center;
  display: block;
  padding: 10px 5px 5px;
  background: #fff;
  text-decoration: none;
  line-height: 1.2;
}
.footer_fix .footer_fix_item_1{
  width: 38%;
  border-right: 1px solid #000;
}
.footer_fix .footer_fix_item_1.recruit{
  background: #eeeeee;
  color: #024b93;
}
.footer_fix .footer_fix_item_2{
  width: 24%;
  background: #ddddd9;
}
.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: #696969;
}
.pagetop a i{
  font-size: 40px;
}


.ftr_contact{
  display:flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.ftr_contact_box1{
  width: 100%;
}
.ftr_contact_tt_en{
  font-size:30px;
  font-weight: 400;
  font-family: var(--font-en);
  line-height: 1;
  color: #fff;

}
.ftr_contact_right{

}
.ftr_contact_box2{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 30px;
}
.ftr_contact_items_item{
  width: 100%;
  border-top: 1px solid #fff;
  padding-top: 30px;
  padding-bottom: 30px;
}
.ftr_contact_tel{
  text-align: center;
}
.ftr_contact_tel_txt1{
  font-size: 34px;
  font-weight: 400;
  font-family: var(--font-en);
  letter-spacing: 0;
  line-height: 1;
}
.ftr_contact_tel_txt1 strong{
  font-size: 20px;
  font-weight: 400;
  font-family: var(--font-en);
}
.ftr_contact_tel_txt2{
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-top: 15px;
}
.ftr_contact_email{

}
.ftr_contact_email a{
  display: block;
  max-width:380px;
  width: 100%;
  border: 1px solid #fff;
  border-radius: 30px;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  padding: 16px 0;
  margin-inline:auto;
  transition: all .2s;
}
.ftr_contact_email a:hover{
  background: #fff;
  color: #000;
}
.ftr_contact_email a p{
  letter-spacing: 0.05em;
}
.ftr_contact_email a p:before{
  content: "\f0e0";
  font-size: 18px;
  font-family: 'FontAwesome';
  margin-right: 10px;
}

.ftr2{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background: #ddddd9;
  border-radius: 50px 50px 0 0 ;
  position: relative;
  margin-top: 0;
  padding: 46px 16px 0;
}
.ftr2_box1{
  width: 100%;
  position: relative;
  z-index: 1;
  text-align: center;
}
.ftr_logo{

}
.ftr2_box2{
  width: 100%;
  position: relative;
  z-index: 1;
}
.ftr_add{
  margin-top: 30px;
}
.ftr_add_txt{
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.025em;
  line-height: 2.25em;
}
.ftr_add_item{
  display: flex;
  align-items: center;
  width: 280px;
  margin-inline: auto;
}
.ftr_add_item_txt1{
  text-align: left;
  position: relative;
  padding-right: 10px;
}
.ftr_add_item_txt1:after{
  content: "";
  display: block;
  width: 1px;
  height: 18px;
  background: #000;
  position: absolute;
  top: 50%;
  right:0;
  transform: translateY(-50%);
}

.ftr_add_item_txt2{
  padding-left: 16px;
}
.ftr2_box2{

}
.ftr_links{

}
.ftr_link{

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

}
@media (max-width:1023px){
  .ftr_add_item{
    width: 100%;
    justify-content: center;
  }
  .ftr_add_item_txt1{
    width: 80px;
    text-align: center;
  }
  .ftr_add_item_txt2{
    width: 150px;
  }
}
@media (max-width:767px){

  body{
    padding-bottom: 56px;
  }

  .footer_fix{
    display: flex;
  }

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

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

  .ftr2_box2{
    display: none;
  }
  .ftr_add_item{
    width: 100%;
    justify-content: center;
  }
  .ftr_add_item_txt1{
    width: 80px;
    text-align: center;
  }
  .ftr_add_item_txt2{
    width: 120px;
  }
  .ftr_add_txt{
    font-size: 15px;
  }
  
  .ftr_contact_tt_en{
    text-align: center;
  }


}
@media (min-width:768px){
  .footer{
    margin-top: 100px;
    padding-top: 75px;
  }

  .ftr_contact{

  }
  .ftr_contact_box1{

  }
  .ftr_contact_tt_en{
    font-size:40px;
  }
  .ftr_contact_right{

  }
  .ftr_contact_box2{
    margin-top: 80px;
  }
  .ftr_contact_items_item{
    position: relative;
    padding: 0 9px;
    border-top:none;
  }
  .ftr_contact_items_item:before{
    content: "";
    display: block;
    width: 1px;
    height: 160px;
    background: #fff;
    position: absolute;
    top: 50%;
    left:0;
    transform: translateY(-50%);
  }
  .ftr_contact_items_item:last-child:after{
    content: "";
    display: block;
    width: 1px;
    height: 160px;
    background: #fff;
    position: absolute;
    top: 50%;
    right:0;
    transform: translateY(-50%);
  }
  .ftr_contact_items_item.tel{
    width: 44.13%;
  }
  .ftr_contact_items_item.mail{
    width: 55%;
  }
  .ftr_contact_tel{

  }
  .ftr_contact_tel_txt1{

  }
  .ftr_contact_tel_txt2{

  }
  .ftr_contact_email{

  }
  .ftr_contact_email a{
    font-size: 18px;
  }

  .ftr2{
    border-radius: 50px 0 0 0 ;
    padding: 50px 0 0 50px;
    margin-top: 65px;
  }
  .ftr2:after{
    content: "";
    display: block;
    width: 100vw;
    height: 100%;
    background: #ddddd9;
    border-radius: 50px 0 0 0;
    position: absolute;
    top: 0;
    left: 0;
  }
  .ftr2_box1{
    padding-top: 18px;
  }
  .ftr_logo{

  }
  .ftr2_box2{
    position: relative;
  }
  .ftr2_box2:after{
    content: "";
    display: block;
    height: 195px;
    ;
    border-right: 1px dashed #b3b3b3;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
  }
  .ftr_add{
    margin-top: 39px;
  }
  .ftr_add_txt{

  }
  .ftr_add_item{

  }
  .ftr_add_item_txt1{
    padding-right: 10px;
  }
  .ftr_add_item_txt2{
    padding-left: 16px;
  }
  .ftr2_box2{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    ;
    width: 85%;
    margin-inline:auto;
    ;
    margin-top: 30px;
  }
  .ftr_links{

  }
  .ftr_link{
    width: 160px;
    text-align: left;
    display: block;
    font-size: 16px;
    font-weight: 500;
    border-bottom: 1px solid #000;
    position: relative;
    padding: 10px 0;
  }
  .ftr_link:nth-child(n+2){
    margin-top: 10px;
  }
  .ftr_link:after{
    content: "\f105";
    font-size: 18px;
    font-family: 'FontAwesome';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    transition: all .2s;
  }
  .ftr_link:hover{
    color: #000;
  }
  .ftr_link:hover:after{
    right: -5px;
  }

  .ftr_copy{
    margin-top: 73px;
  }



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

  .ftr_contact{

  }
  .ftr_contact_box1{

  }
  .ftr_contact_tt_en{
    font-size:70px;
  }
  .ftr_contact_right{

  }
  .ftr_contact_box2{
    margin-top: 100px;
  }
  .ftr_contact_items_item{

  }
  .ftr_contact_tel{

  }
  .ftr_contact_tel_txt1{
    font-size: 30px;
  }
  .ftr_contact_tel_txt1 strong{
    font-size: 24px;
  }
  .ftr_contact_tel_txt2{

  }
  .ftr_contact_email{

  }
  .ftr_contact_email a{

  }

  .ftr2{
    padding: 82px 0 0 100px;
    margin-top: 65px;
  }
  .ftr2_box1{
    width: 41.87%;
    text-align: left;
  }
  .ftr_logo{

  }
  .ftr2_box2{
    width: 42.92%;
    margin-inline:0;
    margin-top: 0;
  }
  .ftr_add{

  }
  .ftr_add_txt{

  }
  .ftr_add_item{
    width: auto;
    margin-inline: 0;
  }
  .ftr_add_item_txt1{

  }
  .ftr_add_item_txt2{

  }
  .ftr2_box2{

  }
  .ftr_links{

  }
  .ftr_link{


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

  }
  .ftr_contact_box1{
    width: 41.11%;
  }
  .ftr_contact_tt_en{
    font-size:80px;
  }
  .ftr_contact_right{

  }
  .ftr_contact_box2{
    width: 58.88%;
    margin-top: 0;
  }
  .ftr_contact_items_item{

  }
  .ftr_contact_tel{

  }
  .ftr_contact_tel_txt1{
    font-size: 36px;
  }
  .ftr_contact_tel_txt1 strong{
    font-size: 30px;
  }
  .ftr_contact_tel_txt2{

  }
  .ftr_contact_email{

  }
  .ftr_contact_email a{

  }
}
@media (min-width:1360px){
  .ftr_contact_tt_en{
    font-size:100px;
  }

  .ftr2_box2{
    width: 29.92%;
  }
  
  .ftr2_box1{
    width: 38.87%;
}
  .ftr_logo{

  }
  .ftr2_box2{
    width: 42.92%;
  }
}

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


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

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

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


/* ページネーション */
.webgene-pagination {
  width: 100%;
  margin: 50px 0 0;
  line-height: 1.85;
}
.webgene-pagination ul{
  display: flex;
  justify-content: center;
  align-items: center;
}
.webgene-pagination li{
  padding: 4px 13px;
  margin: 0 4px;
  border: 1px solid #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: 240px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  text-align: left;
  border: 1px solid #000;
  background: var(--main-color);
  background: #fff;
  border-radius: 5px;
  color: #000;
  padding: 16px 20px;
  margin: 5px 5px;
  position: relative;
  z-index: 1;
  transition: 0.2s all;
}
.read_more a p{
  /*letter-spacing: 0;*/
}
.read_more a:after{
  content: "\f138";
  font-size: 18px;
  font-family: 'FontAwesome';
  position: absolute;
  color: #000;
  z-index: 1;
  top: 50%;
  right: 18px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  transition: 0.2s all;
}
.read_more a:hover{
  color: #FFF;
  background: #000;
}
.read_more a:hover:after{
  color: #FFF;
  margin-right: -5px;
}


/* 見出し */
.tt2{
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}
.tt2_en{
  font-size: 100px;
  font-weight: 400;
  font-family: var(--font-en);
  line-height: 1;
  letter-spacing: 0;
  color: #FFF;
  opacity: 0.5;
}
.tt2_ja{
  font-size: 20px;
  font-weight: 700;
  position: absolute;
  z-index: 1;
  top: 46%;
  left: 0;
  right: 0;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  text-align: center;
}


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

/* セクション */
.section{
  background: #ddddd9;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: auto auto;
  border-radius: 25px 25px 0 0;
  margin-top: -25px;
  padding-top: 50px;
  padding-bottom: 80px;
  position: relative;
  z-index: 1;
}
.section.sec1{
  /*padding-top: 0;*/
}
.section:last-child{
  padding-bottom: 0;
}

.section.noRadius{
  border-radius: 0;
  margin-top: 0;
}


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

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

}


@media (max-width:374px){

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

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

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

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

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

  .tt2_en{
    font-size: 65px;
  }
}
@media (min-width:768px){

  .anchor{
    top: -150px;
  }

  .section{
    padding-top: 80px;
    padding-bottom: 150px;
    margin-top: -50px;
    border-radius: 50px 50px 0 0;
  }

  /* ページネーション */
  .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: 240px;
    font-size: 16px;
    padding: 15px 20px;
    margin: 5px 5px;
  }
  .read_more a:after{
    top: 50%;
    right: 18px;
  }
  .read_more a:hover:after{
    margin-right: -5px;
  }

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


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

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

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

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

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



}


@media (min-width:1366px){

  /* 見出し */
  .tt2{
    margin-bottom: 50px;
  }
  .tt2_en{
    font-size: 300px;
  }
  .tt2_en.mid{
    font-size: 220px;
  }
  .tt2_ja{
    font-size: 40px;
  }

}

@media (min-width:1470px){
  .section{
    padding-top: 125px;
    padding-bottom: 160px;
  }
}


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



/* 概要部分 */
.cmn_about{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.cmn_about_box1{
  width: 100%;
  order: 2;
  margin-top: 20px;
  position: relative;
  z-index: 1;
}
.cmn_about_box2{
  width: 100%;
  order: 1;
  position: relative;
  z-index: 2;
}

.cmn_about_head{
  position: relative;
}
.cmn_about_head_ja{
  font-size: 28px;
  font-size: 24px;
  ;
  font-weight: 700;
}
.cmn_about_head_en{
  font-size: 20px;
  font-family: var(--font-en);
  line-height: 1;
  margin-top: 10px;
}
.cmn_about_head_en p{
  letter-spacing: 0;
}

.lg_en{
  font-size: clamp(2.5rem, -0.75rem + 16.25vw, 18.75rem);
  font-weight: 400;
  letter-spacing: 0;
  font-family: var(--font-en);
  line-height: 1;
  position: absolute;
  top: -23%;
  left: -5%;
  color:rgba(220,220,216,0.3);
}

.cmn_about_title_en{
  font-size: 20px;
  font-family: var(--font-en);
}
.cmn_about_title_en p{
  letter-spacing: 0;
}
.cmn_about_title_ja{
  position: relative;
  z-index: 2;
}
* + .cmn_about_title_ja{
  margin-top: 20px;
}
.cmn_about_title_ja_line{
  display: flex;

}
.cmn_about_title_ja_line + .cmn_about_title_ja_line{
  margin-top: 10px;
}
.cmn_about_title_ja_line_txt{
  font-size: 22px;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.2;
  line-height: 1.4em;
  background: #FFF;
  padding: 5px 5px 7px 10px;
  border-radius: 3px;
}
.cmn_about_title_ja_line_txt.bk{
  background: #000;
  color: #FFF;
}
.cmn_about_txt{

}
* + .cmn_about_txt{
  margin-top: 20px;
}

.cmn_about_list{
  border-radius: 10px;
  background: #FFF;
  padding: 10px 20px 20px;
}
.pg_corp .section.sec4 .cmn_about_list{
  background: #eeeeed;
}
* + .cmn_about_list{
  margin-top: 40px;
}
.cmn_about_list_item{
  font-size: 16px;
  font-weight: 700;
  padding: 15px 0 15px 20px;
  position: relative;
  z-index: 1;
}
.cmn_about_list_item + .cmn_about_list_item{
  border-top: 1px dashed;
}
.cmn_about_list_item:before{
  content: "";
  background: var(--sub-color);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.cmn_about_img{

}
.cmn_about_img.img_fit:before{
  padding-top: 66.667%;
  /*padding-top: 600px;*/
}

.cmn_about_imgs{
  aspect-ratio: 700 / 720;
  position: relative;
  z-index: 1;

}
.cmn_about_imgs_item{
  border-radius: 10px;
}
.cmn_about_imgs_item.pos1{
  width: 78.57%;
  margin-left: auto;
}
.cmn_about_imgs_item.pos2{
  width: 51.42%;
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
}
.cmn_about_imgs_item.pos1.img_fit:before{
  padding-top: 100%;
}
.cmn_about_imgs_item.pos2.img_fit:before{
  padding-top: 100%;
}


.cmn_about.type1{
  padding-bottom: 40px
}
.cmn_about_catch_en{
  font-family: var(--font-en);
  color: #FFF;
  position: absolute;
}
.cmn_about_catch_en p{
  white-space: nowrap;
  letter-spacing: 0;
  line-height: 1;
}
.cmn_about.type1 .cmn_about_catch_en{
  font-size: 80px;
  z-index: 2;
  width: 100vw;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}

.cmn_about.type2 .cmn_about_catch_en{
  font-size: 160px;
  font-size: clamp(3.125rem, 1.75rem + 6.88vw, 10rem);
  font-size: clamp(2.625rem, 1.15rem + 7.38vw, 10rem);
  line-height: 1.66;
  color: #e8e8e5;
  top: -38px;
  left: 0;
  z-index: 2;
  z-index: 1;
}
.cmn_about.type2 .cmn_about_catch_en p{
  line-height: 1.2;
}
.cmn_about.right .cmn_about_img{
  border-radius: 10px;
}
@media (max-width:767px){
  body:not(.body_home) .section.sec1{
    padding-top: 100px;
  }


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

  /* 概要部分 */
  .cmn_about{
  }
  .cmn_about_box1{
    /*width: 46.05%;*/
    /*margin-top: 0;*/
  }
  .cmn_about_box2{
    /*width: 47.36%;*/
    /*margin-top: 20px;*/
  }

  .cmn_about_head{
  }
  .cmn_about_head_ja{
    font-size: 32px;
  }
  .cmn_about_head_en{
    font-size: 22px;
    margin-top: 10px;
  }

  .cmn_about_title_en{
    font-size: 20px;
  }
  .cmn_about_title_ja{

  }
  * + .cmn_about_title_ja{
    /*margin-top: 40px;*/
  }
  .cmn_about_title_ja_line{
  }
  .cmn_about_title_ja_line + .cmn_about_title_ja_line{
    margin-top: 20px;
  }
  .cmn_about_title_ja_line_txt{
    font-size: 27px;
    padding: 5px 5px 7px 10px;
  }
  .cmn_about_txt{

  }
  * + .cmn_about_txt{
    /*margin-top: 45px;*/
  }

  .cmn_about_list{
    padding: 10px 40px 20px;
  }
  * + .cmn_about_list{
    margin-top: 40px;
  }
  .cmn_about_list_item{
    font-size: 18px;
    padding: 25px 0 25px 20px;
  }
  .cmn_about_list_item:before{
    width: 10px;
    height: 10px;
  }


  .cmn_about_img{

  }
  .cmn_about_img.img_fit:before{
    /*padding-top: 600px;*/
  }

  .cmn_about.type1{
    padding-bottom: 50px
  }
  .cmn_about_catch_en{
  }
  .cmn_about.type1 .cmn_about_catch_en{
    font-size: 100px;
  }
  .cmn_about.type2 .cmn_about_catch_en{
    /*z-index: 2;*/
  }

  .pg_corp .section.sec4 .cmn_about.right .cmn_about_box1{
    margin-top: 40px;
    width: 75%;
    margin-inline:auto;
  }
  .pg_indivi .section.sec4 .cmn_about.right .cmn_about_box1{
    margin-top: 40px;
    width: 75%;
    margin-inline:auto;
  }
  
  .lg_en{
    top: -70%;
    left: 0;
  }
}
@media (min-width:1024px){

  /* 概要部分 */
  .cmn_about{
  }
  .cmn_about_box1{
    width: 46.05%;
    width: 46%;
    margin-top: 0;
  }
  .cmn_about_box2{
    width: 50%;
    margin-top: 20px;
  }

  .cmn_about_title_en{
    /*font-size: 24px;*/
  }
  .cmn_about_title_ja{

  }
  * + .cmn_about_title_ja{
    margin-top: 30px;
  }
  .cmn_about_title_ja_line{
  }
  .cmn_about_title_ja_line + .cmn_about_title_ja_line{
    margin-top: 20px;
  }
  .cmn_about_title_ja_line_txt{
    /*font-size: 40px;*/
    padding: 5px 5px 7px 10px;
  }
  .cmn_about_txt{

  }
  * + .cmn_about_txt{
    margin-top: 30px;
  }

  .cmn_about_list{
    padding: 10px 25px 20px;
  }
  * + .cmn_about_list{
    margin-top: 40px;
  }
  .cmn_about_list_item{
    font-size: 18px;
    padding: 25px 0 25px 20px;
  }
  .cmn_about_list_item:before{
    width: 10px;
    height: 10px;
  }

  .cmn_about_img{

  }
  .cmn_about_img.img_fit:before{
    padding-top: 600px;
  }

  /* 概要部分(左右入れ替え) */
  .cmn_about.left .cmn_about_box1{
    order: 1;
  }
  .cmn_about.left .cmn_about_box2{
    order: 2;
  }
  .pg_corp .section.sec4 .cmn_about.right .cmn_about_box1{
    width: 46.05%;
    margin-inline:0;
  }
  .pg_indivi .section.sec4 .cmn_about.right .cmn_about_box1{
    width: 46.05%;
    margin-inline:0;
  }
  .cmn_about.right .cmn_about_box1{
    width: 46.05%;
    order: 2;
    margin-top: 0;
    margin-inline:0;
  }
  .cmn_about.right .cmn_about_box2{
    order: 1;
  }

  .cmn_about.left .cmn_about_img{
    border-radius: 0 10px 10px 0;
    margin-left: var(--margin-for-device-side-w);
  }
  .cmn_about.right .cmn_about_img{
    border-radius: 10px 0 0 10px;
    margin-right: var(--margin-for-device-side-w);
  }

  .cmn_about.type1{
    padding-bottom: 60px
  }
  .cmn_about_catch_en{
  }
  .cmn_about.type1 .cmn_about_catch_en{
    font-size: 120px;
    z-index: 2;
  }

  .cmn_about.type2 .cmn_about_catch_en{
    top: -65px;
  }
  .cmn_about.type2 .cmn_about_catch_en{
    z-index: -1;
  }
  .lg_en{
    top: -70%;
    left: -15%;
  }
  .pg_corp .section.sec3 .cmn_about.left .cmn_about_box1{
    padding-top: 36px;
  }
}
@media (min-width:1200px){

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

  /* 概要部分 */
  .cmn_about{
  }
  .cmn_about_box1{
    width: 46.05%;
    margin-top: 0;
  }
  .cmn_about_box2{
    width: 47.36%;
    width: 49.36%;
    margin-top: 20px;
  }

  .cmn_about_head{
  }
  .cmn_about_head_ja{
    font-size: 48px;
  }
  .cmn_about_head_en{
    font-size: 30px;
    margin-top: 15px;
  }

  .cmn_about_title_en{
    font-size: 24px;
  }
  .cmn_about_title_ja{

  }
  * + .cmn_about_title_ja{
    margin-top: 40px;
  }
  .cmn_about_head + .cmn_about_title_ja{
    margin-top: 55px;
  }
  .cmn_about_title_ja_line{
  }
  .cmn_about_title_ja_line + .cmn_about_title_ja_line{
    margin-top: 20px;
  }
  .cmn_about_title_ja_line_txt{
    font-size: 40px;
    padding: 5px 5px 7px 10px;
  }

  .cmn_about_title_ja_line_txt.medium{
    font-size: 30px;
  }

  .cmn_about_txt{

  }
  * + .cmn_about_txt{
    margin-top: 45px;
  }

  .cmn_about_list{
    padding: 10px 40px 20px;
  }
  * + .cmn_about_list{
    margin-top: 40px;
  }
  .cmn_about_list_item{
    font-size: 18px;
    padding: 25px 0 25px 20px;
  }
  .cmn_about_list_item:before{
    width: 10px;
    height: 10px;
  }

  .cmn_about_img{

  }
  .cmn_about_img.img_fit:before{
    padding-top: 600px;
  }

  .cmn_about.type1{
    padding-bottom: 75px
  }
  .cmn_about_catch_en{
  }
  .cmn_about.type1 .cmn_about_catch_en{
    font-size: 150px;
  }

  .cmn_about.type2 .cmn_about_catch_en{
    left: -85px;
  }
}
@media (min-width:1720px){


  /* 概要部分 */
  .cmn_about{
  }
  .cmn_about_box1{
    width: 46.05%;
    margin-top: 0;
  }
  .cmn_about_box2{
    width: 47.36%;
    margin-top: 20px;
    margin-top: 60px;
  }

  .cmn_about.type1{
    padding-bottom: 85px
  }
  .cmn_about_catch_en{
  }
  .cmn_about.type1 .cmn_about_catch_en{
    font-size: 180px;
  }

}




@media (min-width:768px){

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

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

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

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

}


@media (min-width:768px){

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

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

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

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

}


@media (min-width:768px){

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

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

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

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

}

/*******************************
*　
********************************/
.plx_sec{
  /*height: 100vh;*/
}

:root{
  --header-h: 80px;
}

/* スタック用コンテナ（jQueryで自動生成） */
.pg_home .stack{
  position: relative;
  height: calc(100vh - var(--header-h)); /* ヘッダー分を差し引く */
  /*margin-top: var(--header-h);  ヘッダーの下から開始 */
  overflow: hidden;
}

/* スタック内の各セクションを全面重ねる */
.pg_home .stack .section{
  position: absolute;
  inset: 0;
  height: 100%;
  will-change: transform;
}

/* ビジュアル確認用の色分けは適宜削除してください */
/*.section.sec1{ background:#e9f0ff; }
.section.sec2{ background:#fff5e9; }
.section.sec3{ background:#e9fff2; }
.section.sec4{ background:#f6e9ff; }
.section.sec5{ background:#fafafa;  }
.section.sec6{ background:#fff;  }*/

/* 通常セクションの共通装飾 */
.section{
  /*display:flex;
  align-items:center; 
  justify-content:center;
  font-size:clamp(18px,3vw,28px); */
}



/*******************************
*　HOME
********************************/
.pg_home{
  padding-top: 45px;
}
.pg_home .section.sec1{
  padding-top: 50px;
}
.pg_home .section.sec2{
  background: #FFF;
  background-image: url('/system_panel/uploads/images/home_for_sec_bg.jpg');
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: auto auto;
  border-radius: 50px 50px 0 0;
  padding-bottom: 120px;
}
.pg_home .section.sec3{
  padding-top: 50px;
  margin-top: -55px;
  z-index: 2;
  overflow: hidden;
  background-color: #ddddd9;
  border-radius: 50px 50px 0 0;
}
.pg_home .section.sec4{
  background-image: url('/system_panel/uploads/images/home_strength_bg.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 50px 50px 0 0;
}
.pg_home .section.sec5{

}
.pg_home .section.sec6{

}
.pg_home .section.sec7{

}
.pg_home .section.sec8{

}

@media (max-width:767px){
  
  .pg_home .section.sec5{
    padding-bottom: 0;
  }
  
}
@media (min-width:768px){

  .pg_home .section.sec1{
    padding-top: 90px;
  }
  .pg_home .section.sec2{
    padding-bottom: 180px;
  }
  .pg_home .section.sec3{
    padding-top: 120px;
  }
  .pg_home .section.sec4{

  }
  .pg_home .section.sec5{

  }
  .pg_home .section.sec6{

  }
  .pg_home .section.sec7{

  }
  .pg_home .section.sec8{

  }

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


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


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

  .pg_home .section.sec1{
    padding-top: 115px;
  }

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


}


/* Mission */
.home_mission{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.home_mission_box1{
  width: 48%;
  order: 2;
  margin-top: 30px;
}
.home_mission_box2{
  width: 100%;
  order: 1;
}
.home_mission_box3{
  width: 48%;
  order: 3;
  margin-top: 90px;
}

.home_mission_img1{
  aspect-ratio: 612 / 720;
  /*margin-left: -120px;*/
  position: relative;
  z-index: 1;
}
.home_mission_img1_item1{
  width: 89.86%;
  border-radius: 10px;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
}
.home_mission_img1_item2{
  width: 58.82%;
  border-radius: 10px;
  position: absolute;
  z-index: 1;
  bottom: 0;
  right: 0;
}
.home_mission_img1_item1.img_fit:before{
  padding-top: 100%;
}
.home_mission_img1_item2.img_fit:before{
  padding-top: 100%;
}
.home_mission_img2{
  /*margin-right: -120px;*/
  border-radius: 10px;
}
.home_mission_img2.img_fit:before{
  padding-top: 111.111%;
}

.home_mission_title{
  margin-bottom: 15px;
}
.home_mission_title_en{
  font-size: 20px;
  font-family: var(--font-en);
  margin-bottom: 15px;
}
.home_mission_title_ja{
  font-size: 24px;
  font-weight: 700;
  line-height: 2;
}
.home_mission_txt{
  font-weight: 500;
}
.home_mission_catch_en{
  white-space: nowrap;
  font-size: 60px;
  font-family: var(--font-en);
  line-height: 1;
  color: #FFF;
  opacity: 0.3;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 50%;
  width: 100vw;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
.home_mission_catch_en p{
  letter-spacing: 0;
}

/* For */
.home_for{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  z-index: 1;
  padding-top: 50px;
}
.home_for_box1{
  width: 100%;
  padding-top: 20px;
  order: 2;
}
.home_for_box2{
  width: 100%;
  order: 1;
}
.home_for_category{
  font-size: 18px;
  font-weight: 700;
  color: #FFF;
  background: #000;
  padding: 5px 10px 6px 38px;
  border-radius: 3px;
  position: relative;
  z-index: 1;
  margin-bottom: 15px;
}
.home_for_category:before{
  content: "";
  background: var(--sub-color);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 15px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.home_for_title{
  font-size: 19px;
  font-weight: 700;
  line-height: 1.75;
  /*margin-right: -50px;*/
  margin-bottom: 15px;
}
.home_for_txt{
  font-weight: 500;
}
.home_for_img{
  border-radius: 10px;
  /*margin-right: var(--margin-for-device-side-w);*/
}
.home_for_img.img_fit:before{
  padding-top: 66.667%;
}
.home_for_catch_en{
  font-size: 40px;
  font-family: var(--font-en);
  line-height: 1;
  color: #ddddd9;
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
}
.home_for_catch_en p{
  letter-spacing: 0;
}

.home_for_catch_en.wh{
  color: #FFF;
}

/* Reason */
.home_reason_wrap{

}
* + .home_reason_wrap{
  margin-top: 85px;
}
.cmn_about + .home_reason_wrap{
  margin-top: 30px;
}

.home_reason_head{
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  border-bottom: 1px solid #000;
  padding-bottom: 8px;
  margin-bottom: 30px;
}
.home_reason_head_en{
  font-size: 40px;
  font-family: var(--font-en);
  line-height: 1;
  letter-spacing: 0;
  margin-right: 27px;
}
.home_reason_head_ja{
  font-size: 30px;
  font-size: 20px;
  font-weight: 700;
  padding-bottom: 5px;
}

.home_reason{
  display: flex;
  flex-wrap: wrap;
  margin-left: -12px;
  margin-right: -12px;
}
* + .home_reason{

}
.home_reason_item{
  width: 100%;
  padding-left: 12px;
  padding-right: 12px;
}
.home_reason_item:nth-child(n+2){
  margin-top: 20px;
}
.home_reason_item_inner{
  padding: 30px 20px 20px;
  border-radius: 0 0 10px 10px;
  overflow: hidden;
  color: #FFF;
  position: relative;
  z-index: 1;
  border-top: 5px solid #000;
}
.home_reason_item_num{
  font-size: 18px;
  font-family: var(--font-en);
  line-height: 1;
  letter-spacing: 0;
  position: absolute;
  z-index: 1;
  top: 40px;
  left: 40px;
}
.home_reason_item_bg{
  position: absolute;
  z-index: -1;
  inset: 0;
}
.home_reason_item_bg:after{
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: rgba(0,0,0,0.75);
  background: rgba(0, 0, 0, 0.65);
  pointer-events: none;
}
.home_reason_item_bg.img_fit:before{
  padding-top: 0;
  height: 100%;
}

.home_reason_item_icon{
  text-align: center;
  margin-bottom: 30px;
}
.home_reason_item_icon img{
  width: 100px;
}
.home_reason_item_title{
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
}
.home_reason_item_txt{

}

.home_reason.wh{

}
.home_reason.wh .home_reason_item_inner{
  /*border-top: 5px solid #000;*/
  background-color: #FFF;
  color: #000;
  position: relative;
  z-index: 1;
}
.home_reason.wh .home_reason_item_inner:before{
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: #000;
}


/* Strength */
.home_strength{
  position: relative;
  z-index: 1;
  padding-top: 35px;
}
.home_strength_catch_en{
  font-size: 100px;
  font-family: var(--font-en);
  position: absolute;
  z-index: -1;
  top: 0;
  left: 50%;
  width: 100vw;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
.home_strength_catch_en p{
  white-space: nowrap;
  letter-spacing: 0;
  line-height: 1;
  color: #FFF;
  opacity: 0.15;
}
.home_strength_head{
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 65px;
  font-size: 18px;
  margin-bottom: 35px;
}
.home_strength_head_txt{
  font-size: 1em;
  font-weight: 500;
  line-height: 1;
  background: #000;
  color: #FFF;
  /*padding: 14px 15px 20px;*/

  padding: 8px 10px 10px;
}
.home_strength_head_icon{
  font-size: 1.539em;
  font-weight: 200;
  line-height: 1;
  color: #FFF;
  padding: 0 10px 10px;
}

.home_strength_txt{
  color: #FFF;
  text-align: justify;
}

.home_strength_list_wrap{

}
* + .home_strength_list_wrap{
  margin-top: 75px;
}

.home_strength_list{
  display: flex;
  flex-wrap: wrap;
  margin-left: -5px;
  margin-right: -5px;
}
* + .home_strength_list{

}
.home_strength_list_item{
  width: 50%;
  padding-left: 5px;
  padding-right: 5px;
  color: #FFF;
}
.home_strength_list_item:nth-child(n+3){
  margin-top: 30px;
}
.home_strength_list_item_inner{
  position: relative;
  z-index: 1;
}
.home_strength_list_item_bg{
  border-radius: 10px;
  overflow: hidden;
}
.home_strength_list_item_bg:after{
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: rgba(0,0,0,0.75);
  pointer-events: none;
}
.home_strength_list_item_bg.img_fit:before{
  padding-top: 92.593%;
}
.home_strength_list_item_num{
  font-size: 40px;
  font-family: var(--font-en);
  line-height: 1;
  letter-spacing: 0;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.home_strength_list_item_title{
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}


.cmn_about_head_ja_sm{
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.025em;
}
@media (max-width:374px){

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

}
@media (max-width:767px){
  .home_reason_item_num{
    font-size: 28px;
  }



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



  /* Mission */
  .home_mission{
  }
  .home_mission_box1{
  }
  .home_mission_box2{
  }
  .home_mission_box3{
  }
  .home_mission_img1{
  }


  .home_mission_title{
    margin-bottom: 28px;
  }
  .home_mission_title_en{
    font-size: 20px;
    margin-bottom: 25px;
  }
  .home_mission_title_ja{
    font-size: 32px;
    line-height: 2;
  }
  .home_mission_txt{

  }
  .home_mission_catch_en{
    font-size: 150px;
  }


  /* For */
  .home_for{
    padding-top: 30px;
  }
  .home_for_box1{
    /*width: 47.36%;*/
    padding-top: 30px;
  }
  .home_for_box2{
    /*width: 46.05%;*/
  }
  .home_for_category{
    font-size: 20px;
    padding: 5px 10px 6px 38px;
    margin-bottom: 20px;
  }
  .home_for_category:before{
    width: 10px;
    height: 10px;
    left: 15px;
  }
  .home_for_title{
    font-size: 28px;
    /*margin-right: -50px;*/
    margin-bottom: 20px;
  }
  .home_for_txt{
  }
  .home_for_img{
    /*margin-right: var(--margin-for-device-side-w);*/
  }
  .home_for_img.img_fit:before{
    padding-top: 66.667%;
  }
  .home_for_catch_en{
    font-size: 70px;
    top: 0;
    left: -10px;
  }



  /* Reason */
  .home_reason_wrap{

  }
  * + .home_reason_wrap{
    margin-top: 85px;
  }
  .pg_corp .section.sec3 .cmn_about + .home_reason_wrap{
    margin-top: -61px;
  }
  .cmn_about + .home_reason_wrap{
    margin-top: -85px;
  }
  .home_reason_head{
    padding-bottom: 8px;
    margin-bottom: 40px;
  }
  .home_reason_head_en{
    font-size: 50px;
    margin-right: 27px;
  }
  .home_reason_head_ja{
    font-size: 24px;
  }

  .home_reason{
    justify-content: center;
    margin-left: -12px;
    margin-right: -12px;
  }
  * + .home_reason{

  }
  .home_reason_item{
    width: 50%;
    padding-left: 12px;
    padding-right: 12px;
  }
  .home_reason_item:nth-child(n+2){
    margin-top: 0;
  }
  .home_reason_item:nth-child(n+3){
    margin-top: 24px;
  }
  .home_reason_item_inner{
    padding: 30px 20px 30px;
    height: 100%;
  }
  .home_reason_item_num{
    font-size: 20px;
    top: 30px;
    left: 20px;
  }
  .home_reason_item_icon{
    margin-bottom: 20px;
  }
  .home_reason_item_icon img{
    width: 120px;
  }
  .home_reason_item_title{
    font-size: 26px;
    margin-bottom: 10px;
  }



  /* Strength */
  .home_strength{
    padding-top: 75px;
  }
  .home_strength_catch_en{
    font-size: 200px;
  }
  .home_strength_catch_en p{
  }
  .home_strength_head{
    font-size: 40px;
    margin-bottom: 60px;
  }
  .home_strength_head_txt{
    /*padding: 14px 15px 20px;*/
    padding: 0.2153em 0.2307em 0.3076em;
  }
  .home_strength_head_icon{
    font-size: 1.539em;
    padding: 0 10px 10px;
  }

  .home_strength_txt{
    /*text-align: center;*/
  }

  .home_strength_list_wrap{

  }
  * + .home_strength_list_wrap{
    margin-top: 75px;
  }

  .home_strength_list{
    margin-left: -5px;
    margin-right: -5px;
  }
  .home_strength_list_item{
    width: 50%;
    padding-left: 5px;
    padding-right: 5px;
  }
  .home_strength_list_item:nth-child(n+3){
    margin-top: 50px;
  }
  .home_strength_list_item_inner{
  }
  .home_strength_list_item_bg.img_fit:before{
    padding-top: 92.593%;
  }
  .home_strength_list_item_num{
    font-size: 60px;
  }
  .home_strength_list_item_title{
    font-size: 24px;
  }

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

  /* Mission */
  .home_mission{
  }
  .home_mission_box1{
    width: 32.23%;
    order: 1;
    margin-top: 0;
  }
  .home_mission_box2{
    width: 29.60%;
    width: 38%;
    order: 2;
    margin-top: 0;
  }
  .home_mission_box3{
    width: 21.81%;
    order: 3;
    margin-top: 0;
  }
  .home_mission_img1{
    margin-left: -30px;
  }
  .home_mission_img2{
    margin-right: -30px;
  }

  .home_mission_title{
    margin-bottom: 28px;
  }
  .home_mission_title_en{
    /*font-size: 24px;*/
    margin-bottom: 25px;
  }
  .home_mission_title_ja{
    /*font-size: 40px;*/
    /*line-height: 2;*/
  }
  .home_mission_txt{

  }

  /* For */
  .home_for{
    padding-top: 40px;
  }
  .home_for_box1{
    width: 47.36%;
    padding-top: 50px;
    order: 1;
  }
  .home_for_box2{
    width: 46.05%;
    order: 2;
  }
  .home_for_category{
    /*font-size: 24px;*/
    padding: 5px 10px 6px 38px;
    /*margin-bottom: 45px;*/
  }
  .home_for_category:before{
    width: 10px;
    height: 10px;
    left: 15px;
  }
  .home_for_title{
    /*font-size: 40px;*/
    margin-right: -50px;
    /*margin-bottom: 35px;*/
  }
  .home_for_txt{
  }
  .home_for_img{
    border-radius: 10px 0 0 10px;
    margin-right: var(--margin-for-device-side-w);
  }
  .home_for_img.img_fit:before{
    /*padding-top: 66.667%;*/
  }
  .home_for_catch_en{
    /*font-size: 120px;*/
    /*top: 0;*/
    left: -20px;
  }

  /* Reason */
  .home_reason_wrap{

  }
  * + .home_reason_wrap{
    margin-top: 85px;
  }

  .home_reason_head{
    padding-bottom: 8px;
    margin-bottom: 60px;
  }
  .home_reason_head_en{
    font-size: 60px;
    margin-right: 27px;
  }
  .home_reason_head_ja{
    font-size: 30px;
  }

  .home_reason{
    /*margin-left: -12px;*/
    /*margin-right: -12px;*/
  }
  * + .home_reason{

  }
  .home_reason_item{
    width: 33.333%;
    /*padding-left: 12px;*/
    /*padding-right: 12px;*/
  }
  .home_reason_item:nth-child(n+3){
    margin-top: 0;
  }
  .home_reason_item:nth-child(n+4){
    margin-top: 24px;
  }
  .home_reason_item_inner{
    /*padding: 40px 40px 30px;*/
    height: 100%;
  }
  .home_reason_item_num{
    /*font-size: 24px;*/
    /*top: 40px;*/
    /*left: 40px;*/
  }
  .home_reason_item_icon{
    /*margin-bottom: 30px;*/
  }
  .home_reason_item_icon img{
    /*width: 12;*/
  }
  .home_reason_item_title{
    font-size: 24px;
    /*margin-bottom: 20px;*/
  }

  /* Strength */
  .home_strength{
    /*padding-top: 120px;*/
  }
  .home_strength_catch_en{
    /*font-size: 300px;*/
  }
  .home_strength_catch_en p{
  }
  .home_strength_head{
    /*font-size: 50px;*/
    margin-bottom: 60px;
  }
  .home_strength_head_txt{
    /*padding: 14px 15px 20px;*/
  }
  .home_strength_head_icon{
    font-size: 1.539em;
    padding: 0 10px 10px;
  }

  .home_strength_txt{
    text-align: center;
  }

  .home_strength_list_wrap{

  }
  * + .home_strength_list_wrap{
    margin-top: 75px;
  }

  .home_strength_list{
  }
  .home_strength_list_item{
    width: 25%;
  }
  .home_strength_list_item:nth-child(n+3){
    margin-top: 0;
  }
  .home_strength_list_item:nth-child(n+5){
    margin-top: 50px;
  }
  .home_strength_list_item_inner{
  }
  .home_strength_list_item_num{
    font-size: 60px;
  }
  .home_strength_list_item_title{
    font-size: 20px;
  }

}
@media (min-width:1200px){
  .pg_corp .section.sec3 .home_reason_item_inner{
    padding: 60px 40px 37px;
  }

  .cmn_about + .home_reason_wrap{
    margin-top: -40px;
  }
}
@media (min-width:1470px){

  /* Mission */
  .home_mission{
  }
  .home_mission_box1{
    width: 32.23%;
    order: 1;
  }
  .home_mission_box2{
    width: 29.60%;
    width: 38%;
    order: 2;
    margin-top: 75px;
  }
  .home_mission_box3{
    width: 21.81%;
    order: 3;
    margin-top: 60px;
  }
  .home_mission_img1{
    /*margin-left: -120px;*/
  }
  .home_mission_img1_item1{
    width: 89.86%;
  }
  .home_mission_img1_item2{
    width: 58.82%;
  }
  .home_mission_img2{
    /*margin-right: -120px;*/
  }

  .home_mission_title{
    margin-bottom: 28px;
  }
  .home_mission_title_en{
    font-size: 24px;
    margin-bottom: 25px;
  }
  .home_mission_title_ja{
    font-size: 40px;
    line-height: 2;
  }
  .home_mission_txt{

  }
  .home_mission_catch_en{
    font-size: 200px;
  }

  /* For */
  .home_for{
    padding-top: 55px;
  }
  .home_for_box1{
    width: 47.36%;
    padding-top: 100px;
  }
  .home_for_box2{
    width: 46.05%;
  }
  .home_for_category{
    font-size: 20px;
    /*padding: 5px 10px 6px 38px;*/
    /*margin-bottom: 45px;*/
  }
  .home_for_category:before{
    width: 10px;
    height: 10px;
    left: 15px;
  }
  .home_for_title{
    font-size: 32px;
    /*margin-right: -50px;*/
    /*margin-bottom: 35px;*/
  }
  .home_for_txt{
  }
  .home_for_img{
    /*margin-right: var(--margin-for-device-side-w);*/
  }
  .home_for_img.img_fit:before{
    /*padding-top: 66.667%;*/
  }
  .home_for_catch_en{
    font-size: 120px;
    /*top: 0;*/
    left: -40px;
  }

  /* Reason */
  .home_reason_wrap{

  }
  * + .home_reason_wrap{
    margin-top: 85px;
  }

  .home_reason_head{
    padding-bottom: 8px;
    margin-bottom: 60px;
  }
  .home_reason_head_en{
    font-size: 60px;
    margin-right: 27px;
  }
  .home_reason_head_ja{
    font-size: 30px;
  }

  .home_reason{
    margin-left: -12px;
    margin-right: -12px;
  }
  * + .home_reason{

  }
  .home_reason_item{
    width: 33.333%;
    padding-left: 12px;
    padding-right: 12px;
  }
  .home_reason_item:nth-child(n+2){
    margin-top: 0;
  }
  .home_reason_item:nth-child(n+4){
    margin-top: 20px;
  }
  .home_reason_item_inner{
    padding: 40px 40px 30px;
  }
  .pg_corp .section.sec3 .home_reason_item_inner{
    padding: 92px 40px 37px;
  }
  .home_reason_item_num{
    font-size: 24px;
    top: 40px;
    left: 40px;
  }
  .home_reason_item_icon{
    margin-bottom: 30px;
  }
  .home_reason_item_icon img{
    width: auto;
  }
  .home_reason_item_title{
    font-size: 30px;
    margin-bottom: 20px;
  }

  /* Strength */
  .home_strength{
    padding-top: 120px;
  }
  .home_strength_catch_en{
    font-size: 300px;
  }
  .home_strength_catch_en p{
  }
  .home_strength_head{
    font-size: 65px;
    margin-bottom: 60px;
  }
  .home_strength_head_txt{
    /*padding: 14px 15px 20px;*/
  }
  .home_strength_head_icon{
    font-size: 1.539em;
    padding: 0 10px 10px;
  }

  .home_strength_txt{
    text-align: center;
  }

  .home_strength_list_wrap{

  }
  * + .home_strength_list_wrap{
    margin-top: 75px;
  }

  .home_strength_list{
  }
  .home_strength_list_item{
    width: 25%;
  }
  .home_strength_list_item:nth-child(n+5){
    margin-top: 50px;
  }
  .home_strength_list_item_inner{
  }
  .home_strength_list_item_num{
    font-size: 72px;
  }
  .home_strength_list_item_title{
    font-size: 24px;
  }


  .cmn_about + .home_reason_wrap{
    margin-top: 0px;
  }
}
@media (min-width:1720px){

  /* Mission */
  .home_mission{
  }
  .home_mission_box1{
    width: 32.23%;
  }
  .home_mission_box2{
    width: 29.60%;
  }
  .home_mission_box3{
    width: 21.81%;
  }

  .home_mission_img1{
    margin-left: -120px;
  }
  .home_mission_img2{
    margin-right: -120px;
  }
  .home_mission_catch_en{
    font-size: 300px;
  }

  /* For */
  .home_for{
    padding-top: 55px;
  }
  .home_for_box1{
    /*width: 47.36%;*/
    padding-top: 100px;
  }
  .home_for_box2{
    /*width: 46.05%;*/
  }
  .home_for_category{
    font-size: 24px;
    /*padding: 5px 10px 6px 38px;*/
    margin-bottom: 45px;
  }
  .home_for_category:before{
    width: 10px;
    height: 10px;
    left: 15px;
  }
  .home_for_title{
    font-size: 40px;
    margin-right: -50px;
    margin-bottom: 30px;
  }
  .home_for_txt{
  }
  .home_for_img{
    /*margin-right: var(--margin-for-device-side-w);*/
  }
  .home_for_img.img_fit:before{
    /*padding-top: 66.667%;*/
  }
  .home_for_catch_en{
    font-size: 120px;
    /*top: 0;*/
    left: -60px;
  }

  .cmn_about + .home_reason_wrap{
    margin-top: -85px;
  }
}




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

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

}
.pg_about .section.sec1{

}
.pg_about .section.sec2{
  background-image: url('/system_panel/uploads/images/about_strength_bg.jpg');
  background-size: auto auto;
  background-repeat: no-repeat;
  background-position: center top;
  background-color: #1a1a1a;
  padding-bottom: 100px;
}
.pg_about .section.sec3{

}


@media (max-width:374px){

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

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

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

  .pg_about .section.sec1{

  }
  .pg_about .section.sec2{
    padding-bottom: 100px;
  }
  .pg_about .section.sec3{

  }

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

  .pg_about .section.sec1{

  }
  .pg_about .section.sec2{
    padding-bottom: 100px;
  }
  .pg_about .section.sec3{

  }

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


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

  .pg_about .section.sec1{

  }
  .pg_about .section.sec2{
    padding-bottom: 160px;
  }
  .pg_about .section.sec3{

  }

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

  .pg_about .section.sec1{

  }
  .pg_about .section.sec2{
    padding-bottom: 160px;
    margin-top: 0px;
    padding-top: 243px;
  }
  .pg_about .section.sec3{

  }

}

/* メイン部分 */

/* 由来 */
.about_origin{

}
* + .about_origin{
  margin-top: 55px;
}
.about_origin_inner{
  width: 1240px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  color: #FFF;
  border-radius: 10px;
  overflow: hidden;
  padding: 30px 20px;
  position: relative;
  z-index: 1;
}
.about_origin_title{
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
}
.about_origin_txt{
  text-align: justify;
}
.about_origin_bg{
  position: absolute;
  z-index: -1;
  inset: 0;

}
.about_origin_bg:after{
  content: "";
  background: rgba(0,0,0,0.7);
  background: rgba(0,0,0,0.6);
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
}
.about_origin_bg.img_fit:before{
  padding-top: 0;
  height: 100%;
}

/* Strength */

.about_strength_head{
  width: 100%;
  padding: 0;
  margin-bottom: 30px;
}
.about_strength_head_title{
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  margin-bottom: 10px;
}
.about_strength_head_title_txt{
  font-size: 1em;
  font-weight: 500;
  line-height: 1;
  background: #000;
  color: #FFF;
  /*padding: 14px 15px 20px;*/

  padding: 8px 10px 10px;
}
.about_strength_head_title_icon{
  font-size: 1.539em;
  font-weight: 200;
  line-height: 1;
  color: #FFF;
  padding: 0 10px 10px;
}
.about_strength_msg{
  color: #FFF;
}


.about_strength{
  /*display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;*/
}
.about_strength_item{
  /*width: 100%;
  padding-left: 10px;
  padding-right: 10px;*/
}
.about_strength_item:nth-child(n+2){
  /*margin-top: 20px;*/
}
.about_strength_item_inner{
  background: #ddddd9;
  padding: 25px 25px;
  border-radius: 10px;
}
.about_strength_item_img_box{
  position: relative;
  z-index: 1;
}
.about_strength_item_img{
  border-radius: 10px;
}
.about_strength_item_img.img_fit:before{
  padding-top: 39.683%;
}
.about_strength_item_num{
  font-size: 70px;
  font-family: var(--font-en);
  line-height: 1;
  letter-spacing: 0;
  color: #FFF;
  position: absolute;
  z-index: 1;
  left: 0;
  bottom: 0;
  -webkit-transform: translate(-26%, 34%);
  transform: translate(-26%, 34%);
}
.about_strength_item_title{
  font-size: 20px;
  font-weight: 700;
  margin-top: 30px;
  margin-bottom: 10px;
}
.about_strength_item_txt{

}

.about_strength_catch_en{
  font-size: 100px;
  font-family: var(--font-en);
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 50%;
  width: 100vw;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
.about_strength_catch_en p{
  white-space: nowrap;
  letter-spacing: 0;
  line-height: 1;
  color: #FFF;
  opacity: 0.15;
}

@media (max-width:767px){

  /* Strength */
  .about_strength{
    /*display: flex;*/
    /*flex-wrap: wrap;*/
    /*margin-left: -10px;*/
    /*margin-right: -10px;*/
  }
  .about_strength_item{
    width: 100%;
    /*padding-left: 10px;*/
    /*padding-right: 10px;*/
  }
  .about_strength_item:nth-child(n+2){
    margin-top: 20px;
  }

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

  /* 由来 */
  .about_origin{

  }
  * + .about_origin{
    margin-top: 55px;
  }
  .about_origin_inner{
    padding: 50px 40px;
  }
  .about_origin_title{
    font-size: 24px;
    margin-bottom: 20px;
  }
  .about_origin_txt{
  }

  /* Strength */

  .about_strength_head{
    width: calc(50% - 10px);
    padding: 0 15px;
    margin-bottom: 30px;
  }
  .about_strength_head_title{
    font-size: 22px;
    margin-bottom: 10px;
  }
  .about_strength_head_title_txt{
    /*padding: 14px 15px 20px;*/
    padding: 0.2153em 0.2307em 0.3076em;
  }
  .about_strength_head_title_icon{
    font-size: 1.539em;
    padding: 0 10px 10px;
  }

  .about_strength{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row-reverse;
    margin-left: -10px;
    margin-right: -10px;
  }
  .about_strength_item{
    width: 50%;
    padding-left: 10px;
    padding-right: 10px;
  }

  .about_strength_item:nth-child(n+2){
    margin-top: 0;
  }
  .about_strength_item:nth-child(n+3){
    margin-top: 20px;
  }
  .about_strength_item:nth-child(2n+1){
    /*-webkit-transform: translate(0, 260px);*/
    transform: translate(0, -380px);
  }
  .about_strength_item_inner{
    /*padding: 60px 60px;*/
    height: 100%;
  }
  .about_strength_item_num{
    font-size: 70px;
  }
  .about_strength_item_title{
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 10px;
  }
  .about_strength_item_txt{
    text-align: justify;
  }

  .about_strength_catch_en{
    font-size: 200px;
    bottom: 120px;
    left: 50%;
  }
}
@media (min-width:1024px){

  /* 由来 */
  .about_origin{

  }
  * + .about_origin{
    margin-top: 55px;
  }
  .about_origin_inner{
    padding: 75px 15px;
  }
  .about_origin_title{
    font-size: 30px;
    margin-bottom: 20px;
  }
  .about_origin_txt{
    text-align: center;
  }

  /* Strength */
  .about_strength_head{
    padding: 0 15px;
    margin-bottom: 30px;
  }
  .about_strength_head_title{
    font-size: 30px;
    margin-bottom: 25px;
  }
  .about_strength_head_title_txt{
    /*padding: 14px 15px 20px;*/
    /*padding: 0.2153em 0.2307em 0.3076em;*/
  }
  .about_strength_head_title_icon{
    /*font-size: 1.539em;*/
    /*padding: 0 10px 10px;*/
  }

  .about_strength_item:nth-child(2n+1) {
    transform: translate(0, -345px);
  }
  .about_strength_item_inner{
    padding: 30px 30px;
  }
  .about_strength_item_num{
    font-size: 100px;
  }
  .about_strength_item_title{
    font-size: 26px;
    margin-top: 50px;
    margin-bottom: 18px;
  }

  .about_strength_catch_en{
    font-size: 200px;
    bottom: 130px;
  }

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


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

  /* Strength */

  .about_strength_item:nth-child(2n+1) {
    transform: translate(0, -300px);
  }

  .about_strength_item_inner{
    padding: 60px 60px;
  }
  .about_strength_item_num{
    font-size: 120px;
  }
  .about_strength_item_title{
    font-size: 30px;
    margin-top: 50px;
    margin-bottom: 18px;
  }
  .about_strength_item_txt{

  }

  .about_strength_head{
    /*margin-bottom: 75px;*/
  }
  .about_strength_head_title{
    font-size: 45px;
    /*margin-bottom: 45px;*/
  }

  .about_strength_catch_en{
    font-size: 300px;
    bottom: 60px;
  }

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

  .about_strength_head{
    margin-bottom: 75px;
  }
  .about_strength_head_title{
    font-size: 50px;
    margin-bottom: 45px;
  }

  .about_strength_item:nth-child(2n+1) {
    transform: translate(0, -390px);
  }
  .about_strength_item_num{
    font-size: 160px;
  }


  .about_strength_catch_en{
    font-size: 300px;
    bottom: 160px;
  }

}



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

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

}
.pg_corp .section.sec1{
  background-image: url('/system_panel/uploads/images/corp_about_bg.jpg');
  background-position: center top;
}
.pg_corp .section.sec1:before{
  /*  content: "";
    display: block;
    width: 100%;
    height: 50%;
    background: #dcdcd8;
    position: absolute;
    top: 0;
    left: 0;
    opacity: .7;*/
}
.pg_corp .section.sec2{
  padding-top: 44px;
}
.pg_corp .section.sec3{
  background-color: #FFF;
}
.pg_corp .section.sec4{
  border-radius: 25px!important;
  z-index: 5;
}


@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_corp .section.sec4{
    margin-top: 80px;
    border-radius: 50px!important;
  }

}
@media (min-width:1024px){
  .pg_corp .section.sec4 .cmn_about.right .cmn_about_box2{
    margin-top: 0;
  }

}
@media (min-width:1200px){
  .pg_corp .section.sec4{
    padding-top: 80px;
  }

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


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


}

/* メイン部分 */



/* Service */
.corp_service{

}
* + .corp_service{

}
.tt2 + .corp_service{
  margin-top: -130px;
}
.corp_service_row{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 20px 20px;
  background: #FFF;
  border-radius: 10px;
}
.corp_service_row + .corp_service_row{
  margin-top: 20px;
}
.corp_service_box1{
  width: 32.14%;
  width: 100%;
}
.corp_service_box2{
  width: 64.64%;
  width: 100%;
  margin-top: 15px;
}
.corp_service_img{
  border-radius: 10px;
}
.corp_service_img.img_fit:before{
  padding-top: 66.667%;
}
.corp_service_num{
  display: flex;
  margin-bottom: 10px;
}
.corp_service_num p{
  display: flex;
  align-items: center;
  font-size: 16px;
  font-family: var(--font-en);
  letter-spacing: 0;
  line-height: 1;
  background: #000;
  color: #FFF;
  border-radius: 3px;
  padding: 4px 15px 4px 25px;
  position: relative;
  z-index: 1;
}
.corp_service_num p:before{
  content: "";
  background: var(--sub-color);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 10px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.corp_service_num p strong{
  font-size: 1.333em;
  font-weight: 400;
  margin-left: 5px;
}
.corp_service_title{
  font-size: 20px;
  font-weight: 700;
  border-bottom: 1px solid;
  padding-bottom: 10px;
  margin-bottom: 15px;
}
.corp_service_txt{

}


@media (min-width:768px){

  /* Service */
  .corp_service{

  }
  * + .corp_service{

  }
  .tt2 + .corp_service{
    margin-top: -75px;
  }
  .corp_service_row{
    padding: 30px 30px;
  }
  .corp_service_row + .corp_service_row{
    margin-top: 20px;
  }
  .corp_service_box1{
  }
  .corp_service_box2{
    margin-top: 30px;
  }
  .corp_service_num{
    margin-bottom: 15px;
  }
  .corp_service_num p{
    font-size: 16px;
    padding: 4px 15px 4px 25px;
  }
  .corp_service_num p:before{
    width: 6px;
    height: 6px;
    left: 10px;
  }
  .corp_service_num p strong{
    margin-left: 5px;
  }
  .corp_service_title{
    font-size: 24px;
    padding-bottom: 15px;
    margin-bottom: 15px;
  }

  .corp_service_img.img_fit:before{
    padding-top: 54.667%;
  }
}
@media (min-width:1024px){

  /* Service */
  .corp_service{

  }
  * + .corp_service{

  }
  .tt2 + .corp_service{
    margin-top: -90px;
  }
  .corp_service_row{
    padding: 60px 60px;
  }
  .corp_service_row + .corp_service_row{
    margin-top: 40px;
  }
  .corp_service_box1{
    width: 32.14%;
  }
  .corp_service_box2{
    width: 64.64%;
    width: 65.64%;
    margin-top: 0;
  }
  .corp_service_num{
    /*margin-bottom: 20px;*/
  }
  .corp_service_num p{
    /*font-size: 18px;*/
    /*padding: 4px 15px 4px 25px;*/
  }
  .corp_service_num p:before{
    /*width: 6px;*/
    /*height: 6px;*/
    /*left: 10px;*/
  }
  .corp_service_num p strong{
    /*margin-left: 5px;*/
  }
  .corp_service_title{
    /*font-size: 30px;*/
    /*padding-bottom: 23px;*/
    /*margin-bottom: 27px;*/
  }

  .corp_service_row:nth-child(odd) .corp_service_box1{
    order: 1;
  }
  .corp_service_row:nth-child(odd) .corp_service_box2{
    order: 2;
  }
  .corp_service_row:nth-child(even) .corp_service_box1{
    order: 2;
  }
  .corp_service_row:nth-child(even) .corp_service_box2{
    order: 1;
  }

  .corp_service_img.img_fit:before{
    padding-top: 66.667%;
  }
}
@media (min-width:1200px){

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

  /* Service */
  .corp_service{

  }
  * + .corp_service{

  }
  .tt2 + .corp_service{
    margin-top: -130px;
  }
  .corp_service_row{
    padding: 60px 60px;
  }
  .corp_service_row + .corp_service_row{
    margin-top: 40px;
  }
  .corp_service_box1{
    width: 32.14%;
  }
  .corp_service_box2{
    width: 64.64%;
    width: 65.64%;
    margin-top: 0;
  }
  .corp_service_num{
    margin-bottom: 20px;
  }
  .corp_service_num p{
    font-size: 18px;
    /*padding: 4px 15px 4px 25px;*/
  }
  .corp_service_num p:before{
    /*width: 6px;*/
    /*height: 6px;*/
    /*left: 10px;*/
  }
  .corp_service_num p strong{
    /*margin-left: 5px;*/
  }
  .corp_service_title{
    font-size: 30px;
    padding-bottom: 23px;
    margin-bottom: 27px;
  }


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

}





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

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

}
.pg_indivi .section.sec1{
  background-image: url('/system_panel/uploads/images/indivi_about_bg.jpg');
  background-position: center top;
}
.pg_indivi .section.sec2{
  padding-top: 50px;
}
.pg_indivi .section.sec4{
  background: #fff;
  position: relative;
}
.pg_indivi .section.sec4:before{
  content: "";
  display: block;
  width: 100%;
  height:150%;
  background: #fff;
  position: absolute;
  top: 50%;
  ;
  left: 0;
}
@media (max-width:374px){

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

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

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

  .pg_xxx{

  }
  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }

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


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


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


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


}

/* メイン部分 */
.pg_indivi .section.sec4 .cmn_about_list{
  background: #eeeeed;
}
@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{

}


@media (max-width:374px){

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

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

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

  .pg_xxx{

  }
  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }

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


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


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


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


}

/* メイン部分 */

@media (max-width:767px){

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

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


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


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


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


}


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

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

}
.pg_company .section.sec1{

}
.pg_company .section.sec2{

}


@media (max-width:374px){

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

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

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

  .pg_company{

  }
  .pg_company .section.sec1{

  }
  .pg_company .section.sec2{

  }

}
@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: #808080;
  padding: 10px 10px;
}
.company_tbl .table_rows_th{
  background: #e6e6e6;
  font-weight: 500;
}
.company_tbl .table_rows_td{
  background: #FFF;
}

/* マップ */
.company_map{

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

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

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

@media (max-width:767px){

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

  /* 会社概要 */
  .company_tbl{

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

  /* マップ */
  .company_map{

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


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

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


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

  /* 会社概要 */
  .company_tbl{

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

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

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


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


}


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

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

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

@media (max-width:767px){

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

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

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

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

  }

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

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

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

  }

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

}


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

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

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

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

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


.news_list_thumb.col3{

}
.news_list_thumb.col4{

}


@media (max-width:767px){

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

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

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

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

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

  }

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

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


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

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

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

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

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

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

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



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


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


}


/*******************************
*　記事一覧(2カラム)
********************************/
.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: #0069ba;
  color: #FFF;
  padding: 10px 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 20px;
}

.posts_cat_item{
  padding-left: 8px;
}
.posts_cat_item + .posts_cat_item{
  margin-top: 18px;
}
.posts_cat_item a{
  display: block;
  position: relative;
  padding-left: 20px;
  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: 55px;
  }

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

}



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

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

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

/* メイン */
.gallery_main{

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

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

}


/* 詳細 */
.gallery_detail{

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

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


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

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

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

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

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

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

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

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

  }

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

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

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


}





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

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

@media (max-width:1023px){

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

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

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


.contact_tt {
  font-size: 26px;
  text-align: center;
  margin-bottom: 25px;
  letter-spacing: 0.16em;
}
.contact_tt.privacy{
  font-family: "Noto Sans JP";
  font-weight: 500;
}

/* フォーム */
.pg_contact .formTbl{
  border: 1px solid #b2b2b2;
  background: #ffffff;
}
.pg_contact .form.formWrap {
  letter-spacing: 0.1em;
  position: relative;
  z-index: 1;
}
.pg_contact .formRow + .formRow{
  border-top: 1px solid #b2b2b2;
}
.pg_contact .formTh {
  padding: 12px 15px 16px 20px;
  background: #eeeeee;
  letter-spacing: 0.08em;
}
.pg_contact .formTh label{
  margin: 0;
}
.d-inline-block.requiredText {
  font-size: 13px;
  padding: 0 12px;
  margin-top: 3px;
  float: right;
  font-weight: 900;
  letter-spacing: 0.05em;
  background: #b80000;
  color: #ffffff;
}
.pg_contact .formTd {
  font-size: 15px;
  padding: 10px 16px;
}
.pg_contact .formTd input[type="text"],
.pg_contact .formTd input[type="tel"],
.pg_contact .formTd input[type="email"]{
  max-width: 461px;
  height: 39px;
  width: 100%;
  font-size: 16px;
  padding: 5px 10px;
  border: 1px solid #d6d8d8;
  border-radius: 0;
  letter-spacing: 0.18em;
}
.pg_contact .formTd select{
  border-radius: 0;
}
.pg_contact .formTd input[name="zip1"]{
  max-width: 120px;
}
.pg_contact .formTd input[name="zip2"]{
  max-width: 150px;
}
.pg_contact .formTd select[name="pref"]{
  max-width: 225px;
  width: 100%;
  font-size: 16px;
  padding: 7px 10px;
  border: 1px solid #d6d8d8;
}
.pg_contact .formTd input[name="city"]{
  max-width: 425px;
}
.pg_contact .formTd .addArea + .addArea{
  margin-top: 8px;
}
.pg_contact .formTd .addArea .labelText02{
  width: 75px;
}
.pg_contact .formTd textarea{
  width: 100%;
  height: 280px;
  font-size: 16px;
  padding: 5px 10px;
  border: 1px solid #d6d8d8;
  border-radius: 0;
}
.pg_contact .formWrap .text-center{
  padding-top: 40px;
}
.pg_contact input[name="privacy"]{
  margin-right: 7px;
}
.pg_contact .privacyLabel{
  font-size: 17px;
  display: inline;
}
.pg_contact .privacyLabel a{
  color: #1a3e9b;
}
.pg_contact .formBtn.formSend {
  max-width: 314px;
  width: 100%;
  font-size: 18px;
  padding: 10px;
  margin: 32px auto 0;
  border: 0;
  background: #b80000;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.1em;
  display: block;
  font-weight: 500;
  cursor: pointer;
}
.pg_contact label {
  display: inline-block;
  margin-bottom: 0;
}
.radioArea{
  padding: 0 15px;
}
.radioArea .d-inline-block .label{
  margin-left: 9px;
  letter-spacing: 0;
}
.radioArea .d-inline-block{
  margin-right: 40px;
}
.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;
}
.pg_contact .section.sec1 {
  padding: 0 0 0;
}

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


/* プライバシー */
.pg_contact .section.sec2{
  padding: 150px 0 20px;
}
.pg_contact .section.sec2 .contact_tt{
  margin-bottom: 60px;
  padding-left: 10px;
}
.privacy_item {
  margin-top: 35px;
}
.privacy_ttl {
  font-size: 18px;
  font-weight: 500;
  padding: 10px 15px;
  margin-bottom: 12px;
  border-left: 6px solid #c3d194;
}
.privacy_txt{
  letter-spacing: 0.04em;
  line-height: 1.875;
  text-align: justify;
}

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

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

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

.contact_tt.privacy {
  margin-bottom: 58px;
}
.contact_tt.privacy br{
  display: none;
}
.pg_contact .d-inline{
  display: inline-block!important;
}
.pg_contact .d-inline-block {
  vertical-align: middle;
}


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

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

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

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


  .pg_contact .section.sec1 {
    padding: 0 0 25px;
  }
  .contact_info_bg {
    padding: 18px 10px;
  }

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

  .privacy_ttl {
    font-size: 15px;
    padding-left: 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){


}
