@charset "UTF-8";

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

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

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


/* ******************************
   全体設定
   ****************************** */
body{
  font-family:  'Noto Sans JP', "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  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.05em;
}
h1, h2, h3, h4, h5, h6{
  line-height: 1.5;
}

a{
  /*  color: #274117;*/
  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;
  padding: 10px;
}
.hdr1{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 10px;
}

/* ロゴ */
.hdr_logo{

}
.hdr_logo img{
  display: block;
  width: auto;
  height: var(--logo-height);
  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_logo{
    display: block;
    width: 80px;
  }

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

  .hdr_contact_btns{
    display: none;
  }
}
@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: 28px 60px 28px 34px;
  }
  .hdr_outer{
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .hdr1{
    padding: 0 15px 0;
  }
  .hdr_contact_btns{
    display: flex;
    flex-wrap: wrap;
  }
  .hdr_contact_btn{
    display: block;
    width:180px;
    border-radius: 27px;
    font-size: 15px;
    font-weight: 500;
    font-family: var(--font-ja);
    text-align: center;
    color: #fff;
    padding: 13px;
  }
  .hdr_contact_btn p{
    letter-spacing: 0;
  }
  .hdr_contact_btn.nouka{
    border: 2px dashed #274117;
    background: #ffc306;
  }
  .hdr_contact_btn:hover{
    color: #fff;
  }
  .hdr_contact_btn.nouka:hover{
    border: 2px dashed #ffc306;
    background: #274117;
  }
  .hdr_contact_btn.kounyu{
    border: 2px dashed #ffc306;
    background: #274117;
    margin-left: 13px;
  }
  .hdr_contact_btn.kounyu:hover{
    border: 2px dashed #274117;
    background: #ffc306;
  }
  .hdr_contact{
    font-size: 15px;
    font-weight: 500;
    font-family: var(--font-ja);
    position: relative;
    margin-left: 30px;
  }
  .hdr_contact:before{
    content: "";
    display: block;
    width: 144px;
    aspect-ratio:144 / 122;
    background-image: url(/system_panel/uploads/images/hdr_contact_bg.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 50%;
    left: 63%;
    transform: translateY(-50%) translateX(-50%);
    transition: all .2s;
  }
  .hdr_contact:hover:before{
    transform:translateY(-50%) translateX(-50%)  scale(0.8);
  }
  .hdr_contact:hover{
    color: #274117;
  }

  .hdr_contact p{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    letter-spacing: 0;
    position: relative;
    z-index: 1;
  }
  .hdr_contact p:before{
    content: "\f0e0";
    font-family: "fontAwesome";
    font-weight: 900;
    position: relative;
    z-index: 1;
  }

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

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

  }
  .header.slim .hdr_logo img{
    height: 75px;
  }

  /* TELボタン */
  .hdr_tel{

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


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

  .header{
    --logo-height: 48px;
  }
  .hdr_contact_btn{
    display: block;
    width: 240px;
    font-size: 16px;
  }
  .hdr_contact{
    margin-left: 76px;
  }

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

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

  }
  .header.slim .hdr_logo img{
  }

  /* TELボタン */
  .hdr_tel{

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

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

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

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

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

  }
  .header.slim .hdr_logo img{
  }

}

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

.mv_inner{
  position: relative;
}
.mv_inner:before{
  content: "";
  display: block;
  width: 700px;
  aspect-ratio:1920 / 98;
  background-image: url(/system_panel/uploads/images/mvx.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

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

}
.mv_txt_p2{

}

.mv_txt_box{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  width: 100%;
  z-index: 2;
}
.mv_txt_txt{
  font-size: 24px;
  font-weight: 400;
  font-family: var(--font-ja);
  line-height: 1.3em;
  color: #fff;
  text-shadow: 0.743px 0.669px 5.94px rgba(24, 24, 24, 0.7);
}

/* スライダーの場合 */
.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: 600px;
  }
  .mv_inner:before{
    content: "";
    display: block;
    width: 1920px;
  }

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

  }
  .mv_txt_p2{

  }

  .mv_txt_box{

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


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

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

  }
  .mv_txt_p2{

  }

  .mv_txt_box{

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

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

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

  }
  .mv_txt_p2{

  }

  .mv_txt_box{

  }
  .mv_txt_txt{
    font-size: 84px;
  }
}


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

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

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

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


@media (min-width:768px){

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

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


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

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

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

}


/*******************************
*　下層ヘッダー
********************************/
.pg_header{
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}
.pg_header:after{
  content: "";
  display: block;
  width: 1920px;
  aspect-ratio:1920 / 107;
  background-image: url(/system_panel/uploads/images/nami.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.pg_header_mv_img{
  position: relative;
  z-index: 1;
}
.pg_header_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_tt{
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  z-index: 2;
}
.pg_header_h1{
  font-size: 22px;
  font-weight: 400;
  font-family: var(--font-ja);
  letter-spacing: 0;
  text-shadow: 0.743px 0.669px 5.94px rgba(24, 24, 24, 0.7);
  color: #fff;
}

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

  .pg_header_title_txt{

  }

  .pg_header_tt{

  }
  .pg_header_h1{
    font-size: 40px;
  }
}
@media (min-width:1024px){
  .pg_header{
    margin-bottom: 70px;
  }
  .pg_header_img.img_fit:before{
    padding-top: 500px;
  }

  .pg_header_title_txt{

  }


  .pg_header_tt{

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

  .pg_header{
    margin-bottom: 136px;
  }
  .pg_header_img.img_fit:before{
    padding-top: 728px;
  }

  .pg_header_title_txt{

  }


  .pg_header_tt{

  }
  .pg_header_h1{
    font-size: 65px;

  }
}



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

.footer{
  margin-top: 50px;
}

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

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

}
.ftr1_box2{

}

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


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

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

.ftr_addr em{
  font-style: normal;
}
.ftr_copy{
  font-size: 14px;
  text-align: center;
  background: #274117;
  padding: 8px;
  color: #fff;
  position: relative;
  z-index: 1;
  margin-top: 40px;
}
.ftr_copy a{
  color: #fff;
}
.ftr_copy a:hover{
  color: #ffc306;
}

/* 追尾スマホメニュー */
.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: #274117;
  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;
  color: #274117;
}
.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: #274117;;
}
.pagetop a i{
  font-size: 40px;
}

.ftr_1{
  position: relative;
  padding-bottom: 5px;
}
.ftr_1:before{
  content: "";
  display: block;
  width: 1920px;
  aspect-ratio: 1920 / 868;
  background-image: url(/system_panel/uploads/images/ftr_bg.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
}
.ftr_1_box{
  text-align: center;
  position: relative;
  z-index: 2;
  padding-top: 50px;
}
.ftr_add{
  line-height: 1.666em;
  margin-top: 36px;
}
.ftr_add p{
  letter-spacing: 0.05em;
}
.ftr_1_links{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
}
.ftr_1_links .hdr_contact_btn{

}
.ftr_1_links .hdr_contact{

}
.ftr_insta{
  margin-top: 80px;
}
.ftr_insta a{
  display: inline-block;
  cursor: pointer;
}
@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);
  }

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

  .footer{
    margin-top: 100px;
  }

  .ftr_1_box{
    padding-top: 95px;
  }
  .ftr_add{
    font-size: 18px;
  }
  .ftr_1_links{
    margin-top: 84px;
  }
  .ftr_1_links .hdr_contact_btn{

  }
  .ftr_1_links .hdr_contact{

  }
  .ftr_insta{
    margin-top: 80px;
  }

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

  .ftr_1_box{

  }
  .ftr_add{

  }
  .ftr_1_links{

  }
  .ftr_1_links .hdr_contact_btn{

  }
  .ftr_1_links .hdr_contact{

  }
  .ftr_insta{

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

}


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


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

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

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


/* ページネーション */
.webgene-pagination {
  width: 100%;
  margin: 50px 0 0;
  line-height: 1.85;
}
.webgene-pagination ul{
  display: flex;
  justify-content: center;
  align-items: center;
}
.webgene-pagination li{
  padding: 4px 13px;
  margin: 0 4px;
  border: 1px solid #274117;
  background: #ffffff;
  font-weight: 500;
}
.webgene-pagination li.selected{
  border: 0;
  background: #274117;
  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: 290px;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--font-ja);
  line-height: 1.2;
  text-align: center;
  border: 1px solid transparent;
  background: #f39800;
  border-radius: 31px;
  color: #FFF;
  padding: 16px 20px;
  margin: 5px 5px;
  position: relative;
  z-index: 1;
  transition: 0.2s all;
}
.read_more a p{
  letter-spacing: 0;
}
.read_more a:after{
  content: "";
  display: block;
  width: 26%;
  aspect-ratio:91 / 74;
  background-image: url(/system_panel/uploads/images/kome_btn.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  z-index: 1;
  top: 50%;
  right: -12%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  transition: 0.2s all;
}
.read_more a:hover{
  color: #FFF;
  background: #274117;
}
.read_more a:hover:after{
  right: -13%;
}
.read_more a.ye:hover{
  background: #274117;
}
.read_more a.gr:hover{
  background: #ffc306;
}

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


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

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

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

}


@media (max-width:374px){

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

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

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

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

  .table_rows.resp{
    border: 1px solid #dcdcdc;
    border-top: 0;
  }
  .table_rows.resp .table_rows_th,
  .table_rows.resp .table_rows_td{
    border-top: 1px solid #dcdcdc;
  }
  .read_more a:after{
    width: 21%;
  }


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

  .anchor{
    top: -100px;
  }

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

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

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

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


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

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

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

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


}


@media (min-width:1366px){

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

}

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



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

}
.pg_home .section.sec1{
  padding-top: 60px;
  padding-bottom: 0;
}
.pg_home .section.sec2{
  padding-top: 0;
}
.pg_home .section.sec3{

}
.pg_home .section.sec4{

}
.pg_home .section.sec5{

}
.pg_home .section.sec6{

}
.pg_home .section.sec7{

}
.pg_home .section.sec8{
  position: relative;
}
.pg_home .section.sec8:after{
  content: "";
  display: block;
  width: 100%;
  height: 50%;
  background: #f7f4ef;
  position: absolute;
  bottom: 0;
  left: 0;
}

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

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

  }
  .pg_home .section.sec3{
    padding-top: 104px;
  }
  .pg_home .section.sec4{
    padding-top: 100px;
  }
  .pg_home .section.sec5{
    padding-top: 96px;
    padding-bottom: 90px;
  }
  .pg_home .section.sec6{

  }
  .pg_home .section.sec7{

  }
  .pg_home .section.sec8{
    padding-bottom: 100px;
  }
  .pg_home .section.sec9{
    padding-top: 100px;
  }
}
@media (min-width:1024px){
  .pg_home .section.sec9{
    padding-top: 120px;
  }

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


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


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


}

/*main*/

/*sec1*/
.home_sec1_wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home_sec1_box1{
  width: 100%;
  order: 2;
  margin-top: 30px;
}
.home_sec1_box1_img:before{
  padding-top: 61.76%;
}
.home_sec1_box1_img img{
  border-radius: 20px;
}
.home_sec1_box2{
  width: 100%;
  position: relative;
  order: 1;
  padding-bottom: 100px;
}
.home_sec1_box2:after{
  content: "";
  display: block;
  width: 58.38%;;
  aspect-ratio:435 / 189;
  background-image: url(/system_panel/uploads/images/sec1_il.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  bottom: 0;
}
.sec_tt{
  font-size: 30px;
  font-weight: 300;
  font-family: var(--font-ja);
  line-height: 1.22em;
  letter-spacing: 0;
}
.sec_sub{
  font-size:17px;
  font-weight: 500;
  margin-top: 12px;
}
.sec_sub p{
  letter-spacing: 0;
}
.content_desc{
  font-size: 16px;
  font-weight: 500;
  line-height: 2em;
  text-align: justify;
}
.home_sec1_box2 .content_desc{
  margin-top: 20px;
}

/*sec2*/
.home_sec2_wrap{
  background: #f7f4ef;
  padding: 30px 16px 0;;
  border-radius: 10px;
}
.home_sec2_tt{
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.05em;
  background: #fff;
  border-radius: 5px;
  padding: 5px;
}
.home_sec2_inner{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 15px;
}
.home_sec2_box1{

}
.home_sec2_box1 .content_desc{

}
.home_sec2_lists{

}
.home_sec2_list{
  font-size: 18px;
  font-weight: 500;
  line-height: 2;
  display: flex;
  flex-wrap: wrap;
}
.home_sec2_list:nth-child(n+2){
  margin-top: 30px;
}
.home_sec2_list .left_txt{
  min-width: 65px;
  letter-spacing: 0.05em;
  position: relative;
}
.home_sec2_list .left_txt:after{
  content: "";
  display: block;
  width: 1px;
  height: 18px;
  background: #9d9b98;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.home_sec2_list .right_txt{
  padding-left: 11px;
}
.home_sec2_list .right_txt p{
  display: inline-block;
  letter-spacing: 0.05em;
}
.home_sec2_box2{
  margin-top: 30px;;
}
.content_desc.sub{
  margin-top: 36px;
  text-indent: -1em;
  padding-left: 1em;
}
.content_desc.sub p{
  letter-spacing: 0.05em;
}

/*sec3*/
.tt2_box{
  text-align: center;
}
.tt2_icon{

}
.tt2_box_en{
  font-size: 40px;
  font-weight: 600;
  font-family: var(--font-en);
  letter-spacing: 0.05em;
  line-height: 1;
  color: #ffc306;
}
.tt2_box_en:first-letter{
  color: #274117;
}
.tt2_box_ja{
  font-size: 16px;
  font-weight: 500;
  font-family: var(--font-ja);
  letter-spacing: 0.05em;
  margin-top: 8px;
}
.news_list_outer{
  padding-inline:15px;
  margin-top: 40px;
}
.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 a:hover{
  color: #274117;
}
.news_list .webgene-item .img img{
  border-radius: 20px;
}
.news_list .webgene-item .img:before{
  padding-top: 74.85%;
}
.news_list .webgene-item .box2{
  margin-top: 4px;
}
.news_list .webgene-item .box2 .meta{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.news_list .webgene-item .box2 .date{
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font-en);
  line-height: 1;
  letter-spacing: 0.05em;
  margin-top: 5px;;
}
.news_list .webgene-item .category{
  display: inline-block;
  text-align: center;
  background: #274117;
  color: #fff;
  font-size: 14px;
  font-family: var(--font-ja);
  font-weight: 500;
  letter-spacing: 0;
  border-radius: 14px;
  padding: 3px 22px;
}
.news_list .webgene-item .title{
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.75em;
  margin-top: 5px;
}

/*sec4*/
.home_sec4_wrap{
  position: relative;
}
.home_sec4_wrap:before{
  content: "";
  display: block;
  width: 1920px;
  aspect-ratio:1920 / 1428;
  background-image: url(/system_panel/uploads/images/bg1.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 56%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}
.home_sec4_head{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.home_sec4_head_left{

}
.home_sec4_head_left .tt2_box{

}
.home_sec4_head_right{
  width: 100%;
}
.home_sec4_head_right_img:before{
  padding-top: 40.09%;
}
.home_sec4_head_right_img img{
  border-radius: 20px;
}

.home_sec4_box{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 40px;
  position: relative;
  z-index: 1;
}
.home_sec4_box1{
  width: 48%;
  order: 2;
}
.home_sec4_box1_img:before{
  padding-top: 147.14%;
}
.home_sec4_box1_img img{
  border-radius: 20px;
}
.home_sec4_box2{
  width: 100%;
  order: 1;
  margin-bottom: 40px;
}
.home_sec4_box2 .content_desc.lg{
  font-size: 17px;
  font-weight: 400;

}
.home_sec4_box2 .content_desc.gr{
  color: #274117;
}
.home_sec4_box2 .content_desc.lg p{
  letter-spacing: 0.05em;
}
.home_sec4_box2_tt{
  font-size: 20px;
  font-family: var(--font-ja);
  font-weight: 400;
  line-height: 1.42em;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 30px;
  color: #274117;
}
.home_sec4_box2_tt p{
  letter-spacing: 0.05em;
}
.home_sec4_box2 .read_more{

}
.read_more a.ye{
  background: #ffc306;
}
.read_more a.gr{
  background: #274117;
}
.home_sec4_box3{
  width: 48%;
  order: 3;
}
.home_sec4_box3_img{

}


/*sec5*/
.home_sec5_wrap{
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
}
.home_sec5_box1{

}
.naze_img{
  width: 85px;
}
.home_sec5_box1 .sec_tt{
  position: relative;
}
.home_sec5_box1 .sec_sub{

}
.home_sec5_box1 .content_desc{
  margin-top: 20px;
}
.content_block:nth-child(n+2){
  margin-top: 20px;
}
.home_sec5_box2{
  width: 100%;
  position: relative;
  margin-top:40px;
}
.home_sec5_box1_top{
  width: 87.24%;
  margin-left: auto;
  position: relative;
}
.home_sec5_box2:before{
  content: "";
  display: block;
  width: 33.82%;;
  aspect-ratio:252 / 223;
  background-image: url(/system_panel/uploads/images/home_sec5_box1_top_1.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: -2%;
  left: 0;
  z-index: 2;
}

.home_sec5_box2:after{
  content: "";
  display: block;
  width: 44.02%;;
  aspect-ratio:328 / 239;
  background-image: url(/system_panel/uploads/images/tesihoku.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: 0;
  bottom: -3%;
  z-index: 2;
}
.home_sec5_box1_top:after{
  content: "";
  display: block;
  width: 49.07%;;
  aspect-ratio:319 / 128;
  background-image: url(/system_panel/uploads/images/home_sec5_box1_top_2.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: -8%;
  bottom: -20%;
  z-index: 2;
}
/*.pg_home .section.sec5 .home_sec5_box2:before,
.pg_home .section.sec5 .home_sec5_box2:after{
  display: none;
}*/
.home_sec5_box1_top_img img,
.home_sec5_box1_btm_img img{
  border-radius: 20px;
}
.home_sec5_box1_top_img:before{
  padding-top: 59.07%
}
.home_sec5_box1_btm{
  width: 59.32%;
  margin-top: 60px;
}
.home_sec5_box1_btm_img:before{
  padding-top:59.04%
}

/*sec6*/
.home_sec6_img_outer{
  position: relative;
}
.home_sec6_img_outer:before{
  content: "";
  display: block;
  width: 1920px;
  aspect-ratio:1920 / 632;
  background-image: url(/system_panel/uploads/images/bf.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform:translateX(-50%);
  z-index: 2;
}
.home_sec6_img:before{
  padding-top: 350px;
}

.home_sec6_wrap{
  position: relative;
}
.home_sec6_wrap:before{
  content: "";
  display: block;
  width: 1920px;
  aspect-ratio:1920 / 1428;
  background-image: url(/system_panel/uploads/images/bg2.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 50%;
  transform:translateX(-50%);
  z-index: 0;
}
.home_sec6_wrap_inner{
  position: relative;
  z-index: 2;
  margin-top: -90px;
}
.sec_sub.center{
  text-align: center;
  font-weight: 500;
  font-family: var(--font-ja);
}
.sec_sub.center p{
  letter-spacing: 0.05em;
}
.home_sec6_wrap .sec_sub.center{
  margin-top: 20px;
}
.home_sec6_wrap_items{
  margin-top: 40px;
}
.home_sec6_wrap_item{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home_sec6_wrap_item:nth-child(n+2){
  margin-top:50px;
}
.home_sec6_wrap_item_box1{
  width: 100%; 
  order: 2;
  margin-top: 20px;
}
.home_sec6_wrap_item_num{
  font-size: 40px;
  font-weight: 400;
  line-height: 1;
  font-family: var(--font-en);
  letter-spacing: 0.05em;
}
.home_sec6_wrap_item_num:after{
  content: "";
  display: block;
  width:40px;
  height: 3px;
  background: #000;
  margin: 7px 0 0;
}
.home_sec6_wrap_item_tt{
  font-size: 24px;
  font-weight: 500;
  font-family: var(--font-ja);
  margin-top: 20px;
}
.home_sec6_wrap_item_sub{
  font-size: 18px;
  font-weight: 500;
  font-family: var(--font-ja);
  margin-top: 20px;
}
.home_sec6_wrap_item_sub p{
  display: inline-block;
  background: #ffc306;
  border-radius: 10px;
  padding: 2px 12px;
}
.home_sec6_wrap_item .content_desc{
  margin-top: 20px;
}
.home_sec6_wrap_item .read_more{

}
.home_sec6_wrap_item_box2{
  width: 100%; 
  order: 1;
}
.home_sec6_wrap_item_img_outer{

}

.home_sec6_wrap_item_img{
  position: relative;
  z-index: 0;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center top;
  aspect-ratio: 692 / 550;
}
.home_sec6_wrap_item_img img{
  max-width: none;
  position: absolute;
  z-index: 1;
  top: 0;
  -webkit-mask-size: contain;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;

}
.home_sec6_wrap_item:nth-child(odd) .home_sec6_wrap_item_img img{
  -webkit-mask-image: url(/system_panel/uploads/images/mask.png);
}
.home_sec6_wrap_item:nth-child(even) .home_sec6_wrap_item_img img{
  -webkit-mask-image: url(/system_panel/uploads/images/left_mask.png);
}

/*sec7*/
.insta_list{
  padding: 0;
  margin-top: 30px;
}
.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: 10px;
}
.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 .webgene-item .img,
.insta_list .webgene-item .img img{
  border-radius: 20px;
}

/*sec8*/
.home_sec8_wrap{
  position: relative;
}
.home_sec8_wrap:before{
  content: "";
  display: block;
  width: 1920px;
  aspect-ratio:1920 / 1263;
  background-image: url(/system_panel/uploads/images/bg3.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: -164px;
  left: 50%;
  transform:translateX(-50%);
  z-index: 0;
}
.home_sec8_wrap .tt2_box{
  position: relative;
  z-index: 1;
}

/*sec9*/
.home_sec9_box{
  display: flex;
  flex-wrap: wrap;
  margin-top: 40px;
}
.home_sec9_box1{
  width: 100%;
  order: 2;
  margin-top: 30px;
}
.company_logo{
  text-align: center;
}
.company_logo img{
  width: 120px;;  
}
.home_sec9_box1 .company_tbl{
  margin-top: 15px;
}
.home_sec9_box1 .table_rows_th,
.home_sec9_box1 .table_rows_td{
  border-color: #bfbfbf;
}
.home_sec9_box1 .table_rows_th{
  background: #274117;
  color: #fff;
}
.home_sec9_box1 .table_rows_td{

}
.home_sec9_box2{
  width: 100%;
  order: 1;
}
.home_sec9_box2_img:before{
  padding-top: 51.81%;
}
.home_sec9_box2_img img{
  border-radius: 20px;
}
@media (max-width:374px){

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

}
@media (max-width:767px){
  .home_sec4_wrap:before{
    width: 1930px;
  }
  .home_sec4_box2_tt{
    font-size: 24px;
  }

  .home_sec9_box1 .table_rows_th,
  .home_sec9_box1 .table_rows_td{
    border: 1px solid #bfbfbf;
    border-bottom: none;
    display: block;
    width: 100%;
  }
  .home_sec9_box1 .table_rows_tr:last-child .table_rows_td{
    border-bottom: 1px solid #bfbfbf;
  }

  .footer .hdr_contact_btns{
    display: flex;
    flex-wrap: wrap;
  }
  .footer .hdr_contact_btn{
    display: block;
    width:100%;
    border-radius: 27px;
    font-size: 15px;
    font-weight: 500;
    font-family: var(--font-ja);
    text-align: center;
    color: #fff;
    padding: 13px;
  }
  .footer .hdr_contact_btn p{
    letter-spacing: 0;
  }
  .footer .hdr_contact_btn.nouka{
    border: 2px dashed #274117;
    background: #ffc306;
  }
  .footer .hdr_contact_btn.kounyu{
    border: 2px dashed #ffc306;
    background: #274117;
    margin-left: 0;
    margin-top: 10px;
  }
  .footer .hdr_contact{
    display: block;
    font-size: 15px;
    font-weight: 500;
    font-family: var(--font-ja);
    position: relative;
    margin-left:0;
    margin-top: 60px;
  }
  .footer .hdr_contact:before{
    content: "";
    display: block;
    width: 144px;
    aspect-ratio: 144 / 122;
    background-image: url(/system_panel/uploads/images/hdr_contact_bg.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 50%;
    left: 63%;
    transform: translateY(-50%) translateX(-50%);
    transition: all .2s;
  }
  .hdr_contact p{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    letter-spacing: 0;
    position: relative;
    z-index: 1;
  }
  .hdr_contact p:before {
    content: "\f0e0";
    font-family: "fontAwesome";
    font-weight: 900;
    position: relative;
    z-index: 1;
  }

  .home_sec4_head_right{
    margin-top: 40px;
  }

  .ftr_logo img,
  .ftr_insta img{
    width: 180px;
  }
}
@media (min-width:768px){
  /*sec1*/
  .home_sec1_wrap{

  }
  .home_sec1_box1{

  }
  .home_sec1_box1_img:before{

  }
  .home_sec1_box2{
    padding-bottom: 150px;
  }
  .home_sec1_box2:after{
    content: "";
    display: block;
    width: 30.38%;;
  }
  .sec_tt{
    font-size: 50px;
  }
  .sec_sub{
    font-size: 20px;
  }
  .content_desc{
    font-size: 18px;
  }
  .home_sec1_box2 .content_desc{
    margin-top: 33px;
  }

  /*sec2*/
  .home_sec2_wrap{
    padding: 30px 30px 0 30px;
  }
  .home_sec2_tt{
    font-size: 22px;
  }
  .home_sec2_inner{

  }
  .home_sec2_box1{

  }
  .home_sec2_box1 .content_desc{

  }
  .home_sec2_lists{
    margin-top: 26px;
  }
  .home_sec2_list{
    flex-wrap: nowrap;
  }
  .home_sec2_list:nth-child(n+2){
    margin-top: 35px;
  }
  .home_sec2_list .left_txt{
    min-width: 65px;
    position: relative;
  }
  .home_sec2_list .left_txt:after{
    content: "";
    display: block;
    width: 1px;
    height: 18px;
    background: #9d9b98;
    position: absolute;
    top: 19px;
    right: 0;
    transform: translateY(-50%);
  }
  .home_sec2_list .right_txt{

  }
  .home_sec2_box2{
    margin-top: 40px;;
  }

  /*sec3*/
  .tt2_box{
    text-align: center;
  }
  .tt2_icon{

  }
  .tt2_box_en{
    font-size: 50px;
  }
  .tt2_box_ja{

  }
  .news_list_outer{
    margin-top: 54px;
  }
  .news_list .webgene-item .date{
    margin-top: 0;
  }
  .news_list .webgene-item .title{
    margin-top: 14px;
  }
  .pg_home .section.sec3 .read_more{
    margin-top: 70px;
  }

  /*sec4*/
  .home_sec4_wrap{

  }
  .home_sec4_head{

  }
  .home_sec4_head_left{

  }
  .home_sec4_head_left .tt2_box{

  }
  .home_sec4_head_right{

  }
  .home_sec4_head_right_img:before{

  }
  .home_sec4_head_right_img img{

  }

  .home_sec4_box{
    margin-top: 64px;
  }
  .home_sec4_box1{

  }
  .home_sec4_box1_img:before{

  }
  .home_sec4_box1_img img{

  }
  .home_sec4_box2{
    margin-bottom: 40px;
  }
  .home_sec4_box2 .content_desc.lg{
    text-align: center;
    font-size: 20px;
    line-height: 2.57em;
  }
  .home_sec4_box2_tt{
    font-size: 28px;
    margin-top: 45px;
    margin-bottom: 62px;
  }
  .home_sec4_box2 .read_more{
    margin-top: 60px;
  }
  .home_sec4_box2 .read_more a{
    min-width: 250px;
    margin-inline:20px;
  }
  .read_more a.ye{

  }
  .read_more a.gr{

  }
  .home_sec4_box3{

  }
  .home_sec4_box3_img{

  }

  /*sec5*/
  .home_sec5_wrap{

  }
  .home_sec5_box1{
    width: 100%;
  }
  .naze_img{
    width: auto;
  }
  .home_sec5_box1 .sec_tt{

  }
  .home_sec5_box1 .sec_sub{

  }
  .home_sec5_box1 .content_desc{
    margin-top: 30px;
  }
  .content_block:nth-child(n+2){
    margin-top: 35px;
  }
  .home_sec5_box2{
    width: 100%;
    margin-top: 60px;
  }
  .home_sec5_box2:before{
    width: 33.82%;;
    aspect-ratio:252 / 223;
    top: -2%;
    left: 0;
    z-index: 2;
  }
  .home_sec5_box1_top{
    width: 87.24%;
    margin-left: auto;
  }
  .home_sec5_box1_top_img img,
  .home_sec5_box1_btm_img img{
    border-radius: 20px;
  }
  .home_sec5_box1_top_img:before{
    padding-top: 59.07%
  }
  .home_sec5_box1_btm{
    width: 59.32%;
    margin-top: 113px;
  }
  .home_sec5_box1_btm_img:before{
    padding-top:59.04%
  }

  /*sec6*/
  .home_sec6_img_outer{

  }
  .home_sec6_img_outer:before{

  }
  .home_sec6_img:before{
    padding-top: 632px;
  }

  .home_sec6_wrap{

  }
  .home_sec6_wrap_inner{

  }
  .sec_sub.center{

  }
  .home_sec6_wrap .sec_sub.center{
    margin-top: 37px;
  }
  .home_sec6_wrap_items{
    margin-top: 58px;
  }
  .home_sec6_wrap_item{

  }
  .home_sec6_wrap_item:nth-child(n+2){
    margin-top: 70px;
  }
  .home_sec6_wrap_item_box1{
    margin-top: 20px;
  }
  .home_sec6_wrap_item_num{
    font-size: 60px;
  }
  .home_sec6_wrap_item_tt{
    font-size: 28px;
    margin-top: 27px;
  }
  .home_sec6_wrap_item_sub{
    font-size: 20px;
    margin-top: 43px;
  }
  .home_sec6_wrap_item .content_desc{
    margin-top: 32px;
  }
  .home_sec6_wrap_item .read_more{
    margin-top: 42px;
  }
  .home_sec6_wrap_item_box2{
    width: 75%;
    margin-inline:auto;
  }
  .home_sec6_wrap_item_img_outer{

  }

  .home_sec6_wrap_item_img{

  }
  .home_sec6_wrap_item_img img{

  }

  /*insta*/
  .insta_list video{

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

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

  }

  /*sec9*/
  .home_sec9_box{

  }
  .home_sec9_box1{

  }
  .company_logo{

  }
  .home_sec9_box1 .company_tbl{

  }
  .home_sec9_box1 .table_rows_th,
  .home_sec9_box1 .table_rows_td{

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

  }
  .home_sec9_box2{

  }
  .home_sec9_box2_img:before{

  }
}
@media (min-width:1024px){
  /*sec1*/
  .home_sec1_box1{
    width: 44.73%;
    padding-top: 15px;
    order: 1;
  }
  .pg_home .section.sec1 .home_sec1_box1{
    margin-top: 0;
  }
  .home_sec1_box1_img:before{

  }
  .home_sec1_box2{
    width: 49.01%;
    padding-bottom: 150px;
    order: 2;
  }
  .home_sec1_box2:after{
    content: "";
    display: block;
    width: 58.38%;;
  }

  /*sec3*/
  .news_list{

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


  .home_sec6_wrap_item_box1{
    width: 50.99%;
    margin-top: 0;
  }
  .home_sec6_wrap_item:nth-child(n+2){
    margin-top: 84px;
  }
  .home_sec6_wrap_item:nth-child(odd) .home_sec6_wrap_item_box1{
    order: 1;
  }
  .home_sec6_wrap_item:nth-child(odd) .home_sec6_wrap_item_box2{
    order: 2;
  }
  .home_sec6_wrap_item:nth-child(even) .home_sec6_wrap_item_box1{
    order: 2;
  }
  .home_sec6_wrap_item:nth-child(even) .home_sec6_wrap_item_box2{
    order: 1;
  }
  .home_sec6_wrap_item_box2{
    width: 45.19%;
    padding-top: 10px;
    margin-inline:0;
  }
}
@media (min-width:1200px){
  /*sec1*/
  .home_sec1_wrap{

  }
  .home_sec1_box1{
    width: 44.73%;
    padding-top: 15px;
    order: 1;
  }
  .pg_home .section.sec1 .home_sec1_box1{
    margin-top: 0;
  }
  .home_sec1_box1_img:before{

  }
  .home_sec1_box2{
    width: 49.01%;
    padding-bottom: 245px;
    order: 2;
  }
  .home_sec1_box2:after{
    content: "";
    display: block;
    width: 58.38%;;
  }
  .sec_tt{
    font-size: 60px;
  }
  .sec_sub{
    font-size: 24px;
  }
  .content_desc{

  }
  .home_sec1_box2 .content_desc{

  }

  /*sec2*/
  .home_sec2_wrap{
    position: relative;
    padding: 30px;
  }
  .home_sec2_tt{
    font-size: 28px;
  }
  .home_sec2_inner{
    justify-content: space-between;
  }
  .home_sec2_box1{
    width: 62.05%;
    padding-right: 130px;
  }
  .home_sec2_box1 .content_desc{

  }
  .home_sec2_lists{
    /*    padding-right: 78px;*/
  }
  .home_sec2_list{

  }
  .home_sec2_list .left_txt{

  }
  .home_sec2_list .right_txt{
    padding-left: 11px;
  }
  .home_sec2_box2{
    width:36.98%;
    margin-top: 0;
  }
  .map_img{
    position: absolute;
    right: 2%;
    bottom: 0;
  }

  /*sec3*/
  .tt2_box{
    text-align: center;
  }
  .tt2_icon{

  }
  .tt2_box_en{
    font-size: 86px;
  }
  .tt2_box_ja{

  }
  .news_list_outer{
    padding-inline:25px;
  }
  .news_list{

  }
  .news_list .webgene-blog{

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

  /*sec4*/
  .home_sec4_wrap{

  }
  .home_sec4_head{
    justify-content: space-between;
  }
  .home_sec4_head_left{

  }
  .home_sec4_head_left .tt2_box{

  }
  .home_sec4_head_right{
    width: 69.73%;
  }
  .home_sec4_head_right_img:before{

  }
  .home_sec4_head_right_img img{

  }

  .home_sec4_box{

  }
  .home_sec4_box1{
    width: 23.02%;
    padding-top: 145px;
    order: 1;
  }
  .home_sec4_box1_img:before{

  }
  .home_sec4_box1_img img{

  }
  .home_sec4_box2{
    width: 53.81%;
    order: 2;
    margin-bottom: 0;
  }
  .home_sec4_box2 .content_desc.lg{
    font-size: 21px;
    text-align: center;
  }
  .home_sec4_box2_tt{
    font-size: 38px;
  }
  .home_sec4_box2 .read_more{

  }
  .home_sec4_box2 .read_more a{
    min-width: 250px;
    margin: 5px 20px;
  }
  .read_more a.ye{

  }
  .read_more a.gr{

  }
  .home_sec4_box3{
    width: 22.35%;
    position: relative;
    order: 3;
  }
  .home_sec4_box3_img{
    width: auto;
    position: absolute;
    top: 75px;
    right: 0;
  }

  /*sec5*/
  .home_sec5_wrap{

  }
  .home_sec5_box1{
    width: 44.73%;
  }
  .home_sec5_box1 .sec_tt{

  }
  .home_sec5_box1 .sec_sub{

  }
  .home_sec5_box1 .content_desc{

  }
  .content_block:nth-child(n+2){

  }
  .home_sec5_box2{
    width: 49.01%;
    padding-top: 80px;
    margin-top: 0;
  }
  .home_sec5_box2:before{
    width: 33.82%;;
    aspect-ratio:252 / 223;
    top: -2%;
    left: -13%;
    z-index: 2;
  }
  .home_sec5_box1_top{

  }
  .home_sec5_box1_top_img img,
  .home_sec5_box1_btm_img img{

  }
  .home_sec5_box1_top_img:before{

  }
  .home_sec5_box1_btm{

  }
  .home_sec5_box1_btm_img:before{

  }

  .home_sec6_wrap{

  }
  .home_sec6_wrap_inner{

  }
  .sec_sub.center{

  }
  .home_sec6_wrap_items{

  }
  .home_sec6_wrap_item{

  }
  .home_sec6_wrap_item:nth-child(n+2){
    margin-top: 84px;
  }
  .home_sec6_wrap_item:nth-child(odd) .home_sec6_wrap_item_box1{
    order: 1;
  }
  .home_sec6_wrap_item:nth-child(odd) .home_sec6_wrap_item_box2{
    order: 2;
  }
  .home_sec6_wrap_item:nth-child(even) .home_sec6_wrap_item_box1{
    order: 2;
  }
  .home_sec6_wrap_item:nth-child(even) .home_sec6_wrap_item_box2{
    order: 1;
  }
  .home_sec6_wrap_item_box1{
    width: 50.99%;
    margin-top: 0;
  }
  .home_sec6_wrap_item_num{
    font-size: 84px;
  }
  .home_sec6_wrap_item_tt{
    font-size: 30px;
  }
  .home_sec6_wrap_item_sub{
    font-size:21px;
  }
  .home_sec6_wrap_item .content_desc{

  }
  .home_sec6_wrap_item .read_more{

  }
  .home_sec6_wrap_item_box2{
    width: 45.19%;
    padding-top: 10px;
  }
  .home_sec6_wrap_item_img_outer{

  }

  .home_sec6_wrap_item_img{

  }
  .home_sec6_wrap_item_img img{

  }

  /*insta*/
  .insta_list video{

  }
  .insta_list .webgene-blog{

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

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

  }

  /*sec9*/
  .home_sec9_box{
    display: flex;
    flex-wrap: nowrap;
    position: relative;
  }
  .home_sec9_box1{
    width: 44.73%;
    position: relative;
    z-index: 2;
    order: 1;
  }
  .company_logo{
    text-align: center;
    padding-right: 115px;
  }
  .company_logo img{
    width: auto;  
  }
  .home_sec9_box1 .company_tbl{

  }
  .home_sec9_box1 .table_rows_th,
  .home_sec9_box1 .table_rows_td{

  }
  .home_sec9_box1 .table_rows_th{

  }
  .home_sec9_box1 .table_rows_td{

  }
  .home_sec9_box2{
    width: 63.48%;
    position: absolute;
    top: 53%;
    left: 36.51%;
    transform: translateY(-50%);
    order: 2;
  }
  .home_sec9_box2_img:before{

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


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

  /*sec4*/
  .home_sec4_box3_img{
    width: 388px;
  }
  .home_sec4_box2 .read_more{

  }
  .home_sec4_box2 .read_more a{
    min-width: 350px;
    margin: 5px 31px;
  }

  .home_sec2_box1{
    width: 62.05%;
    padding-right: 78px;
  }
}




/*******************************
*　農家の方
********************************/

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

}
.pg_forFarmers .section.sec1{

}
.pg_forFarmers .section.sec2{

}
.pg_forFarmers .section.sec3{
  position: relative;
  z-index: 0;
}
.pg_forFarmers .section.sec4{
  position: relative;
  z-index: 2;
}

@media (max-width:374px){

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

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

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

  }
  .pg_forFarmers .section.sec1{

  }
  .pg_forFarmers .section.sec2{
    padding-top: 36px;
  }
  .pg_forFarmers .section.sec5{
    padding-top: 64px;
  }
  .pg_forFarmers .section.sec6{
    padding-top: 73px;
  }
}  

@media (min-width:1024px){


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

  }
  .pg_forFarmers .section.sec1{

  }
  .pg_forFarmers .section.sec2{

  }
  .pg_forFarmers .section.sec3{
    padding-top: 19px;
  }
}
@media (min-width:1470px){


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


}

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

}
.forFarmers_sec1_box{
  position: relative;
  padding-bottom: 80px;
}
.forFarmers_sec1_box:before{
  content: "";
  display: block;
  width: 23.81%;;
  aspect-ratio:362 / 212;
  background-image: url(/system_panel/uploads/images/farm_il1.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  bottom: 0;
}
.forFarmers_sec1_box:after{
  content: "";
  display: block;
  width: 19.93%;
  aspect-ratio:303 / 286;
  background-image: url(/system_panel/uploads/images/farm_il2.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: 0;
  bottom: 0;
}
.page_hdr_txt{
  font-size: 24px;
  font-weight: 300;
  font-family: var(--font-ja);
  line-height: 1.222em;
  text-align: center;
}
.page_hdr_txt p{
  letter-spacing: 0;
}
.forFarmers_sec1_wrap .content_desc{
  margin-top: 40px;
}
.forFarmers_sec1_wrap .content_desc p{
  letter-spacing: 0;
}

.lg_sub_tt{
  font-size: 18px;
  font-weight: 400;
  font-family: var(--font-ja);
  line-height: 1.58em;
  text-align: center;
  color: #274117;
  margin-top: 30px;
}
.lg_sub_tt p{

}

/*sec2*/
.forFarmers_sec2_box{
  background: #f7f4ef;
  border-radius: 20px;
  padding: 31px 16px;
  margin-top: 14px;
}
.forFarmers_sec2_tt{
  background: #fff;
  border-radius: 10px;
  text-align: center;
  font-size: 20px;
  font-family: var(--font-ja);
  font-weight: 500;
  padding: 5px;
}
.forFarmers_sec2_lists{
  display: flex;
  flex-wrap: wrap;
  margin-top: 40px;
  gap:20px 0;
}
.forFarmers_sec2_list{
  width: 100%;
  font-size: 16px;
  font-weight: 500;
  position: relative
}
.forFarmers_sec2_list .num{
  text-align: center;
  width: 12.23%;
  font-size: 24px;
  font-weight: 500;
  font-family: var(--font-en);
  line-height: 1;
  letter-spacing: 0;
  position: absolute;
  top: 8px;
  left: -11px;
  z-index: 1;
}
.forFarmers_sec2_list .num:before{
  content: "";
  display: block;
  width: 91px;
  aspect-ratio:91 / 74;
  background-image: url(/system_panel/uploads/images/kome.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  left:0;
  transform: translateY(-50%);
  z-index: -1;
}
.forFarmers_sec2_list .txt{
  width: 95.39%;
  letter-spacing: 0.075em;
  margin-left: auto;
  border-radius: 31px;
  background: #f39800;
  color: #fff;
  padding: 13px 69px;
}
.forFarmers_sec2_sub_tt{
  text-align: center;
  font-size:20px;
  font-weight: 500;
  font-family: var(--font-ja);
  color: #c51818;
  margin-top: 20px;
}
.forFarmers_sec2_sub_tt p{
  letter-spacing: 0.075em;
}

/*sec3*/
.forFarmers_sec3_wrap{
  position: relative;
  z-index: 2;
}

.forFarmers_sec3_tt{
  text-align: center;
  font-size: 22px;
  font-weight: 500;
  font-family: var(--font-ja);
  margin-top: 20px;
}
.forFarmers_sec3_items{
  display: flex;
  flex-wrap: wrap;
  gap:30px 0;
  margin-top: 40px;
}
.forFarmers_sec3_item{
  width: 100%;
  background: #f7f4ef;
  border-radius: 20px;
  padding: 30px 16px;
}
.forFarmers_sec3_item_tt{
  font-size: 18px;
  font-weight: 500;
  font-family: var(--font-ja);
  background: #fff;
  border-radius: 10px;
  text-align: center;
  padding: 10px;
}
.forFarmers_sec3_icons{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 30px;
}
.forFarmers_sec3_icon_child{
  position: relative;
}
.forFarmers_sec3_icon_child:nth-child(n+3){
  margin-top: 30px;;
}
.forFarmers_sec3_icon{

}
.forFarmers_sec3_icons_tt{
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--font-ja);
  margin-top: 10px;
}

.home_sec1_wrap.forFarmers{
  margin-top: 40px;
  position: relative;
}
.home_sec1_wrap.forFarmers:after{
  content: "";
  display: block;
  width: 1920px;
  aspect-ratio: 1920 / 1428;
  background-image: url(/system_panel/uploads/images/bg5.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 4%;
  left: 50%;
  transform:translateX(-50%);
  z-index: -1;
}
.home_sec1_wrap.forFarmers .home_sec1_box1{
  order: 1;

}
.home_sec1_wrap.forFarmers .home_sec1_box2{
  padding-bottom: 0;
  order: 2;
  margin-top: 30px;
}
.home_sec1_wrap.forFarmers .home_sec1_box2:after{
  display: none;
}
.home_sec1_wrap.forFarmers .home_sec1_box1_img:before{
  padding-top: 122.52%;
}
.home_sec1_wrap.forFarmers .home_sec1_box1_img img{
  border-radius: 20px;
}

/*sec4*/
.forFarmers_sec4_wrap{
  position: relative;
  z-index: 2;
}


.home_sec6_wrap_items{
  position: relative;
}
.forFarmers_sec4_wrap .home_sec6_wrap_items{
  position: relative
}
.forFarmers_sec4_wrap .home_sec6_wrap_items:before{
  content: "";
  display: block;
  width: 1920px;
  aspect-ratio: 1920 / 1428;
  background-image: url(/system_panel/uploads/images/bg7.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 16.5%;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}

/*sec5*/
.forFarmers_sec5_wrap .home_sec1_wrap.forFarmers:after{
  display: none;
}
.forFarmers_sec5_wrap .home_sec1_wrap.forFarmers .home_sec1_box1{

}
.forFarmers_sec5_wrap .home_sec1_wrap.forFarmers .home_sec1_box2{

}

/*sec6*/
.naze_lg_img{
  width:80px;;
}
.forFarmers_sec6_items{
  display: flex;
  flex-wrap: wrap;
  gap:100px 0;
  margin-top: 44px;
}
.forFarmers_sec6_item{
  width: 100%;
  border: 1px solid #cccccc;
  border-radius: 20px;;
  background: #f7f4ef;
  padding-top: 20px;
  padding-inline: 16px;
  padding-bottom: 23px;
  position: relative;
}
.forFarmers_sec6_item_num{
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  font-family: var(--font-en);
  letter-spacing: 0;
  line-height: 1;
  position: relative;
  color: #274117;
}
.forFarmers_sec6_item_num_outer{
  position: relative;
}
.forFarmers_sec6_item_num_outer:before{
  content: "";
  display: block;
  width: 42.35%;;
  aspect-ratio:144 / 122;
  background-image: url(/system_panel/uploads/images/kome2.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  transition: all .2s;
  z-index: 0;
}
.forFarmers_sec6_item_tt{
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  font-family: var(--font-ja);
  color: #000000;
  letter-spacing: 0.075em;
  margin-top: 60px;
}
.forFarmers_sec6_item .content_desc{
  position: relative;
  line-height: 1.55em;
  padding-top: 16px;
  margin-top: 23px;
}
.forFarmers_sec6_item .content_desc p{
  letter-spacing: 0;
}
.forFarmers_sec6_item .content_desc:before{
  content: "";
  display: block;
  width: 100%;
  height: 5px;
  background-image: url(/system_panel/uploads/images/dots.png);
  background-repeat: repeat;
  position: absolute;
  top: 0;
  left: 0;
}
@media (max-width:767px){
  /*sec2*/
  .forFarmers_sec2_list .num:before{
    width: 50px;
  }
  .forFarmers_sec2_list .txt{
    padding: 13px 8px 13px 26px;
  }
  .home_sec1_wrap.forFarmers:after{
    z-index: -1;
  }

  /*sec3*/
  .forFarmers_sec3_icon_child:after{
    content: "";
    display: block;
    width: 46px;
    aspect-ratio:46 / 48;
    background-image: url(/system_panel/uploads/images/arr.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 40%;
    right: -65px;
    transform: translateY(-50%);
  }
  .forFarmers_sec3_icon_child:nth-child(even):after{
    display: none; 
  }
  .forFarmers_sec3_icons.three .forFarmers_sec3_icon_child:last-child:after{
    display: none;
  }

  .forFarmers_sec4_wrap .home_sec6_wrap_items:before{
    top: -300px;
  }
  .forFarmers_sec4_wrap{
    position: relative;
    z-index: 2;
  }

  .forFarmers_sec6_item:after{
    content: "";
    display: block;
    width: 46px;
    aspect-ratio: 46 / 48;
    background-image: url(/system_panel/uploads/images/arr_down.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    bottom: -65px;;
    left: 50%;
    transform:translateX(-50%);
  }
  .forFarmers_sec6_item:last-child:after{
    display: none;
  }
  
  .forFarmers_sec3_icon_child{
    width:100%;
    text-align: center;
  }
  .forFarmers_sec3_icon_child:nth-child(n+3){
    margin-top: 0;
  }
  .forFarmers_sec3_icon_child:nth-child(n+2){
    margin-top: 75px;;
  }
  .forFarmers_sec3_icons .forFarmers_sec3_icon_child:after{
    background-image: url(/system_panel/uploads/images/arr_down.png);
    bottom: -60px;;
    top: auto;
  left: 50%;
  transform: translateX(-50%);
  }
  .forFarmers_sec3_icons .forFarmers_sec3_icon_child:nth-child(even):after{
    display: block;
  }
  .forFarmers_sec3_icons.for .forFarmers_sec3_icon_child:last-child:after{
    display: none;
  }
}
@media (min-width:768px){
  /* メイン部分 */
  /*sec1*/
  .forFarmers_sec1_wrap{

  }
  .home_sec1_wrap.forFarmers:after{
    top: 58%;  
  }
  .forFarmers_sec1_box{
    padding-bottom: 150px;
  }
  .page_hdr_txt{
    font-size: 50px;
  }
  .forFarmers_sec1_wrap .content_desc{
    text-align: justify;
    margin-top: 54px;
  }
  .lg_sub_tt{
    font-size: 28px; 
    margin-top: 40px;
  }
  .lg_sub_tt p{

  }



  /*sec2*/
  .forFarmers_sec2_box{
    padding: 31px 30px 40px;
  }
  .forFarmers_sec2_tt{
    font-size: 30px; 
  }
  .forFarmers_sec2_lists{
    gap:30px 0;
    margin-top: 65px;
  }
  .forFarmers_sec2_list{

  }
  .forFarmers_sec2_list .num{
    font-size: 38px;
  }
  .forFarmers_sec2_list .num:before{
    content: "";
    display: block;
    width: 91px;
  }
  .forFarmers_sec2_list:before{

  }
  .forFarmers_sec2_list .txt{
    font-size: 24px;
    padding: 13px 10px 13px 69px;
  }
  .forFarmers_sec2_sub_tt{
    font-size: 32px;
  }

  /*sec3*/
  .forFarmers_sec3_tt{
    font-size: 30px;
  }
  .forFarmers_sec3_items{
    margin-top: 64px;
  }
  .forFarmers_sec3_item{
    padding: 30px 28px;
  }
  .forFarmers_sec3_item_tt{
    font-size: 22px;
  }
  .forFarmers_sec3_icons{

  }
  .forFarmers_sec3_icon_child{
    width: 18.14%;
    position: relative;
    text-align: center;
  }
  .forFarmers_sec3_icon_child:nth-child(n+3){
    margin-top: 0;
  }
  .forFarmers_sec3_icon_child:after{
    content: "";
    display: block;
    width: 36.8%;
    aspect-ratio:46 / 48;
    background-image: url(/system_panel/uploads/images/arr.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 40%;
    right: -42%;
    transform: translateY(-50%);
  }
  .forFarmers_sec3_icon_child:last-child:after{
    display: none;
  }
  .forFarmers_sec3_icon{

  }
  .forFarmers_sec3_icons_tt{
    font-size: 22px;
    white-space: nowrap;
  }
  .forFarmers_sec3_icons.for .forFarmers_sec3_icon_child{

  }
    .forFarmers_sec3_icons.three .forFarmers_sec3_icon_child:after{
   right: -80%;
    }
  .forFarmers_sec6_item_num_outer:before{
    width: 50.35%;
  }

  .home_sec1_wrap.forFarmers{
    margin-top: 63px;
  }
  .home_sec1_wrap.forFarmers .home_sec1_box1{

  }
  .home_sec1_wrap.forFarmers .home_sec1_box2{
    margin-top: 30px;
  }
  .home_sec1_wrap.forFarmers .home_sec1_box1_img:before{

  }
  .home_sec1_wrap.forFarmers .home_sec1_box2 .content_desc{
    margin-top: 45px;
  }

  /*sec4*/
  .forFarmers_sec4_wrap .sec_sub{
    margin-top: 40px;
  }
  .forFarmers_sec4_wrap .home_sec6_wrap_items{
    margin-top: 39px;
  }
  .forFarmers_sec4_wrap .home_sec6_wrap_items:before{
    content: "";
    display: block;
    width: 1920px;
    top: -18.5%;
  }

  /*sec6*/
  .naze_lg_img{
    width: auto;
  }
  .forFarmers_sec6_items{
    gap:54px;
  }
  .forFarmers_sec6_item{
    width: calc(50% - 40.5px);
    padding-inline: 24px;
    position: relative;
  }
  .forFarmers_sec6_item:after{
    content: "";
    display: block;
    width: 46px;
    aspect-ratio: 46 / 48;
    background-image: url(/system_panel/uploads/images/arr.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 54%;
    right: -17%;
    transform: translateY(-50%);
  }
  .forFarmers_sec6_item:nth-child(even):after{
    display: none;
  }
  .forFarmers_sec6_item_num{
    font-size: 20px;
  }
  .forFarmers_sec6_item_num:before{

  }
  .forFarmers_sec6_item_tt{
    font-size: 22px;
    margin-top: 57px;
  }
  .forFarmers_sec6_item .content_desc{
    font-size: 18px;
    padding-top: 27px;
  }


}
@media (min-width:1024px){
  .forFarmers_sec1_wrap .content_desc{
    text-align: center
  }



  /*sec2*/
  .forFarmers_sec2_list .num:before{
    content: "";
    display: block;
    width: 115px;
  }

  .forFarmers_sec4_wrap .home_sec6_wrap_items:before{
    content: "";
    display: block;
    width: 1920px;
    top: -18.5%;
  }

  .home_sec1_wrap.forFarmers:after{
    top: 4%;  
  }

  .forFarmers_sec6_item:after{
    right: -13%;
  }

  .forFarmers_sec6_wrap .read_more{
    margin-top: 80px;
  }
  .forFarmers_sec6_item_num_outer:before {
    width: 38.35%;
  }

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

  }
  .forFarmers_sec1_box{
    padding-bottom: 0;

  }
  .forFarmers_sec1_box:before{
    width: 23.81%;;
    left: -2%;
    bottom: -18%;
  }
  .forFarmers_sec1_box:after{
    width: 19.93%;
    right: 4%;
    bottom: -18%;
  }
  .page_hdr_txt{
    font-size: 80px;
  }
  .forFarmers_sec1_wrap .content_desc{

  }

  .lg_sub_tt{
    font-size: 40px; 
    margin-top: 76px;
  }
  .lg_sub_tt p{

  }

  /*sec2*/
  .forFarmers_sec2_box{

  }
  .forFarmers_sec2_tt{
    font-size: 42px; 
  }
  .forFarmers_sec2_lists{
    padding: 0 30px;
    gap:30px;
  }
  .forFarmers_sec2_list{
    width: calc(50% - 15px);
  }
  .forFarmers_sec2_list:before{

  }
  .forFarmers_sec2_list .num:before{
    content: "";
    display: block;
    width: 91px;
  }
  .forFarmers_sec2_sub_tt{
    font-size: 46px;
  }
  .forFarmers_sec2_list .txt{
    font-size: 18px;
  }

  /*sec3*/
  .forFarmers_sec3_tt{
    font-size: 36px;
  }
  /*sec3*/
  .forFarmers_sec3_wrap{
    z-index: 1;
  }
  .forFarmers_sec3_items{
    gap:30px;
  }
  .forFarmers_sec3_item{
    width: calc(50% - 15px);
  }
  .forFarmers_sec3_item_tt{
    font-size: 26px;
  }
  .forFarmers_sec3_icons{

  }
  .forFarmers_sec3_icon_child{

  }
  .forFarmers_sec3_icon_child:after{
    right: -43%;
  }
  .forFarmers_sec3_icons.three .forFarmers_sec3_icon_child:after{
    right: -82%;
  }
  .forFarmers_sec3_icon{

  }
  .forFarmers_sec3_icons_tt{

  }

  .home_sec1_wrap.forFarmers{

  }
  .home_sec1_wrap.forFarmers .home_sec1_box1{
    width: 36.51%;
    order: 2; 
    padding-top: 0;
    margin-top: 11px;
  }
  .home_sec1_wrap.forFarmers .home_sec1_box2{
    order: 1;
    margin-top: 0;
  }
  .home_sec1_wrap.forFarmers .home_sec1_box1_img:before{

  }
  .home_sec1_wrap.forFarmers .home_sec1_box2 .sec_tt{
    margin-right: -75px;
  }

  .forFarmers_sec4_wrap .home_sec6_wrap_items:before{
    content: "";
    display: block;
    width: 1920px;
    top: 12.5%;
  }
  .forFarmers_sec6_item_num_outer:before {
    width: 62.35%;
  }


  /*sec5*/
  .forFarmers_sec5_wrap .sec_sub{
    margin-top: 40px;
  }
  .forFarmers_sec5_wrap .home_sec1_wrap.forFarmers .home_sec1_box1{
    order: 1;
  }
  .forFarmers_sec5_wrap .home_sec1_wrap.forFarmers .home_sec1_box2{
    order: 2;
  }

  /*sec6*/
  .forFarmers_sec6_items{
    gap:0 54px;
  }
  .forFarmers_sec6_item{
    width: calc(25% - 40.5px);
  }
  .forFarmers_sec6_item:nth-child(even):after{
    display: block;
  }
  .forFarmers_sec6_item:last-child:after{
    display: none;
  }
  .forFarmers_sec6_item:after{
    right: -22%;
  }

  .forFarmers_sec6_item_num{
    font-size: 24px;
  }
  .forFarmers_sec6_item_num:before{

  }
  .forFarmers_sec6_item_tt{
    font-size: 24px;
  }
  .forFarmers_sec6_item .content_desc{

  }
  .forFarmers_sec6_wrap .sec_sub{
    margin-top: 40px;
  }

  .forFarmers_sec6_wrap .read_more{
    margin-top: 114px;
  }
}
@media (min-width:1470px){
  /*sec1*/
  .lg_sub_tt{
    font-size: 48px; 
  }

  .forFarmers_sec4_wrap .home_sec6_wrap_items:before{
    content: "";
    display: block;
    width: 1920px;
    top: 16.5%;
  }

  .forFarmers_sec6_item:after{
    right: -16%;
  }

  .page_hdr_txt{
    font-size: 90px;
  }

  .forFarmers_sec6_item_num{
    font-size: 28px;
  }
  .forFarmers_sec6_item_num_outer:before{
    width: 58.35%;
  }
}
@media (min-width:1720px){
  .forFarmers_sec2_list .txt{
    font-size: 24px;
  }
  .forFarmers_sec6_item_num_outer:before{
    width: 50.35%;
  }
}



/*******************************
*　購入希望の方
********************************/

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

}
.pg_forBuyers .section.sec1{

}
.pg_forBuyers .section.sec2{

}


@media (max-width:374px){

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

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

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

  }
  .pg_forBuyers .section.sec1{

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


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

  }
  .pg_forBuyers .section.sec1{

  }
  .pg_forBuyers .section.sec2{
    padding-top: 125px;
  }

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


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


}

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

}
.forBuyers_sec1_wrap .page_hdr_txt{
  text-align:left;
}
.home_sec5_wrap.forBuyers{
  margin-top: 40px;
}
.home_sec5_wrap.forBuyers .home_sec5_box1{
  position: relative;
  padding-bottom: 185px;
}
.home_sec5_wrap.forBuyers .home_sec5_box1:before{
  content: "";
  display: block;
  width: 98.82%;
  aspect-ratio: 671 / 365;
  background-image: url(/system_panel/uploads/images/forBuyers_il6.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 6%;
  bottom: -3%;
  z-index: 2;
}
.home_sec5_wrap.forBuyers .home_sec5_box1 .sec_sub{

}
.home_sec5_wrap.forBuyers .home_sec5_box1 .content_desc{

}
.home_sec5_wrap.forBuyers .home_sec5_box1_top:after{
  width: 25.38%;
  aspect-ratio:165 / 162;
  background-image: url(/system_panel/uploads/images/forBuyers_il1.png);
  left: -16%;
  bottom: -8%;
}
.home_sec5_wrap.forBuyers .home_sec5_box1_btm{
  position: relative;
}
.home_sec5_wrap.forBuyers .home_sec5_box1_btm:before{
  content: "";
  display: block;
  width: 50.56%;
  aspect-ratio: 223 / 216;
  background-image: url(/system_panel/uploads/images/forBuyers_il3.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left:0;
  bottom: -36%;
  z-index: 2;
}
.home_sec5_wrap.forBuyers .home_sec5_box2{

}
.home_sec5_wrap.forBuyers .home_sec5_box2:before{
  display: none;
}
.home_sec5_wrap.forBuyers .home_sec5_box2:after{
  width: 27.91%;
  aspect-ratio:208 / 189;
  background-image: url(/system_panel/uploads/images/forBuyers_il2.png);
  right: 16%;
  bottom: 14%;
}

/*sec2*/
.forBuyers_sec2_wrap{
  position: relative;
  padding-bottom: 70px;
}
.forBuyers_sec2_wrap:before{
  content: "";
  display: block;
  width: 1920px;
  aspect-ratio: 1920 / 584;
  background-image: url(/system_panel/uploads/images/bg10.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: -5%;
  left: 50%;
  transform: translateX(-50%);
}
.forBuyers_sec2_wrap:after{
  content: "";
  display: block;
  width: 100vw;
  height: 75%;
  background: #f7f4ef;
  position: absolute;
  bottom: 0;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.forBuyers_sec2_wrap .tt2_box{
  position: relative;
  z-index: 1;
}
.forBuyers_sec2_wrap .sec_sub{
  margin-top: 37px;
  position: relative;
  z-index: 1;
}
.forBuyers_sec2_items{
  display: flex;
  flex-wrap: wrap;
  gap:30px 0;
  margin-top: 45px;
  position: relative;
  z-index: 1;
}
.forBuyers_sec2_item{
  width: 100%;
  /*  background-image: url(/system_panel/uploads/images/kome_tate.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;*/
  padding: 50px 57px;
  position: relative;
}
.forBuyers_sec2_item:after{
  content: "";
  display: block;
  width: 100%;
  aspect-ratio:449 / 580;
  background-image: url(/system_panel/uploads/images/kome_tate.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.forBuyers_sec2_item_num{
  text-align: center;
  font-size: 40px;
  font-weight: 400;
  font-family: var(--font-en);
  line-height: 1;
  position: relative;
  z-index: 1;
  color: #274117;
}
.forBuyers_sec2_item_num:after{
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: #000;
  margin: 8px auto 0;
}
.forBuyers_sec2_item_tt{
  font-size: 18px;
  font-weight: 500;
  font-family: var(--font-ja);
  line-height: 1.8em;
  margin-top: 12px;
  position: relative;
  z-index: 1;
}
.forBuyers_sec2_item_tt p{
  letter-spacing: 0.075em;
}
.forBuyers_sec2_item .content_desc{
  position: relative;
  margin-top: 12px;
  padding-top: 19px;
  z-index: 1;
}
.forBuyers_sec2_item .content_desc:before {
  content: "";
  display: block;
  width: 100%;
  height: 5px;
  background-image: url(/system_panel/uploads/images/dots.png);
  background-repeat: repeat;
  position: absolute;
  top: 0;
  left: 0;
}

/*sec3*/
.forBuyers_sec3_items{
  margin-top: 60px;
}
.forBuyers_sec3_item{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-bottom: 40px;
  position: relative;
}
.forBuyers_sec3_item:nth-child(n+2){
  margin-top: 50px;
}
.forBuyers_sec3_item:after{
  content: "";
  display: block;
  width: 100vw;
  height: 100%;
  background: #f7f4ef;
  position: absolute;
  top: 0;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  z-index: -1;
}
.forBuyers_sec3_item_box1{
  width: 100%;
}
.forBuyers_sec3_item_box1_img{
  margin-top: -20px;
}
.forBuyers_sec3_item_box1_img:before{
  padding-top: 73.84%;
}
.forBuyers_sec3_item_box1_img img{
  border-radius: 20px;
}
.forBuyers_sec3_item_box2{
  width: 100%;
  margin-top: 10px;
}
.forBuyers_sec3_item_box2_meta{
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
}
.forBuyers_sec3_item_box2_meta_num{
  font-size: 30px;
  font-weight: 400;
  font-family: var(--font-en);
  letter-spacing: 0;
  line-height: 1;
  color: #274117;
}
.forBuyers_sec3_item_box2_meta_num strong{
  font-size: 60px;
  font-weight: 400;

  letter-spacing: 0;
  line-height: 1;
}
.forBuyers_sec3_item_box2_meta_tt{
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.075em;;
}
.forBuyers_sec3_item_box2_sub{
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0;
  background: #ffc306;
  padding: 7px 10px;
  margin-top: 15px;
}
.forBuyers_sec3_item_box2_sub p{
  letter-spacing: 0;
}
.forBuyers_sec3_item_box2 .content_desc{
  margin-top: 21px;
}
.link_2{
  display: block;
  width: 100%;
  max-width: 315px;
  background: #274117;
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  border-radius: 29px;
  border: 1px solid transparent;
  margin-inline: auto;
  padding: 14px 0;
  margin-top: 35px;
  position: relative;
  transition: all .2s;
}
.link_2:after{
  content: "→";
  position: absolute;
  top: 50%;
  right: 28px;
  transform: translateY(-50%);
}
.link_2:hover{
  background: #ffc306;
  color: #fff;
}
@media (max-width:767px){
  .forBuyers_sec2_item{
    height: 500px; 
  }
  .forBuyers_sec3_item_box2_meta_num strong{
    font-size: 50px;
  }
  .forBuyers_sec3_item_box2_meta_tt{
    font-size: 20px;
  }
}
@media (min-width:768px){
  /*sec1*/
  .naze_lg_img{

  }
  .forBuyers_sec1_wrap .page_hdr_txt{

  }
  .home_sec5_wrap.forBuyers{
    margin-top: 57px;
  }
  .home_sec5_wrap.forBuyers .home_sec5_box1{
    padding-bottom: 317px;
  }
  .home_sec5_wrap.forBuyers .home_sec5_box1 .sec_sub{

  }
  .home_sec5_wrap.forBuyers .home_sec5_box1 .content_desc{
    text-align: justify;
  }
  .home_sec5_wrap.forBuyers .home_sec5_box2{

  }
  .home_sec5_wrap.forBuyers .home_sec5_box2:before{

  }
  .home_sec5_wrap.forBuyers .home_sec5_box2:after{

  }
  .home_sec5_wrap.forBuyers .home_sec5_box1_btm{
    margin-top: 94px;
  }
  .home_sec5_wrap.forBuyers .home_sec5_box1_btm:before{
    width: 32.56%;
    left: 0;
    bottom: -36%;
  }

  /*sec2*/
  .forBuyers_sec2_wrap{
    padding-bottom: 80px;
  }
  .forBuyers_sec2_wrap:after{
    height: 85%;
  }
  .forBuyers_sec2_items{
    gap:70px 0;
    justify-content: center;
  }
  .forBuyers_sec2_item{
    width: 65%;
    padding: 82px 94px;
  }
  .forBuyers_sec2_item_num{
    font-size: 60px;
  }
  .forBuyers_sec2_item_tt{
    font-size: 20px;
  }
  .forBuyers_sec2_item .content_desc{

  }

  /*sec3*/
  .forBuyers_sec3_items{
    margin-top: 103px;
  }
  .forBuyers_sec3_item{

  }
  .forBuyers_sec3_item:nth-child(n+2){
    margin-top:87px;
  }
  .forBuyers_sec3_item_box1{

  }
  .forBuyers_sec3_item_box1_img:before{

  }
  .forBuyers_sec3_item_box1_img img{

  }
  .forBuyers_sec3_item_box2{
    margin-top: 20px;
  }
  .forBuyers_sec3_item_box2_meta{
    justify-content: space-between;
    align-items: baseline;
  }
  .forBuyers_sec3_item_box2_meta_num{
    font-size:60px;
  }
  .forBuyers_sec3_item_box2_meta_num strong{
    font-size: 90px;
  }
  .forBuyers_sec3_item_box2_meta_tt{
    font-size: 22px;
  }
  .forBuyers_sec3_item_box2_sub{
    font-size: 22px;
  }
  .forBuyers_sec3_item_box2 .content_desc{

  }
  .link_2{
    margin-left: auto;
    margin-right: 0;
  }
}
@media (min-width:1024px){
  .home_sec5_wrap.forBuyers .home_sec5_box1 .content_desc{
    text-align: justify;
  }
  .home_sec5_wrap.forBuyers .home_sec5_box1_btm:before{
    width: 32.56%;
    left: 0;
    bottom: -36%;
  }
  .home_sec5_wrap.forBuyers .home_sec5_box1:before{
    content: "";
    display: block;
    width: 70%;
  }

  /*sec2*/
  .forBuyers_sec2_wrap:after{
    height: 75%;
  }
  .forBuyers_sec2_items{
    gap:20px 93px;
    justify-content: center;
  }
  .forBuyers_sec2_item{
    width: calc(50% - 62px);
    padding: 80px 50px;
  }
}
@media (min-width:1200px){
  /*sec1*/
  .naze_lg_img{

  }
  .forBuyers_sec1_wrap .page_hdr_txt{

  }
  .home_sec5_wrap.forBuyers{

  }
  .home_sec5_wrap.forBuyers .home_sec5_box1{

  }
  .home_sec5_wrap.forBuyers .home_sec5_box1 .sec_sub{
    margin-right: -40px;
  }
  .home_sec5_wrap.forBuyers .home_sec5_box1 .content_desc{

  }
  .home_sec5_wrap.forBuyers .home_sec5_box2{
    padding-top: 33px;
  }
  .home_sec5_wrap.forBuyers .home_sec5_box2:before{

  }
  .home_sec5_wrap.forBuyers .home_sec5_box2:after{

  }
  .home_sec5_wrap.forBuyers .home_sec5_box1_btm:before{
    width: 32.56%;
    left: -14%;
    bottom: -36%;
  }
  .home_sec5_wrap.forBuyers .home_sec5_box1:before{
    content: "";
    display: block;
    width: 98.82%;
  }

  /*sec2*/
  .forBuyers_sec2_wrap{
    padding-bottom: 140px;
  }
  .forBuyers_sec2_items{
    gap:100px 93px;
    justify-content: center;
  }
  .forBuyers_sec2_item{
    width: calc(50% - 62px);
    padding: 80px 83px;
  }
  .forBuyers_sec2_item:after{
    width: 103%;
  }
  .forBuyers_sec2_item_num{
    font-size: 84px;
  }
  .forBuyers_sec2_item_tt{
    font-size: 26px;
  }
  .forBuyers_sec2_item .content_desc{

  }

  /*sec3*/
  .forBuyers_sec3_wrap .sec_sub{
    margin-top: 40px;
  }
  .forBuyers_sec3_items{
    margin-top: 103px;
  }
  .forBuyers_sec3_item{
    position: relative;
    padding-bottom: 40px;
  }
  .forBuyers_sec3_item:before{
    content: "";
    display: block;
    width: 86.51%;
    height: 100%;
    background: #f7f4ef;
    border-radius: 20px;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
  }
  .forBuyers_sec3_item:after{
    display: none;
  }
  .forBuyers_sec3_item_box1{
    width: 42.76%;
  }
  .forBuyers_sec3_item_box1_img:before{

  }
  .forBuyers_sec3_item_box1_img{
    margin-top: -36px;
  }
  .forBuyers_sec3_item_box1_img img{

  }
  .forBuyers_sec3_item_box2{
    width: 55.26%;
    padding-right: 57px;
    margin-top: 0;
  }
  .forBuyers_sec3_item_box2_meta{
flex-wrap: nowrap;
  }
  .forBuyers_sec3_item_box2_meta_num{
    font-size: 70px;
  }
  .forBuyers_sec3_item_box2_meta_num strong{
    font-size: 110px;
  }
  .forBuyers_sec3_item_box2_meta_tt{
    font-size: 28px;
            width: 70%;
  }
  .forBuyers_sec3_item_box2_sub{
    font-size: 24px;
  }
  .forBuyers_sec3_item_box2 .content_desc{

  }
  .link_2{

  }
}
@media (min-width:1470px){
  .home_sec5_wrap.forBuyers .home_sec5_box1_btm:before{
    width: 32.56%;
    left: -14%;
    bottom: -36%;
  }

  /*sec2*/
  .forBuyers_sec2_wrap{
    padding-bottom: 100px;
  }
  .forBuyers_sec2_items{
    gap:0 93px;
  }
  .forBuyers_sec2_item{
    width: calc(33.33% - 62px);
    padding: 33px 51px;
  }

  .forBuyers_sec3_item_box2_sub{
    font-size: 28px;
  }
}
@media (min-width:1720px){
  .home_sec5_wrap.forBuyers .home_sec5_box1_btm:before{
    width: 50.56%;
    left: -29%;
    bottom: -36%;
  }
  .forBuyers_sec2_item{
    padding: 82px 76px;
  }
  
    .forBuyers_sec3_item_box2_meta_tt{
    font-size: 30px;
    }
}







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

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

}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}


@media (max-width:374px){

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

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

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

  .pg_xxx{

  }
  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }

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


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


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


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


}

/* メイン部分 */

@media (max-width:767px){

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

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


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


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


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


}


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

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

}
.pg_company .section.sec1{

}
.pg_company .section.sec2{

}


@media (max-width:374px){

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

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

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

  .pg_company{

  }
  .pg_company .section.sec1{

  }
  .pg_company .section.sec2{

  }

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


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


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


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


}


/* メイン部分 */


/* 会社概要 */
.company_tbl{

}
/*.company_tbl .table_rows_th,
.company_tbl .table_rows_td{
  color: #000;
  border-color: #808080;
  padding: 10px 10px;
}
.company_tbl .table_rows_th{
  background: #e6e6e6;
  font-weight: 500;
}
.company_tbl .table_rows_td{
  background: #FFF;
}*/

/* マップ */
.company_map{

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

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

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

@media (max-width:767px){

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

  /* 会社概要 */
  /*  .company_tbl{
  
    }
    .company_tbl .table_rows_th,
    .company_tbl .table_rows_td{
      padding: 17px 30px 18px;
    }
    .company_tbl .table_rows_th{
      width: 200px;
    }
    .company_tbl .table_rows_td{
    }*/

  /* マップ */
  .company_map{

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


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

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


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

  /* 会社概要 */
  /*  .company_tbl{
  
    }
    .company_tbl .table_rows_th,
    .company_tbl .table_rows_td{
      padding: 17px 30px 18px;
    }
    .company_tbl .table_rows_th{
      width: 300px;
    }
    .company_tbl .table_rows_td{
    }*/

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

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


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


}



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

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

}


@media (max-width:767px){

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

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

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

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

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

  }

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

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


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

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

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

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

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

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

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



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


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


}


/*******************************
*　記事一覧(2カラム)
********************************/
.pg_news{
  padding-top: 0;
}
.posts_layout{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;

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

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

/* リスト */
.posts_list{

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

}


/* サイド */
.posts_side_wrap{

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

.posts_cat_item{
  padding-left: 0;
}
.posts_cat_item + .posts_cat_item{
  margin-top: 6px;
}
.posts_cat_item a{
  display: block;
  position: relative;
  padding-left: 31px;
  line-height: 1.5;
  font-weight: 500;
  color: #000;
  font-family: var(--font-ja);
}
.posts_cat_item a:hover{
  color: #274117;
}
.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;
}

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

}
.news_detail .meta{
  display: flex;
  flex-wrap: wrap;
}
.news_detail .category{
  display: inline-block;
  text-align: center;
  background: #274117;
  color: #fff;
  font-size: 14px;
  font-family: var(--font-ja);
  font-weight: 500;
  letter-spacing: 0;
  border-radius: 14px;
  padding: 3px 22px;
  margin-right: 20px;
}
.news_detail .date{
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font-en);
  line-height: 1;
  letter-spacing: 0.05em;
  margin-top: 5px;
}
.news_detail .title{
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0;
  border-bottom: 1px solid #181818;
  padding-bottom: 10px;
  margin-top: 16px;
}
.news_detail .post_content{
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.875em;
  padding-top: 37px;
}

/* 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: 0;
  }
  .posts_layout_box1{
    width: 74.32%;
  }
  .posts_layout_box2{
    width: 22.97%;
    margin-top: 0;
  }

  .posts_category_sp{
    display: none;
  }

  /* リスト */
  .posts_list{

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

  }

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

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

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

  .news_detail{
    padding-bottom: 53px;
  }
  .news_detail .webgene-item{

  }
  .news_detail .meta{

  }
  .news_detail .category{

  }
  .news_detail .date{

  }
  .news_detail .title{
    font-size: 20px;
  }
  .pg_news .read_more{
    margin-top: 61px;
  }
}
@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:0;
  }

  .posts_layout_box1{
    width: 75.98%;
  }
  .posts_layout_box2{
    width: 19.73%;
  }

  .news_list.kasou{

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



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

.home_sec8_wrap .tt2_box{
  margin-bottom: 45px;
}
@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;
  font-size: 21px;
  letter-spacing: 0.2em;
}

/* フォーム */
.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: 12px 15px 16px 20px;
  background: #f2f2f2;
  letter-spacing: 0.08em;
}
.formTh label{
  margin: 0;
}
.d-inline-block.requiredText {
  font-size: 13px;
  padding: 3px 12px;
  margin-top: 3px;
  float: right;
  font-weight: 500;
  letter-spacing: 0.05em;
  background: #b80000;
  color: #ffffff;
}
.d-inline-block.requiredText.nini{
  background: #fff;
  border: 1px solid #b80000;
  color: #b80000;
}
.formTd {
  font-size: 15px;
  padding: 10px 16px;
}
.formTd.a-center{
  display: flex;
  align-items: center;
}
.formTd input[type="text"],
.formTd input[type="tel"],
.formTd input[type="email"]{
  max-width: 461px;
  height: 39px;
  width: 100%;
  font-size: 15px;
  padding: 5px 10px;
  border: 1px solid #d6d8d8;
  border-radius: 0;
  letter-spacing: 0.16em;
}
.formTd 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: #ea6532;
}
.formBtn.formSend {
  display: block;
  min-width: 350px;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--font-ja);
  line-height: 1.2;
  text-align: center;
  border: 1px solid transparent;
  background: #f39800;
  border-radius: 31px;
  color: #FFF;
  padding: 20px 20px;
  margin: 9px auto 0;
  position: relative;
  z-index: 1;
  transition: 0.2s all;
  cursor: pointer;
}
.formBtn.formSend:after{
  content: "";
  display: block;
  width: 26%;
  aspect-ratio: 91 / 74;
  background-image: url(/system_panel/uploads/images/kome_btn.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  z-index: 1;
  top: 50%;
  right: -12%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  transition: 0.2s all;
}
.formBtn.formSend:hover{
  color: #FFF;
  background: #274117;
}
.formBtn.formSend:hover:after{
  right: -13%;
}
.formWrap label {
  display: inline-block;
  margin-bottom: 0;
}
.radioArea{
  padding: 0;
}
.radioArea .d-inline-block .label{
  margin-left: 9px;
  letter-spacing: 0;
  font-weight: 500;
  letter-spacing: 0.08em;
}
.radioArea .d-inline-block{
  margin-right: 26px;
}
.radioArea .d-inline-block:last-child{
  margin-right: 0;
}
label.label.zipcode_i {
  padding: 5px;
  background: #cccccc;
  margin: 0;
  display: inline-block;
  border: 1px solid #d6d8d8;
  border-right: 0;
  vertical-align: top;
  line-height: 1.8em;
}

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

  .thanks_text{
    text-align: center;
  }
}


/* プライバシー */
.contact_tt{
  margin-bottom: 60px;
  padding-left: 10px;
}
.privacy_item {
  margin-top: 28px;
}
.privacy_ttl {
  font-size: 18px;
  font-weight: 500;
  padding: 8px 15px;
  margin-bottom: 12px;
  border-left: 6px solid #274117;
  letter-spacing: 0.04em;
}
.privacy_txt{
  letter-spacing: 0.04em;
  line-height: 1.875;
  text-align: justify;
}
.privacy_txt p{
  letter-spacing: 0.04em;
}

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

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

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

.contact_tt.privacy {
  margin-bottom: 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: 32px;
  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 {
    font-size: 19px;
    margin-bottom: 0;
  }
  .privacy_item {
    margin-top: 26px;
  }
  .contact_info_txt_1 {
    margin-bottom: 10px;
    padding-left: 0;
  }
  .formWrap .d-inline {
    display: block!important;
  }
  .formTd .addArea .labelText02 {
    display: block;
  }
  label.label.zipcode_i {
    padding: 7px 4px;
    line-height: 1.75em;
  }
  a.contact_info_txt_3 {
    width: 200px;
    margin: 10px 0;
  }

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



  .contact_info_bg {
    padding: 18px 10px;
  }

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

  .formBtn.formSend{
    min-width: 250px;
  }

  .privacy_box{
    padding: 30px 10px;
  }
}

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

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


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

}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}
.pg_xxx .section.sec3{

}
.pg_xxx .section.sec4{

}
.pg_xxx .section.sec5{

}


@media (max-width:374px){

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

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

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

  }
  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }
  .pg_xxx .section.sec3{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }

  .home_sec1_wrap.forFarmers:after,
  .forFarmers_sec4_wrap .home_sec6_wrap_items:before{
    width: 1000px;
  }
  .forFarmers_sec4_wrap .home_sec6_wrap_items:before{
    top: -11.5%;
  }
  .home_sec1_wrap.forFarmers .home_sec1_box1_img:before{
    padding-top: 570px;;
  }

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

  .home_sec1_wrap.forFarmers:after,
  .forFarmers_sec4_wrap .home_sec6_wrap_items:before{
    width: 1920px;
  }
  .forFarmers_sec4_wrap .home_sec6_wrap_items:before{
    top: 12.5%;
  }

  .home_sec1_wrap.forFarmers .home_sec1_box1_img:before{
    padding-top: 122.52%;
  }


  .forFarmers_sec4_wrap .home_sec6_wrap_items:before{

  }
}
@media (min-width:1200px){
  .forFarmers_sec4_wrap .home_sec6_wrap_items:before{
    top: 12.5%;
  }

}
@media (max-width:1023px){
  .pg_home .section.sec1{
    padding-bottom: 150px;
    position: relative;
  }
  .pg_home .section.sec1:after{
    content: "";
    display: block;
    width: 32.38%;
    aspect-ratio: 435 / 189;
    background-image: url(/system_panel/uploads/images/sec1_il.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    right: 10%;;
    bottom: 0;
  }
  .pg_home .section.sec1 .home_sec1_box2{
    padding-bottom: 0;   
  }
  .pg_home .section.sec1 .home_sec1_box2:after{
    display: none;
  }
  .forFarmers_sec4_wrap .home_sec6_wrap_items:before{
    top: -6.5%;
  }

}
@media (max-width:767px){
  .pg_home .section.sec1{
    padding-bottom: 100px;
  }
  .pg_home .section.sec1:after{
    content: "";
    display: block;
    width: 40.38%;
  }
  
  .forBuyers_sec2_item_tt{
  text-align:center;
  }
}