@charset "UTF-8";


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

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

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

div#root{
  overflow: hidden;
}

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

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;
  left: 0;
  top: 0;
}

a.img_fit{
  display: block;
}

/* 動画埋め込みのレスポンシブ対応 */
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;
  }
  .tb:not(.pc){
    display: none;
  }
  .sp:not(.pc){
    display: none;
  }
}
@media (min-width:1023px) and (max-width:1199px){
  .pc:not(.md){
    display: none;
  }
  .tb:not(.md){
    display: none;
  }
  .sp:not(.md){
    display: none;
  }
}
@media (min-width:768px) and (max-width:1023px){
  .pc:not(.tb){
    display: none;
  }
  .sp:not(.tb){
    display: none;
  }
}
@media (max-width:767px){
  .pc:not(.sp){
    display: none;
  }
  .tb:not(.sp){
    display: none;
  }
}

/* 指定デバイスで改行を消す */
@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{
  width: 100%;
  background: #fff;
}
.hdr_menu{
  width: 86px;
  font-size: 20px;
  padding-top: 52px;
  display: inline-block;
  position: relative;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.1em;
  font-weight: 500;
  line-height: 1;
  background: #0d0d0d;
  color: #fff;
  text-align: center;
  border: 1px solid #0d0d0d;
}
.hdr_menu_i{
  width: 50px;
  height: 3px;
  background: #fff;
  position: absolute;
  right: 20px;
  top: 15px;
  transition: all .4s;
}
.hdr_menu_i.no2{
  width: 40px;
  top: 28px;
}
.hdr_menu_i.no3{
  width: 30px;
  top: 41px;
}
.hdr_menu.active .hdr_menu_i:nth-of-type(1) {
  top: 25px;
  left: 15px;
  transform: rotate(-45deg);
  width: 50px;
}
.hdr_menu.active .hdr_menu_i:nth-of-type(2) {
  opacity: 0;
}
.hdr_menu.active .hdr_menu_i:nth-of-type(3) {
  top: 31px;
  left: 15px;
  transform: translateY(-6px) rotate(45deg);
  width: 50px;
}
.hdr_menu:hover{
  background: #fff;
  color: #0d0d0d;
  opacity: 1;
}
.hdr_menu:hover .hdr_menu_i{
  background: #0d0d0d;
}
.gnav_box2 .hdr_menu{
  width: auto;
  background: inherit;
  border: 0;
}
.gnav_box2 .hdr_menu_i{
  right: 2px;
}
.gnav_box2 .hdr_menu.active .hdr_menu_i:nth-of-type(1) {
  left: 0;
}
.gnav_box2 .hdr_menu.active .hdr_menu_i:nth-of-type(3) {
  left: 0;
}
.gnav_box2 .hdr_menu:hover,
.hdr_menu:hover .hdr_menu_i{
  color: #fff;
  opacity: 1;
}

.pg_header{
  padding-top: 20px;
  margin-bottom: 50px;
  position: relative;
}
.pg_header:before{
  content: "";
  width: 74%;
  height: 96.5%;
  background: #11436b;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.pg_header .container{
  display: flex;
  align-items: center;
}
.hdr_ttl{
  width: 180px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #fff;
  font-family: 'Noto Serif JP', serif;
}
.hdr_img{
  width: calc(100% - 180px);
}
.hdr_img:before{
  padding-top: 150px;
}
.hdr_img img{
  width: 60vw;
  max-width: inherit;
  object-position: 75% center;
}

.mv{
  padding-top: 30px;
  position: relative;
  z-index: 0;
}
.mv:after{
  content: "";
  width: 100%;
  height: 80%;
  background: #11436b;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.mv .container{
  position: relative;
}
.mv_txt{
  font-size: 26px;
  position: absolute;
  left: 40px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  width: 100%;
  font-weight: 700;
  letter-spacing: 0.065em;
  text-shadow: 0 0 8px #fff,
    0 0 8px #fff,
    0 0 8px #fff,
    0 0 8px #fff,
    0 0 8px #fff,
    0 0 8px #fff;
  line-height: 1.6;
}
.mv_img{
  position: relative;
}
.mv_img .img_fit:before{
  padding-top: 65vh;
}

@media (min-width:768px){
  body{
    padding-top: 86px;
  }
  .header {
    display: flex;
    justify-content: space-between;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 10;
  }
  .hdr_logo{
    margin: 12px 40px;
  }
  .hdr_menu {
    width: 76px;
  }
  .hdr_menu_i{
    right: 15px;
  }

  .pg_header{
    padding-top: 50px;
    margin-bottom: 80px;
  }
  .hdr_img{
    width: calc(100% - 280px);
  }
  .hdr_img:before{
    height: 280px;
  }
  .hdr_img img{
    width: 560px;
  }
  .hdr_ttl{
    width: 280px;
    font-size: 30px;
  }

  /*.gnav {
    margin: 0 -15px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
  }
  .gnav .gnav_item {
    font-size: 15px;
    padding: 0 15px;
    font-weight: 500;
  }*/

  .mv{
    padding-top: 55px;
  }
  .mv:before{
    content: "";
    width: 76px;
    height: 100%;
    background: #fff;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
  }
  .mv:after{
    width: 64%;
    height: 94%;
  }
  .mv_img.img_fit:before{
    padding-top: 500px;
  }
  .mv_txt{
    font-size: 36px;
  }
}
@media (min-width:992px){  
  .hdr_img img {
    width: 695px;
  }
}
@media (min-width:1024px){
  .hdr_menu {
    width: 86px;
  }
  .hdr_menu_i{
    right: 18px;
  }

  .pg_header{
    margin-bottom: 140px;
  }
  .hdr_img {
    width: calc(100% - 380px);
  }
  .hdr_img:before{
    padding-top: 360px;
  }
  .hdr_img img{
    width: 685px;
  }
  .hdr_ttl {
    width: 380px;
    font-size: 40px;
  }

  .mv:before {
    width: 86px;
  }
  .mv_img.img_fit:before{
    padding-top: 700px;
  }
  .mv_txt{
    font-size: 42px;
    padding-bottom: 8px;
  }
}
@media (min-width:1200px){
  .hdr_img img{
    width: 925px;
  }
  .hdr_img:before{
    padding-top: 460px;
  }

  .mv_img {
    width: 100%;
  }
  .mv_img .img_fit img{
    max-width: inherit;
    width: 1420px;
  }
  .mv_img .img_fit:before{
    padding-top: 850px;
  }
  .mv_txt{
    font-size: 46px;
  }
}
@media (min-width:1500px){
  .hdr_img img{
    width: 1135px;
  }
}

@media (max-width:767px){
  .header{
    padding: 15px;
    text-align: center;
  }
  .hdr_logo img{
    width: 200px;
  }
  .hdr_menu{
    display: none;
  }

  /* スマホ用
  .gnav{
    display:block !important;
    width: 100%;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #FFF;
    padding: 0;
    z-index: 99999;
    overflow-y: scroll;
    transform: translateX(100%);
    padding: 15px;
    display: block;
  }
  .gnav.active{
    transform: translateX(0%);
  }
  .gnav .gnav_item{
    width: 100%;
    padding: 15px 0;
    border: 0;
    border-bottom: 1px dashed #CCC;
    color: inherit;
    justify-content: center;
    display: block;
    text-align: left;
  }
  .gnav_item:before{
    display: none;
  }
  .gnav .gnav_item + .gnav_item,
  .gnav .gnav_item:first-child,
  .gnav .gnav_item:last-child{
    border-left: 0;
    border-right: 0;
  }
  .gnav_item:nth-child(n+5){
    margin-top: 0;
  }
  .gnav_bg{
    padding: 0;
    background: inherit;
  }

  .gnav_item .gnav_item_sub{
    display: block;
    position: static;
    width: 100%;
    background: aliceblue;
    padding: 15px;
    margin-top: 20px;
  }
  .gnav .gnav_item:hover{
    color: #000000;
  } */



}



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

.footer{
  padding-top: 50px;
  padding-bottom: 30px;
  margin-top: 80px;
  background: #11436b;
}
.ftr_contact {
  padding: 20px 40px;
}


.ftr_logo{
  margin-bottom: 25px;
}
.ftr_name{
  font-weight: 500;
  letter-spacing: 0.075em;
  margin-bottom: 10px;
}
.ftr_addr {
  color: #fff;
  letter-spacing: 0.075em;
  line-height: 2.375;
  margin-top: 30px;
}

/*.ftr_info_wrap{
  display: flex;
}
.ftr_info_box1{
  width: 90px;
  padding-right: 20px;
  position: relative;
}
.ftr_info_box1:after{
  content: " /";
  position: absolute;
  right: 5px;
  top: 0;
}
.ftr_info_box2{
  width: calc(100% - 90px);
}*/

.ftr1 {
  padding-bottom: 50px;
  border-bottom: 1px solid #fff;
}
.ftr_contact{
  padding: 20px 15px;
  background: #FFF;
  color: #181818;
  text-align: center;
}
.ftr_contact1_ttl {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 0.09em;
  line-height: 1;
  margin-right: -5px;
}
.ftr_contact1_text{
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.075em;
}
.ftr_contact2_link1 {
  max-width: 472px;
  width: 100%;
  padding: 20px;
  margin: 15px auto;
  background: #e5e5e5;
  display: block;
  font-weight: 700;
  position: relative;
  line-height: 1;
}
.ftr_contact2_link1:before{
  font-size: 16px;
  content: "\f0e0";
  font-family: 'FontAwesome';
  font-weight: 900;
  width: 34px;
  height: 34px;
  line-height: 34px;
  background: #11436b;
  color: #fff;
  border-radius: 50%;
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
}
.ftr_contact2_link1:after{
  content: url(/system_panel/uploads/images/ftr_contact_arrow.svg);
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
}
.ftr_contact2_link1 em{
  font-size: 21px;
  font-style: normal;
}
.ftr_contact2_link1 em:after{
  content: "／";
  font-size: 16px;
  margin: 0 20px;
  display: none;
}
.ftr_contact2_link1:hover{
  background: #8d8d8d;
  color: #fff;
  opacity: 1;
}
.ftr_contact2_r {
  text-align: center;
}
.ftr_contact2_link2 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.075em;
  line-height: 1;
}
.ftr_contact2_link2:first-letter,
.ftr_contact2_link2 a{
  font-size: 30px;
  letter-spacing: 0.075em;
}
.ftr_contact2_min {
  font-size: 15px;
  padding-right: 19px;
  font-family: 'Noto Sans JP', sans-serif;
  letter-spacing: 0.075em;
}

.ftr2 {
  padding-top: 50px;
}
.ftr_addr{
}
.ftr_addr em{
  font-style: normal;
}
.ftr_copy{
  font-size: 14px;
  padding: 2px;
  margin-top: 46px;
  text-align: center;
  background: #fff;
  letter-spacing: 0.075em;
}

/* 追尾スマホメニュー */
.footer_fix{
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #0d0d0d;
  z-index: 1000;
  flex-wrap: wrap;
}
.footer_fix > a{
  font-size: 12px;
  text-align: center;
  display: block;
  padding: 10px 5px 5px;
  background: #0d0d0d;
  color: #fff;
  text-decoration: none;
  line-height: 1.2;
}
.footer_fix .footer_fix_item_1{
  width: 38%;
  border-right: 1px solid #2d2d2d;
}
.footer_fix .footer_fix_item_1.recruit{
  background: #eeeeee;
  color: #024b93;
}
.footer_fix .footer_fix_item_2{
  width: 24%;
  background: #11436b;
}
.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;
  right: 10px;
  bottom: 60px;
  z-index: 5;
}
.pagetop a{
  display: block;
  font-size: 0;
  width: 42px;
  height: 42px;
  text-align: center;
  color: #b1b1b1;
}
.pagetop a i{
  font-size: 40px;
}



@media (min-width:768px){
  .footer{
    margin-top: 150px;
    padding-top: 80px;
  }
  .ftr_contact1_ttl {
    font-size: 56px;
  }
  .ftr_contact1_text{
    font-size: 21px;
    margin-top: 15px;
  }
  .ftr_contact2_link1 {
    max-width: 475px;
    margin: 15px auto;
    padding-left: 65px;
    text-align: left;
  }
  .ftr_contact2_link1 em{
    display: inline;
  }
  .ftr_contact2_link1 em:after {
    margin: 0 6px;
    display: inline;
  }
  .ftr_contact2_link1 p{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
  }
  .ftr_contact2_link2 {
    font-size: 30px;
  }
  .ftr_contact2_link2:first-letter,
  .ftr_contact2_link2 a {
    font-size: 38px;
  }
  .ftr1 {
    padding-bottom: 80px;
  }

  .ftr2 {
    padding-top: 80px;
  }
  .ftr2 > .container{
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .ftr2_right {
    max-width: 400px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
  }
  .ftr_link{
    margin: 0 16px;
    color: #fff;
    letter-spacing: 0.075em;
    transition: 0.2s;
  }
  .ftr_link:nth-child(n+4){
    margin-top: 15px;
  }
  .ftr_link:hover{
    color: #fff;
  }
}
@media (min-width:1024px){
  .footer{
    margin-top: 200px;
  }
  .ftr1 {
    padding-bottom: 100px;
  }
  .ftr_contact {
    padding: 15px 0 17px 40px;
    text-align: left;
  }
  .ftr_contact1,
  .ftr_contact2 {
    display: flex;
    align-items: center;
  }
  .ftr_contact1_ttl {
    font-size: 56px;
    margin-left: -5px;
  }
  .ftr_contact1_text{
    margin-top: 5px;
  }
  .ftr_contact2_link1 {
    max-width: 412px;
    margin: 20px 0 0;
  }
  .ftr_contact2_link1 em{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
  }
  .ftr_contact2_r{
    width: calc(100% - 415px);
    padding-top: 15px;
    text-align: center;
  }

  .ftr2 {
    padding-top: 100px;
  }
  .ftr2_right {
    max-width: 600px;
    padding-top: 26px;
    margin-right: -15px;
  }
  .ftr_contact1_text,
  .ftr_contact2_r{
    width: calc(100% - 415px);
  }
  .ftr_link:nth-child(n+4){
    margin-top: 0;
  }
  .ftr_link:nth-child(n+5){
    margin-top: 18px;
  }
  .ftr_contact2_link1:after{
    right: 15px;
  }
}
@media (min-width:1200px){
  .ftr_contact1_ttl {
    font-size: 64px;
  }
  .ftr_contact2_link1 {
    max-width: 472px;
    letter-spacing: 0.02em;
  }
  .ftr_contact2_link1 em:after {
    margin: 0 15px;
  }
  .ftr_contact1_text,
  .ftr_contact2_r{
    width: calc(100% - 475px);
  }
  .ftr_contact2_link1:after{
    right: 22px;
  }


}
@media (max-width:767px){
  .footer{
    text-align: center;
  }
  .ftr_contact2_link1{
    line-height: 1.5;
  }
  .ftr_contact2_link1 em{
    display: block;
  }
  .ftr_addr em{
    display: block;
  }
  .ftr_logo img{
    width: 250px;
  }

  .ftr2_right{
    display: none;
  }

}



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

/* Flexテーブルレイアウト */
.fl_tbl_items{
  border: 1px solid #cab386;
  margin-bottom:80px;
}
.fl_tbl_items_item{
  display: flex;
  letter-spacing: 0.05em;
}
.fl_tbl_items_item + .fl_tbl_items_item{
  border-top: 1px solid #cab386;
}

.fl_tbl_items_item_box1,
.fl_tbl_items_item_box2{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
  min-height: 70px;
}
.fl_tbl_items_item_box1{
  width:31.53%;
  background: #eeeeee;
  padding: 10px 5px;
  border-right: 1px solid #cab386;
  font-weight: 500;
  letter-spacing: 0.1em;
}
.fl_tbl_items_item_box2{
  width:68.47%;
  background: #fff;
}
.fl_tbl_items_item_txt{
  width: 100%;
  padding: 10px 10px;
}
.fl_tbl_items_item_txt + .fl_tbl_items_item_txt{
  border-top: 1px solid #cab386;
}

/* 青 */
.fl_tbl_items.blue{
  border: 1px solid #7ecef4;
}
.fl_tbl_items.blue .fl_tbl_items_item + .fl_tbl_items_item{
  border-top: 1px solid #7ecef4;
}
.fl_tbl_items.blue .fl_tbl_items_item_box1{
  background: #eff8fc;
  border-right: 1px solid #7ecef4;
}

@media (min-width:375px){
  .fl_tbl_items_item_box1{
    padding: 10px 10px;
  }
}
@media (min-width:768px){
}
@media (min-width:1024px){
  .fl_tbl_items_item_box1{
    padding: 10px 10px 10px 60px;
  }
  .fl_tbl_items_item_txt{
    padding: 10px 10px 10px 25px;
  }
}
@media (min-width:1200px){

}
@media (max-width:767px){
  .footer_fix{
    display: flex;
  }

  body{
    padding-bottom: 56px;
  }
}


/* テーブル用 */
.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 #999999;
  vertical-align: middle;
  padding: 10px 15px;
  font-weight: 500;
  letter-spacing: 0.075em;
  line-height: 1.85;
}
.table_rows_th{
  background-color: #e4e4e4;
  vertical-align: top;
}
.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: 2px 13px;
  margin: 0 4px;
  border: 1px solid #c0c0c0;
  background: #ffffff;
}
.webgene-pagination li.selected{
  border-color: #e5e5e5;
  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;
}


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

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

/* リスト */
.posts_list{

}
.posts_list .webgene-item a{
  display: flex;
  align-items: center;
  border-bottom: 1px solid #a6a6a6;
  padding-bottom: 15px;
}
.posts_list .webgene-item + .webgene-item{
  margin-top: 15px;
}
.posts_list .webgene-item .date,
.posts_detail .date{
  width: 110px;
  letter-spacing: 0.075em;
}
.posts_list .webgene-item .category,
.posts_detail .category{
  width: auto;
  font-size: 13px;
  background: #11436b;
  color: #fff;
  text-align: center;
  letter-spacing: 0.075em;
}
.posts_list .webgene-item .title{
  font-size: 16px;
  width: 100%;
  letter-spacing: 0.075em;
  font-weight: 400;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.posts_list .webgene-item .title a{

}


/* サイド */
.posts_side_wrap{

}
.posts_side_wrap + .posts_side_wrap{
  margin-top: 30px;
}
.posts_side_title {
  background: #11436b;
  color: #FFF;
  padding: 8px 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 18px;
}

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

select[name="month"],
select[name="category"]{
  width: 100%;
  height: 50px;
  border: 1px solid #11436b;
  padding: 10px 5px;
  box-shadow: 0;
  color: #000;
}
.pg_news .webgene-pagination {
  margin-top: 50px;
}

/* 詳細 */

/* 詳細 */
.posts_detail{
}
.posts_detail .webgene-item{
  padding-bottom: 35px;
  border-bottom: 1px solid #181818;
}
.posts_detail .meta{
  padding-bottom: 5px;
  display: flex;
  align-items: center;
}
.posts_detail .meta .category{
  min-width: 140px;
  font-size: 15px;
  margin-bottom: 2px;
}
.posts_detail .meta .category span{
  display: inline-block;
  background: #0069ba;
  border-radius: 5px;
  color: #FFF;
  min-width: 150px;
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  padding: 2px 5px;
  line-height: 1.2;
}
.posts_detail .meta .date{
  width: 120px;
  font-size: 18px;
  letter-spacing: 0.075em;
}
.posts_detail .title{
  font-size: 18px;
  padding-bottom: 15px;
  margin-bottom: 20px;
  font-weight: 500;
  letter-spacing: 0.075em;
  border-bottom: 1px solid #a6a6a6;
  line-height: 1.5;
}
.posts_detail .post_content{
  line-height: 2.25em;
  letter-spacing: 0.075em;
  text-align: justify;
  word-break: break-all;
}
.posts_detail .thumb{
  margin-bottom: 10px;
}

.posts_back_list{

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

@media (max-width:767px){
  .posts_list .webgene-item a{
    flex-wrap: wrap;
  }
  .posts_list .webgene-item .title{
    margin-top: 5px;
  }
  .posts_list .webgene-item .category{
    width: 120px;
  }
  .posts_category_sp{
    margin-bottom: 50px;
  }
}
@media (min-width:768px){

  .posts_layout{
    padding-top: 120px;
    margin-top: -120px;
  }
  .posts_layout_box1{
    width: 74.32%;
  }
  .posts_layout_box2{
    width: 22.97%;
    margin-top: 0;
  }

  .posts_category_sp{
    display: none;
  }

  /* リスト */
  .posts_list{

  }
  .posts_list .webgene-item + .webgene-item{
    margin-top: 23px;
  }
  .posts_list .webgene-item .date{
    width: 90px;
    font-size: 14px;
  }
  .posts_list .webgene-item .category{
    width: 130px;
    font-size: 15px;
  }
  .posts_list .webgene-item .title{
    width: calc(100% - 100px - 130px - 15px);
    margin-left: 15px;
  }
  .posts_list .webgene-item .title a{

  }

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

  .webgene-pagination{
    margin-top: 80px;
  }

  /* 詳細 */
  .posts_detail {
    margin-top: -10px;
  }
  .posts_detail .webgene-item{

  }
  .posts_detail .meta{
  }
  .posts_detail .meta .category{
    width: 140px;
  }
  .posts_detail .meta .category span{
    font-size: 13px;
    padding: 2px 5px;
  }
  .posts_detail .meta .date{
    width: 115px;
  }
  .posts_detail .title{
    margin-bottom: 40px;
  }
  .posts_detail .thumb{
    margin-bottom: 20px;
  }
  .posts_detail .webgene-item{
    padding-bottom: 50px;
  }
  .pg_news a.link_1{
    max-width: 280px;
    margin-top: 85px;
  }
  .pg_news .webgene-pagination {
    margin-top: 100px;
  }
  
  select[name="month"]{
    font-size: 15px;
  }
}
@media (min-width:1024px){
  /* リスト */
  .posts_list{

  }
  .posts_list .webgene-item{
  }
  .posts_list .webgene-item + .webgene-item{
  }
  .posts_list .webgene-item .date{
    width: 115px;
    font-size: 16px;
  }
  .posts_list .webgene-item .category{
    width: 139px;
  }
  .posts_list .webgene-item .title{
    width: calc(100% - 115px - 139px - 25px);
    margin-left: 35px;
  }
  .posts_list .webgene-item a{
    padding-bottom: 25px;
  }

  .posts_list .webgene-item .title{
    width: calc(100% - 115px - 140px - 30px);
    margin-left: 30px;
    margin-top: 0;
  }

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

  select[name="month"]{
    font-size: 16px;
  }

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

}


/*******************************
*　HOME
********************************/
.pg_home .section{
  padding-top: 60px;
}
.home_ttl1 {
  margin-bottom: 40px;
}
.home_box1_ttl{
  margin-bottom: 25px;
}
.home_box1_img{
  margin-top: 20px;
}
.home_box1_img:before{
  padding-top: 70%;
}

.pg_home .section.sec2{
  padding-bottom: 42px;
  position: relative;
  z-index: 0;
}
.pg_home .section.sec2:after{
  height: 100px;
  content: "";
  width: 100%;
  background: #11436b;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}
.home_ttl2_min {
  width: 220px;
  background: #11436b;
  color: #fff;
  margin: 15px auto 37px;
  border-radius: 15px;
  line-height: 1.6;
}
.link_1 {
  font-size: 15px;
  max-width: 280px;
  width: 100%;
  padding: 8px;
  margin: 30px auto 0;
  border: 1px solid #11436b;
  display: block;
  text-align: center;
  font-family: 'Noto Serif JP', serif;
  font-weight: 500;
  letter-spacing: 0.075em;
  position: relative;
  transition: ease .2s;
  background: #fff;
  z-index: 0;
}
.link_1:after{
  content: "";
  width: 65px;
  height: 1px;
  background: #11436b;
  position: absolute;
  right: -36px;
  top: 50%;
}
.link_1:hover{
  opacity: 1;
  color: #fff;
}
.link_1:before {
  content: '';
  /*絶対配置で位置を指定*/
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  /*色や形状*/
  background:#11436b;/*背景色*/
  width: 100%;
  height: 100%;
  /*アニメーション*/
  transition: transform .6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: right top;
  z-index: -1;
}
.link_1:hover:before{
  transform-origin:left top;
  transform:scale(1, 1);
}
.home_business_img{
  margin-top: 40px;
}
.home_business_img:before{
  padding-top: 40.5%;
}

.home_customer_img{
  margin-bottom: 23px;
}
.home_customer_img:before{
  padding-top: 101%;
}
.home_customer_catch{
  padding: 0 15px 0 5px;
  position: absolute;
  left: 0;
  bottom: 25px;
  background: #11436b;
  color: #fff;
  line-height: 1.8;
}

.home_handling{
  margin-top: 35px;
}
.home_handling.flex .webgene-blog,
.handling_list .webgene-blog{
  display: flex;
}
.home_handling .webgene-item{
  padding: 0 15px;
}
.home_handling .webgene-item a{
  display: block;
}
.home_handling .webgene-item a:hover,
.handling_list .webgene-item a:hover{
  opacity: 1;
}
.home_handling .img_fit:before{
  padding-top: 81%;
}
.home_handling .img_fit,
.handling_list .img_fit{
  background: url(/system_panel/uploads/images/noimg.png) no-repeat center / cover;
  box-shadow: 5px 5px 0 #11436b;
  overflow: hidden;
}
.home_handling .img_fit img,
.handling_list .img_fit img{
  transition: all 0.2s;
}
.home_handling .webgene-item a:hover .img_fit img,
.handling_list .webgene-item a:hover .img_fit img{
  scale: 1.2;
}
.home_handling .title,
.handling_list .title{
  font-size: 16px;
  padding: 20px 5px 10px;
  letter-spacing: 0.075em;
  line-height: 1.5;
  border-bottom: 1px solid #11436b;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.slick-dots li{
  border: 0;
  margin: 0 9px;
  width: 9px;
  height: 9px;
  background: #d8d8d8;
}
.slick-dots li.slick-active{
  background: #11436b;
}

.pg_home .posts_list{
  margin-top: 30px;
}

@media (max-width:767px){
  .home_customer_r{
    margin-bottom: 30px;
  }
  .home_customer{
    margin: 40px 0 0;
  }
  .home_customer > div + div{
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid;
  }

  .home_handling .webgene-blog{
    padding: 0 7px;
    flex-wrap: wrap;
  }
  .home_handling .webgene-item{
    width: 50%;
    padding: 0 8px;
  }
  .home_handling .webgene-item:nth-child(n+3){
    margin-top: 25px;
  }
  .home_handling .webgene-item:nth-child(n+5){
    display: none;
  }
}
@media (min-width:768px){
  .pg_home .section{
    padding-top: 100px;
  }
  .home_ttl1 {
    margin-bottom: 60px;
  }
  .home_business_img{
    margin-top: 50px;
  }
  .link_1{
    margin-top: 44px;
  }
  .pg_home .section.sec2{
    padding-bottom: 62px;
  }
  .pg_home .section.sec2:after{
    height: 300px;
  }

  .pg_home .section.sec3{
    padding-top: 107px;
  }
  .home_customer{
    margin-top: 42px;
  }
  .home_customer > div{
    display: flex;
  }
  .home_customer > div:first-child > .home_customer_l{
    order: 1;
  }
  .home_customer > div:first-child > .home_customer_r{
    order: 2;
  }
  .home_customer > div + div{
    margin-top: 50px;
    padding-top: 50px;
    border-top: 1px solid;
  }
  .home_customer_r{
    padding-left: 15px;
    padding-right: 8px;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
  }
  .home_customer > div:nth-child(even) > .home_customer_r{
    padding-left: 0;
    padding-right: 25px;
  }
  .pg_home .section.sec3 .link_1{
    margin-top: 50px;
  }

  .pg_home .section.sec4{
    padding-top: 125px;
  }
  .home_handling{
    margin-top: 75px;
    padding-bottom: 60px;
  }
  .home_handling .webgene-blog{
    margin: 0 15px;
  }
  .home_handling .webgene-item{
    width: 33.33%;
  }
  .home_handling .slick-dots {
    bottom: -65px;
  }
  .pg_home .section.sec4 .link_1{
    margin-top: 50px;
  }

  .pg_home .posts_list{
    margin-top: 67px;
  }
  .pg_home .section.sec5{
    padding-top: 145px;
  }
  .pg_home .section.sec5 .link_1{
    margin-top: 50px;
  }
}
@media (min-width:1024px){
  .pg_home .section{
    padding-top: 140px;
  }
  .home_box1_text{
    padding-right: 40px;
  }
  .home_box1_ttl{
    margin-top: 12px;
    margin-bottom: 35px;
  }

  .pg_home .section.sec2{
    padding-bottom: 62px;
  }
  .home_customer > div{
    padding-top: 35px;
    padding-bottom: 0;
  }
  .home_customer > div:nth-child(even){
    border-left: 1px solid;
  }
  .home_customer > div + div{
    margin-top: 0;
    padding-top: 35px;
    border-top: 0;
  }

  .pg_home .section.sec4{
    padding-top: 145px;
  }
  .home_handling .webgene-item{
    width: 20%;
  }

  .pg_home .section.sec5{
    padding-top: 185px;
  }
}
@media (min-width:1200px){
  .home_customer_catch.mincho{
    font-size: 28px;
  }

}


/*******************************
*　業者向け卸売り
********************************/
.pg_business .section.sec1{
  padding-bottom: 60px;
}
.business_catch1 {
  margin-bottom: 8px;
}
.business_box1_list {
  margin-top: 50px;
}
.business_box1_img:before{
  padding-top: 84%;
}
.business_box1_min,
.business_box1_ttl{
  color: #11436b;
}
.business_box1_min{
  margin-bottom: 7px;
}
.business_box1_text{
  padding-top: 15px;
  margin-top: 20px;
  border-top: 1px solid #11436b;
}
.business_box1 + .business_box1{
  margin-top: 50px;
}

.pg_business .section.sec2{
  padding: 60px 0;
  background: #11436b;
  color: #fff;
}
.business_box2{
  margin-top: 50px;
  justify-content: center;
}
.business_box2 > div{
  display: flex;
}
.business_box2_inner {
  width: 100%;
  padding: 35px 40px;
  border: 1px solid #fff;
}
.business_box2_ttl{
  margin-bottom: 34px;
}
.business_box2_img{
  margin-bottom: 33px;
}
.business_box2_img:before{
  padding-top: 94%;
}

.pg_business .section.sec3{
  padding-top: 60px;
}
.business_ttl1{
  margin-bottom: 30px;
  position: relative;
}
.business_ttl1:after{
  content: "";
  width: 328px;
  height: 1px;
  background: #000;
  z-index: -1;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
}
.business_ttl1_tt {
  display: inline-block;
  padding: 0 20px;
  background: #fff;
  position: relative;
  z-index: 1;
}
.business_flow {
  min-height: 170px;
  border: 1px solid #11436b;
  background: #fff;
}
.business_flow_l{
  padding: 25px 0;
}
.business_flow_r{
  padding: 15px;
}
.business_flow_ttl{
  width: 210px;
  font-size: 22px;
  padding-left: 5px;
  margin-bottom: 15px;
  letter-spacing: 0.075em;
  font-weight: 500;
  text-align: left;
}
.business_flow_ttl em{
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 0.05em;
  font-style: normal;
  vertical-align: middle;
  margin-top: -10px;
  margin-right: 12px;
  display: inline-block;
}
.business_flow1_ttl {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.075em;
}
.business_flow1_1{
  margin-bottom: 15px;
}
.business_flow1_1,
.business_flow1_2{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.business_flow_link {
  padding: 0 12px;
  margin-top: 15px;
  background: #11436b;
  color: #fff;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.075em;
  border: 1px solid #11436b;
}
.business_flow_link p:before{
  font-size: 12px;
  content: "▶";
  margin-right: 10px;
  display: inline-block;
}
.business_flow_link:hover{
  background: #fff;
  color: #11436b;
  opacity: 1;
}
.business_flow1_2_tel {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.075em;
  line-height: 1.3;
}
.business_flow1_2_tel a,
.business_flow1_2_tel:first-letter{
  font-size: 28px;
  letter-spacing: 0.075em;
}
.business_flow1_2_tel a{
  margin-left: 3px;
}
.business_flow1_2_item:first-child{
  margin-bottom: 10px;
}
.business_flow + .business_flow{
  margin-top: 30px;
}
.business_flow_list {
  position: relative;
  z-index: 0;
}
.business_flow_list:after{
  content: "";
  width: 50px;
  height: 100%;
  background: #e5e5e5;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  z-index: -1;
}


@media (max-width:767px){
  .business_box1_img{
    margin-top: 20px;
  }

  .business_box2 > div:nth-child(n+2){
    margin-top: 30px;
  }

  .business_flow_r{
    border-top: 1px solid #11436b;
  }
  .business_flow_ttl{
    width: auto;
    text-align: center;
  }
}
@media (min-width:768px){
  .pg_business .section.sec1{
    padding-bottom: 120px;
  }
  .business_box1_list {
    margin-top: 82px;
  }
  .pg_business .business_box1_list{
    margin-top: 72px;
  }
  .customer_ttl1{
    margin-top: -10px;
  }
  .business_box1:nth-child(odd) .img{
    order: 1;
  }
  .business_box1:nth-child(odd) .txt{
    order: 2;
  }
  .business_box1 + .business_box1{
    margin-top: 80px;
  }
  .business_box1_ttl{
    margin-right: -15px;
    margin-top: -6px;
  }
  .business_box1_text{
    padding-top: 20px;
    margin-top: 24px;
  }
  .business_box1_min {
    margin-top: -7px;
  }

  .pg_business .section.sec2{
    padding: 75px 0 80px;
  }
  .business_box2{
    margin-top: 80px;
  }
  .business_box2 > div:nth-child(n+3){
    margin-top: 30px;
  }

  .pg_business .section.sec3{
    padding-top: 112px;
  }
  .business_ttl1{
    margin-bottom: 73px;
  }
  .business_ttl1:after{
    width: 538px;
  }
  .business_ttl1_tt {
    min-width: 340px;
    padding: 0 43px;
  }
  .business_flow {
    display: flex;
  }
  .business_flow_l{
    width: 250px;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .business_flow_r{
    width: calc(100% - 250px);
    padding: 20px;
    border-left: 1px solid #11436b;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .business_flow1_2_item:first-child{
    margin-bottom: 15px;
  }
  .business_flow1_ttl {
    font-size: 21px;
  }
  .business_flow1_2_tel {
    font-size: 24px;
  }
  .business_flow1_2_tel a,
  .business_flow1_2_tel:first-letter{
    font-size: 32px;
  }
}
@media (min-width:1024px){
  .pg_customer {
    padding-top: 12px;
  }
  .business_box1 + .business_box1{
    margin-top: 101px;
  }
  .business_box1:nth-child(odd) .business_box1_img{
    margin-right: 25px;
  }
  .business_box1:nth-child(even) .business_box1_img{
    margin-left: 25px;
  }

  .business_box2_inner {
    padding: 35px 40px 48px;
  }
  .business_box2 > div:nth-child(n+3){
    margin-top: 0;
  }

  .business_flow_l {
    width: 350px;
  }
  .business_flow_r{
    width: calc(100% - 350px);
    padding-left: 57px;
  }
}
@media (min-width:1200px){
  .business_box1:nth-child(odd) .business_box1_img{
    margin-right: 65px;
  }
  .business_box1:nth-child(even) .business_box1_img{
    margin-left: 65px;
  }
  .business_box1_ttl.mincho {
    font-size: 35px;
  }
  .business_box1_min.mincho {
    font-size: 30px;
  }

  .business_flow1_2_item:first-child{
    margin-right: 38px;
    margin-bottom: 0;
  }
  .business_flow_link {
    margin-top: 0;
    margin-left: 13px;
  }
  .business_flow_r{
    padding-right: 0;
  }

}



/*******************************
*　一般のお客様へ
********************************/
.curtomer_box1_link{
  font-weight: 500;
  letter-spacing: 0.075em;
  padding: 11px;
  display: block;
  position: relative;
  border: 1px solid #11436b;
  background: #11436b;
  color: #fff;
  text-align: center;
}
.curtomer_box1_link:before{
  content: "";
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  position: absolute;
  left: 5px;
  top: 5px;
  border: 1px solid #fff;
  pointer-events: none;
}
.curtomer_box1_link:after{
  content: "";
  border-style: solid;
  border-color: transparent transparent #fff transparent;
  border-width: 0px 0px 10px 10px;
  position: absolute;
  right: 5px;
  bottom: 5px;
}
.curtomer_box1_link:hover{
  background: #fff;
  color: #11436b;
  opacity: 1;
}
.curtomer_box1_link:hover:before{
  border-color: #11436b;
}
.curtomer_box1_link:hover:after{
  border-color: transparent transparent #11436b transparent;
}

.pg_customer .section.sec2{
  padding-top: 60px;
}
.pg_customer .section.sec2 .home_ttl2_min{
  min-width: 296px;
}
.customer_box2 {
  margin-top: 35px;
}
.customer_box2 > div:nth-child(n+3){
  margin-top: 15px;
}

.pg_customer .section.sec3{
  padding: 60px 0;
}
.customer_text1{
  margin-top: 15px;
}
.customer_box3{
  margin-top: 30px;
  justify-content: center;
}
.customer_box3_img{
  margin-bottom: 23px;
}
.customer_box3_img:before{
  padding-top: 129%;
}
.customer_box3_ttl {
  max-width: 320px;
  width: 92%;
  padding: 2px 8px;
  position: absolute;
  left: 0;
  bottom: 27px;
  z-index: 1;
  background: #11436b;
  color: #fff;
}

.pg_customer .section.sec4{
  padding-top: 60px;
  border-top: 1px solid #11436b;
}
.pg_customer .section.sec4 .home_ttl2{
  padding-left: 6px;
  letter-spacing: 0.17em;
}
.customer_ttl1{
  color: #11436b;
}

.pg_customer .section.sec5{
  padding-top: 75px;
}

.pg_customer .section.sec6{
  padding-top: 70px;
}
.access_map{
  margin-top: 50px;
  margin-bottom: -10px;
}
.access_map iframe{
  width: 100%;
  height: 300px;
  border: 0;
}

@media (max-width:767px){
  .customer_box1 > div + div{
    margin-top: 15px;
  }

  .customer_box2 {
    margin-left: -8px;
    margin-right: -8px;
  }
  .customer_box2 > div{
    padding: 0 8px;
  }

  .table_rows,
  .table_rows_tr,
  .table_rows_th,
  .table_rows_td{
    width: 100%;
    display: block;
  }
  .table_rows_tr:not(:first-child) .table_rows_th,
  .table_rows_td{
    border-top: 0;
  }

  .customer_box3 > div:nth-child(n+2){
    margin-top: 40px;
  }
}
@media (min-width:768px){
  .curtomer_box1_link{
    font-size: 18px;
  }

  .pg_customer .section.sec2{
    padding-top: 108px;
  }
  .customer_box2 {
    margin-top: 50px;
  }
  .customer_box2 > div:nth-child(n+3){
    margin-top: 30px;
  }
  .customer_text1{
    padding-left: 5px;
  }

  .pg_customer .section.sec3{
    padding: 110px 0 112px;
  }
  .customer_box3{
    margin-top: 40px;
  }
  .customer_box3 > div:nth-child(n+3){
    margin-top: 30px;
  }

  .pg_customer .section.sec4{
    padding-top: 110px;
  }

  .pg_customer .section.sec5{
    padding-top: 145px;
  }
  .business_flow:not(:first-child) .business_flow_r{
    padding-right: 20px;
  }
  .pg_business .business_flow:not(:first-child) .business_flow_r{
    padding-right: 36px;
  }

  .pg_customer .section.sec6{
    padding-top: 155px;
  }
  .pg_customer .section.sec6 .business_ttl1{
    margin-bottom: 45px;
  }
  .table_rows_th,
  .table_rows_td{
    padding: 14.5px;
    padding-left: 32px;
  }
  .table_rows_th{
    width: 200px;
    padding-left: 40px;
  }
  .access_map iframe{
    height: 400px;
  }
}
@media (min-width:1024px){
  .customer_box3 > div:nth-child(n+3){
    margin-top: 0;
  }
  .business_flow:not(:first-child) .business_flow_r{
    padding-right: 60px;
  }

  .pg_customer .section.sec6{
    padding-top: 195px;
  }
  .table_rows_th{
    width: 285px;
  }

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

  .customer_ttl1.mincho{
    font-size: 35px;
  }


}

/*******************************
*　取扱鮮魚
********************************/
.handling_list{
  margin-top: 40px;
}
.handling_list .webgene-blog{
  flex-wrap: wrap;
}
.handling_list .img_fit:before {
  padding-top: 80%;
}

.handling_detail .slider{
  margin-bottom: 70px;
  box-shadow: 8px 8px 0 #11436b;
}
.handling_detail .img_fit{
  overflow: hidden;
}
.handling_detail .img_fit img{
  transition: 0.2s;
}
.handling_detail .img_fit:before{
  padding-top: 80%;
}
.handling_detail .img_fit a:hover{
  opacity: 1;
}
.handling_detail .img_fit a:hover img{
  scale: 1.2;
}
.handling_detail .title{
  font-size: 26px;
  padding-bottom: 10px;
  margin-bottom: 10px;
  letter-spacing: 0.075em;
  font-weight: 300;
  border-bottom: 1px solid #11436b;
}
.handling_detail .text{
  letter-spacing: 0.075em;
  text-align: justify;
}
.handling_detail .howtoeat{
  margin-top: 35px;
}
.handling_detail .howtoeat .ttl{
  font-size: 20px;
  padding-bottom: 12px;
  margin-bottom: 6px;
  font-weight: 400;
  letter-spacing: 0.075em;
  border-bottom: 1px solid #11436b;
}
.handling_detail .slick-dots{
  bottom: -40px;
}
.handling_detail {
  padding-bottom: 50px;
  border-bottom: 1px solid;
}
.handling_detail .txt {
  letter-spacing: 0.075em;
}

@media (max-width:767px){
  .handling_list .webgene-blog{
    margin: 0 -8px;
  }
  .handling_list .webgene-item{
    padding: 0 8px;
  }
  .handling_list .webgene-item:nth-child(n+3){
    margin-top: 40px;
  }

}
@media (min-width:768px){
  .handling_list .webgene-blog{
    margin: 0 -15px;
  }
  .handling_list{
    margin-top: 72px;
  }
  .handling_list .webgene-item:nth-child(n+4){
    margin-top: 80px;
  }
  .webgene-pagination {
    margin-top: 132px;
  }

  /*詳細*/
  .handling_detail {
    padding-top: 12px;
    padding-bottom: 100px;
  }
  .handling_detail .webgene-item{
    display: flex;
    align-items: flex-start;
  }
  .handling_detail .slider{
    width: 48.7%;
    margin-bottom: 50px;
  }
  .handling_detail .txt{
    width: 51.3%;
    padding-left: 35px;
  }
  .handling_detail .title{
    font-size: 28px;
    margin-top: -7px;
    padding-bottom: 27px;
    margin-bottom: 20px;
  }
  .handling_detail .howtoeat{
    margin-top: 52px;
  }
  .pg_handling .link_1{
    margin-top: 80px;
  }
  .handling_detail .slick-dots{
    bottom: -50px;
  }
}
@media (min-width:1024px){
  .handling_detail .txt{
    padding-left: 65px;
  }
  .handling_detail .title{
    font-size: 35px;
  }
  .handling_detail .howtoeat{
    margin-top: 72px;
  }


}
@media (min-width:1200px){
  .handling_detail .txt{
    padding-left: 95px;
  }


}


/*******************************
*　よくある質問
********************************/
.pg_faq .section.sec2{
  padding-top: 70px;
}
.faq_list{
  margin-top: 50px;
}
.faq_item + .faq_item{
  margin-top: 50px;
}
.faq_q {
  padding: 0 0 15px;
  margin-bottom: 10px;
  padding-left: 65px;
  border-bottom: 1px solid #11436b;
  position: relative;
  line-height: 1.5;
}
.faq_q:before{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 6px;
  height: calc(100% - 20px);
  background: #11436b;
}
.faq_q:after{
  font-size: 28px;
  content: "Q.";
  color: #11436b;
  font-weight: 400;
  letter-spacing: 0.075em;
  position: absolute;
  left: 25px;
  top: -14px;
}
.faq_link  {
  padding: 1px 11px;
  margin-top: 15px;
  background: #11436b;
  color: #fff;
  text-align: center;
  font-weight: 400;
  letter-spacing: 0.065em;
  border: 1px solid #11436b;
  display: inline-block;

}
.faq_link p:before{
  font-size: 12px;
  content: "▶";
  margin-right: 10px;
  display: inline-block;
}
.faq_link:hover{
  background: #fff;
  color: #11436b;
  opacity: 1;
}

.pg_faq .section.sec3{
  padding-top: 70px;
}

@media (max-width:767px){

}
@media (min-width:768px){
  .pg_faq {
    padding-top: 12px;
  }
  .pg_faq .section.sec2{
    padding-top: 114px;
  }
  .faq_list{
    margin-top: 78px;
  }
  .faq_item + .faq_item{
    margin-top: 72px;
  }
  .faq_q {
    padding: 2px 0 21px;
    padding-left: 80px;
  }
  .faq_q:after{
    font-size: 36px;
  }

  .pg_faq .section.sec3{
    padding-top: 138px;
  }
}
@media (min-width:1024px){


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


}


/*******************************
*　会社概要
********************************/
.gallery_list{
  margin: 50px -8px 0;
}
.gallery_list > div{
  padding: 0 8px;
}

.pg_company .section.sec2{
  padding-top: 70px;
}
.gallery_list .img_fit{
  display: block;
  overflow: hidden;
}
.gallery_list .img_fit:before{
  padding-top: 66%;
}
.gallery_list .img_fit a:hover{
  opacity: 1;
}
.gallery_list .img_fit img{
  transition: 0.2s;
}
.gallery_list .img_fit img:hover{
  scale: 1.2;
}

@media (max-width:767px){
  .gallery_list > div:nth-child(n+3){
    margin-top: 20px;
  }

}
@media (min-width:768px){
  .pg_company {
    padding-top: 4px;
  }
  .pg_company .business_ttl1 {
    margin-bottom: 45px;
  }
  .gallery_list > div:nth-child(n+4){
    margin-top: 25px;
  }

  .pg_company .section.sec2{
    padding-top: 120px;
  }
}
@media (min-width:1024px){
  .gallery_list{
    margin: 52px -15px 0;
  }
  .gallery_list > div{
    padding: 0 15px;
  }

  .pg_company .section.sec2{
    padding-top: 142px;
  }

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


}




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

.contact_info_wrap{
  background: #11436b;
  padding: 25px 25px 22px;
  margin-bottom: 95px;
  font-family: "Noto Serif JP", serif;
}
.contact_info_tt{
  font-family: "Noto Serif JP", serif;
  font-size: 20px;
  padding-left: 14px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-align: center;
  margin-bottom: 18px;
  color: #FFF;
}
.contact_info_box{
  display: flex;
  justify-content: center;
  align-items: center;
  background: #FFF;
  color: #181818;
  padding: 5px 10px 15px;
}
.contact_info_tel{
  font-weight: 500;
  letter-spacing: 0.16em;
  display: block;
  text-align: center;
  line-height: 1.25;
}
.contact_info_tel + .contact_info_tel{
  margin-left: 47px;
}
.contact_info_tel a{
  font-size: 40px;
  font-weight: 600;
  letter-spacing: 0.1em;
}
.contact_info_tel .min{
  font-family: 'Noto Sans JP', sans-serif;
}
.contact_info_tel_icon{
  background: #11436b;
  color: #FFF;
  border-radius: 0;
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  padding: 6px 15px;
  margin-right: 40px;
  margin-top: 10px;
  letter-spacing: 0.08em;
}
.contact_info_tel_link{
  font-size: 44px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1;
}
.contact_info_txt{
  font-weight: 700;
  margin-left: 0;
  letter-spacing: 0.16em;
}

@media (max-width:1023px){

  .contact_info_box{
    padding: 15px;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .contact_info_tel_icon{
    margin-bottom: 15px;
    margin-right: 0;
    margin-top: 0;
  }
  .contact_info_tel + .contact_info_tel{
    margin-left: 0;
    margin-top: 15px;
  }
  .contact_info_tel{
    width: 100%;
  }
  .contact_info_tt {
    font-size: 18px;
  }
  .contact_info_tel_link{
    font-size: 30px;
  }
}
@media (max-width:767px){

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

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


.contact_tt {
  font-size: 28px;
  padding-left: 12px;
  text-align: center;
  margin-bottom: 58px;
  letter-spacing: 0.2em;
}
.contact_tt.privacy{
  font-size: 21px;
  font-weight: 500;
}

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

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


/* プライバシー */
.pg_contact .section.sec2{
  padding: 117px 0 0;
}
.pg_contact .section.sec2 .contact_tt{
  margin-bottom: 53px;
  padding-left: 3px;
}
.privacy_item {
  margin-top: 30px;
}
.privacy_ttl {
  font-size: 18px;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  padding: 10px 15px;
  margin-bottom: 12px;
  border-left: 6px solid #11436b;
  letter-spacing: 0.04em;
}
.privacy_txt{
  letter-spacing: 0.04em;
  line-height: 1.875;
  text-align: justify;
}

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

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

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

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


@media only screen and (max-width: 1023px){
  .radioArea {
    padding: 0 5px;
  }
  .radioArea .d-inline-block .label {
    margin-left: 11px;
  }


  .privacy_ttl{
    font-size: 18px;
  }

}

@media only screen and (max-width: 767px){
  .contact_info {
    padding: 18px 15px 10px;
  }
  .contact_info_txt_1 br{
    display: block;
  }
  .contact_info_txt_2 {
    padding: 0 6px 0 10px;
    margin-right: 10px;
  }
  .contact_info_tel a {
    font-size: 30px;
  }
  .contact_tt {
    margin-bottom: 25px;
    font-size: 22px;
    padding-left: 0;
  }
  .pg_contact .formTh {
    padding: 5px 10px;
  }
  .pg_contact .formTd {
    font-size: 16px;
    padding: 10px;
  }
  .pg_contact .formTd input[name="zip1"] {
    width: 80px;
  }
  .pg_contact .formTd input[name="zip2"] {
    width: 100px;
  }
  .pg_contact .formTd select[name="pref"] {
    width: 175px;
  }
  .pg_contact .formWrap .text-center {
    padding-top: 25px;
  }
  .pg_contact .privacyLabel {
    font-size: 15px;
  }

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

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

  .radioArea .d-inline-block {
    margin-right: 0;
    display: flex !important;
    align-items: baseline;
  }
  .radioArea .d-inline-block + .d-inline-block{
    margin-top: 10px;
  }
  .radioArea .d-inline-block .label{
    line-height: 1.5;
  }
  .pg_contact .section.sec2 .contact_tt {
    margin-bottom: 20px;
  }


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

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


  .contact_tt.privacy {
    font-size: 19px;
  }
  .privacy_ttl {
    font-size: 15px;
    padding-left: 10px;
  }
}

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

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



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


@media (max-width:767px){

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

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


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


}
