@charset "UTF-8";

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

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

  /* フォント関連 */
  --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: "EB Garamond", serif;
  --font-mincho: 'Noto Serif JP', serif;
}


/* ******************************
   全体設定
   ****************************** */
body{
  font-family: "Shippori Mincho", serif;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.025em;
  color: var(--txt-color);

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

#root{
  overflow: hidden;
}


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

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

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

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

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

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

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

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

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

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


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

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

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

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

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

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

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

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

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

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

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

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


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


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

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


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



/*******************************
*　ヘッダー
********************************/
.header{
  --logo-height: 30px;
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
}
.hdr1{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 10px;
}

/* ロゴ */
.hdr_logo{

}
.hdr_logo img{
  display: block;
  width: auto;
  height: auto;
  transition: 0.2s all;
}

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

/* TELボタン */
.hdr_tel{

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

}
.hdr_tel_link p{

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


/* お問い合わせボタン */
.hdr_contact{
  display: flex;
  align-items: center;
  margin-left: 20px;
}
.hdr_contact a{
  background: var(--main-color);
  color: #FFF;
  width: 185px;
  padding: 10px 5px;
  text-align: center;
  transition: 0.2s all;
}
.hdr_contact a.email p:before{
  content:"\f0e0";
  font-family: "fontAwesome";
  margin-right: 10px;
}
.hdr_contact a:hover{
  background: var(--sub-color);
  color: #FFF;
}

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


@media (min-width:375px){

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

  .hdr1 {
    justify-content: center;
  }

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

  .hdr_logo img{
    width: 120px;
  }

  .hdr_right{
    display: none;
  }
}
@media (min-width:768px){

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

    position: fixed;
    z-index: 3;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 27px 50px 27px 31px;
    transition: all .2s;
  }

  .hdr1{
    padding: 0 15px 0;
  }

  /* ロゴ */
  .hdr_logo{
    position: relative;
    top: -14px;
    top: -3px;
  }
  .hdr_logo img{
    /*width: 180px;*/
  }

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

  /* TELボタン */
  .hdr_tel{

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

  .hdr_contact_btn{
    display: block;
    width: 200px;
    font-size: 18px;
    font-weight: 400;
    font-family: var(--font-en);
    line-height: 1.2;
    text-align: center;
    border: 1px solid transparent;
    border-radius: 22.5px;
    background: rgba(255,255,255,0.8);
    /* border-radius: 27px; */
    color: #181818;
    padding: 6px 20px;
    margin: 0;
    position: relative;
    z-index: 1;
    transition: 0.2s all;
    cursor: pointer;
  }
  .hdr_contact_btn p{
    letter-spacing: 0.025em;
  }
  .hdr_contact_btn:hover{
    background: #776f37;
    color: #181818;
  }

  .hdr_right{
    display: flex;
    align-items:center;
  }
}
@media (min-width:1024px){

  .header{
    --logo-height: 48px;
    padding: 27px 50px 27px 31px;
  }

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

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

  }
  .header.slim .hdr_logo img{
  }

  /* TELボタン */
  .hdr_tel{

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

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

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

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

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

  }
  .header.slim .hdr_logo img{
  }

  .hdr_contact_btn{
    font-size: 24px;
  }
}
@media (min-width:1470px) {
  .header{
    justify-content: space-between;
  }
  .gnav_item_en{
    display: none;
  }

  .gnav_item.fw{
    display: none;
  }
}
/*******************************
*　メインビジュアル
********************************/
/* 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_img:after{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1;
}

/* MVテキスト */
.mv_txt{
  width: 100%;
  position: absolute;
  z-index: 2;
  top:auto;
  bottom: 3%;
  left: 0;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  color: #FFF;
  font-size: 32px;
  font-weight: 700;
}
.mv_txt1{
  font-size: 25px;
  font-weight: 400;
  letter-spacing: 0.025em;
}
.mv_txt2{
  font-size: 16px;
  font-weight: 500;
  line-height: 2.27em;
  margin-top: 20px;
}
.mv_txt2 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;
}
@media (min-width:768px){

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

  /* MVテキスト */
  .mv_txt{
    left: 0;
    font-size: 32px;
  }
  .mv_txt1{
    font-size: 40px;
  }
  .mv_txt2{
    font-size: 18px;
  }
}
@media (min-width:1024px){


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

  /* MVテキスト */
  .mv_txt{
    left: 0;
    font-size: 32px;
  }
  .mv_txt1{
    font-size: 40px;
  }
  .mv_txt2{

  }

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

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

  /* MVテキスト */
  .mv_txt{
    left: 0;
    font-size: 32px;
  }
  .mv_txt1{
    font-size: 60px;
  }
  .mv_txt2{

  }

}


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

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

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

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


@media (min-width:768px){

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

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


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

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

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

}


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

.pg_header_title{
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 0;
  right: 0;
  text-align: center;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.pg_header_title_txt{
  font-size: 32px;
  font-weight: 700;
  color: #FFF;
}


.pg_header_img{
  margin-bottom:0;
}
.pg_header_img:before{
  padding-top: 180px;
}
.pg_header_img:after{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1;
}
.pg_header .tt2{

}
.pg_header .tt2_en{

}
.pg_header .tt2_ja{

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

  .pg_header_title_txt{

  }

  .pg_header_img{
    margin-bottom: 0;
  }
  .pg_header_img:before{
    padding-top:300px;
  }
  .pg_header .tt2{

  }
  .pg_header .tt2_en{

  }
  .pg_header .tt2_ja{

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

  .pg_header_title_txt{

  }

  .pg_header_img{
    margin-bottom: 0;
  }
  .pg_header_img:before{
    padding-top: 580px;
  }
  .pg_header .tt2{

  }
  .pg_header .tt2_en{

  }
  .pg_header .tt2_ja{

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

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

  .pg_header_title_txt{

  }

}



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

.footer{
  background: #dbdbdb;
  ;
  margin-top:0;
  padding-bottom: 20px;
}

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

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

}
.ftr1_box2{

}

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


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

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

.ftr_addr em{
  font-style: normal;
}
.ftr_copy{
  font-size: 14px;
  text-align: center;
}

/* 追尾スマホメニュー */
.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: #181818;
  color: #fff;
  text-decoration: none;
  line-height: 1.2;
}
.footer_fix .footer_fix_item_1{
  width: 76%;
  border-right: 1px solid #fff;
}
.footer_fix .footer_fix_item_1.recruit{
  background: #eeeeee;
  color: #024b93;
}
.footer_fix .footer_fix_item_2{
  width: 24%;
  background: #fff;
}
.footer_fix > a i{
  font-size: 20px;
  margin-bottom: 8px;
}
.footer_fix .footer_fix_item_1.remorte i{
  margin-bottom: 0;
}

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

.ftr_contact_wrap{
  position: relative;
  padding-bottom: 94px;
}
.ftr_contact_wrap:before{
  content: "";
  display: block;
  width: 100%;
  height: 160px;
  background: #dbdbdb;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
}
.ftr_contact_img{

}
.ftr_contact_img:before{
  padding-top: 400px;
}
.ftr_contact_wrap_outer{
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  z-index: 1;
  margin-top: 100px;
}
.ftr_contact_wrap_box{
  background: #212121;
  padding: 50px 0;
}
.ftr_contact_wrap_box_inner{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.ftr_contact_wrap_box1{
  color: #fff;
  width: 100%;
}
.ftr_contact_wrap_box1_en{
  font-size: 30px;
  font-weight: 400;
  letter-spacing: 0.075em;
  font-family: var(--font-en);
  line-height: 1;
}
.ftr_contact_wrap_box1_ja{
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.075em;
  display: flex;
  align-items: center;
  margin-top: 30px;
}
.ftr_contact_wrap_box1_ja:before{
  content: "";
  display: block;
  width: 65px;
  height: 1px;
  background: #fff;
  margin-right: 27px;
}
.ftr_contact_wrap_box2{
  width: 100%;
  margin-top: 40px;
  ;
}
.link_1{
  display: block;
  width: 100%;
  border: 1px solid #fff;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  background: transparent;
  position: relative;
  padding: 22px 0;
}
.link_1:after{
  content: "";
  display: block;
  width: 18.51%;
  aspect-ratio:100 / 5;
  background-image: url(/system_panel/uploads/images/arr2.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: 3.7%;
  transform: translateY(-50%);
}
.link_1 p{
  letter-spacing: 0.075em;
}

.ftr_1_outer{
  padding-top:50px;
}
.ftr_1{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.ftr_1_box1{
  width: 100%;
}
.ftr_add{
  font-size: 16px;
  font-weight: 500;
  line-height: 1.875em;
  margin-top: 34px;
}
.ftr_1_box2{
  width: 100%;
}
.ftr_links{

}
.ftr_link{

}

.sns_items{
  display: flex;
  justify-content: flex-end;
}
.sns_item{
  margin-inline: 12px;
}
@media (min-width:375px){

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

  body{
    padding-bottom: 56px;
  }

  .footer_fix{
    display: flex;
  }

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

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

  .sns_items{
    justify-content: center;
    margin-top: 40px;
    margin-bottom: 30px;
  }
  .ftr_links{
    display: none;
  }
  .ftr_1_box1{
    text-align: center;
  }
}
@media (min-width:768px){

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


  .ftr_contact_wrap{
    padding-bottom: 157px;
  }
  .ftr_contact_img{

  }
  .ftr_contact_img:before{
    padding-top: 400px;
  }
  .ftr_contact_wrap_outer{

  }
  .ftr_contact_wrap_box{
    padding: 80px 0;
  }
  .ftr_contact_wrap_box_inner{
    width: 75%;
    margin-inline:auto;
  }
  .ftr_contact_wrap_box1{
    width: 100%;
  }
  .ftr_contact_wrap_box1_en{
    font-size: 40px;
  }
  .ftr_contact_wrap_box1_ja{
    margin-top: 40px;
  }
  .ftr_contact_wrap_box2{
    width: 100%;
    margin-top: 0;
    margin-top: 30px;
  }
  .link_1{
    font-size: 18px;
  }

  .ftr_copy{
    text-align: left;
    position: absolute;
    bottom: 0;
    left: 0;
  }


  .ftr_1_outer{
    padding-top: 130px;
  }
  .ftr_1{

  }
  .ftr_1_box1{
    width: 42.79%;
    position: relative;
  }
  .ftr_add{

  }
  .ftr_1_box2{
    width: 48.64%;
    padding-top: 20px;
  }
  .ftr_links{
    display: flex;
    flex-wrap: wrap;
  }
  .ftr_link{
    font-size: 16px;
    font-weight: 400;
    width: 50%;
  }
  .ftr_link:nth-child(n+3){
    margin-top: 20px;
  }
  .ftr_link p{
    letter-spacing: 0.075em;
  }

  .sns_items{
    margin-top: 123px;
    margin-right: -17px;
  }
  .sns_item{

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

  .ftr_contact_img{

  }
  .ftr_contact_img:before{
    padding-top: 400px;
  }
  .ftr_contact_wrap_outer{

  }
  .ftr_contact_wrap_box{
    padding: 130px 0 116px;
  }
  .ftr_contact_wrap_box_inner{
    width: auto;
    margin-inline:0;
  }
  .ftr_contact_wrap_box1{
    width: 31.53%;
  }
  .ftr_contact_wrap_box2{
  }
  .ftr_contact_wrap_box1_en{
    font-size: 50px;
  }
  .ftr_contact_wrap_box1_ja{

  }
  .ftr_contact_wrap_box2{
    width: 48.64%;
    padding-top: 10px;
    margin-top: 0;
  }
  .link_1{

  }

  .ftr_1{

  }
  .ftr_1_box1{

  }
  .ftr_add{

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

  }
  .ftr_link{
    width: 170px;
  }
  .ftr_link:nth-child(n+3){
    margin-top: 0;
  }
  .ftr_link:nth-child(n+4){
    margin-top: 20px;
  }
}
@media (min-width:1200px){
  .ftr_1_box2{
    width: 48.64%;
  }
}


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


/* テーブル用 */
.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 #888888;
  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;
}

.section:first-child{
  padding-top: 60px;
}
.section:last-child{
  padding-bottom: 80px;
}

/* ページネーション */
.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 #776f37;
  background: #ffffff;
  font-weight: 500;
}
.webgene-pagination li.selected{
  border: 0;
  background: #776f37;
  color: #fff;
}
.webgene-pagination li.next a:after{
  content: "\f101";
  font-family: 'FontAwesome';
  font-weight: 900;
  display: inline-block;
  margin-left: 10px;
}
.webgene-pagination li.prev a:before{
  content: "\f100";
  font-family: 'FontAwesome';
  font-weight: 900;
  display: inline-block;
  margin-right: 10px;
}

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

/* ボタン */
.read_more{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 30px;
  margin-left: -5px;
  margin-right: -5px;
}
.read_more a{
  min-width:190px;
  ;
  font-size: 20px;
  font-weight: 500;
  font-family: var(--font-en);
  line-height: 1.2;
  text-align: left;
  border: none;
  border-bottom: 1px solid #212121;
  background:none;
  ;
  /*border-radius: 27px;*/
  color: #181818;
  padding: 0;
  margin: 5px 5px;
  position: relative;
  z-index: 1;
  transition: 0.2s all;
}
.read_more a p{
  letter-spacing: 0.025em;
  ;
}
.read_more a:after{
  content: "";
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 0;
  width: 9px;
  aspect-ratio:9 / 8;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  transition: 0.2s all;
  background-image: url(/system_panel/uploads/images/arr.png);
  background-position:center center;
  background-repeat: no-repeat;
  background-size: contain;
}
.read_more a:hover{
  color: #181818;
  background:#776F37;
}
.read_more a:hover:after{
  margin-right: 0;
  right: 0;
}


/* 見出し */
.tt2{
  text-align: center;
  margin-bottom: 30px;
}
.tt2_en{
  font-size: 32px;
  font-weight: 400;
  font-family:var(--font-en);
  line-height: 1;
  letter-spacing: 0.025em;
  color: #776f37;
}
.tt2_ja{
  font-size: 16px;
  font-weight: 500;
  margin-top: 5px;
  letter-spacing: 0.025em;
}
.tt2_ja2{
  font-size: 18px;
  font-weight: 500;
  margin-top: 15px;
}
.tt2_ja2 strong{
  display: block;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
}


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

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

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

}

.content_desc{
  font-size: 16px;
  font-weight: 400;
  line-height: 2.25em;
  text-align: justify;
}
.content_desc p{
  letter-spacing: 0.025em;
}
@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;
  }

  .content_desc{
    line-height: 1.875em;
  }
}
@media (min-width:768px){

  .anchor{
    top: -100px;
  }

  .section:first-child{
    padding-top: 90px;
  }
  .section:last-child{
    padding-bottom: 100px;
  }

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

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

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

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


}
@media (min-width:1024px){
  .section:first-child{
    padding-top: 90px;
  }
  .section:last-child{
    padding-bottom: 170px;
  }

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

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

  .content_desc.center{
    text-align: center;
  }
}
@media (min-width:1200px){
  .section:last-child{
    padding-bottom: 170px;
  }

}


@media (min-width:1366px){

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

}

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



/*******************************
*　HOME
********************************/
.pg_home{
  position: relative;
}
.pg_home .section.sec1{
  position: relative;
  padding-top: 60px;
}
.pg_home:before{
  content: "";
  display: block;
  width: 3100px;
  aspect-ratio:1920 / 2706;
  background-image: url(/system_panel/uploads/images/po.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.pg_home .section.sec2{

}
.pg_home .section.sec3{
  position: relative;
  padding-bottom: 0;
}
.pg_home .section.sec4{
  position: relative;
  padding-top: 0;
}
.pg_home .section.sec4:before{
  content: "";
  display:block;
  width: 100%;
  height: 100%;
  background-image: url(/system_panel/uploads/images/bg4.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.pg_home .section.sec5{

}
.pg_home .section.sec6{

}
.pg_home .section.sec7{

}
.pg_home .section.sec8{

}

@media (max-width:767px){

}
@media (min-width:768px){
  .pg_home:before{
    width: 3100px;
  }
  .pg_home .section.sec1{
    padding-top: 90px;
  }
  .pg_home .section.sec2{
    padding-top: 200px;
    padding-bottom: 100px;
  }
  .pg_home .section.sec3{

  }
  .pg_home .section.sec4{

  }
  .pg_home .section.sec5{

  }
  .pg_home .section.sec6{

  }
  .pg_home .section.sec7{

  }
  .pg_home .section.sec8{

  }

}
@media (min-width:1024px){
  .pg_home:before{
    width: 2500px;
  }

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

  .pg_home .section.sec1{
    padding-top: 90px;
  }
  .pg_home .section.sec2{
    padding-top: 345px;
    padding-bottom: 137px;
  }
  .pg_home .section.sec3{

  }
  .pg_home .section.sec4{

  }
  .pg_home .section.sec5{

  }
  .pg_home .section.sec6{

  }
  .pg_home .section.sec7{

  }
  .pg_home .section.sec8{

  }

}
@media (min-width:1470px){
  .pg_home:before{
    width: 1920px;
  }

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


}

/*main*/

/*sec1*/
.home_sec1_wrap{

}
.home_sec1_box{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home_sec1_box1{
  width: 100%;
}
.home_sec1_box1_inner{

}
.home_sec1_box1_img1{
  width: 60.63%;
  margin-inline:auto;
  z-index: 2;
}
.home_sec1_box1_img1:before{
  padding-top: 67.16%;
}
.home_sec1_box1_img2{
  margin-top: -50px;
}
.home_sec1_box1_img2:before{
  padding-top: 94.72%;
}
.home_sec1_box2{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 20px;
}
.home_sec1_box2_contents1{

}
.home_sec1_box2_contents1 .content_desc{

}
.content_block + .content_block{
  margin-top: 20px;
}
.home_sec1_box2_contents1 .read_more{

}
.home_sec1_box2_contents2{

}
.home_sec1_box2_contents2_txt1{
  font-size: 18px;
  font-weight: 400;
  font-family: var(--font-en);
  color: #776f37;
  line-height: 1;
}
.home_sec1_box2_contents2_txt2{
  font-size: 18px;
  font-weight: 600;

}
.home_sec1_box3{
  width: 100%;
  margin-top: 40px;
  width: 65%;
  margin-left: auto;
}
.home_sec1_box3_inner{

}

.home_sec1_box3_img:before{
  padding-top: 65.73%;
}
.home_sec1_box2_contents2_txt2 p{
  position: relative;
}

/*sec2*/
.home_sec2_wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home_sec2_box1{
  width: 100%;
  position: relative
}
.home_sec2_box1:after{
  content: "";
  display: block;
  width: 143.9%;
  aspect-ratio:295 / 308;
  background-image: url(/system_panel/uploads/images/inu1.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  bottom: 0;
}
.home_sec2_box1 .home_sec1_box2_contents2{
  width: auto;
}
.home_sec2_box2{
  width: 100%;

}
.home_sec2_box2_inner{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home_sec2_box2_item{
  width: 100%;
}
.home_sec2_box2_item:nth-child(n+2){
  margin-top: 40px;
  ;
}
.home_sec2_box2_item_inner{

}
.home_sec2_box2_item_inner:hover{
  color: #776F37;
}
.home_sec2_box2_item_inner:hover img{
  transform: scale(1.05);
}
.home_sec2_box2_item_img{
  overflow: hidden;
}
.home_sec2_box2_item_img:before{
  padding-top: 123.07%;
}
.home_sec2_box2_item_img img{
  transition: all .2s;
}
.home_sec2_box2_item_tt{
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.025em;
  border-bottom: 1px solid #212121;
  padding-bottom: 10px;
  margin-top: 16px;
  position: relative;
}
.home_sec2_box2_item_tt:after{
  content: "";
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 0;
  width: 9px;
  aspect-ratio: 9 / 8;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  transition: 0.2s all;
  background-image: url(/system_panel/uploads/images/arr.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: all .2s;
}
.home_sec2_box2_item_inner:hover .home_sec2_box2_item_tt:after{
  right: -5px;
}
.home_sec2_box2_item .content_desc{
  margin-top: 13px;
}

/*sec3*/
.home_sec3_img:before{
  padding-top: 900px;
}
.home_sec3_img:after{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1;
}
.home_sec3_wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  color: #fff;
}
.home_sec3_outer{
  width: 100%;
  position: absolute;
  top: 53%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  z-index: 2;
}
.home_sec3_box1{
  width: 100%;
  order: 2;
  margin-top: 20px;
}
.home_sec3_box1_tt{
  display: flex;
  align-items: center;
}
.home_sec3_box1_tt_ja{
  font-size: 30px;
  font-weight: 500;
  letter-spacing: 0.025em;
  margin-right: 20px;
}
.home_sec3_box1_tt_en{
  font-size: 16px;
  font-weight: 500;
  font-family: var(--font-en);
  letter-spacing: 0.025em;
}
.home_sec3_box1 .content_desc{
  margin-top: 20px;
}
.home_sec3_box2{
  width: 100%;
  order: 1;
}
.home_sec3_box2_img:before{
  padding-top: 70.76%;
}
.home_sec3_box1 .content_block:last-child{

  margin-top: 40px;
}

/*sec4*/
.home_sec4_wrap{
  padding: 50px 0;
}
.news_list{

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

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

/*sec5*/
.home_sec5_wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-top: 1px solid #b7b7b7;
  padding: 50px 0;
}
.home_sec5_box1{
  width: 100%;
}
.tt2_sm{

}
.tt2_sm_ja{

}
.home_sec1_box2_contents2_txt1.yoko{
  writing-mode: horizontal-tb;
  margin-left: 0;
}
.home_sec5_box2{
  width: 100%;
  margin-top: 30px;
}
.news2_list{

}
.news2_list .webgene-blog{

}
.news2_list .webgene-item{

}
.news2_list .webgene-item a{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  border-bottom: 1px solid #b7b7b7;
  position: relative;
  padding: 20px 0;
}
.news2_list .webgene-item:first-child a{
  padding-top: 0;
}
.news2_list .webgene-item:first-child a:after{
  top: 34%;
}
.news2_list .webgene-item .date{
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.075em;
  line-height: 1;
  font-family: var(--font-en);
}
.news2_list .webgene-item .title{
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.075em;
  padding-right: 30px;
  padding-right: 60px;
  margin-top: 16px;
}
.news2_list .webgene-item a:after{
  content: "";
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 0;
  width: 9px;
  aspect-ratio: 9 / 8;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  transition: 0.2s all;
  background-image: url(/system_panel/uploads/images/arr.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}

/*sec6*/
.home_sec6_wrap{
  padding-top: 40px;
}
.insta_list{

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

}
.insta_list .webgene-item .img:before{
  padding-top: 132.17%;
}
.insta_list video{
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  inset: 0;
}
@media (max-width:374px){

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

}
@media (max-width:767px){
  /*sec1*/
  .home_sec1_box2_contents1{
    order: 2;
    margin-top: 20px;
  }
  .home_sec1_box2_contents2{
    order: 1;
  }

  /*sec2*/
  .home_sec2_box1:after{
    width: 120px;
    top: 0;
    right: 0;
    left: auto;
    bottom: auto;
  }
  .home_sec2_box2{
    margin-top: 80px;
  }
}
@media (min-width:768px){
  /*sec1*/
  .home_sec1_wrap{

  }
  .home_sec1_box{

  }
  .home_sec1_box1{

  }
  .home_sec1_box1_inner{

  }
  .home_sec1_box1_img1{

  }
  .home_sec1_box1_img1:before{

  }
  .home_sec1_box1_img2{
    margin-top: -100px;
  }
  .home_sec1_box1_img2:before{

  }
  .home_sec1_box2{
    margin-top: 30px;
  }
  .home_sec1_box2_contents1{
    width: 68.65%;
    padding-top: 158px;
  }
  .home_sec1_box2_contents1 .content_desc{

  }
  .content_block + .content_block{
    margin-top: 35px;
  }
  .home_sec1_box2_contents1 .read_more{
    margin-top: 54px;
  }
  .home_sec1_box2_contents2{
    width: 30.64%;
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .home_sec1_box2_contents2_txt1{
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    margin-left: 19px;
  }
  .home_sec1_box2_contents2_txt2{
    font-size: 24px;
    line-height: 1.8em;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .home_sec1_box2_contents2_txt2 p{
    position: relative;
    letter-spacing: 0.025em;
  }
  .home_sec1_box2_contents2_txt2 p:nth-child(n+2){
    margin-right: 9px;
    margin-top: 83px;
  }
  .home_sec1_box2_contents2_txt2 p:before{
    content: "";
    display: block;
    width: 1px;
    height: 100%;
    background: #b7b7b7;
    position: absolute;
    top: 0;
    right: 0;
  }
  .home_sec1_box3{
    width:50%;
    margin-left: auto;
    margin-top: 30px;
  }
  .home_sec1_box3_inner{

  }
  .home_sec1_box3_img:before{

  }


  /*sec2*/
  .home_sec2_wrap{

  }
  .home_sec2_box1{
    width: 13.48%;
    width: auto;
  }
  .home_sec2_box1 .home_sec1_box2_contents2{

  }
  .home_sec2_box2{
    width: 75.8%;
  }
  .home_sec2_box2_item{

  }
  .home_sec2_box2_item:nth-child(n+2){
    margin-top: 50px;
    ;
  }
  .home_sec2_box2_item_inner{

  }
  .home_sec2_box2_item_img:before{

  }
  .home_sec2_box2_item_tt{
    font-size: 22px;
    padding-bottom: 13px;
    margin-top: 20px;
  }
  .home_sec2_box1 .home_sec1_box2_contents2_txt2 p:nth-child(n+2){
    margin-top: 100px;
  }
  .home_sec2_box2_item .content_desc{
    margin-top: 13px;
  }

  .home_sec2_box1:after{
    left: -25%;
    top: 500px;
    bottom: auto;
  }

  /*sec3*/
  .home_sec3_img:before{
    padding-top: 1200px;
  }
  .home_sec3_wrap{

  }
  .home_sec3_outer{
    top: 53%;
  }
  .home_sec3_box1{
    margin-top: 40px;
  }
  .home_sec3_box1_tt{

  }
  .home_sec3_box1_tt_ja{
    font-size: 40px;
    margin-right: 40px;
  }
  .home_sec3_box1_tt_en{
    font-size: 18px;
  }
  .home_sec3_box1 .content_desc{
    margin-top: 54px;
  }
  .home_sec3_box2{

  }
  .home_sec3_box2_img:before{

  }
  .home_sec3_box1 .content_block:last-child{

    margin-top: 75px;
  }

  /*sec4*/
  .home_sec4_wrap{
    padding: 100px 0;
  }
  .home_sec4_wrap .read_more{
    margin-top: 60px;
  }

  /*sec5*/
  .home_sec5_wrap{
    padding: 99px 0;
  }
  .home_sec5_box1{

  }
  .tt2_sm{

  }
  .tt2_sm_ja{

  }
  .home_sec1_box2_contents2_txt1.yoko{
    margin-top: 24px;
  }
  .home_sec5_box2{
    margin-top: 40px;
  }
  .news2_list{

  }
  .news2_list .webgene-blog{

  }
  .news2_list .webgene-item{

  }
  .news2_list .webgene-item a{
    padding: 75px 0;
  }
  .news2_list .webgene-item:first-child a:after{
    top: 12%;
  }
  .news2_list .webgene-item a:after{
    right: 50px;
  }
  .news2_list .webgene-item .date{
    width: 150px;
    position: relative;
  }
  .news2_list .webgene-item .date:after{
    content: "";
    display: block;
    width: 1px;
    height: 16px;
    background: #9e9c9d;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
  }
  .news2_list .webgene-item .title{
    width: calc(100% - 150px);
    padding-left: 30px;
    padding-right: 80px;
    margin-top: 0;
  }
  .home_sec5_box2 .read_more{
    margin-top: 71px;
  }

  /*sec6*/
  .home_sec6_wrap .tt2{
    margin-bottom: 60px;
  }
  .insta_list{

  }
  .insta_list .webgene-blog{
    margin-inline:-3.5px;
  }
  .insta_list .webgene-item{
    width: 33.333%;
    padding-inline:3.5px;
  }
  .insta_list .webgene-item:nth-child(n+3){
    margin-top: 0;
  }
  .insta_list .webgene-item:nth-child(n+4){
    display: block;
    margin-top: 7px;
  }
  .insta_list .webgene-item:nth-child(n+4){

  }
  .insta_list .webgene-item a{

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

  }
  .home_sec6_wrap .read_more{
    margin-top: 71px;
  }
}
@media (min-width:1024px){
  /*sec1*/
  .home_sec1_wrap{

  }
  .home_sec1_box{

  }
  .home_sec1_box1{
    width: 50%;
    margin-inline:auto;
  }
  .home_sec1_box2{
    width: 100%;
    margin-left: 0;
    margin-top: 0;
  }
  .home_sec1_box3{
    width:50%;
    align-content: flex-end;
    margin-left: auto;
    margin-top: 0;
  }

  /*sec2*/
  .home_sec2_wrap{

  }
  .home_sec2_box1{
    width: 13.48%;
  }
  .home_sec2_box1 .home_sec1_box2_contents2{

  }
  .home_sec2_box2{
    width: 75.8%;
  }

  .home_sec2_box2_item{
    width: 50%;
    padding-inline:10px;
  }
  .home_sec2_box2_item:nth-child(n+2){
    margin-top: 0;
  }
  .home_sec2_box2_inner{
    margin-inline:-10px;
  }

  /*sec3*/
  .home_sec3_img:before{
    padding-top: 1400px;
  }

  /*sec4*/
  .news_list{

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

  /*sec5*/
  .news2_list .webgene-item a{
    padding: 75px 0;
  }

  .home_sec2_box1 .home_sec1_box2_contents2_txt2 p:nth-child(n+2){
    margin-top: 209px;
    margin-top: 193px;
  }
}
@media (min-width:1200px){
  /*sec1*/
  .home_sec1_wrap{

  }
  .home_sec1_box{

  }
  .home_sec1_box1{
    width: 30.26%;
    margin-inline:0;
  }
  .home_sec1_box1_inner{
    margin-left: var(--margin-for-device-side-w);
  }
  .home_sec1_box1_img1{

  }
  .home_sec1_box1_img1:before{

  }
  .home_sec1_box1_img2{

  }
  .home_sec1_box1_img2:before{

  }
  .home_sec1_box2{
    width: 47.69%;
    margin-left: 0;
  }
  .home_sec1_box2_contents1{

  }
  .home_sec1_box2_contents1 .content_desc{

  }
  .content_block + .content_block{

  }
  .home_sec1_box2_contents1 .read_more{

  }
  .home_sec1_box2_contents2{
    align-items: flex-start;
    justify-content: flex-end;
  }
  .home_sec1_box2_contents2_txt1{

  }
  .home_sec1_box2_contents2_txt2{
    font-size: 40px;
    margin-left: 30px;
  }
  .home_sec1_box3{
    width:13.48%;
    align-content: flex-end;
    margin-left:0;
  }
  .home_sec1_box3_inner{
    margin-right: var(--margin-for-device-side-w);
  }
  .home_sec1_box3_img{
    margin-left: -94px;
    position: relative;
    bottom: -179px;
  }
  .home_sec1_box3_img:before{

  }

  /*sec2*/
  .home_sec2_wrap{

  }
  .home_sec2_box1{
    width: 13.48%;
    margin-left: 0;
  }
  .home_sec2_box1:after{
    left: -20%;
    bottom: 0;
    top: auto;
  }
  .home_sec2_box1 .home_sec1_box2_contents2{

  }
  .home_sec2_box2{
    width: 75.8%;
    margin-right: 0;
    padding-top: 38px;
  }
  .home_sec2_box2_inner{
    margin-inline:-22.5px;
  }
  .home_sec2_box2_item{
    width: 50%;
    padding-inline:22.5px;
  }
  .home_sec2_box2_item_inner{

  }
  .home_sec2_box2_item_img:before{

  }
  .home_sec2_box2_item_tt{
    font-size: 24px;
  }
  .home_sec2_box2_item .content_desc{

  }

  /*sec3*/
  .home_sec3_img:before{
    padding-top: 751px;
  }
  .home_sec3_wrap{

  }
  .home_sec3_outer{
    top: 53%;
  }
  .home_sec3_box1{
    width: 49.01%;
    order: 1;
    margin-top: 0;
  }
  .home_sec3_box1_tt{

  }
  .home_sec3_box1_tt_ja{
    font-size: 60px;
  }
  .home_sec3_box1_tt_en{

  }
  .home_sec3_box1 .content_desc{

  }
  .home_sec3_box2{
    width: 38.48%;
    padding-top: 22px;
    order: 2;
  }
  .home_sec3_box2_img:before{

  }

  /*sec4*/
  .home_sec4_wrap{
    padding: 177px 0 193px;
  }
  .home_sec4_wrap .tt2{
    margin-bottom: 60px;
  }
  .news_list{

  }
  .news_list .webgene-blog{

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

  /*sec5*/
  .home_sec5_wrap{

  }
  .home_sec5_box1{
    width:13.48%;
    width:19.48%;
  }
  .tt2_sm{

  }
  .tt2_sm_ja{
    font-size: 40px;
  }
  .home_sec1_box2_contents2_txt1.yoko{

  }
  .home_sec5_box2{
    width:80.26%;
    padding-top: 17px;
    margin-top: 0;
  }
  .news2_list{

  }
  .news2_list .webgene-blog{

  }
  .news2_list .webgene-item{

  }
  .news2_list .webgene-item a{

  }
  .news2_list .webgene-item a:after{
    right: 63px;
  }
  .news2_list .webgene-item .date{

  }
  .news2_list .webgene-item .title{
    padding-left: 60px;
    padding-right: 80px;
  }

  /*sec6*/
  .insta_list{

  }
  .insta_list .webgene-blog{

  }
  .insta_list .webgene-item{
    width: 16.666%;
  }
  .insta_list .webgene-item:nth-child(n+4){
    display: block;
    margin-top: 0;
  }
  .insta_list .webgene-item:nth-child(n+7){
    display: block;
    margin-top: 10px;
  }
  .insta_list .webgene-item a{

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

  }
}
@media (min-width:1470px){
  /*sec1*/
  .home_sec1_wrap{

  }
  .home_sec1_box{

  }
  .home_sec1_box1{
    width: 30.26%;
  }
  .home_sec1_box1_inner{
    margin-left: var(--margin-for-device-side-w);
  }
  .home_sec1_box1_img1{

  }
  .home_sec1_box1_img1:before{

  }
  .home_sec1_box1_img2{

  }
  .home_sec1_box1_img2:before{

  }
  .home_sec1_box2{
    width: 47.69%;
    margin-left: 72px;
  }
  .home_sec1_box2_contents2{
    width: 30.64%;
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-start;
    justify-content: center;
  }

  /*sec2*/
  .home_sec2_box1{
    margin-left: 0;
  }
  .home_sec2_box2{
    width: 80.8%;
    margin-right: 0;
  }

  /* sec5 */
  .home_sec5_box1{
    width:13.48%;
  }
}
@media (min-width:1720px){
  /*sec2*/
  .home_sec2_box1{
    margin-left: -50px;
  }
  .home_sec2_box2{
    margin-right: -90px;
  }

  .home_sec1_box2_contents2_txt2{
    margin-left: 0;
  }

  .home_sec2_box1:after{
    left: -41.9%;
  }
  .home_sec2_box2{
    width: 88.8%;
    margin-right: -90px;
  }
}




/*******************************
*　こだわり
********************************/

/* セクション設定 */
.pg_ourCommitment{
  position: relative
}
.pg_ourCommitment:before{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(/system_panel/uploads/images/about1.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.pg_ourCommitment .section.sec1{

}
.pg_ourCommitment .section.sec2{

}


@media (max-width:374px){

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

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

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

  }
  .pg_ourCommitment .section.sec1{

  }
  .pg_ourCommitment .section.sec2{
    padding-top: 100px;
  }
  .pg_ourCommitment .section.sec3{
    padding-top: 92px;
  }

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


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

  }
  .pg_ourCommitment .section.sec1{

  }
  .pg_ourCommitment .section.sec2{
    padding-top: 108px;
  }

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


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


}

/* メイン部分 */

/*sec1*/
.tt_sub{
  display: flex;
  align-items: center;
}
.ourCommitment_sec1_wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  margin-top: 60px;
  padding-bottom: 120px;
}
.ourCommitment_sec1_wrap:before{
  content: "";
  display: block;
  width: 25.98%;
  ;
  aspect-ratio:395 / 426;
  background-image: url(/system_panel/uploads/images/sika.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: 0;
  left: 0;
}
.ourCommitment_sec1_wrap:after{
  content: "";
  display: block;
  width: 31.31%;
  ;
  aspect-ratio:476 / 390;
  background-image: url(/system_panel/uploads/images/tree.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: 0;
  right: 0;
}
.ourCommitment_sec1_box1{
  width: 100%;
}
.ourCommitment_sec1_box1 .home_sec1_box2_contents2{

}
.yoko.sub{
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.025em;
  background: #333333;
  color: #fff;
  text-align: center;
  border-radius: 14px;
  padding: 2px 40px;

}
.home_sec1_box2_contents2.yoko{
  flex-direction: column;
  width: auto
}
.home_sec1_box2_contents2.yoko .home_sec1_box2_contents2_txt1{
  margin-top: 0;
  letter-spacing: 0;
  margin-right: 33px;
}
.ourCommitment_sec1_box1 .home_sec1_box2_contents2_txt2{
  writing-mode: horizontal-tb;
  margin-top: 33px;
}
.home_sec1_box2_contents2_txt2.yoko{
  writing-mode: horizontal-tb;
  font-weight: 600;

}
.home_sec1_box2_contents2_txt2.yoko p:before{
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  top: auto;
  left: 0;
  bottom: 0;
  right: auto;
  background: #b7b7b7;
}
.home_sec1_box2_contents2_txt2.yoko p{

}
.ourCommitment_sec1_box2{
  width: 100%;
  margin-top: 20px;
}
.ourCommitment_sec1_box2 .content_desc{

}
.content_desc.high{
  font-weight: 500;
  line-height: 1.875em;
}

/*sec2*/
.ourCommitment_sec2_wrap{
  border: 1px solid #333333;
  padding: 0 14px 24px;
}
.ourCommitment_sec2_tt{
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  margin-top: -16px;
}
.ourCommitment_sec2_tt p{
  display: inline-block;
  background-image: url(/system_panel/uploads/images/txt_bg4.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-inline:10px;
  letter-spacing: 0.025em;
}
.sub_outer{
  text-align: center;
  margin-top: 16px;
}
.ourCommitment_sec2_wrap .sub{
  display: inline-block;
}
.ourCommitment_sec2_items{
  display: flex;
  flex-wrap: wrap;

  margin-top: 40px;
}
.ourCommitment_sec2_item{
  width: 100%;
}
.ourCommitment_sec2_item:nth-child(n+2){
  margin-top: 30px;
}
.ourCommitment_sec2_item_inner{

}
.ourCommitment_sec2_item_img:before{
  padding-top: 64.7%;
}
.ourCommitment_sec2_item_tt{
  text-align: center;
  border-bottom: 1px solid #b7b7b7;
  padding-bottom: 10px;
  margin-top: 11px;
}
.ourCommitment_sec2_item_tt1{
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.025em;
}
.ourCommitment_sec2_item_tt2{
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.025em;
  margin-top: 5px;
}
.ourCommitment_sec2_item .content_desc{
  line-height: 1.75em;
  padding: 10px;
}

/*sec3*/
.ourCommitment_sec3_items{
  display: flex;
  flex-wrap: wrap;
}
.ourCommitment_sec3_item{
  width: 100%;
}
.ourCommitment_sec3_item:nth-child(n+2){
  margin-top: 30px;
}
.ourCommitment_sec3_item_iner{

}
.ourCommitment_sec3_item_img:before{
  padding-top: 46.97%;
}
.ourCommitment_sec3_item_tt{
  display: flex;
  align-items: flex-end;
  border-bottom: 1px solid #989898;
  padding-bottom: 16px;
  margin-top: 9px;
}
.ourCommitment_sec3_item_num{
  font-size: 36px;
  font-weight: 400;
  letter-spacing: 0;
  font-family: var(--font-en);
  line-height: 1;
  margin-right: 28px;
}
.ourCommitment_sec3_item_txt{
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0;
}
.ourCommitment_sec3_item_sub{
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0.025em;
  margin-top: 16px;
}
.ourCommitment_sec3_item .content_desc{
  margin-top: 10px;
}
@media (max-width:767px){
  .home_sec1_box2_contents2_txt2.yoko{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .home_sec1_box2_contents2_txt2.yoko p:nth-child(n+2){
    margin-top: 10px;
  }
}
@media (min-width:768px){
  /* メイン部分 */
  /*sec1*/
  .ourCommitment_sec1_wrap{
    margin-top: 100px;
    padding-bottom: 210px;
  }
  .ourCommitment_sec1_wrap:before{
    width: 25.98%;
    ;
    bottom:0;
    left: 0;
  }
  .ourCommitment_sec1_wrap:after{
    width: 31.31%;
    ;
    bottom: 0;
    right: 0;
  }
  .ourCommitment_sec1_box1{

  }
  .ourCommitment_sec1_box1 .home_sec1_box2_contents2{

  }
  .ourCommitment_sec1_box1 .home_sec1_box2_contents2_txt1{

  }
  .ourCommitment_sec1_box1 .home_sec1_box2_contents2_txt2{

  }
  .ourCommitment_sec1_box2{
    padding-top: 0;
    margin-top: 30px;
  }
  .ourCommitment_sec1_box2 .content_desc{

  }
  .home_sec1_box2_contents2_txt2.yoko p:nth-child(n+2){
    margin-right: 0;
    margin-top: 10px;
  }
  .content_desc.high{
    font-weight: 500;
    line-height: 3em;
  }

  /*sec2*/
  .ourCommitment_sec2_wrap{
    padding: 0 28px 24px;
  }
  .ourCommitment_sec2_tt{
    font-size: 24px;
    margin-top: -20px;
  }
  .ourCommitment_sec2_wrap .sub{

  }
  .ourCommitment_sec2_items{
    margin-inline:-17px;
    margin-top: 50px;
  }
  .ourCommitment_sec2_item{
    width: 50%;
    padding-inline:17px;
  }
  .ourCommitment_sec2_item:nth-child(n+2){
    margin-top: 0;
  }
  .ourCommitment_sec2_item:nth-child(n+3){
    margin-top: 30px;
  }
  .ourCommitment_sec2_item_inner{

  }
  .ourCommitment_sec2_item_img:before{

  }
  .ourCommitment_sec2_item_tt{

  }
  .ourCommitment_sec2_item_tt1{

  }
  .ourCommitment_sec2_item_tt2{
    font-size: 18px;
  }
  .ourCommitment_sec2_item .content_desc{

  }

  /*sec3*/
  .ourCommitment_sec3_wrap .tt2{
    margin-bottom: 68px;
  }
  .ourCommitment_sec3_item:nth-child(n+2){
    margin-top: 60px;
  }
  /*  .ourCommitment_sec3_items{
      margin-inline:-15px;
    }
    .ourCommitment_sec3_item{
      width: 50%;
      padding-inline:15px;
    }
    .ourCommitment_sec3_item:nth-child(n+2){
      margin-top: 0;
    }
    .ourCommitment_sec3_item:nth-child(2n+1){
      margin-top: 0;
    }
    .ourCommitment_sec3_item:first-child{
      margin-top: 0;
    }
    .ourCommitment_sec3_item:nth-child(2){
    margin-top: 176px;
    }
    .ourCommitment_sec3_item:nth-child(4){
    margin-top: 100px;
    }
    .ourCommitment_sec3_item:nth-child(3){
      margin-top: -80px
    }*/
  .ourCommitment_sec3_item_iner{

  }
  .ourCommitment_sec3_item_img:before{

  }
  .ourCommitment_sec3_item_tt{

  }
  .ourCommitment_sec3_item_num{
    font-size: 40px;
  }
  .ourCommitment_sec3_item_txt{
    font-size: 22px;
  }
  .ourCommitment_sec3_item_sub{
    font-size: 20px;
    margin-top: 24px;
  }
  .ourCommitment_sec3_item .content_desc{

  }
}
@media (min-width:1024px){
  /*sec1*/
  .ourCommitment_sec1_wrap{
    padding-bottom: 0;
  }
  .ourCommitment_sec1_wrap:before{
    width: 25.98%;
    ;
    bottom: -5%;
    left: 0;
  }
  .ourCommitment_sec1_wrap:after{
    width: 31.31%;
    ;
    top: 0;
    bottom: auto;
    right: 0;
  }
  .ourCommitment_sec1_box1{
    width: 36.51%;
  }
  .ourCommitment_sec1_box2{
    width: 61.51%;
    padding-top: 300px;
    margin-top: 0;
  }

  /*sec2*/
  .ourCommitment_sec2_item:nth-child(n+2){
    margin-top: 0;
  }
  .ourCommitment_sec2_item:nth-child(n+3){
    margin-top: 30px;
  }

  /*sec3*/
  .ourCommitment_sec3_items{
    margin-inline:-15px;
  }
  .ourCommitment_sec3_item{
    width: 50%;
    padding-inline:15px;
  }
  .ourCommitment_sec3_item:nth-child(n+2){
    margin-top: 0;
  }
  .ourCommitment_sec3_item:nth-child(2n+1){
    margin-top: 0;
  }
  .ourCommitment_sec3_item:first-child{
    margin-top: 0;
  }
  .ourCommitment_sec3_item:nth-child(2){
    margin-top: 176px;
  }
  .ourCommitment_sec3_item:nth-child(4){
    margin-top: 100px;
  }
  .ourCommitment_sec3_item:nth-child(3){
    margin-top: -80px
  }
}
@media (min-width:1200px){
  /* メイン部分 */
  /*sec1*/
  .ourCommitment_sec1_wrap{
    margin-top: 145px;
  }
  .ourCommitment_sec1_wrap:before{
    width: 25.98%;
    ;
    bottom: -5%;
    left: 0;
  }
  .ourCommitment_sec1_wrap:after{
    width: 31.31%;
    ;
    top: -22%;
    right: 0;
  }
  .ourCommitment_sec1_box1{
    width: 36.51%;
  }
  .ourCommitment_sec1_box1 .home_sec1_box2_contents2{

  }
  .ourCommitment_sec1_box1 .home_sec1_box2_contents2_txt1{

  }
  .ourCommitment_sec1_box1 .home_sec1_box2_contents2_txt2{

  }
  .ourCommitment_sec1_box2{
    width: 61.51%;
    padding-top: 300px;
  }
  .ourCommitment_sec1_box2 .content_desc{

  }


  /*sec2*/
  .ourCommitment_sec2_wrap{

  }
  .ourCommitment_sec2_tt{
    font-size: 40px;
    margin-top: -34px;
  }
  .ourCommitment_sec2_tt{

  }
  .ourCommitment_sec2_wrap .sub{

  }
  .ourCommitment_sec2_items{

  }
  .ourCommitment_sec2_item{
    width: 25%;
  }
  .ourCommitment_sec2_item:nth-child(n+2){
    margin-top: 0;
  }
  .ourCommitment_sec2_item:nth-child(n+5){
    margin-top: 30px;
  }
  .ourCommitment_sec2_item_inner{

  }
  .ourCommitment_sec2_item_img:before{

  }
  .ourCommitment_sec2_item_tt{

  }
  .ourCommitment_sec2_item_tt1{

  }
  .ourCommitment_sec2_item_tt2{

  }
  .ourCommitment_sec2_item .content_desc{

  }

  /*sec3*/
  .ourCommitment_sec3_items{

  }
  .ourCommitment_sec3_item{

  }
  .ourCommitment_sec3_item_iner{

  }
  .ourCommitment_sec3_item_img:before{

  }
  .ourCommitment_sec3_item_tt{

  }
  .ourCommitment_sec3_item_num{
    font-size: 58px;
  }
  .ourCommitment_sec3_item_txt{
    font-size: 28px;
  }
  .ourCommitment_sec3_item_sub{

  }
  .ourCommitment_sec3_item .content_desc{

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


}
@media (min-width:1720px){
  /*sec2*/
  .ourCommitment_sec2_item_tt2{
    font-size: 21px;
  }

}

/*******************************
*　petfood
********************************/

/* セクション設定 */
.pg_petfood{
  position: relative;
}
.pg_petfood:before,
.pg_leatherCrafting:before{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(/system_panel/uploads/images/03-BG.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.pg_petfood .section.sec1{

}
.pg_petfood .section.sec2{

}


@media (max-width:374px){

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

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

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

  }
  .pg_petfood .section.sec1{

  }
  .pg_petfood .section.sec2{
    padding-top: 160px;
  }
  .pg_petfood .section.sec3{
    padding-top: 100px;
  }

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


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

  }
  .pg_petfood .section.sec1{

  }
  .pg_petfood .section.sec2{
    padding-top: 233px;
  }
  .pg_petfood .section.sec3{
    padding-top: 120px;
  }
}
@media (min-width:1470px){


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


}

/* メイン部分 */
/*sec1*/
.ourCommitment_sec1_wrap.petfood{
  justify-content: center;
  margin-top: 0;
}
.ourCommitment_sec1_wrap.petfood:before{
  background-image: url(/system_panel/uploads/images/inu.png);
  width: 21.57%;
  ;
  aspect-ratio:328 / 430;
  top: auto;
  bottom: 0;
}
.ourCommitment_sec1_wrap.petfood:after{
  background-image: url(/system_panel/uploads/images/pet.png);
  width: 29.67%;
  ;
  aspect-ratio:451 / 233;
  bottom:0;
  top: auto;
}
.ourCommitment_sec1_wrap.petfood .ourCommitment_sec1_box1{

}
.ourCommitment_sec1_wrap.petfood .home_sec1_box2_contents2{
  align-items: center;
}
.ourCommitment_sec1_wrap.petfood .content_desc{
  margin-top: 20px;
}

/*sec2*/
.petfood_sec2_head{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 40px;
}
.home_sec1_box2_contents2.petfood_sec2_head_box1{
  width: 100%;
}
.petfood_sec2_head_box1 .home_sec1_box2_contents2_txt2{

}
.petfood_sec2_head_box2{
  width: 100%;
  margin-top: 20px;
  ;
}
.petfood_sec2_head_box2 .yoko.sub{
  display: inline-block;
}
.petfood_sec2_head_box2 .content_desc{
  margin-top: 20px;
}
.petfood_sec2_tt{
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.025em;
  text-align: center;
  background: #776f37;
  color: #fff;
  padding: 8px;
}
.petfood_sec2_wrap .ourCommitment_sec2_item_img:before{
  padding-top: 74.444%;
}
.petfood_sec2_wrap .content_desc{
  padding-inline:0;
}
.ourCommitment_sec3_wrap{
  overflow: hidden;
}

/*sec3*/
.tt2_outer{
  text-align: center;
  position: relative
}
.tt2_outer:after{
  /*  content: "";
    display: block;
    width: 100%;
    height: 2px;
    background: #989898;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);*/
}
.tt2_outer .tt2{
  display: inline-block;
  /*  background-image:url(/system_panel/uploads/images/txt_bg4.jpg);*/
  /*  background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;*/
  position: relative;
  z-index: 1;
  padding: 0 30px;
  margin-bottom: 0;
}
.tt2_outer .tt2:before{
  content: "";
  display: block;
  width: 100000px;
  height: 2px;
  background: #989898;
  position: absolute;
  top: 50%;
  right: 100%;
}
.tt2_outer .tt2:after{
  content: "";
  display: block;
  width: 100000px;
  height: 2px;
  background: #989898;
  position: absolute;
  top: 50%;
  left: 100%;
}

.items_list{
  margin-top:40px;
}
.items_list .webgene-blog{
  display: flex;
  flex-wrap: wrap;
}
.items_list .webgene-item{
  width: 100%;
}
.items_list .webgene-item:nth-child(n+2){
  margin-top:30px;
  ;
}
.items_list .webgene-item .inner{
  background: #fff;
  padding: 16px;
}
.items_list .webgene-item .head{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.items_list .webgene-item .head .left{
  width: 100%;
}
.items_list .webgene-item .img:before{
  padding-top: 73.6%;
}
.items_list .webgene-item .head .right{
  width: 100%;
  margin-top: 30px;
  ;
}
.items_list .webgene-item .head .title{
  font-size:17px;
  font-weight: 500;
  letter-spacing: 0.025em;
  border-bottom: 1px solid #989898;
  padding-bottom: 12px;
}
.items_list .webgene-item .head .desc{
  font-size:16px;
  font-weight: 500;
  letter-spacing: 0.025em;
  line-height: 1.8em;
  margin-top: 20px;
}
.items_list .webgene-item .head .link_2{
  display: block;
  width: 160px;
  background: #776f37;
  color: #fff;
  text-align: center;
  padding: 4px 0;
  position: relative
}
.items_list .webgene-item .head .link_2:after{
  content: "";
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 14px;
  width: 9px;
  aspect-ratio: 9 / 8;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  transition: 0.2s all;
  background-image: url(/system_panel/uploads/images/arr_wh.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
.items_list .webgene-item .head .link_2:hover:after{
  right: 7px;
}
.items_list .webgene-item .content{
  border: 1px solid #989898;
  padding: 16px;
  font-size: 15px;
  font-weight: 500;
  margin-top: 30px;
}
.items_list .webgene-item .content .title{
  width: 160px;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.025em;
  background: #333333;
  color: #fff;
  text-align: center;
  border-radius: 14px;
  padding: 2px 40px;
}
.items_list .webgene-item .content .desc{
  margin-top: 20px;
}
.items_list .webgene-item .content .desc .point-item{
  display: inline-block;
  margin-right: 20px;
  line-height: 1.8em;
}
.items_list .webgene-item .head .link_2{
  margin-top: 30px;
  ;
}
@media (max-width:767px){
  .ourCommitment_sec1_wrap.petfood .home_sec1_box2_contents2_txt2.yoko{
    margin-top: 0;
  }

  .home_sec1_box2_contents2.petfood_sec2_head_box1{
    order: 1;
  }
  .petfood_sec2_head_box2{
    order: 2;
  }
  .home_sec1_box2_contents2_txt2{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .home_sec1_box2_contents2_txt2 p:before{
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    position: absolute;
    top: auto;
    left: 0;
    bottom: 0;
    right: auto;
    background: #b7b7b7;
  }
  .home_sec1_box2_contents2_txt2 p:nth-child(n+2){
    margin-top: 10px;
  }

  .items_list .webgene-item .head .link_2{
    margin-inline: auto;
  }
}
@media (min-width:768px){
  /* メイン部分 */
  /*sec1*/
  .ourCommitment_sec1_wrap.petfood:before{
    top: auto;
    bottom: 0;
    left: -23px;
  }
  .ourCommitment_sec1_wrap.petfood:after{
    bottom: 0;
    top: auto;
    right: 17px;
  }
  .ourCommitment_sec1_wrap.petfood .tt2{
    margin-bottom: 64px;
  }
  .ourCommitment_sec1_wrap.petfood{
    margin-top: 0;
  }
  .ourCommitment_sec1_wrap.petfood .ourCommitment_sec1_box1{

  }
  .ourCommitment_sec1_wrap.petfood .content_desc{
    margin-top: 77px;
  }

  /*sec2*/
  .petfood_sec2_head{
    margin-bottom: 50px;
  }
  .home_sec1_box2_contents2.petfood_sec2_head_box1{
    width: 17.76%;
    justify-content: flex-end;
  }
  .petfood_sec2_head_box1 .home_sec1_box2_contents2_txt2 p:nth-child(n+2){
    margin-top: 0;
  }
  .petfood_sec2_head_box1 .home_sec1_box2_contents2_txt2{

  }
  .petfood_sec2_head_box2{
    width: 82.23%;
    margin-top: 0;
  }
  .petfood_sec2_head_box2 .yoko.sub{

  }
  .petfood_sec2_head_box2 .content_desc{
    margin-top: 16px;
  }
  .content_desc.mid{
    line-height: 2.875em;
  }
  .petfood_sec2_tt{
    font-size: 20px;
  }
  .petfood_sec2_wrap .ourCommitment_sec2_items{
    margin-inlien:-13.5px;
  }
  .petfood_sec2_wrap .ourCommitment_sec2_item{
    padding-inline:13.5px;
  }

  /*sec3*/
  .tt2_outer{

  }
  .tt2_outer .tt2{
    padding: 0 70px;
  }
  .items_list{
    margin-top: 56px;
  }
  .items_list .webgene-blog{
    margin-inline:-15px;
  }
  .items_list .webgene-item{
    width: 50%;
    padding-inline:15px;
  }
  .items_list .webgene-item:nth-child(n+2){
    margin-top:0;
  }
  .items_list .webgene-item:nth-child(n+3){
    margin-top: 30px;
  }
  .items_list .webgene-item .inner{
    height: 100%;
    padding: 30px 28px 30px 17px;
  }
  .items_list .webgene-item .head{

  }
  .items_list .webgene-item .head .left{

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

  }
  .items_list .webgene-item .head .right{
    margin-top: 30px;
    ;
  }
  .items_list .webgene-item .head .title{
    font-size: 18px;
  }
  .items_list .webgene-item .head .desc{

  }
  .items_list .webgene-item .head .link_2{

  }
  .items_list .webgene-item .head .link_2:after{

  }
  .items_list .webgene-item .content{

  }
  .items_list .webgene-item .content .title{

  }

  .items_list .webgene-item .content .desc .point-item{
    margin-right: 30px;
  }
}
@media (min-width:1024px){
  /*sec1*/
  /*sec1*/
  .ourCommitment_sec1_wrap.petfood:before{
    top: 103px;
    bottom: auto;
    left: -23px;
  }
  .ourCommitment_sec1_wrap.petfood:after{
    bottom: -100px;
    top: auto;
    right: 17px;
  }
  .ourCommitment_sec1_wrap.petfood .ourCommitment_sec1_box1{
    width: 60.52%;
  }
}
@media (min-width:1200px){
  /* メイン部分 */
  /*sec1*/
  .ourCommitment_sec1_wrap.petfood{

  }
  /*sec1*/
  .ourCommitment_sec1_wrap.petfood:before{
    top: 103px;
    bottom: auto;
    left: -23px;
  }
  .ourCommitment_sec1_wrap.petfood:after{
    bottom: -186px;
    top: auto;
    right: 17px;
  }
  .ourCommitment_sec1_wrap.petfood .ourCommitment_sec1_box1{
    width: 60.52%;
  }

  /*sec2*/
  .petfood_sec2_head{

  }
  .home_sec1_box2_contents2.petfood_sec2_head_box1{

  }
  .petfood_sec2_head_box1 .home_sec1_box2_contents2_txt2{
    margin-left: -20px;
  }
  .petfood_sec2_head_box2{

  }
  .petfood_sec2_head_box2 .yoko.sub{

  }
  .petfood_sec2_head_box2 .content_desc{

  }
  .petfood_sec2_tt{
    font-size: 24px;
  }

  /*sec3*/
  .tt2_outer{

  }
  .tt2_outer .tt2{

  }
  .items_list{

  }
  .items_list .webgene-blog{

  }
  .items_list .webgene-item{

  }
  .items_list .webgene-item .inner{

  }
  .items_list .webgene-item .head{

  }
  .items_list .webgene-item .head .left{
    width: 48.71%;
  }
  .items_list .webgene-item .img:before{

  }
  .items_list .webgene-item .head .right{
    width: 45.71%;
    margin-top: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .items_list .webgene-item .head .title{
    font-size: 20px;
  }
  .items_list .webgene-item .head .desc{

  }
  .items_list .webgene-item .head .link_2{

  }
  .items_list .webgene-item .head .link_2:after{

  }
  .items_list .webgene-item .content{
    margin-top: 12px;
  }
  .items_list .webgene-item .content .title{

  }

}
@media (min-width:1470px){
  /*sec1*/
  .ourCommitment_sec1_wrap.petfood:before{
    top: 103px;
    bottom: auto;
    left: -23px;
  }
  .ourCommitment_sec1_wrap.petfood:after{
    bottom: -186px;
    top: auto;
    right: 17px;
  }
  .ourCommitment_sec1_wrap.petfood .ourCommitment_sec1_box1{
    width: 60.52%;
  }
  .items_list .webgene-item .head .link_2{
    margin-top: 0;
  }
}
@media (min-width:1720px){
  /*sec1*/
  .ourCommitment_sec1_wrap.petfood:before{
    top: 103px;
    bottom: auto;
    left: -23px;
  }
  .ourCommitment_sec1_wrap.petfood:after{
    bottom: -186px;
    top: auto;
    right: 17px;
  }

}





/*******************************
*　レザー
********************************/

/* セクション設定 */
.pg_leatherCrafting{
  position: relative
}
.pg_leatherCrafting .section.sec1{

}
.pg_leatherCrafting .section.sec2{

}


@media (max-width:374px){

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

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

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

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

  }
  .pg_leatherCrafting .section.sec1{

  }
  .pg_leatherCrafting .section.sec2{
    padding-top: 100px;
  }
  .pg_leatherCrafting .section.sec3{
    padding-top: 73px;
  }
}
@media (min-width:1024px){


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

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

  }
  .pg_leatherCrafting .section.sec1{

  }
  .pg_leatherCrafting .section.sec2{

  }

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


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


}

/* メイン部分 */
.leatherCrafting_sec1_box{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.leatherCrafting_sec1_box1{
  width: 100%;
  order: 2;
  margin-top: 30px;
}
.leatherCrafting_sec1_box1_img:before{
  padding-top: 73.55%;
}
.leatherCrafting_sec1_box2{
  width: 100%;
  order: 1;
}
.home_sec1_box2_contents2.tate{

}
.home_sec1_box2_contents2.tate .sub{

}


/*sec2*/
.petfood_sec2_wrap.leather{
  position: relative;
}
.petfood_sec2_wrap.leather:before{
  content: "";
  display: block;
  width: 125px;
  aspect-ratio:450 / 296;
  background-image: url(/system_panel/uploads/images/claft_img.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 40px;
  right: 0;
}
;
.ourCommitment_sec1_box1.leather{
  width: 100%;
}
.home_sec1_box2_contents2_txt1.no_mgn{
  margin-top: 0;
  margin-right: 20px;
}
.ourCommitment_sec1_box1.leather .content_desc{
  margin-top: 20px;
}
.ourCommitment_sec2_items.leather .ourCommitment_sec2_item_img:before{
  padding-top: 58.26%;
}

/*sec3*/
.items_list.leather{

}
.items_list.leather .webgene-blog{

}
.items_list.leather .webgene-item{

}
.items_list.leather .webgene-item .img:before{
  padding-top: 57.04%;
}
.items_list.leather .webgene-item .box2{
  margin-top: 13px;
}

.items_list.leather .webgene-item .title{
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.025em;
  border-bottom: 1px solid #989898;
  padding-bottom: 12px;
  text-align: center;
}
.items_list.leather .webgene-item .desc{
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.025em;
  line-height: 1.8em;
  margin-top: 20px;
}
.items_list.leather .webgene-item .link_2{
  display: block;
  width: 160px;
  background: #776f37;
  color: #fff;
  text-align: center;
  padding: 4px 0;
  position: relative;
  margin-inline:auto;
  margin-top: 21px;
}
.items_list.leather .webgene-item .link_2:after{
  content: "";
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 14px;
  width: 9px;
  aspect-ratio: 9 / 8;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  transition: 0.2s all;
  background-image: url(/system_panel/uploads/images/arr_wh.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
.items_list.leather .webgene-item .link_2:hover:after{
  right: 7px;
}
@media (max-width:767px){
  .home_sec1_box2_contents2.tate .sub{
    display: inline-block;
  }
  .leatherCrafting_sec1_box .home_sec1_box2_contents2.tate .sub{
    margin-bottom: 16px;
  }
  .leatherCrafting_sec1_box .content_desc{
    margin-top: 20px;
  }
}
@media (min-width:768px){
  /* メイン部分 */
  .pg_leatherCrafting .section.sec1 .tt2{
    margin-bottom: 96px;
  }
  .leatherCrafting_sec1_box{

  }
  .leatherCrafting_sec1_box1{
    margin-top: 40px;
  }
  .leatherCrafting_sec1_box1_img:before{

  }
  .leatherCrafting_sec1_box2{
    display: flex;
    flex-direction: row-reverse;
  }
  .home_sec1_box2_contents2.tate{

  }
  .leatherCrafting_sec1_box2 .home_sec1_box2_contents2_txt2{
    margin-right: 37px;
  }
  .home_sec1_box2_contents2.tate .sub{
    writing-mode: vertical-rl;
    padding: 20px 2px;
  }
  .leatherCrafting_sec1_box2 .content_desc{
    writing-mode: vertical-rl;
  }
  .content_tate_block:nth-child(n+2){
    margin-right: 37px;
  }

  /*sec2*/
  .petfood_sec2_wrap.leather:before{
    width: 29.6%;
    top: 0;
    bottom: auto;
    right: -6px;
  }
  .home_sec1_box2_contents2_txt1.no_mgn{
    margin-top: 0;
    margin-right: 46px;
  }
  .ourCommitment_sec1_box1.leather .content_desc{
    margin-top: 46px;
  }
  .ourCommitment_sec2_items.leather .content_desc{
    padding: 10px;
  }
  .ourCommitment_sec1_box1.leather{
    width: 100%;
  }
  .ourCommitment_sec2_items.leather{
    margin-inline:-35px;
    margin-top: 107px;
  }
  .ourCommitment_sec2_items.leather .ourCommitment_sec2_item{
    padding-inline:35px;
  }

  /*sec3*/
  .items_list.leather{

  }
  .items_list.leather .webgene-blog{

  }
  .items_list.leather .webgene-item{

  }
  .items_list.leather .webgene-item .inner{
    padding: 24px 20px 30px 20px;
  }
  .items_list.leather .webgene-item .img:before{

  }
  .items_list.leather .webgene-item .title{
    font-size: 18px;
    padding-bottom: 15px;
  }
  .items_list.leather .webgene-item .desc{

  }
}
@media (min-width:1024px){
  /*sec2*/
  .petfood_sec2_wrap.leather:before{
    width: 29.6%;
    top: 0;
    right: -6px;
  }

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

  }
  .leatherCrafting_sec1_box1{
    width: 49.01%;
    margin-top: 0;
    order: 1;
  }
  .leatherCrafting_sec1_box1_img:before{

  }
  .leatherCrafting_sec1_box2{
    width: 42.76%;
    order: 2;
  }
  .home_sec1_box2_contents2.tate{

  }
  .leatherCrafting_sec1_box2 .home_sec1_box2_contents2{
    align-items: flex-start;
    justify-content: flex-start;
  }
  .home_sec1_box2_contents2.tate .sub{

  }

  /*sec2*/
  .petfood_sec2_wrap.leather:before{
    width: 29.6%;
    top: 130px;
    right: -6px;
  }
  .ourCommitment_sec2_items.leather .ourCommitment_sec2_item{
    width: 33.33%;
  }
  .ourCommitment_sec2_items.leather .ourCommitment_sec2_item:nth-child(n+4){
    margin-top: 30px;
  }

  /*sec3*/
  .items_list.leather{

  }
  .items_list.leather .webgene-blog{
    margin-inline:-20px;
  }
  .items_list.leather .webgene-item{
    width: 33.333%;
    padding-inline:20px;
  }
  .items_list.leather .webgene-item:nth-child(n+3){
    margin-top: 0;
  }
  .items_list.leather .webgene-item:nth-child(n+4){
    margin-top: 53px;
  }
  .items_list.leather .webgene-item .img:before{

  }
  .items_list.leather .webgene-item .title{
    font-size: 20px;
  }
  .items_list.leather .webgene-item .desc{

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


}


/* メイン部分 */
.pg_company,
.pg_contact{
  position: relative;
}
.pg_company:before,
.pg_contact:before{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(/system_panel/uploads/images/03-BG.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

/* 会社概要 */
.company_tbl{

}
.company_tbl .table_rows_th,
.company_tbl .table_rows_td{
  color: #000;
  font-weight: 500;
  border-color: #808080;
  padding: 10px 10px;
}
.company_tbl .table_rows_th{
  background: #e7e6dd;
  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;
}
.gmap{
  margin-top: 40px;
}
.access_map iframe{
  width: 100%;
  height: 250px;
  border: none;
}

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

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

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

  }
  .company_tbl .table_rows_td{
  }
  .company_tbl .table_rows_tt:last-child .table_rows_td{
    border-bottom: 1px solid #888888;
  }
}
@media (min-width:768px){
  .pg_company .section.sec1 .tt2{
    margin-bottom: 94px;
  }
  /* 会社概要 */
  .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;
  }

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


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

  /* 会社概要 */
  .company_tbl{

  }
  .company_tbl .table_rows_th,
  .company_tbl .table_rows_td{
    padding: 19px 16px 19px;
  }
  .company_tbl .table_rows_th{
    width: 284px;
    font-size: 17px;
  }
  .company_tbl .table_rows_td{
    padding-left: 22px;
  }

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

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


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


}



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

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

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

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

@media (max-width:767px){

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

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

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

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

  }

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

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

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

  }

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

}


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

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

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

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

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


.news_list_thumb.col3{

}
.news_list_thumb.col4{

}

.topics_detail{
  border-bottom: 1px solid #b9b9b9;
  padding-bottom: 30px;
}
.topics_detail .webgene-item{

}
.topics_detail .date{
  font-size: 17px;
  font-weight: 600;
  font-family: var(--font-en);
  letter-spacing: 0em;
}
.topics_detail .title{
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.075em;
  border-bottom: 1px solid #b9b9b9;
  padding-bottom: 10px;
  margin-top: 5px;
}
.topics_detail .post_content{
  padding-top: 30px;
}
.topics_detail .post_content img{
  margin-bottom: 30px;
}
.topics_detail .post_content h3{
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.075em;
  background: #d7d5c5;
  padding: 5px 10px;
  margin-bottom: 20px;
}
.topics_detail .post_content .txt{
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.075em;
  line-height: 2.125em;
}
.topics_detail .txt h3:nth-of-type(n+2) {
  margin-top: 30px;
}
.read_more.ja a{
  font-size: 20px;
  padding-bottom: 5px;
}


.news2_list.kasou .webgene-item:first-child a{
  border-top: 1px solid #b7b7b7;
  padding-top: 20px;
}
.news2_list.kasou .webgene-item:first-child a:after{
  top: 50%;
}

.body_newsDetail{

}
.body_newsDetail .topics_detail{
  border-bottom: 1px solid #181818;
}
.body_newsDetail .topics_detail .title{
  border-bottom: 1px solid #181818;
}
.body_newsDetail .topics_detail .post_content .txt{
  font-size: 16px;
  line-height: 1.875em;
}

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

  }

  .topics_detail{

  }
  .topics_detail .webgene-item{

  }
  .topics_detail .date{

  }
  .topics_detail .title{
    font-size: 18px;
  }
  .topics_detail .post_content{
    padding-top: 41px;
  }
  .topics_detail .post_content img{
    margin-bottom: 41px;
  }
  .topics_detail .post_content h3{
    font-size: 18px;
    padding: 8px 20px;
  }
  .topics_detail .post_content .txt{

  }

  .body_topicsDetail .read_more{
    margin-top: 52px;
  }

  .news2_list.kasou .webgene-item:first-child a{
    padding-top: 75px;
  }
  .news2_list.kasou .webgene-item a:after{
    right: 40px;
  }

  .body_newsDetail .tt2{
    margin-bottom: 98px;
  }
  .body_newsDetail{

  }
  .body_newsDetail .topics_detail .title{
    font-size: 20px;
    margin-top: 14px;
  }
}
@media (min-width:1024px){

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


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

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

  .topics_detail{

  }
  .topics_detail .webgene-item{

  }
  .topics_detail .date{

  }
  .topics_detail .title{

  }
  .topics_detail .post_content{

  }
  .topics_detail .post_content h3{

  }
  .topics_detail .post_content .txt{

  }
}
@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: #776f37;
  color: #FFF;
  padding: 12px 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 20px;
}

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

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

}
.posts_detail .meta{
  border-bottom: 1px solid #d3d3d3;
  padding-bottom: 5px;
  margin-bottom: 15px;
}
.posts_detail .meta .category{
  margin-bottom: 2px;
}
.posts_detail .meta .category span{
  display: inline-block;
  background: #0069ba;
  border-radius: 5px;
  color: #FFF;
  min-width: 150px;
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  padding: 2px 5px;
  line-height: 1.2;
}
.posts_detail .meta .date{

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

}
.posts_detail .post_content{
  line-height: 1.875;
  letter-spacing: 0.065em;
  text-align: justify;
  word-break: break-all;
}
.posts_detail .thumb{
  margin-bottom: 10px;
}

.posts_back_list{

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

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


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

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

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


  .body_topics .tt2{
    margin-bottom: 91px;
  }
  .body_topics .news_list .webgene-blog{
    margin-inline:-20px;
  }
  .body_topics .news_list .webgene-item{
    width: 33.33%;
    padding-inline:20px;
  }
  .body_topics .news_list .webgene-item:nth-child(n+4){
    margin-top: 54px;
  }

}



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

/* フォーム */
.formTbl{
  border: 1px solid #7e7e7e;
  background: #ffffff;
}
.form.formWrap {
  letter-spacing: 0.1em;
  position: relative;
  z-index: 1;
}
.formRow + .formRow{
  border-top: 1px solid #7e7e7e;
}
.formTh {
  padding: 16px 15px 16px 20px;
  background: #e0e2e9;
  letter-spacing: 0.08em;
  font-weight: 600;
}
.formTh label{
  margin: 0;
}
.d-inline-block.requiredText {
  font-size: 13px;
  padding: 2px 12px;
  margin-top: 3px;
  float: right;
  font-weight: 600;
  letter-spacing: 0.05em;
  background: #b80000;
  color: #ffffff;
}
.d-inline-block.requiredText.nini{
  background: #fff;
  color: #b80000;
  border: 1px solid #b80000;
}
.formTd {
  font-size: 15px;
  padding: 10px 16px;
}
.formTd.a-center{
  display: flex;
  align-items: center;
}
.formTd input[type="text"],
.formTd input[type="tel"],
.formTd input[type="email"]{
  max-width: 461px;
  height: 39px;
  width: 100%;
  font-size: 15px;
  padding: 5px 10px;
  border: 1px solid #d6d8d8;
  border-radius: 0;
  letter-spacing: 0.16em;
}
.formTd select{
  border-radius: 0;
}
.formTd input[name="zip1"]{
  max-width: 120px;
}
.formTd input[name="zip2"]{
  max-width: 150px;
}
.formTd select[name="pref"]{
  max-width: 225px;
  width: 100%;
  font-size: 16px;
  padding: 7px 10px;
  border: 1px solid #d6d8d8;
}
.formTd input[name="city"]{
  max-width: 425px;
}
.formTd .addArea + .addArea{
  margin-top: 8px;
}
.formTd .addArea .labelText02{
  width: 75px;
}
.formTd textarea{
  width: 100%;
  height: 280px;
  font-size: 15px;
  padding: 5px 10px;
  border: 1px solid #d6d8d8;
  border-radius: 0;
  letter-spacing: 0.16em;
}
.formWrap .text-center{
  padding-top: 56px;
}
.formWrap input[name="privacy"]{
  margin-right: 7px;
}
.formWrap .privacyLabel{
  font-size: 17px;
  display: inline;
  font-weight: 700;
}
.formWrap .privacyLabel a{
  color: #1a3e9b;
}
.formBtn.formSend {
  min-width: 190px;
  font-size: 20px;
  font-weight: 500;
  font-family: var(--font-en);
  line-height: 1.2;
  text-align: left;
  border: none;
  border-bottom: 1px solid #212121;
  background: none;
  /* border-radius: 27px; */
  color: #181818;
  padding: 0;
  margin: 5px 5px;
  position: relative;
  z-index: 1;
  transition: 0.2s all;
  cursor: pointer;
  padding-bottom: 5px;
}
.formBtn.formSend:after{
  content: "";
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 0;
  width: 9px;
  aspect-ratio: 9 / 8;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  transition: 0.2s all;
  background-image: url(/system_panel/uploads/images/arr.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
.formBtn.formSend:hover:after{
  margin-right: 0;
  right: -5px;
}

.formWrap label {
  display: inline-block;
  margin-bottom: 0;
}
.radioArea{
  padding: 0;
}
.radioArea .d-inline-block .label{
  margin-left: 9px;
  letter-spacing: 0;
  font-size: 15px;
  letter-spacing: 0.08em;
}
.radioArea .d-inline-block{
  margin-right: 27px;
}
.radioArea .d-inline-block:last-child{
  margin-right: 0;
}
label.label.zipcode_i {
  padding: 5px;
  background: #cccccc;
  margin: 0;
  display: inline-block;
  border: 1px solid #d6d8d8;
  border-right: 0;
  vertical-align: top;
  line-height: 1.8;
}
.body_thanks .read_more a{
  font-size: 20px;
}
@media only screen and (min-width: 1024px){
  .formTh {
    -ms-flex: 0 0 28%;
    -webkit-box-flex: 0;
    -webkit-flex: 28%;
    flex: 0 0 28%;
    max-width: 28%;
  }
  .formTd {
    -ms-flex: 0 0 72%;
    -webkit-box-flex: 0;
    -webkit-flex: 72;
    flex: 0 0 72%;
    max-width: 72%;
  }

  .thanks_text{
    text-align: center;
  }

}


/* プライバシー */
.contact_tt{
  margin-bottom: 60px;
  padding-left: 10px;
}
.privacy_item {
  margin-top: 27px;
}
.privacy_ttl {
  font-size: 18px;
  font-weight: 500;
  padding: 8px 15px;
  margin-bottom: 12px;
  border-left: 6px solid #776f37;
}
.privacy_txt{
  letter-spacing: 0.04em;
  line-height: 1.875;
  text-align: justify;
}
.privacy_txt p{
  letter-spacing: 0.04em;
}
.privacy_txt_type1{
  text-indent: -1.5em;
  padding-left: 1.5em;
}
.privacy_txt_type1_b{
  text-indent: -1em;
  padding-left: 1em;
}
.privacy_txt_type1_c{
  text-indent: -3em;
  padding-left: 3em;
}
.privacy_txt_type2{

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

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

.contact_tt.privacy {
  font-size: 21px;
  font-weight: 600;
  font-family: "Shippori Mincho", serif;
  letter-spacing: 0.2em;
  margin-bottom: 47px;
}
.contact_tt.privacy br{
  display: none;
}
.formWrap .d-inline{
  display: inline-block!important;
}
.formWrap .d-inline-block {
  vertical-align: middle;
}

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


  .privacy_ttl{
    font-size: 18px;
  }

}

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

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

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

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

  .privacy_box{
    padding: 30px 10px;
  }

  .contact_info_bg {
    padding: 18px 10px;
  }

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

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

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


}
