@charset "UTF-8";

:root {
  --main-color: #2b6796;
  --sub-color: #e7161a;

  /* 画面端までの余白 */
  --margin-for-device-side: -15px;
  
  --gradient-bg1: linear-gradient(to top , #ffa206 0%, #f50000 100%);
  --gradient-bg1-webkit: -webkit-linear-gradient(to bottom , #ffa206 0%, #f50000 100%);
  --gradient-bg2: linear-gradient(to bottom , #fad126 0%, #ff544f 100%);
  --gradient-bg2-webkit: -webkit-linear-gradient(to bottom , #fad126 0%, #ff544f 100%);
}
#root{
 overflow:hidden;
}



/* 基本フォント: ゴシック */
body{
  font-family:  'Noto Sans JP', "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #FFF;
  background: #181818;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

  
}
.gjs-dashed{
  color: #FFF;
  background: #181818;
}

@media (min-width:768px){
  :root {
    --margin-for-device-side: calc(345px - 50vw);
  }
}
@media (min-width:992px){
  :root {
    --margin-for-device-side: calc(465px - 50vw);
  }
}
@media (min-width:1200px){
  :root {
    --margin-for-device-side: calc(555px - 50vw);
  }
}
/*@media (min-width:1536px){
  :root {
    --margin-for-device-side: calc(668px - 50vw);
  }
}
@media (min-width:1720px){
  :root {
    --margin-for-device-side: calc(760px - 50vw);
  }
}*/


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

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

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

p,
h1, h2, h3, h4, h5, h6{
  margin: 0;
  letter-spacing: 0.075em;
}
h1, h2, h3, h4, h5, h6{
  font-weight: 600;
  font-family: "Shippori Mincho", serif;
  line-height: 1.5;
}

a{
  color: inherit;
  transition: 0.3s;
}
a:hover{
  color: #f50000;
  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;
}
.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: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{
  
}
.hdr1{
  display: flex;
  /*flex-wrap: wrap;*/
  align-items: center;
  justify-content: space-between;
  padding: 15px 10px;
  background: #181818;
}

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

/* メニュー全般 */
.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{
  color: #FFF;
  width: 220px;
  padding: 1px;
  text-align: center;
  transition: 0.2s all;
  background-image: var(--gradient-bg1-webkit);
  background-image: var(--gradient-bg1);
  transition: 0.2s all;
  position: relative;
  z-index: 1;
}
.hdr_contact a p{
  background: #232323;
  color: #FFF;
  font-size: 20px;
  font-weight: 600;
  font-family: "Oswald", sans-serif;
  padding: 5px 10px;
  border: 4px solid #181818;
  transition: 0.2s all;
  position: relative;
  z-index: 1;
}
.hdr_contact a p:before{
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  bottom: 0;
  left: 0;
  right: 100%;
  /*right: 0;*/
  /*opacity: 0;*/
  background-image: var(--gradient-bg1-webkit);
  background-image: var(--gradient-bg1);
  transition: 0.2s all;
}
.hdr_contact a:hover p:before{
  right: 0;
  /*opacity: 1;*/
}

.hdr_contact a p em{
  display: inline-block;
  font-style: normal;
  font-weight: 600;
  color: #FFF;
  transition: 0.2s all;
  position: relative;
  z-index: 1;
}
.hdr_contact a:not(:hover) p em{
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: var(--gradient-bg1-webkit);
  background-image: var(--gradient-bg1);
}

/*.hdr_contact a.email p:before{
  content:"\f0e0";
  font-family: "fontAwesome";
  margin-right: 10px;
}*/



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


@media (min-width:375px){

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

  .hdr1 {
    justify-content: center;
  }
  
  /* お問い合わせボタン */
  .hdr_contact{
    display: none;
  }
  /* SNSボタン */
  .hdr_sns{
    margin-left: 20px;
  }
  .hdr_sns a img{
    height: 30px;
  }
  
}
@media (min-width:768px){
  
  /* ヘッダー固定 */
  body{
    /* ヘッダーの高さに応じて */
    padding-top: 80px;
  }
  .header{
    position: fixed;
    z-index: 3;
    top: 0;
    left: 0;
    right: 0;
  }
  
  .hdr1{
    padding: 10px 15px;
  }
  
  /* ロゴ */
  .hdr_logo img{
    width: 180px;
  }
  
  /* ヘッダースリム */
  .header.slim{
    
  }
  
  /* TELボタン */
  .hdr_tel{

  }
  .hdr_tel_txt1{
    font-size: 24px;
  }
  .hdr_tel_link p:before{
    margin-right: 6px;
  }
  
  
}
@media (min-width:1024px){
  
  /* ロゴ */
  .hdr_logo img{
    width: 200px;
  }

  /* ヘッダースリム */
  .header.slim{
    
  }
  
  /* TELボタン */
  .hdr_tel{

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

  .hdr1{
    padding-left: 15px;
    padding-right: 15px;
  }
  
  /* ロゴ */
  .hdr_logo{

  }
  .hdr_logo img{
    width: auto;
  }
  
  /* ヘッダースリム */
  .header.slim{
    
  }
  
  .hdr_contact{
    margin-left: 20px;
  }
  .hdr_contact a{
    width: 160px;
  }
  
}
@media (min-width:1720px){
  .hdr1{
    padding-left: 40px;
    padding-right: 50px;
  }
  .hdr_contact{
    margin-left: 60px;
  }
  .hdr_contact a{
    width: 220px;
  }
  
}

/*******************************
*　メインビジュアル
********************************/
/* MV */
.mv{
  position: relative;
  z-index: 1;
}
.mv_img{
  position: relative;
  z-index: 1;
}
.mv_img.img_fit:before{
  padding-top: 250px;
}

/* MVテキスト */
.mv_catch{
  padding: 15px 20px;
}
.mv_catch_txt1{
  font-size: 30px;
  
}
.mv_catch_txt1 strong{
  font-weight: 600;
  display: inline-block;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: var(--gradient-bg1-webkit);
  background-image: var(--gradient-bg1);
}
.mv_catch_txt2{
  font-size: 16px;
  font-weight: 600;
  font-family: "Shippori Mincho", serif;
  margin-top: 5px;
}



/* スライダーの場合 */
.mv_slider{
  display: flex;
  
}
.mv_slider_item{
  width: 250px;
  padding: 0 5px;
  position: relative;
  z-index: 1;
}
.mv_slider_item_img.img_fit:before{
  padding-top: 118.18%;
}

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

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


  /* MVテキスト */
  .mv_catch{
    padding: 20px 25px;
  }
  .mv_catch_txt1{
    font-size: 40px;
  }
  .mv_catch_txt2{
    font-size: 20px;
    margin-top: 10px;
  }
  
  .mv_slider_item{
    width: 300px;
    padding: 0 5px;
  }
  
}
@media (min-width:1024px){
  

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

  /* MVテキスト */
  .mv_catch{
    padding: 20px 25px;
  }
  .mv_catch_txt1{
    font-size: 48px;
  }
  .mv_catch_txt2{
    font-size: 22px;
  }
  
  
  .mv_slider_item{
    width: 400px;
  }
  
}
@media (min-width:1200px){

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

  /* MVテキスト */
  .mv_catch{
    padding: 30px 60px;
  }
  .mv_catch_txt1{
    font-size: 62px;
  }
  .mv_catch_txt2{
    font-size: 26px;
  }
  
  
  .mv_slider_item{
    width: 550px;
  }
  
}


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

/* サイドバー */
.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;
}
.pg_header_mv{
  position: relative;
  z-index: 1;
  padding-left: 15%;
}
.pg_header_mv_img{
  /*width: 68.46%;*/
  margin-left: auto;
  margin-right: var(--margin-for-device-side);
}
.pg_header_mv_img.img_fit:before{
  padding-top: 150px;
}

.pg_header_title{
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.pg_header_title_txt{
  font-size: 22px;
}

@media (min-width:768px){
  .pg_header{
    /*padding-left: 31.53%;*/
    margin-bottom: 60px;
  }
  .pg_header_title{
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
  }
  .pg_header_title_txt{
    font-size: 36px;
  }
  .pg_header_mv{
    /*height: 350px;*/
  }
  .pg_header_mv_img.img_fit:before{
    padding-top: 300px;
  }

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

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

  .pg_header{
    /**/
    margin-bottom: 80px;
  }
  .pg_header_title{
    left: 0;
  }
  .pg_header_title_txt{
    font-size: 62px;
  }
  .pg_header_mv{
    padding-left: 20%;
  }
  .pg_header_mv_img.img_fit:before{
    padding-top: 500px;
  }
  
}
@media (min-width:1536px){
  
  .pg_header{
    margin-bottom: 100px;
  }
  .pg_header_title{
    left: -100px;
    
  }
  .pg_header_title_txt{
    font-size: 62px;
  }
  .pg_header_mv{
    padding-left: 31.53%;
  }
}
@media (min-width:1720px){
  
  .pg_header_title{
    left: -260px;
  }
  
}


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

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

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

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



@media (min-width:375px){

}
@media (max-width:767px){
  
  body{
    padding-bottom: 56px;
  }
  
  .footer_fix{
    display: flex;
  }
  
}
@media (min-width:768px){
  .footer{
    margin-top: 100px;
  }
}
@media (min-width:1024px){
  .footer{
    margin-top: 180px;
  }
}
@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: 10px 15px;
  letter-spacing: 0.075em;
}
.table_rows_th{
  background-color: #eeeeee;
  vertical-align: top;
  border-right: 0;
}
.table_rows_td{
  background-color: #eeeeee;
  vertical-align: top;
  border-left: 0;
}
.table_rows_td_pad0{
  padding: 0 !important;
}

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

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


/* ページネーション */
.webgene-pagination {
  width: 100%;
  margin: 50px 0 0;
  line-height: 1.85;
}
.webgene-pagination ul{
  display: flex;
  justify-content: center;
  align-items: center;
}
.webgene-pagination li{
  padding: 4px 13px;
  margin: 0 4px;  
  border: 1px solid #c0c0c0;
  background: #ffffff;
  font-weight: 500;
}
.webgene-pagination li.selected{
  border: 0;
  background: #e5e5e5;
}  
.webgene-pagination li.next a:after{
  content: "\f101";
  font-family: 'FontAwesome';
  font-weight: 900;
  display: inline-block;
  margin-left: 10px;
}
.webgene-pagination li.prev a:before{
  content: "\f100";
  font-family: 'FontAwesome';
  font-weight: 900;
  display: inline-block;
  margin-right: 10px;
}

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

/* ボタン */
.read_more{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 30px;
  margin-left: -5px;
  margin-right: -5px;
}
.read_more a{
  /*width: 250px;*/
  font-size: 15px;
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
  /*border: 1px solid currentColor;*/
  /*background: var(--main-color);*/
  /*border-radius: 27px;*/
  color: #d90000;
  padding: 0;
  padding-right: 75px;
  margin: 5px 5px;
  position: relative;
  z-index: 1;
  transition: 0.2s all;
  
}
.read_more a p{
  /*letter-spacing: 0;*/
}
.read_more a:after{
  content: "";
  width: 50px;
  aspect-ratio: 73 / 60;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(/system_panel/uploads/images/read_more_arr.png);
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 18px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  transform-origin: left;
  transition: 0.2s all;
  
}
.read_more a:hover{
  /*color: #FFF;*/
  /*background: var(--sub-color);*/
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: var(--gradient-bg1-webkit);
  background-image: var(--gradient-bg1);
}
.read_more a:hover:after{
  margin-right: -5px;
  transform: translate(0, -50%) scale(0.8);
}


/* 見出し */
.tt2{
  text-align: center;
  margin-bottom: 30px;
}
.tt2_ja{
  font-size: 18px;
  padding-top: 25px;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  position: relative;
  z-index: 1;
}
.tt2_ja:before{
  content: "";
  display: block;
  width: 20px;
  aspect-ratio: 1 / 1;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(/system_panel/uploads/images/tt2_icon.png);
  position: absolute;
  z-index: 1;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}

.tt3{
  
}
.tt3_ja{
  font-size: 22px;
  font-weight: 600;
  font-family: "Shippori Mincho", serif;
  line-height: 1.4285;
}
.tt3_ja.tate{
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}
.tt3 strong{
  font-weight: 600;
  display: inline-block;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: var(--gradient-bg1-webkit);
  background-image: var(--gradient-bg1);
}
.tt3_ja.gold strong{
  background-image: var(--gradient-bg2-webkit);
  background-image: var(--gradient-bg2);
}

.cmn_txt{
  font-size: 16px;
  line-height: 2;
  line-height: 1.875;
  text-align: justify;
}

/* コンテンツ */
.cmn_contents{
  
}
.cmn_contents + .cmn_contents{
  margin-top: 50px;
}
.cmn_contents_row{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.cmn_contents_row + .cmn_contents_row{
  margin-top: 50px;
}
.cmn_contents_box1{
  width: 100%;
  padding-left: 50px;
  position: relative;
  z-index: 1;
}
.cmn_contents_box1.wide{
  width: 100%;
}
.cmn_contents_box2{
  width: 100%;
  margin-top: 30px;
  position: relative;
  z-index: 1;
}
.cmn_contents_box3{
  width: 100%;
}
.cmn_contents_box4{
  width: 100%;
  margin-top: 30px;
}

.cmn_contents_img{
  
}
.cmn_contents_img.img_fit:before{
  padding-top: 134.21%;
}
.cmn_contents_img2{
  
}
.cmn_contents_img2.img_fit:before{
  padding-top: 114.60%;
}
.cmn_contents_box1 .tt2{
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
}
.cmn_contents * + .cmn_txt{
  margin-top: 15px;
}

.cmn_contents_row:nth-child(odd) .cmn_contents_box1{
}
.cmn_contents_row:nth-child(odd) .cmn_contents_box2{
}
.cmn_contents_row:nth-child(even) .cmn_contents_box1{
}
.cmn_contents_row:nth-child(even) .cmn_contents_box2{
}
.cmn_contents_row:nth-child(odd) .cmn_contents_box1 .tt2{
  
}
.cmn_contents_row:nth-child(even) .cmn_contents_box1 .tt2{
}

/* 背景付き */
.cmn_contents_row.bg1{
  padding-top: 50px;
  padding-bottom: 50px;
}
.cmn_contents_row.bg1:after{
  content: "";
  background: #232323;
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}

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

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

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

}

  
@media (max-width:374px){

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

}
@media (max-width:767px){
  .tt3_ja{
    font-size: 20px;
  }
  /* スマホ用テーブル */
  .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;
  }
  
  .cmn_contents_box2 .cmn_contents_img{
    margin-left: 50px;
  }
}
@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{
    width: auto;
    font-size: 15px;
    /*padding-right: 102px;*/
  }
  .read_more a:after{
    /*width: 73px;*/
    /*content: "→";
    top: 50%;
    right: 18px;*/
  }
  .read_more a:hover:after{
    /*margin-right: -5px;*/
  }
  
  /* 見出し */
  .tt2{
    margin-bottom: 50px;
  }
  .tt2_ja{
    font-size: 18px;
  }
  
  .tt3_ja{
    font-size: 30px;
  }
  .tt3_ja.small{
    font-size: 24px;
  }
  .cmn_txt{
    font-size: 16px;
    line-height: 2;
  }
  
  
  /* コンテンツ */
  .cmn_contents{

  }
  .cmn_contents + .cmn_contents{
    margin-top: 70px;
  }
  .cmn_contents_row{
  }
  .cmn_contents_row + .cmn_contents_row{
    margin-top: 90px;
  }
  .cmn_contents_box1{
    /*width: 59.90%;*/
    /*width: 60.90%;*/
    width: 55%;
    padding-left: 50px;
  }
  .cmn_contents_box2{
    /*width: 34.23%;*/
    width: 42%;
    margin-top: 0;
    padding-top: 15px;
  }
  .cmn_contents_row.head .cmn_contents_box2{
    padding-top: 8px;
  }
  .cmn_contents_box3{
    width: 40.09%;
    padding-top: 10px;
  }
  .cmn_contents_box4{
    width: 51.35%;
    width: 51.75%;
    margin-top: 0 ;
  }
  .cmn_contents_box1 .tt2{
    position: absolute;
    z-index: 1;
    top: 0;
    top: 15px;
    left: 0;
  }
  .cmn_contents_row:nth-child(odd) .cmn_contents_box1{
    order: 1;
  }
  .cmn_contents_row:nth-child(odd) .cmn_contents_box2{
    order: 2;
  }
  .cmn_contents_row:nth-child(even) .cmn_contents_box1{
    order: 2;
  }
  .cmn_contents_row:nth-child(even) .cmn_contents_box2{
    order: 1;
  }
  
  
  .cmn_contents_row:nth-child(odd) .cmn_contents_box3{
    order: 1;
  }
  .cmn_contents_row:nth-child(odd) .cmn_contents_box4{
    order: 2;
  }
  .cmn_contents_row:nth-child(even) .cmn_contents_box3{
    order: 2;
  }
  .cmn_contents_row:nth-child(even) .cmn_contents_box4{
    order: 1;
  }

  
  /* 背景付き */
  .cmn_contents_row.bg1{
    padding-top: 0;
    padding-bottom: 115px;
  }
  .cmn_contents_row.bg1:after{
    top: 75px;
    bottom: 0;
    left: 50%;
    width: 100vw;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }


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

  /* ページネーション */
  .webgene-pagination{
    margin-top: 120px;
  }
  .posts_list .webgene-pagination{
    margin-top: 80px;
  }
  
  /* 見出し */
  /*.tt2{
    margin-bottom: 50px;
  }
  .tt2_en{
    font-size: 46px;
  }
  .tt2_ja{
    font-size: 16px;
    margin-top: 15px;
  }*/
  .tt3_ja{
    font-size: 30px;
  }
  .tt3_ja.small{
    font-size: 24px;
  }
  
  .read_more a{
    width: auto;
    font-size: 15px;
    padding-right: 102px;
  }
  .read_more a:after{
    width: 73px;
    /*content: "→";
    top: 50%;
    right: 18px;*/
  }

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

  .tt2_ja{
    font-size: 22px;
  }
  .tt3_ja{
    font-size: 56px;
    white-space: nowrap;
  }
  .tt3_ja.small{
    font-size: 32px;
  }

  
  .cmn_contents + .cmn_contents{
    margin-top: 110px;
  }
  .cmn_contents_box1{
    width: 60.90%;
    padding-left: 65px;
  }
  .cmn_contents_box1.mini{
    width: 58%;
  }
  .cmn_contents_box2{
    width: 34.23%;
  }
  .cmn_contents_box3{
    width: 40.09%;
  }
  .cmn_contents_box4{
    width: 51.75%;
    /*width: 54.75%;*/
  }
}



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

}
.pg_home .section.sec1{
  padding-top: 20px;
}
.pg_home .section.sec2{
  padding-top: 40px;
  position: relative;
  z-index: 1;
}
.pg_home .section.sec2:before{
  content: "";
  background: #232323;
  width: 100vw;
  top: 0;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  position: absolute;
  z-index: -1;
}
.pg_home .section.sec3{
  padding-top: 50px;
}
.pg_home .section.sec4{
  padding-top: 50px;
  padding-bottom: 50px;
  position: relative;
  z-index: 1;
}
.pg_home .section.sec4:before{
  content: "";
  background: #232323;
  width: 100vw;
  top: 0;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  position: absolute;
  z-index: -1;
}
.pg_home .section.sec5{

}

@media (max-width:767px){

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

  .pg_home .section.sec1{
    padding-top: 70px;
  }
  .pg_home .section.sec2{
    padding-top: 50px;
  }
  .pg_home .section.sec2:before{
    top: 210px;
    bottom: 210px;
  }
  .pg_home .section.sec3{
    padding-top: 50px;
  }
  .pg_home .section.sec4{
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .pg_home .section.sec4:before{
    top: 250px;
    bottom: 0;
  }
  .pg_home .section.sec5{
    padding-top: 100px;
  }

  

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

  

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

  .pg_home .section.sec1{
    padding-top: 165px;
  }
  .pg_home .section.sec2{
    padding-top: 115px;
  }
  .pg_home .section.sec2:before{
    top: 200px;
    bottom: 210px;
  }
  .pg_home .section.sec3{
    padding-top: 110px;
  }
  .pg_home .section.sec4{
    padding-top: 115px;
    padding-bottom: 130px;
  }
  .pg_home .section.sec4:before{
    top: 250px;
    bottom: 0;
  }
  .pg_home .section.sec5{
    padding-top: 100px;
  }
  
  .pg_home .section.sec2 .cmn_contents_row .read_more{
    margin-top: 55px;
  }
  .pg_home .section.sec2 .cmn_contents_row + .cmn_contents_row{
    margin-top: 120px;
  }

}



/* About */
.home_about{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home_about_box1{
  width: 100%;
  order: 2;
  margin-top: 30px;
}
.home_about_box2{
  width: 100%;
  order: 1;
  margin-top: 15px;
}
.home_about_box2_row1{
  display: flex;
  flex-direction: row-reverse;
}
.home_about_box2_row2{
  margin-top: 20px;
}
.home_about_img{
  
}
.home_about_img.img_fit:before{
  padding-top: 58.27%;
}
.home_about_txt{
  font-size: 15px;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  margin-right: 10px;
}

.home_about_box2 .tt3{
  margin-right: 10px;
}

/* 商品紹介 */
.home_product_head{
  margin-bottom: 30px;
}
.home_product_head.img_fit:before{
  padding-top: 150px;
}

/* リンク */
.home_links{
  display: flex;
  flex-wrap: wrap;
  margin: 0 -5px;
}
.home_links_item{
  width: 100%;
  padding: 0 5px;
}
.home_links_item:nth-child(n+2){
  margin-top: 50px;
}
.home_links_item_inner{
  padding-left: 40px;
  position: relative;
  z-index: 1;
}
.home_links_item .tt2{
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
}
.home_links_item_img{
  margin-bottom: 18px;
}
.home_links_item_img.img_fit:before{
  padding-top: 56%;
}
.home_links_item_title{
  
}
.home_links_item .cmn_txt{
  margin-top: 10px;
}

@media (max-width:374px){

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

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

  .home_about_txt{
    min-height: 510px;
  }
  
  .home_about_box2_row1 .tt2{
    width: 30px;
  }
  .home_about_box2_row1 .tt3{
    /*width: 80px;*/
    width: auto;
    display: flex;
  }
}
@media (min-width:768px){

  .pg_home .section.sec1{
    
  }
  .pg_home .section.sec2{
    
  }
  .pg_home .section.sec3{
    
  }
  .pg_home .section.sec4{
    
  }
  .pg_home .section.sec5{
    
  }
  .pg_home .section.sec6{
    
  }
  .pg_home .section.sec7{
    
  }
  .pg_home .section.sec8{
    
  }
  
  /* About */
  .home_about{
  }
  .home_about_box1{
    width: 100%;
    order: 1;
    margin-top: 0;
  }
  .home_about_box2{
    width: 100%;
    order: 2;
    margin-top: 30px;
  }
  .home_about_box2_row1{
  }
  .home_about_box2_row2{
    margin-top: 20px;
  }
  .home_about_img{
    margin-left: 0;
  }
  .home_about_txt{
    font-size: 16px;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    margin-right: 38px;
  }

  .home_about_box2_row1{
    /*flex-wrap: wrap;*/
            /*justify-content: flex-start;*/
  }
  .home_about_box2_row1 .tt2{
    /*width: 30px;*/
    min-width: 33px;
    width:30px;
  }
  .home_about_box2_row1 .tt3{
    /*width: 85px;*/
  }
  .home_about_box2 .tt3{
    display:flex;
    margin-right: 25px;
  }
  .home_about_box2 .tt3_ja{
    width:auto;
  }

  /* 商品紹介 */
  .home_product_head{
    margin-bottom: 70px;
  }
  .home_product_head.img_fit:before{
    padding-top: 300px;
  }


  /* リンク */
  .home_links{
    margin: 0 -10px;
  }
  .home_links_item{
    width: 50%;
    padding: 0 10px;
  }
  .home_links_item:nth-child(n+2){
    margin-top: 60px;
  }
  .home_links_item_inner{
    padding-left: 40px;
  }
  .home_links_item .tt2{
    top: 0;
    left: 0;
  }
  .home_links_item_img{
    margin-bottom: 18px;
  }
  .home_links_item .cmn_txt{
    margin-top: 20px;
  }

}
@media (min-width:768px) and (max-width:1023px){
  
  .home_about_box2_row2 .read_more{
    justify-content: center;
  }
}
@media (min-width:768px) and (max-width:1199px){
  
  .home_about_box2_row1 .tt2{
    width: 30px;
  }
  .home_about_box2_row1 .tt3{
    width: 85px;
  }
  
}
@media (min-width:1024px){

  /* About */
  .home_about{
  }
  .home_about_box1{
    width: 31.53%;
    order: 1;
    margin-top: 0;
  }
  .home_about_box2{
    width: 65.76%;
    order: 2;
    margin-top: 0;
  }
  .home_about_img{
    margin-left: var(--margin-for-device-side);
  }
  
  /* リンク */
  .home_links{
    margin: 0 -15px;
  }
  .home_links_item{
    width: 50%;
    padding: 0 15px;
  }
  .home_links_item_inner{
    /*padding-left: 40px;*/
  }
  .home_links_item .tt2{
    /*top: 0;*/
    /*left: 0;*/
  }
  .home_links_item_img{
    /*margin-bottom: 18px;*/
  }
  .home_links_item .cmn_txt{
    /*margin-top: 20px;*/
  }

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

  /* 商品紹介 */
  .home_product_head{
    margin-bottom: 135px;
  }
  .home_product_head.img_fit:before{
    padding-top: 500px;
  }
  
  .home_about_box2 .tt3{
    margin-right: 25px;
  }
  
  

}





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

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

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


@media (max-width:374px){

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

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

}
@media (min-width:768px){
  
  .pg_about .section.sec1{
    padding-bottom: 80px;
  }
  .pg_about .section.sec2{

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

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


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


}

/* メイン部分 */

/* こだわり */
.about_kodawari{
  
}
* + .about_kodawari{
  margin-top: 50px;
}
.about_kodawari_row{
  
}
.about_kodawari_row + .about_kodawari_row{
  margin-top: 50px;
}
.about_kodawari_img{
  margin-bottom: 10px;
}
.about_kodawari_img.img_fit:before{
  padding-top: 150px;
}
.about_kodawari_row .cmn_txt{
  margin-top: 15px;
}

.kadawari_head_txt_sp{
  margin-top: 15px;
}

@media (max-width:767px){

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

  /* こだわり */
  .about_kodawari{

  }
  * + .about_kodawari{
    margin-top: 50px;
  }
  .about_kodawari_row{

  }
  .about_kodawari_row + .about_kodawari_row{
    margin-top: 72px;
  }
  .about_kodawari_img{
    margin-bottom: 10px;
  }
  .about_kodawari_img.img_fit:before{
    padding-top: 350px;
  }
  .about_kodawari_row .cmn_txt{
    margin-top: 25px;
  }

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

  /* こだわり */
  .about_kodawari{

  }
  * + .about_kodawari{
    margin-top: 90px;
  }

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


}




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

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

}
.pg_story .section.sec1{
  
}
.pg_story .section.sec2{
  
}


@media (max-width:374px){

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

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

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

  }
  .pg_story .section.sec1{
    
  }
  .pg_story .section.sec2{
    
  }
  
  .pg_story .section.sec2 .cmn_contents + .cmn_contents{
    margin-top: 120px;
  }
}
@media (min-width:1024px){

  

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

  .pg_story .section.sec2 .cmn_contents + .cmn_contents{
    margin-top: 90px;
  }

}

/* メイン部分 */

/* 画像 */
.story_about_img{
  
}
* + .story_about_img{
  margin-top: 30px;
}

@media (max-width:767px){

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

  
  /* 画像 */
  .story_about_img{

  }
  * + .story_about_img{
    margin-top: 40px;
  }
}
@media (min-width:1024px){


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

  /* 画像 */
  .story_about_img{

  }
  * + .story_about_img{
    margin-top: 62px;
  }

}







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

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


}

/* 商品リスト */
.product_list{
  
}
* + .product_list{
  margin-top: 30px;
}
.product_list .webgene-blog{
  display: flex;
  flex-wrap: wrap;
  margin: 0 -5px;
}
.product_list .webgene-item{
  width: 50%;
  padding: 0 5px;
}
.product_list .webgene-item:nth-child(n+3){
  margin-top: 30px;
}
.product_list .webgene-item .img{
  background-color: #CCC;
  overflow: hidden;
}
.product_list .webgene-item .img:before{
  padding-top: 80%;
}
.product_list .webgene-item .title{
  font-size: 15px;
  color: #FFF;
  margin-top: 15px;
}
.product_list .webgene-item .more{
  margin-top: 10px;
  background-image: var(--gradient-bg1-webkit);
  background-image: var(--gradient-bg1);
  transition: 0.2s all;
  position: relative;
  z-index: 1;
  color: #FFF;
  text-align: center;
  padding: 1px;
}
.product_list .webgene-item .more p{
  font-size: 12px;
  background: #181818;
  padding: 6px 5px 8px;
  /*transition: 0.2s all;*/
}

.product_list .webgene-item .inner:hover .more p{
  /*background-image: var(--gradient-bg1-webkit);*/
  /*background-image: var(--gradient-bg1);*/
  background: transparent;
}



/* ポップアップ */
.style_popup{
  width: 95vw;
  max-height: 90vh;
  overflow: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background: #FFF;
  color: #FFF;
  padding: 30px 30px;
  background: #181818;
  border: 1px solid #FFF;
}
.style_popup_box1{
  width: 100%;
}
.style_popup_box2{
  width: 100%;
  margin-top: 20px;
  
}
.style_popup_imgs{
  
}
.style_popup_imgs .img.img_fit:before{
  padding-top: 79.18%;
}
.style_popup_title{
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
  border-bottom: 1px solid;
  padding-bottom: 10px;
  margin-bottom: 15px;
}
.style_popup_txt{
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
  text-align: justify;
}

.style_popup_imgs_wrap{
  position: relative;
  z-index: 1;
}
.popup_slider_btn_prev,
.popup_slider_btn_next{
  font-size: 20px;
  position: absolute;
  z-index: 1;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.popup_slider_btn_prev{
  left: -1.2em;
}
.popup_slider_btn_next{
  right: -1.2em;
}


@media (max-width:767px){
  .product_list.slider{
    
  }
  .product_list.slider .webgene-item:nth-child(n+3){
    margin-top: 0;
  }
}
@media (min-width:768px){
  
  /* ポップアップ */
  .style_popup{
    width: 700px;
    padding: 100px 50px;
  }
  .style_popup_box1{
    width: 55.69%;
  }
  .style_popup_box2{
    width: 36.07%;
    margin-top: 0;
  }
  .style_popup_imgs{

  }
  .style_popup_title{
    font-size: 18px;
    padding-bottom: 18px;
    margin-bottom: 15px;
  }
  .style_popup_txt{
    font-size: 16px;
  }
  .popup_slider_btn_prev{
    left: -2em;
  }
  .popup_slider_btn_next{
    right: -2em;
  }


  /* 商品リスト */
  .product_list{

  }
  * + .product_list{
    margin-top: 55px;
  }
  .product_list .webgene-blog{
    margin: 0 -10px;
  }
  .product_list .webgene-item{
    width: 33.333%;
    padding: 0 10px;
  }
  .product_list .webgene-item:nth-child(n+3){
    margin-top: 0;
  }
  .product_list .webgene-item:nth-child(n+4){
    margin-top: 40px;
  }
  .product_list .webgene-item .title{
    font-size: 16px;
    margin-top: 15px;
  }
  .product_list .webgene-item .more{
    margin-top: 20px;
  }
  .product_list .webgene-item .more p{
    font-size: 14px;
    padding: 7px 5px 9px;
  }
  .product_list + .read_more{
    margin-top: 55px;
  }
  
}
@media (min-width:1024px){

  /* 一覧 */
  
  
  /* ポップアップ */
  .style_popup{
    width: 920px;
  }
  
  /* 商品リスト */
  .product_list{

  }
  * + .product_list{
    margin-top: 65px;
  }
  .product_list .webgene-blog{
    margin: 0 -15px;
  }
  .product_list .webgene-item{
    width: 33.333%;
    padding: 0 15px;
  }
  .product_list .webgene-item:nth-child(n+4){
    margin-top: 80px;
  }
  .product_list .webgene-item .title{
    margin-top: 15px;
  }
  .product_list .webgene-item .more{
    margin-top: 32px;
  }

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

  
  /* ポップアップ */
  .style_popup{
    padding: 100px 65px;
    width: 920px;
  }
  
  .product_list + .read_more{
    margin-top: 100px;
  }
  
}




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

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

}
.pg_chiliPepper .section.sec1{
  
}
.pg_chiliPepper .section.sec2{
  padding-bottom: 50px;
  position: relative;
  z-index: 1;
}
.pg_chiliPepper .section.sec2:before{
  content: "";
  background: #232323;
  width: 100vw;
  height: 800px;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  position: absolute;
  z-index: -1;
}
.pg_chiliPepper .section.sec2:after{
  content: "";
  background: #232323;
  width: 100vw;
  height: 1700px;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  position: absolute;
  z-index: -1;
}

.pg_chiliPepper .section.sec3{
  
}
.pg_chiliPepper .section.sec4{
  
}
.pg_chiliPepper .section.sec4{
  
}


@media (max-width:374px){

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

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

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

  }
  .pg_chiliPepper .section.sec1{
    padding-bottom: 70px;
  }
  .pg_chiliPepper .section.sec2{
    padding-top: 70px;
    padding-bottom: 0;
  }
  .pg_chiliPepper .section.sec3{
    padding-top: 70px;
  }
  .pg_chiliPepper .section.sec4{
    
  }

  .pg_chiliPepper .section.sec2:before{
    height: 885px;
    top: 0;
  }
  .pg_chiliPepper .section.sec2:after{
    height: 965px;
    bottom: 80px;
  }
  .pg_chiliPepper .section.sec2 .cmn_contents_box1{
    width: 52%;
  }
  .pg_chiliPepper .section.sec2 .cmn_contents_box2{
    width: 42%;
  }
  .pg_chiliPepper .section.sec3 .cmn_contents_box1{
    width: 52%;
  }
  .pg_chiliPepper .section.sec3 .cmn_contents_box2{
    width: 42%;
  }
  .pg_chiliPepper .section.sec4 .cmn_contents_box1{
    width: 52%;
  }
  .pg_chiliPepper .section.sec4 .cmn_contents_box2{
    width: 42%;
  }
}
@media (min-width:1024px){


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

  .pg_chiliPepper .section.sec1{
    padding-bottom: 110px;
  }
  .pg_chiliPepper .section.sec2{
    padding-top: 100px;
    padding-bottom: 0;
  }
  .pg_chiliPepper .section.sec3{
    padding-top: 100px;
  }
  .pg_chiliPepper .section.sec4{
    
  }

}

/* メイン部分 */


/* 激辛地獄唐辛子とは */
.chilipepper_about{
  display: flex;
  flex-wrap: wrap;
  margin: 0 -5px;
}
* + .chilipepper_about{
  margin-top: 50px;
}
.chilipepper_about_item{
  width: 100%;
  padding: 0 5px;
}
.chilipepper_about_item_inner{
  position: relative;
  z-index: 1;
  padding-right: 20px;
}
.chilipepper_about_item:nth-child(n+2){
  margin-top: 30px;
}
.chilipepper_about_item_img{
  
}
.chilipepper_about_item_img.icon1,
.chilipepper_about_item_img.icon2{
  
}
.chilipepper_about_item_img.icon1:after,
.chilipepper_about_item_img.icon2:after{
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right bottom;
  position: absolute;
  z-index: 2;
  right: -20px;
  bottom: -10px;
}
.chilipepper_about_item_img.icon1:after{
  width: calc(106px * 0.8);
  aspect-ratio: 106 / 78;
  background-image: url(/system_panel/uploads/images/chiliPepper_icon1.png);
}
.chilipepper_about_item_img.icon2:after{
  width: calc(97px * 0.8);
  aspect-ratio: 97 / 71;
  background-image: url(/system_panel/uploads/images/chiliPepper_icon2.png);
}


.chilipepper_about_item_img.img_fit:before{
  padding-top: 53.84%;
}
.chilipepper_about_item .tt3{
  margin-top: 10px;
}
.chilipepper_about_item .cmn_txt{
  margin-top: 10px;
}


/* メニュー */
.chilipepper_menu_head{
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: space-between;
}
.chilipepper_menu.swiper{
  margin-top: 30px;
}
* + .chilipepper_menu_head{
  margin-top: 85px;
}
.chilipepper_menu_head p{
  font-size: 18px;
  font-weight: 600;
  font-family: "Shippori Mincho", serif;
}
.chilipepper_menu_head:before,
.chilipepper_menu_head:after{
  content: "";
  width: 60px;
  height: 1px;
  background-image: var(--gradient-bg1-webkit);
  background-image: var(--gradient-bg1)
}

.chilipepper_menu{
  /*display: flex;
  flex-wrap: wrap;
  margin: 0 -5px;*/
}
* + .chilipepper_menu{
  /*margin-top: 30px;*/
}
.chilipepper_menu_item{
  /*width: 100%;
  padding: 0 5px;*/
}
.chilipepper_menu_item:nth-child(n+2){
  
}
.chilipepper_menu_item_inner{
  
}
.chilipepper_menu_item_img{
  
}
.chilipepper_menu_item_img.img_fit:before{
  padding-top: 80%;
}
.chilipepper_menu_item_title{
  font-size: 20px;
  margin-top: 10px;
  margin-bottom: 20px;
}
.chilipepper_menu_item_title:after{
  content: "";
  display: block;
  width: 100px;
  height: 1px;
  background: #FFF;
  margin-top: 10px;
}
.chilipepper_menu_item .cmn_txt{
  
}

.swiper-pagination{
  position: static;
  margin-top: 0;
}
.swiper-pagination-bullet-active{
  background-image: var(--gradient-bg1-webkit);
  background-image: var(--gradient-bg1)
}

/* 販売店 */
.chilipepper_shop{
  
}
* + .chilipepper_shop{
  margin-top: 50px;
}
.chilipepper_shop_item{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 20px 20px 30px;
  background: #232323;
}
.chilipepper_shop_item + .chilipepper_shop_item{
  margin-top: 30px;
}
.chilipepper_shop_box1{
  width: 100%;
  order: 2;
  margin-top: 15px;
}
.chilipepper_shop_box2{
  width: 100%;
  order: 1;
}
.chilipepper_shop_item_title{
  font-size: 17px;
  border-bottom: 1px solid #414141;
  padding-bottom: 15px;
  margin-bottom: 15px;
}
.chilipepper_shop_item_img{
  
}
.chilipepper_shop_item_img.img_fit:before{
  padding-top: 65.78%;
}
.chilipepper_shop_item_info{
}
.chilipepper_shop_item_info_dl{
  display: flex;
  font-size: 14px;
}
.chilipepper_shop_item_info_dl + .chilipepper_shop_item_info_dl{
  margin-top: 10px;
}
.chilipepper_shop_item_info_dt{
  width: 56px;
  position: relative;
  z-index: 1;
}
.chilipepper_shop_item_info_dt:after{
  content: "";
  width: 1px;
  height: 18px;
  background: #FFF;
  position: absolute;
  z-index: 1;
  top: 3px;
  right: 0;
  /*-webkit-transform: translate(0, -50%);*/
  /*transform: translate(0, -50%);*/
}
.chilipepper_shop_item_info_dd{
  width: calc(100% - 56px);
  padding-left: 10px;
}
.chilipepper_shop_item .read_more{
  margin-top: 30px;
}

@media (max-width:767px){

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

  /* 激辛地獄唐辛子とは */
  .chilipepper_about{
    margin: 0 -10px;
  }
  * + .chilipepper_about{
    margin-top: 50px;
  }
  .chilipepper_about_item{
    width: 50%;
    padding: 0 10px;
  }
  .chilipepper_about_item:nth-child(n+2){
    margin-top: 0;
  }
  .chilipepper_about_item:nth-child(n+3){
    margin-top: 30px;
  }
  .chilipepper_about_item .tt3{
    margin-top: 15px;
  }
  .chilipepper_about_item .cmn_txt{
    margin-top: 20px;
  }
  
  .chilipepper_about_item_img.icon1:after{
    width: 106px;
  }
  .chilipepper_about_item_img.icon2:after{
    width: 97px;
  }

  
  /* メニュー */
  .chilipepper_menu_head{
  }
  * + .chilipepper_menu_head{
    margin-top: 85px;
  }
  .chilipepper_menu_head p{
    font-size: 20px;
  }
  .chilipepper_menu_head:before,
  .chilipepper_menu_head:after{
    content: "";
    width: 50px;
  }

  .chilipepper_menu{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
  }
  * + .chilipepper_menu{
    margin-top: 40px;
  }
  .chilipepper_menu_item{
    width: 50%;
    padding: 0 10px;
  }
  .chilipepper_menu_item:nth-child(n+2){
    
  }
  .chilipepper_menu_item:nth-child(n+3){
    margin-top: 30px;
  }
  .chilipepper_menu_item_inner{

  }
  .chilipepper_menu_item_title{
    font-size: 20px;
    margin-top: 10px;
    margin-bottom: 12px;
  }
  .chilipepper_menu_item_title:after{
    width: 160px;
    margin-top: 10px;
  }
  .chilipepper_menu_item .cmn_txt{

  }
  
  /* 販売店 */
  .chilipepper_shop{

  }
  * + .chilipepper_shop{
    margin-top: 50px;
  }
  .chilipepper_shop_item{
    padding: 30px 30px 45px;
  }
  .chilipepper_shop_item + .chilipepper_shop_item{
    margin-top: 30px;
  }
  .chilipepper_shop_box1{
    width: 35.71%;
    width: 55%;
    order: 1;
    margin-top: 0;
  }
  .chilipepper_shop_box2{
    /*width: 38.77%;*/
    width: 40%;
    order: 2;
  }
  .chilipepper_shop_item_title{
    font-size: 20px;
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
  .chilipepper_shop_item_info_dl{
    font-size: 16px;
  }
  .chilipepper_shop_item_info_dl + .chilipepper_shop_item_info_dl{
    margin-top: 10px;
  }
  .chilipepper_shop_item_info_dt{
    width: 56px;
  }
  .chilipepper_shop_item_info_dt:after{
    height: 18px;
    top: 4px;
  }
  .chilipepper_shop_item_info_dd{
    width: calc(100% - 56px);
    padding-left: 10px;
  }
  .chilipepper_shop_item .read_more{
    margin-top: 30px;
  }
  
}
@media (min-width:1024px){


  /* 激辛地獄唐辛子とは */
  .chilipepper_about{
    margin: 0 -15px;
  }
  * + .chilipepper_about{
    margin-top: 75px;
  }
  .chilipepper_about_item{
    width: 50%;
    padding: 0 15px;
  }
  .chilipepper_about_item:nth-child(n+2){
    margin-top: 0;
  }
  .chilipepper_about_item:nth-child(n+3){
    margin-top: 50px;
  }
  
  /* メニュー */
  .chilipepper_menu_head{
  }
  * + .chilipepper_menu_head{
    margin-top: 85px;
  }
  .chilipepper_menu_head p{
  }
  .chilipepper_menu_head:before,
  .chilipepper_menu_head:after{
    width: 150px;
  }
  .chilipepper_menu{
    margin: 0 -15px;
  }
  * + .chilipepper_menu{
    margin-top: 53px;
  }
  .chilipepper_menu_item{
    width: 33.333%;
    padding: 0 15px;
  }
  .chilipepper_menu_item:nth-child(n+3){
    margin-top: 0;
  }
  .chilipepper_menu_item:nth-child(n+4){
    margin-top: 50px;
  }
  .chilipepper_menu_item_title{
    font-size: 20px;
    margin-bottom: 12px;
  }
  
}
@media (min-width:1200px){

  /* 激辛地獄唐辛子とは */
  .chilipepper_about{
  }
  .chilipepper_about_item{
    width: 50%;
  }
  
  .chilipepper_menu_head{
  }
  * + .chilipepper_menu_head{
    margin-top: 85px;
  }
  .chilipepper_menu_head p{
    font-size: 22px;
  }
  .chilipepper_menu_head:before,
  .chilipepper_menu_head:after{
    width: 195px;
  }
  
  /* 販売店 */
  .chilipepper_shop{

  }
  * + .chilipepper_shop{
    margin-top: 50px;
  }
  .chilipepper_shop_item{
    padding: 40px 65px 58px;
  }
  .chilipepper_shop_item + .chilipepper_shop_item{
    margin-top: 60px;
  }
  .chilipepper_shop_box1{
    width: 35.71%;
    width: 40%;
    order: 1;
    margin-top: 0;
  }
  .chilipepper_shop_box2{
    width: 38.77%;
    order: 2;
  }
  .chilipepper_shop_item_title{
    font-size: 22px;
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
  .chilipepper_shop_item_info_dl{
    font-size: 16px;
  }
  .chilipepper_shop_item_info_dl + .chilipepper_shop_item_info_dl{
    margin-top: 10px;
  }
  .chilipepper_shop_item_info_dt{
    width: 56px;
  }
  .chilipepper_shop_item_info_dt:after{
    height: 18px;
  }
  .chilipepper_shop_item_info_dd{
    width: calc(100% - 56px);
    padding-left: 10px;
  }
  .chilipepper_shop_item .read_more{
    margin-top: 65px;
  }

}



/*******************************
*　
********************************/
.pg_npo{

}
.pg_npo .section.sec1{
  
}
.pg_npo .section.sec2{
  padding-bottom: 50px;
  position: relative;
  z-index: 1;
}
.pg_npo .section.sec2:before{
  content: "";
  background: #232323;
  width: 100vw;
  height: 800px;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  position: absolute;
  z-index: -1;
}
.pg_npo .section.sec2:after{
  content: "";
  background: #232323;
  width: 100vw;
  height: 1500px;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  position: absolute;
  z-index: -1;
}


@media (max-width:374px){

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

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

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

  }
  .pg_npo .section.sec1{
    padding-bottom: 70px;
  }
  .pg_npo .section.sec2{
    padding-top: 70px;
    padding-bottom: 0;
  }

  .pg_npo .section.sec2:before{
    height: 885px;
    top: 0;
  }
  .pg_npo .section.sec2:after{
    height: 965px;
    bottom: 80px;
  }
  .pg_npo .section.sec2 .cmn_contents_box1{
    width: 52%;
  }
  .pg_npo .section.sec2 .cmn_contents_box2{
    width: 42%;
  }
  
}
@media (min-width:1024px){


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

  .pg_npo .section.sec1{
    padding-bottom: 110px;
  }
  .pg_npo .section.sec2{
    padding-top: 100px;
    padding-bottom: 0;
  }

  .pg_npo .section.sec2 .cmn_contents + .cmn_contents{
    margin-top: 160px;
  }

}


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

}
.pg_xxx .section.sec1{
  
}
.pg_xxx .section.sec2{
  
}
.pg_xxx .section.sec3{
  
}
.pg_xxx .section.sec4{
  
}
.pg_xxx .section.sec5{
  
}


@media (max-width:374px){

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

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

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

  }
  .pg_xxx .section.sec1{
    
  }
  .pg_xxx .section.sec2{
    
  }
  .pg_xxx .section.sec3{
    
  }
  .pg_xxx .section.sec4{
    
  }
  .pg_xxx .section.sec5{
    
  }


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


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


}
