@charset "UTF-8";

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

  /* 画面端までの余白 */
  --margin-for-device-side: -15px;
}

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

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


}

@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 - 55vw);
  }
}
/*@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{
  line-height: 1.5;
}

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

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

.img_fit{
  position: relative;
}
.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: 5px 10px;
  background: rgba(255,255,255,0.8);
  border-radius: 10px;
}

/* ロゴ */
.hdr_logo{

}
.hdr_logo img{
  width: 180px;
}

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

/* TELボタン */
.hdr_tel{

}
.hdr_tel_txt1{
  font-size: 20px;
  font-weight: 400;
  font-family: "Oswald", sans-serif;
}
.hdr_tel_txt1 a{
  font-size: 1.36em;
}
.hdr_tel_txt1 p{
  letter-spacing: 0.1em;
}
.hdr_tel_txt2{
  font-size: 11px;
  font-weight: 500;
}
.hdr_tel_txt2 p{
  letter-spacing: 0;
}
.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{
  width: 285px;
  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;
}*/

.hdr_contact a{
  margin: 0;
  max-width: 285px;
  display: block;
  text-align: center;
  width: 100%;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.075em;
  padding: 14px 0 13px;
  border: 0;
  background: transparent;
  color: #ffffff;
  display: block;
  cursor: pointer;
  position: relative;
  z-index: 1;
  transition: all 0.2s;
  background: url(/system_panel/uploads/images/readmore_bg.png) no-repeat center center / contain;
}
.hdr_contact a:hover{
  /*background: url(/system_panel/uploads/images/20250709203846670838.png) no-repeat center center / contain;*/
  color: #FFF;
}
.hdr_contact a:after{
  content: "";
  position: absolute;
  z-index: 1;
  width: 40px;
  height: 7px;
  top: 50%;
  right: 4%;
  transform: translateY(-50%);
  transition: all 0.2s;
  background: url(/system_panel/uploads/images/20250709204849729137.png) no-repeat center center / contain;
}
.hdr_contact a:hover:after{
  margin-right: -5px;
}

/* 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;
    padding: 10px;
  }
  .hdr_logo img{
    display: block;
  }

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

  .hdr_tel{
    display: none;
  }

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

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

  .hdr1{
    padding: 6px 15px;
  }

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

  /* ヘッダースリム */
  .header.slim{
    top: 15px;
  }

  /* TELボタン */
  .hdr_tel{

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

  .hdr_contact{
    width: 190px;
  }
  .hdr_contact a{
    font-size: 12px;
  }


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

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

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

  }

  /* TELボタン */
  .hdr_tel{

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

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

  .header{
    top: 75px;
    left: 45px;
    right: 45px;
    padding: 0 30px;
  }
  .hdr1{
    padding: 12px 30px;
  }

  /* ロゴ */
  .hdr_logo{

  }
  .hdr_logo img{
    width: auto;
  }

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

  }

  .hdr_tel_txt1{
    font-size: 22px;
  }
  .hdr_tel_txt2{
    font-size: 11px;
  }
  .hdr_contact{
    width: 285px;
  }
  .hdr_contact a{
    font-size: 15px;
  }
}


/*******************************
*　メインビジュアル
********************************/
/* MV */
.mv{
  margin: 0 15px 15px;
  position: relative;
  z-index: 1;
}
.mv_img{
  position: relative;
  z-index: 1;
}
.mv_img.img_fit:before{
  padding-top: 400px;
}
.mv_img:after{
  content: "";
  background: rgba(24,24,24,0.15);
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
}

/* MVテキスト */
.mv_txt{
  position: absolute;
  z-index: 2;
  bottom: 15px;
  left: 20px;
  right: 20px;
  color: #FFF;
}
.mv_txt_p1{
  font-size: 24px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.075em;
}
.mv_txt_p1 strong{
  font-size: 1.066em;
  font-weight: 900;
}
.mv_txt_p2{
  font-size: 15px;
  font-weight: 600;
  line-height: 1.736;
  margin-top: 10px;
}

/* スライダーの場合 */
.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{
    margin: 20px 20px;
  }
  .mv_img{
  }
  .mv_img.img_fit:before{
    padding-top: 400px;
  }

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

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


  /* MV */
  .mv{

  }
  .mv_img{
  }
  .mv_img.img_fit:before{
    padding-top: 500px;
  }

  /* MVテキスト */
  .mv_txt{
    bottom: 40px;
    left: 70px;
  }
  .mv_txt_p1{
    font-size: 36px;
  }
  .mv_txt_p2{
    font-size: 16px;
  }

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

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

  /* MVテキスト */
  .mv_txt{
    bottom: 50px;
    left: 105px;
  }
  .mv_txt_p1{
    font-size: 75px;
  }
  .mv_txt_p2{
    font-size: 19px;
    margin-top: 15px;
  }


}


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

/* サイドバー */
.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;
  }

}


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


/* テーブル用 */
.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: 16px;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  border: 1px solid currentColor;
  background: var(--main-color);
  /*border-radius: 27px;*/
  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: "→";
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 18px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  transition: 0.2s all;
}
.read_more a:hover{
  color: #FFF;
  background: var(--sub-color);
}
.read_more a:hover:after{
  margin-right: -5px;
}


/* 見出し */
.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;
  }

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

  .anchor{
    top: -150px;
  }

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

  /* 見出し */
  .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: 120px;
  }
  .posts_list .webgene-pagination{
    margin-top: 80px;
  }

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

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


}



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

}
.pg_home .section.sec1{
  padding-top: 30px;
}
.pg_home .section.sec2{
  padding-top: 30px;
  padding-bottom: 0;
  overflow: hidden;
}
.pg_home .section.sec3{
  padding-top: 50px;
  padding-bottom: 50px;
  background: #f8f8f8;
}
.pg_home .section.sec4{
  padding-top: 50px;
}
.pg_home .section.sec5{
  padding-top: 20px;
}




@media (max-width:374px){

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

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

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

  .pg_home .section.sec1{
    padding-top: 70px;
  }
  .pg_home .section.sec2{
    padding-top: 70px;
    padding-bottom: 0;
  }
  .pg_home .section.sec3{
    padding-top: 150px;
    padding-bottom: 135px;
  }
  .pg_home .section.sec4{
    padding-top: 120px;
  }
  .pg_home .section.sec5{
    padding-top: 70px;
  }


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



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

  .pg_home .section.sec1{
    padding-top: 70px;
  }
  .pg_home .section.sec2{
    padding-top: 70px;
    padding-bottom: 0;
  }
  .pg_home .section.sec3{
    padding-top: 150px;
    padding-bottom: 135px;
  }
  .pg_home .section.sec4{
    padding-top: 120px;
  }
  .pg_home .section.sec5{
    padding-top: 70px;
  }

}

/**/

/* サービス紹介 */
.home_service{
  display: flex;
  flex-wrap: wrap;

}
.home_service_box1{
  width: 100%;
  /*padding-right: 15px;*/
  position: relative;
  z-index: 1;
}
.home_service_box2{
  width: 100%;
  /*padding-left: 15px;*/
  position: relative;
  z-index: 1;
}
.home_service_bg{
  position: absolute;
  z-index: 0;
  top: 0;
  bottom: 0;
}
.home_service_bg.img_fit:before{
  padding-top: 0;
  height: 100%;
}
.home_service_box1 .home_service_bg{
  left: var(--margin-for-device-side);
  right: var(--margin-for-device-side);
}
.home_service_box2 .home_service_bg{
  left: var(--margin-for-device-side);
  right: var(--margin-for-device-side);
}

.home_service_inner{
  background: rgba(16,16,53,0.5);
  padding: 35px 15px;
  position: relative;
  z-index: 1;
}

.home_service_category{
  display: flex;
  align-items: center;
  background: #FFF;
  font-size: 16px;
  padding: 3px 15px 4px;
  margin-bottom: 15px;
}
.home_service_category_txt1{
  font-weight: 400;
  font-family: "Oswald", sans-serif;
  line-height: 1;
  color: #22229d;
  position: relative;
  z-index: 1;
  padding-right: 10px;
}
.home_service_category_txt1:after{
  content: "";
  width: 1px;
  height: 14px;
  background: #22229d;
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 0;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.home_service_category_txt2{
  font-weight: 500;
  margin-left: 10px;
}
.home_service_title{
  font-size: 26px;
  font-weight: 800;
  color: #FFF;
  margin-bottom: 15px;
}
.home_service_txt{
  font-size: 16px;
  line-height: 2.125;
  color: #FFF;
  text-align: justify;
}
.home_service .read_more{

}

/* ラインナップ */
.home_select{
  display: flex;
  flex-wrap: wrap;
  margin-left: -5px;
  margin-right: -5px;
}
* + .home_select{
  margin-top: 30px;
}
.home_select_item{
  width: 100%;
  padding: 0 5px;
}
.home_select_item:nth-child(n+2){
  margin-top: 30px;
}
.home_select_item_inner{
  display: flex;
  justify-content: space-between;
  background: #FFF;
  border-top: 1px solid #0c0c95;
  position: relative;
  z-index: 1;
  box-shadow: 2.121px 2.121px 7.92px 0.08px rgba(24, 24, 24, 0.1);
}
.home_select_item_inner:after{
  content: "";
  width: 30px;
  aspect-ratio: 1 / 1;
  background-image: url(/system_panel/uploads/images/icon_arrow.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  z-index: 1;
  bottom: -10px;
  right: 5px;
  transition: 0.2s all;
}
.home_select_item_inner:hover:after{
  margin-right: -5px;
}
.home_select_item_box1{
  width: 42.45%;
  overflow: hidden;
}
.home_select_item_box2{
  width: 51.88%;
  min-height: 200px;
  padding: 15px 15px 20px 0;

}
.home_select_item_box1 img{
  transition: 0.2s all;
}
.home_select_item_inner:hover .home_select_item_box1 img{
  transform: scale(1.05);
}

.home_select_item_img{

}
.home_select_item_box1.img_fit:before{
  padding-top: 0;
  height: 100%;
}
.home_select_item_title{
  font-size: 19px;
  font-weight: 500;
  margin-bottom: 10px;
}
.home_select_item_txt{
  font-size: 15px;
  line-height: 1.7;
  text-align: justify;
}

/* 基礎知識 */
.home_knowledge{
  display: flex;
  flex-wrap: wrap;
  margin-left: -5px;
  margin-right: -5px;
}
* + .home_knowledge{
  margin-top: 30px;
}
.home_knowledge_item{
  width: 100%;
  padding: 0 5px;
}
.home_knowledge_item:nth-child(n+2){
  margin-top: 20px;
}
.home_knowledge_item_inner{
  position: relative;
  z-index: 1;
}
.home_knowledge_item_img{

}
.home_knowledge_item_img.img_fit:before{
  padding-top: 71.42%;
}
.home_knowledge_item_title{
  font-size: 16px;
  font-weight: 600;
  color: #FFF;
  background: #0c0c95;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  padding: 8px 4px;
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
}
.home_knowledge_item_txt{
  font-size: 15px;
  line-height: 2.13;
  text-align: justify;
  margin-top: 10px;
}

@media (max-width:767px){

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

  }


  /* サービス紹介 */
  .home_service{

  }
  .home_service_box1{
    /*width: 50%;*/
    padding-right: 0;
  }
  .home_service_box2{
    /*width: 50%;*/
    padding-left: 0;
  }
  .home_service_box1 .home_service_bg{
    left: var(--margin-for-device-side);
    right: var(--margin-for-device-side);
  }
  .home_service_box2 .home_service_bg{
    left: var(--margin-for-device-side);
    right: var(--margin-for-device-side);
  }

  .home_service_inner{
    padding: 35px 38px;
  }

  .home_service_category{
    font-size: 16px;
    padding: 3px 15px 4px;
    margin-bottom: 15px;
  }
  .home_service_category_txt1{
    padding-right: 10px;
  }
  .home_service_category_txt1:after{
    height: 14px;
  }
  .home_service_category_txt2{
    margin-left: 10px;
  }
  .home_service_title{
    font-size: 30px;
    margin-bottom: 15px;
  }
  .home_service_txt{
    font-size: 16px;
    line-height: 2.125;
  }
  .home_service .read_more{

  }


  /* ラインナップ */
  .home_select{
    margin-left: -10px;
    margin-right: -10px;
  }
  * + .home_select{
    margin-top: 50px;
  }
  .home_select_item{
    width: 100%;
    padding: 0 10px;
  }
  .home_select_item:nth-child(n+2){
    margin-top: 40px;
  }
  .home_select_item_inner:after{
    width: 50px;
    bottom: -10px;
    right: -10px;
  }
  .home_select_item_box1{
    width: 42.45%;
  }
  .home_select_item_box2{
    width: 51.88%;
    min-height: 245px;
    padding: 25px 15px 15px 0;
  }
  .home_select_item_img{

  }
  .home_select_item_title{
    font-size: 24px;
  }
  .home_select_item_txt{
    font-size: 16px;
    line-height: 2.125;
  }


  /* 基礎知識 */
  .home_knowledge{
    margin-left: -10px;
    margin-right: -10px;
  }
  * + .home_knowledge{
    margin-top: 50px;
  }
  .home_knowledge_item{
    width: 33.33%;
    padding: 0 10px;
  }
  .home_knowledge_item:nth-child(n+2){
    margin-top: 0;
  }
  .home_knowledge_item:nth-child(n+4){
    margin-top: 20px;
  }
  .home_knowledge_item_title{
    font-size: 16px;
  }
  .home_knowledge_item_txt{
    font-size: 15px;
    line-height: 2.13;
    margin-top: 10px;
  }

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

  /* サービス紹介 */
  .home_service{

  }
  .home_service_box1{
    width: 50%;
    padding-right: 65px;
  }
  .home_service_box2{
    width: 50%;
    padding-left: 65px;
  }
  .home_service_box1 .home_service_bg{
    left: var(--margin-for-device-side);
    right: 0;
  }
  .home_service_box2 .home_service_bg{
    left: 0;
    right: var(--margin-for-device-side);
  }

  .home_service_inner{
    padding: 35px 38px;
    height: 100%;
  }

  .home_service_category{
    font-size: 16px;
  }
  .home_service_title{
    /*font-size: 40px;*/
    margin-bottom: 15px;
  }
  .home_service .read_more{

  }

  /* ラインナップ */
  .home_select{
    margin-left: -20px;
    margin-right: -20px;
  }
  .home_select_item{
    width: 50%;
    padding: 0 20px;
  }
  .home_select_item:nth-child(n+2){
    margin-top: 0;
  }
  .home_select_item:nth-child(n+3){
    margin-top: 30px;
  }
  .home_select_item_inner{
  }
  .home_select_item_inner:after{
    bottom: -10px;
    right: -10px;
  }
  .home_select_item_box1{
  }
  .home_select_item_box2{
    min-height: 245px;
    padding: 25px 15px 15px 0;
  }
  .home_select_item_img{

  }
  .home_select_item_title{
    font-size: 24px;
    margin-bottom: 13px;
  }

  /* 基礎知識 */
  .home_knowledge{
    margin-left: -15px;
    margin-right: -15px;
  }
  .home_knowledge_item{
    width: 33.33%;
    padding: 0 15px;
  }
  .home_knowledge_item:nth-child(n+4){
    margin-top: 30px;
  }
  .home_knowledge_item_title{
    font-size: 18px;
  }
}
@media (min-width:1200px){

  /* サービス紹介 */
  .home_service{

  }
  .home_service_title{
    font-size: 40px;
  }

  /* ラインナップ */
  .home_select_item_title{
    font-size: 28px;
    margin-bottom: 13px;
  }

}




/*******************************
*　商品検索（紙）
********************************/

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

}
.pg_search .section.sec1{

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


}

/* メイン部分 */


/* 検索フォーム */
.search_form{

}
.search_form_row{

}
.search_form_row + .search_form_row{
  margin-top: 50px;
}
.search_form_head{
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.075em;
  margin-bottom: 20px;
}
.search_form_head strong{
  font-size: 1.333em;
  font-weight: 600;
}
.search_form_inner{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 15px 15px;
  background: #f8f8f8;
}
.search_form_inner.bgwh{
  background: #FFF;
  box-shadow: 0 0 6px 3px #eee;
  padding: 10px 10px;
  margin-top: 30px;
}
.search_form_inner_box{
  width: 100%;

}
.search_form_inner_box.half{
  width: 47.169%;
  width: 100%;
}
.search_form_inner{

}

.search_form_item{

}
.search_form_item + .search_form_item{
  margin-top: 38px;
}
.search_form_item_tt{
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.075em;
  border-bottom: 1px solid #ababab;
  padding-bottom: 13px;
  margin-bottom: 18px;
}
.search_form_item_tt.noBdr{
  border-bottom: 0;
  padding-bottom: 0;
}
.search_form_item_inputs{

}

.search_form_item_inputs select{
  width: 100%;
  height: 50px;
  border: 2px solid #c2c2c2;
  padding-left: 30px;
}

/* ラフレイアウト */
.search_form_item_inputs.raf{
  display: flex;
  flex-wrap: wrap;

}
.search_form_item_inputs.raf label{
  margin: 5px 10px;
}
.search_form_item_inputs.raf label input{
  margin-right: 5px;
}

.search_form_btn{
  width: 100%;
  text-align: center;
  margin-top: 30px;
}
.search_form_btn button{
  border: 0;
  width: 240px;
  height: 45px;
  background: none;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(/system_panel/uploads/images/readmore_bg2.png);
  color: #FFF;
  cursor: pointer;
  position: relative;
  z-index: 1;
}
.search_form_btn button:after{
  content: "";
  position: absolute;
  z-index: 1;
  width: 40px;
  height: 7px;
  top: 50%;
  right: 4%;
  transform: translateY(-50%);
  transition: all 0.2s;
  background: url(/system_panel/uploads/images/20250709204849729137.png) no-repeat center center / contain;
}
.search_form_btn button:hover:after{
  margin-right: -5px;
}

.checkbox_field{
  display: flex;
  flex-wrap: wrap;
  margin-left: -5px;
  margin-right: -5px;
}
.checkbox_field label{
  display: flex;
  align-items: center;
  width: 50%;
  padding-left: 5px;
  padding-right: 5px;
  padding-top: 1px;
  padding-bottom: 4px;
  font-size: 14px;
  line-height: 1.3;
  /*text-indent: -2.3em;*/
  padding-left: 1.5em;
  position: relative;
  z-index: 1;
}
.checkbox_field.col1 label{
  width: 100%;
}
.checkbox_field.col2 label{
  width: 50%;
}
.checkbox_field.col3 label{
  width: 33.333%;
}
.checkbox_field label input[type="checkbox"]{
  margin-right: 25px;
}
.checkbox_field label input{
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.checkbox_field {

}

.checkbox_field .column{
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  /*flex: 1;*/
}
.checkbox_field.col1 .column{
  width: 100%;
}
.checkbox_field.col2 .column{
  width: 50%;
  width: 100%;
}
.checkbox_field.col3 .column{
  width: 33.333%;
  width: 100%;
}
.checkbox_field .column label{
  width: 100%;
}

.color-box {
  display: inline-block;
  width: 25px;
  height: 24px;
  /*margin-left: -10px;*/
  /*margin-left: 0;*/
  /*margin-right: 6px;*/
  vertical-align: middle;

  position: absolute;
  z-index: 1;
  top: 50%;
  left: 30px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.checkbox_field.color_list label{
  padding-left: 4em;
  padding-left: 60px;
}

.kana_list{
  /*display: flex;*/
  /*flex-wrap: wrap;*/
  display: block;
  display: flex;
  justify-content: center;
}
.kana_list label{
  display: flex;
  justify-content: center;
  align-items: center;
  background: #FFF;
  width: 50px;
  height: 50px;
  margin: 7.5px 7.5px;
  font-size: 20px;
  font-weight: 500;
  cursor: pointer;
  position: relative;
  z-index: 1;
}
.kana_list label.on{
  background: #0c0c95;
  color: #FFF;
}
.kana_list label input{
  /*display: none;*/
  position: absolute;
  z-index: -1;
  inset: 0;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.kana_list_clm{
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
}

.kw_field{
  position: relative;
  z-index: 1;
}
.kw_field input{
  width: 100%;
  border: 0;
  padding: 12px 15px 12px 60px;

}
.kw_field:before{
  content: "\f002";
  font-size: 24px;
  font-family: "FontAwesome";
  position: absolute;
  top: 50%;
  left: 10px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

/* カテゴリ */
.cat_tab_list{
  display: flex;
  flex-wrap: wrap;
  margin-left: -5px;
  margin-right: -5px;
}
.cat_tab_list label{
  width: calc(50% - 10px);
  margin: 3px 5px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 500;
  text-align: center;
  padding: 4px 15px 6px;
  position: relative;
  z-index: 1;
}
.cat_tab_list label:after{
  content: "\f054";
  content: "\f105";
  font-family: "FontAwesome";
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 10px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  transition: 0.2s all;
}
.cat_tab_list label:hover:after{
  margin-right: -5px;
}
.cat_tab_list label.hide{
  display: none;
}
.cat_tab_list label.show{
  display: block;
}

.cat_tab_list label input{
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.cat_tab_list.category1 label{
  border: 1px solid #0c0c95;
  background: #0c0c95;
  color: #fff;
}
.cat_tab_list.category1 label.on{
  background: #FFF;
  color: #0c0c95;
}

.cat_tab_list.category2 label{
  border: 1px solid #737373;
  background: #737373;
  color: #fff;
}
.cat_tab_list.category2 label.on{
  background: #FFF;
  color: #737373;
}


.search_result_wrap{
  margin-bottom: 50px;
  padding-bottom: 30px;
  border-bottom: 1px solid #ababab;
}
.search_form_result{
  display: flex;
  font-weight: 500;
}
.search_form_result_txt1{
  padding-right: 30px;
  margin-right: 30px;
  position: relative;
  z-index: 1;
}
.search_form_result_txt1:after{
  content: "";
  width: 1px;
  height: 20px;
  background: #0c0c95;
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 0;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.search_form_result_txt2{

}

.webgene-search-form div[rel]{
  display: none;
}

@media (max-width:767px){

  .checkbox_field.col3 label{
    width: 50%;
  }

  .search_result_wrap{
  }
  .search_form_result{
    flex-wrap: wrap;
  }
  .search_form_result_txt1{
    width: 100%;
    margin: 0 0 10px;
    padding: 0 0 10px;
  }
  .search_form_result_txt1:after{
    width: 100%;
    height: 1px;
    top: auto;
    bottom: 0;
    left: 0;

    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  .search_form_result_txt2{
    width: 100%;
  }

  .cat_tab_list.category1 label{
  text-align:left;
    padding: 4px 5px 6px;
  }
}
@media (min-width:768px){

  .search_form_head{
    font-size: 24px;
  }
  .search_form_item_tt{
    font-size: 20px;
  }

  .search_form_inner{
    padding: 25px 25px;
  }
  .search_form_inner_box{
    width: 100%;
  }
  .search_form_inner_box.half{
    width: 47.169%;
  }

  .checkbox_field .column{
  }
  .checkbox_field.col2 .column{
    width: 100%;
  }
  .checkbox_field.col3 .column{
    width: 50%;
  }
  
  .checkbox_field.col3 label{
    width: 50%;
  }


  /* カテゴリ */
  .cat_tab_list{
    margin-left: -10px;
    margin-right: -10px;
  }
  .cat_tab_list label{
    width: calc(33.333% - 20px);
    margin: 7px 10px;
    font-size: 16px;
  }
  .search_form_inner.bgwh{
    padding: 35px 35px;
  }
}
@media (min-width:1024px){

  .search_form_head{
    font-size: 30px;
  }
  .search_form_item_tt{
    font-size: 28px;
  }

  /* カテゴリ */
  .cat_tab_list{
  }
  .cat_tab_list label{
    width: calc(25% - 20px);
    margin: 7px 10px;
  }

  .search_result_wrap{
    margin-bottom: 60px;
  }
  .search_form_result{
    font-size: 20px;
  }
}

@media (min-width:1200px){

  .checkbox_field .column{
  }
  .checkbox_field.col2 .column{
    width: 50%;
  }
  .checkbox_field.col3 .column{
    width: 33.333%;
  }

  .checkbox_field label{
    font-size: 18px;
  }
  .checkbox_field.col3 label{
    width: 33.333%;
  }
  
  /* カテゴリ */
  .cat_tab_list{
  }
  .cat_tab_list label{
    width: calc(25% - 20px);
    margin: 7px 10px;
  }

  .search_result_wrap{
    
  }
  .search_result_wrap .search_form_item_tt{
    margin-bottom: 30px;
    padding-bottom: 25px;
  }

}



.kana_list{
  flex-wrap: wrap;
}
.kana_list_clm + .kana_list_clm{
  margin-top: 30px;
}
.kana_list_clm label.dmy{
  cursor: none;
  background: #f8f8f8;
}


@media (max-width:767px){

  /* かなリスト */
  .kana_list{
    flex-wrap: wrap;
  }
  .kana_list label:nth-child(5n){
    /*margin-right: 22.5px;*/
  }
  .kana_list label:nth-child(10n){
    /*margin-right: 7.5px;*/
  }

  .kana_list_clm{
    width: calc((40px + 15px) * 5  );
  }
  .kana_list_clm label{
    width: 40px;
    height: 40px;
  }

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

  /* かなリスト */
  .kana_list{

  }
  .kana_list label:nth-child(5n){
    margin-right: 22.5px;
  }
  .kana_list label:nth-child(10n){
    margin-right: 7.5px;
  }

  .kana_list_clm{
    width: calc((45px + 15px) * 10 + 15px );
  }
  .kana_list_clm label{
    width: 45px;
    height: 45px;
  }

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

  /* かなリスト */
  .kana_list{

  }
  .kana_list label:nth-child(5n){
    margin-right: 22.5px;
  }
  .kana_list label:nth-child(10n){
    margin-right: 7.5px;
  }

  .kana_list_clm{
    width: calc((45px + 15px) * 10 + 15px );
  }
  .kana_list_clm label{
    width: 45px;
    height: 45px;
  }


}
@media (min-width:1200px){
  /* かなリスト */
  .kana_list{

  }
  .kana_list label:nth-child(5n){
    margin-right: 22.5px;
  }
  .kana_list label:nth-child(15n){
    margin-right: 7.5px;
  }

  .kana_list_clm{
    width: calc((50px + 15px) * 15 + 30px );
  }
  .kana_list_clm label{
    width: 50px;
    height: 50px;
  }
}



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

.product_list1{

}
.product_list1 .webgene-item{

}
.product_list1 .webgene-item + .webgene-item{
  margin-top: 60px;
}

/* 商品一覧 */
.product_list_item{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.product_list_item .box1{
  width: 100%;
}
.product_list_item .box2{
  width: 100%;
  margin-top: 15px;
}
.product_list_item .img{
  display: block;
  background: #CCC;
  overflow: hidden;
}
.product_list_item .img img{
  transition: 0.2s all;
}
.product_list_item .img.img_fit:before{
  padding-top: 68.75%;
}
.product_list_item .img:hover img{
  transform: scale(1.1);
}
.product_list_item .title{
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.075em;
  margin-bottom: 10px;
}
.product_list_item .txt{
  font-size: 16px;
  line-height: 1.875;
  text-align: justify;
}

/* 商品詳細1 */
.product_detail1{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.product_detail1 .box0{
  width: 100%;
  margin-bottom: 15px;
}
.product_detail1 .box1{
  width: 100%;
}
.product_detail1 .box2{
  width: 100%;
  margin-top: 20px;
}
.product_detail1 .box3{
  width: 100%;
  margin-top: 20px;
}
.product_detail1 .box0 .category{
  color: #0c0c95;
  font-size: 15px;
  font-weight: 500;
}
.product_detail1 .box0 .title2{
  font-size: 22px;
  font-weight: 500;
}
.product_detail1 .img{

}
.product_detail1 .img.img_fit:before{
  padding-top: 70%;
}
.product_detail1 .title{
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.075em;
  margin-bottom: 10px;
}
.product_detail1 .title2{
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.075em;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #CCC;
}
.product_detail1 .maker{
  font-size: 0.8em;
}
.product_detail1 * + .maker{
  
}

.product_detail1 .txt{
  font-size: 16px;
  line-height: 1.888;
  text-align: justify;
}

.product_spec{
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}
.product_spec_item{
  width: 100%;
  padding: 0 15px;
}
.product_spec_item:nth-child(n+2){
  margin-top: 15px;
}
.product_spec_item.wide{
  width: 100%;
}
.product_spec_tbl{
  width: 100%;
}
.product_spec_tbl thead{
  background: #e5e5e5;
  text-align: center;
}
.product_spec_tbl tbody{

}
.product_spec_tbl tr{

}
.product_spec_tbl th,
.product_spec_tbl td{
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.075em;
  border: 1px solid #ababab;
  padding: 8px 10px;
}
.product_spec_tbl thead tr th:first-child{
  width: 130px;
}
.product_spec_tbl tbody th,
.product_spec_tbl tbody td{
  padding-left: 15px;
}


/* 商品リスト2 */
.product_list2{

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

.product_list_item2{

}
.product_list_item2 .box1{

}
.product_list_item2 .box2{
  margin-top: 5px;
  font-size: 15px;
  font-weight: 500;
  /*line-height: 1.875;*/
}
.product_list_item2 .title{
  line-height: 1.6;
}
.product_list2 .webgene-item .img:before{
  padding-top: 75%;
  background: #CCC;
}



@media (max-width:767px){

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


  /* 商品一覧 */
  .product_list_item{
  }
  .product_list_item .box1{
    width: 280px;
  }
  .product_list_item .box2{
    margin-top: 0;
  }
  .product_list_item .box1 + .box2{
    width: calc(100% - 280px - 30px);
    margin-top: 0;
  }
  .product_list_item .img{
  }
  .product_list_item .title{
    font-size: 20px;
    margin-bottom: 10px;
  }
  .product_list_item .txt{
  }

  /**/
  .product_list1.col3 .webgene-blog{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
  }
  .product_list1.col3 .webgene-item{
    width: 50%;
    padding: 0 10px;
  }
  .product_list1.col3 .webgene-item:nth-child(n+2){
    margin-top: 0;
  }
  .product_list1.col3 .webgene-item:nth-child(n+3){
    margin-top: 30px;
  }

  /* 商品詳細1 */
  .product_detail1{
  }
  .product_detail1 .box1{
    width: 48%;
  }
  .product_detail1 .box2{
    width: 100%;
    margin-top: 0;
  }
  .product_detail1 .box1 + .box2{
    width: 48%;
    margin-top: 0;
  }
  
  .product_detail1 .box3{
    width: 100%;
    margin-top: 40px;
  }
  .product_detail1 .box3 + .box3{
    margin-top: 20px;
  }
  .product_detail1 .title{
    font-size: 24px;
    margin-bottom: 15px;
  }
  .product_detail1 .maker{
    font-size: 0.5em;
  }
  .product_detail1 .txt{
    font-size: 16px;
    line-height: 1.888;
  }

  .product_spec{
    margin-left: -15px;
    margin-right: -15px;
  }
  .product_spec_item{
    width: 50%;
    padding: 0 15px;
  }
  .product_spec_item:nth-child(n+2){
    margin-top: 0;
  }
  .product_spec_item:nth-child(n+3){
    margin-top: 15px;
  }
  .product_spec_tbl th,
  .product_spec_tbl td{
    font-size: 16px;
    padding: 11px 10px;
  }
  .product_spec_tbl thead tr th:first-child{
    width: 150px;
  }
  .product_spec_tbl tbody th,
  .product_spec_tbl tbody td{
    padding-left: 15px;
  }


  /* 商品リスト2 */
  .product_list2{

  }
  .product_list2 .webgene-blog{
    margin: 0 -10px;
  }
  .product_list2 .webgene-item{
    width: 33.333%;
    padding: 0 10px;
  }
  .product_list2 .webgene-item:nth-child(n+3){
    margin-top: 0;
  }
  .product_list2 .webgene-item:nth-child(n+4){
    margin-top: 30px;
  }
  .product_list_item2 .box1{

  }
  .product_list_item2 .box2{

  }
  .product_list_item2 .box2{
    font-size: 16px;
  }

  .product_detail1 + .read_more{
    margin-top: 100px;
  }
  
}
@media (min-width:1024px){



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

  /* 商品一覧 */
  .product_list_item{
  }
  .product_list_item .box1{
    width: 320px;
  }
  .product_list_item .box1 + .box2{
    width: calc(100% - 320px - 60px);
  }
  .product_list_item .img{
  }
  .product_list_item .title{
    font-size: 24px;
    margin-bottom: 15px;
  }
  .product_list_item .txt{
    font-size: 18px;
    line-height: 1.888;
  }

  /**/
  .product_list1.col3 .webgene-blog{
    margin: 0 -15px;
  }
  .product_list1.col3 .webgene-item{
    width: 33.333%;
    padding: 0 15px;
  }
  .product_list1.col3 .webgene-item:nth-child(n+3){
    margin-top: 0;
  }
  .product_list1.col3 .webgene-item:nth-child(n+4){
    margin-top: 40px;
  }
  
  .product_detail1 .box3 + .box3 {
    margin-top: 50px;
  }

  /* 商品詳細1 */
  .product_detail1{
  }
  .product_detail1 .box1{
    width: 54.05%;
  }
  .product_detail1 .box2{
    
  }
  .product_detail1 .box1 + .box2{
    width: 40.09%;
  }

  #wgc-property3 .product_detail1 .box1{
    width: 45%;
  }
  #wgc-property3 .product_detail1 .box2{
  }
  #wgc-property3 .product_detail1 .box1+.box2{
    width: 48.64%;
  }

  .product_detail1 .box3{
    width: 100%;
    margin-top: 60px;
  }
  .product_detail1 .title{
    font-size: 40px;
    margin-bottom: 32px;
  }
  .product_detail1 .txt{
    font-size: 18px;
    line-height: 1.888;
  }

  .product_detail1 .box0 .category{
    font-size: 18px;
  }
  .product_detail1 .box0 .title2{
    font-size: 40px;
  }

  .product_spec{
    margin-left: -15px;
    margin-right: -15px;
  }
  .product_spec_item{
    width: 50%;
    padding: 0 15px;
  }
  .product_spec_tbl th,
  .product_spec_tbl td{
    font-size: 18px;
    padding: 11px 10px;
  }
  .product_spec_tbl thead tr th:first-child{
    width: 44.44%;
  }
  .product_spec_tbl tbody th,
  .product_spec_tbl tbody td{
    padding-left: 25px;
  }


  /* 商品リスト2 */
  .product_list2{

  }
  * + .product_list2{
    margin-top: 100px;
  }
  .product_list2 .webgene-blog{
    margin: 0 -25px;
  }
  .product_list2 .webgene-item{
    width: 25%;
    padding: 0 25px;
  }
  .product_list2 .webgene-item:nth-child(n+4){
    margin-top: 0;
  }
  .product_list2 .webgene-item:nth-child(n+5){
    margin-top: 50px;
  }
  .product_list_item2 .box1{

  }
  .product_list_item2 .box2{

  }


}




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

/* セクション設定 */
.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 (max-width:767px){

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

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


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


}




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

/* セクション設定 */
.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 (max-width:767px){

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

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


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


}



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


}


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


}
