@charset "UTF-8";
/*
Theme Name: MY-THEME
*/
@import "style-visual.css";

/* Webフォント読込サンプル */
/*
@font-face {
  font-family: "Font-Family-NAME";
  src: url(css/fonts/font-file.woff2) format("woff2"),
  url(css/fonts/font-file.woff) format("woff"),
  url(css/fonts/font-file.eot) format("eot");
  font-weight: 400;
  font-style: normal;
}
*/

/* ==========================================================================
   サイト毎の独自のスタイル
   ========================================================================== */

/* 基本フォント: ゴシック */
body{
  font-family:  'Noto Sans JP', "游明朝体", "Yu Mincho", YuMincho, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 16px;
  letter-spacing: 0.075em;
  line-height: 1.666;
  color: #313131;
  background: #f5f5f5;
}

/* 基本フォント: 明朝 */
/**/
body{
  /* 游明朝体 */
  /*font-family: "游明朝体", "Yu Mincho", YuMincho, "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;*/
  /* ヒラギノ明朝 */
  /*font-family: 'Hiragino Mincho Pro', 'ヒラギノ明朝 Pro', 'Yu Mincho', '游明朝', 'MS Mincho', 'MS明朝', serif;*/
  font-family: "Noto Sans JP", sans-serif;
  text-align: justify;
}

/* admin-barの高さ分の padding 設定 */
body.admin-bar{
  padding-top: 32px;
}
@media (max-width:782px){
  body.admin-bar{
    padding-top: 46px;
  }
}

.gothic{
  font-family: '游ゴシック体','Yu Gothic', 'YuGothic', "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.mincho{
  font-family: "游明朝体", "Yu Mincho", YuMincho, "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

a{
  color: inherit;
  text-decoration: none;
}
a:hover{
  text-decoration: underline;
  text-decoration: none;
  color: #2196F3;
}

img{
  max-width: 100%;
}
a:hover img{
  opacity: 0.8;
}


.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;
}
a .img.img_fit img{
  transition: 0.2s all;
}
a:hover .img.img_fit img{
  transform: scale(1.05);
}


img[class*="wp-image-"],
img[class*="attachment-"]{
  max-width: 100%;
  height: auto;
}

i, em{
  font-style: normal;
}

/* 動画埋め込みのレスポンシブ対応 */
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%;
}

/* テーブル */
table{
  width: 100%;
  table-layout: fixed;
}
table th,
table td{
  padding: 10px 10px;
}

/* テーブル 汎用class */
.tbl{

}
.tbl th,
.tbl td{
  border: 1px solid #b2b2b2;
}
.tbl th{

}
.tbl td{

}


/* スクロール テーブル */
.js-scrollable{
  overflow-x: auto;
}
.js-scrollable table{
  min-width: 748px;
}

/* 指定デバイスのみで表示するclass */
@media (min-width:1200px){
  .md:not(.pc){
    display: none;
  }
  .tb:not(.pc){
    display: none;
  }
  .sp:not(.pc){
    display: none;
  }
}
@media (min-width:1024px) and (max-width:1200px){
  .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;
  }
  .md:not(.tb){
    display: none;
  }
  .sp:not(.tb){
    display: none;
  }
}
@media (max-width:767px){
  .pc:not(.sp){
    display: none;
  }
  .md:not(.sp){
    display: none;
  }
  .tb:not(.sp){
    display: none;
  }
}


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

/* **********************************
 *  コンテナ
 * ********************************* */
.wrapper{
  overflow-x: hidden;
}
.container{
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

@media (min-width: 576px){
  .container {
    width: 540px;
  }
}
@media (min-width: 768px){
  .container {
    width: 720px;
  }
}

@media (min-width: 992px){
  .container {
    width: 960px;
  }
}
@media (min-width: 1200px){
  .container {
    width: 1140px;
  }
}



.section{
  width: 100%;
  /*margin-bottom: 50px;*/
  /*padding: 30px 0;*/
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

/* 共通のfloat ボックスとして定義しておく */
.box_l{
  float: left;
}
.box_r{
  float: right;
}

/* ▼サンプル▼ 利用箇所毎に幅指定だけで済むように */
/*
.post_list .post_box .box_l {
    width: 70%;
}
.post_list .post_box .box_r {
    width: 25%;
}
*/

/* ▼サンプル▼ リストなどでアイキャッチがない場合のclass */
/*
.post_list .post_box .box_w{
  width: 100%;
}
*/

/*
 * 共通クラスとして定義しておく
 * リスト組みのテンプレート
 * 
 */

.listbox{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.listbox .item{
  display: block;
  width: 100%;
}
.listbox .item .img{
  position: relative;
  display: block;
  overflow: hidden;
}
.listbox .item .img:before{
  content: "";
  display: block;
  padding-top: 100%;
}
.listbox .item .img.img2x1:before{
  padding-top: 50%;
}
.listbox .item .img.img1x2:before{
  padding-top: 200%;
}
.listbox .item .img.img2x3:before{
  padding-top: 150%;
}
.listbox .item .img.img3x2:before{
  padding-top: 66.666666%;
}
.listbox .item .img.img3x4:before{
  padding-top: 133.333333%;
}
.listbox .item .img.img4x3:before{
  padding-top: 75%;
}
.listbox .item .img.img16x9:before{
  padding-top: 56.25%;
}
.listbox .item .img img{
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.listbox .item .title{

}
.listbox .item .date{

}
.listbox .item .txt{

}


/* ▼サンプル▼ 利用箇所ごとにマージンなど設定 */
/*
.post_content .col1,
.post_content .col2,
.post_content .col3{
  margin-bottom: 20px;
}
*/


/* **********************************
 *  ヘッダー
 * ********************************* */
header{
  padding: 10px 0;
}
header .hdr1{
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

/*ヘッダ-l*/
header .hdr1 .hdr_logo{
  line-height: 1;
}
header .hdr1 .hdr_logo p{
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.075em;
  margin-bottom: 9px;
}

/*ヘッダ-r*/
header .hdr1 .hdr_contact{
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
header .hdr1 .hdr_btn{
  padding: 0 5px;
}
header .hdr1 .hdr_btn a{
  display: block;
  letter-spacing: 0.075em;
  border: 1px solid;
  text-align: center;
  border-radius: 30px;
  padding: 2px;
}
header .hdr1 .hdr_btn .hdr_schedule,
header .hdr1 .hdr_btn .hdr_mail{
  font-weight: 500;
  font-size: 15px;
}
header .hdr1 .hdr_btn .hdr_schedule{
  background: #fff;
}
header .hdr1 .hdr_btn .hdr_tel,
header .hdr1 .hdr_btn .hdr_mail{
  color: #fff;
}
header .hdr1 .hdr_btn .hdr_tel{
  font-family: Outfit;
  font-weight: 400;
  background: #434343;
  font-size: 16px;
}
header .hdr1 .hdr_btn .hdr_mail{
  background: #000;
}
header .hdr1 .hdr_btn .hdr_tel:hover,
header .hdr1 .hdr_btn .hdr_mail:hover{
  background: #2196F3;
}
header .hdr1 .hdr_btn .hdr_schedule:before,
header .hdr1 .hdr_btn .hdr_tel:before,
header .hdr1 .hdr_btn .hdr_mail:before{
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}
header .hdr1 .hdr_btn .hdr_schedule:before{
  content: "\f073";
  padding: 0 5px 0 3px;
}
header .hdr1 .hdr_btn .hdr_tel:before{
  content: "\f879";
  padding: 0 10px 0 0px;
}
header .hdr1 .hdr_btn .hdr_mail:before{
  content: "\f0e0";
  padding: 0 6px 0 4px;
}

/*pg_header*/
.pg_header{
}
.pg_header .container{
  display: flex;
  justify-content: center;
  align-items: center;
}


/* **********************************
 *  グローバルナビ
 * ********************************* */
.gnav{
  /*background: #EEE;*/
  /*padding: 0 5px;*/
}
.gnav > ul{
  margin-right: -19px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-around;
  align-items: center;
  text-align: center;
  /*font-size: 18px;*/
}
.gnav > ul > li{
  margin-top: 15px;
  padding: 0 23.5px;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.075em;
  border-right: 1px solid;
  line-height: 1;
}
.gnav > ul > li:last-child{
  border-right: none;
}

.gnav li a{
  color: #333;
  text-decoration: none;
  display: block;
  white-space: nowrap;
}
.gnav li a:hover{
  text-decoration: none;
  color: #004f99;
}

.gnav .children,
.gnav .sub-menu{
  display: none;
  background: #aaa;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 1;
}
.gnav li:hover > .children,
.gnav li:hover > .sub-menu{
  display: block;
}

/*メインビジュアル*/
.mv{
  position: relative;
}
.mv:after{
  content: "";
  position: absolute;
  width: 100%;
  background: #f5f5f5;
}
.mv .swiper-wrapper {
  /* wrapperのサイズを調整 */
}

.mv .swiper-slide {
  /* スライドのサイズを調整、中身のテキスト配置調整、背景色 */
  color: #ffffff;
  width: 100%;
  height: 100%;
  text-align: center;
  line-height: 300px;
}
.mv .swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.mv .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{
  margin: 0 5px;
}
.mv .swiper-pagination-bullet{
  width: 78px;
  height: 8px;
  border-radius: 0;
}
.mv .swiper-pagination-bullet{
  background: #fff;
  opacity: 100%;
}
.mv .swiper-pagination-bullet-active{
  background: #fff;
  opacity: 50%;
}
.mv .mv_box .txt{
  position: absolute;
  z-index: 1;
}
.mv .mv_box .txt .title{
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.5;
}
.mv .mv_box .txt .text{
  margin-top: 9px;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.075em;
  line-height: 1.875;
}

@media only screen and (max-width:767px){

  .gnav{
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #FFF;
    padding: 0;
    z-index: 99999;
    overflow-y: scroll;

    /*transition: all 0.2s;*/
    transform: translateX(100%);
    padding: 15px;
  }
  .gnav.active{
    transform: translateX(0%);
  }
  .gnav > ul{
    display: block;
    width: 100%;
  }
  .gnav > ul > li{
    width: 100%;
    padding: 10px 0;
    border: 0;
    border-bottom: 1px dashed #CCC;
  }
  .gnav > ul > li + li,
  .gnav > ul > li:first-child,
  .gnav > ul > li:last-child{
    border-left: 0;
    border-right: 0;
  }
  .gnav > ul > li a{
    padding: 10px 0;
  }
  .gnav .children, .gnav .sub-menu{
    display: block;
    position: static;
    background: #EEE;
  }
}

@media(max-width:767px){
  header .hdr1{
    justify-content: center;
  }
  header .hdr1 .hdr_logo p{
    font-size: 9px;
    line-height: 1.5;
  }

  /*メインビジュアル*/
  .mv{
    height: 550px;
    margin-bottom: 70px
  }
  .mv:after{
    height: 100%;
    bottom: -70px;
  }
  .mv .mv_box .txt{
    left: 5%;
    bottom: 5%;
    width: 77%;
  }
  .mv .mv_box .txt .title{
    font-size: 20px;
  }
  .mv .img_fit:before{
    padding-top: 550px;
  }

  /*pg_header*/
  .pg_header .container{
    height: 150px
  }

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

  /*メインビジュアル*/
  .mv{
    height: 550px;
    margin-bottom: 70px
  }
  .mv:after{
    height: 345px;
    bottom: -70px;
  }
  .mv .swiper-horizontal>.swiper-pagination-bullets,
  .mv .swiper-pagination-bullets.swiper-pagination-horizontal,
  .mv .swiper-pagination-custom, .swiper-pagination-fraction{
    left: 15%;
    bottom: 10px;
    width: auto;
  }
  .mv .swiper-slide{
    padding-left: 90px;
  }
  .mv .mv_box .txt{
    left: 15%;
    bottom: 7%;
  }
  .mv .img_fit:before{
    padding-top: 550px;
  }
  .mv .mv_box .txt .title{
    font-size: 25px;
  }

  /*pg_header*/
  .pg_header .container{
    height: 180px
  }

}
@media(min-width: 768px) and (max-width: 1199px){
  .gnav{
    display: flex!important;
    position: fixed;
    left: 100%;
    z-index: 1000000000;
    height: 0;
    /* background: #47a3cd; */
    /* padding: 20px 15px; */
    font-size: 16px;
    overflow: hidden;
    border-radius: 15px;
    transition: all 1.8s;
    opacity: 0;
    background: #eaeaea;
    box-shadow: 0 0 4px 0px #666;
  }
  .gnav .gnav_box1{
    padding: 5px;
    text-align: center;
  }
  .gnav .gnav_box2{
    padding: 5px;
    text-align: center;
  }
  header .gnav_open,
  .gnav .gnav_box2 .gnav_open{
    font-size: 12px;
    line-height: 1;
    margin: 0;
    text-align: center;
    text-decoration: none;
  }
  header .gnav_open i,
  .gnav .gnav_box2 .gnav_open i{
    font-size: 28px;
    background: inherit;
    margin: 0;
  }
  header .gnav_open{
    margin-right: 0px;
    display: inline-block;
    vertical-align: middle;
  }
  .gnav .inner{

  }
  .gnav.tb.active{
    align-items: flex-start;
    left: 50%;
    right: inherit;
    top: 50%;
    height: auto;
    opacity: 1;
    transform: translate(-50%, -50%);
    background: #0090c0;
  }

  .gnav ul > li {
    width: 33.33%;
    padding: 70px 10px;
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 0.075em;
    text-align: center;
    color: #181818;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 150px;
    border-right: 1px solid #9f9f9f;
  }
  .gnav ul > li:hover{
    background: #cacaca;
    text-decoration: none;
  }
  .gnav ul > li a{
    width: 100%;
    height: 100%;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
  }

  .gnav {
    align-items: center;
    font-size: 20px;
    width: calc(100% - 60px);
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
  }
  .gnav.active,
  .gjs-dashed .gnav {
    top: 50%;
    left: 30px;
    right: auto;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
  }
  .gnav.active .inner ul{
    display: flex;
    flex-wrap: wrap;
    border-radius: 0;
    /*border: 1px solid #000;*/
    border-right: 1px solid #9f9f9f;
    border-left: 1px solid #9f9f9f;
    /*background: #eaeaea;*/
  }

  .gnav .gnav_box1{
    width: 65px;
    padding: 30px 0;
    /**/
  }
  .gnav_box1 .hdr_sns{
    margin: 0;
    display: block;
  }
  .gnav_box1 .hdr_sns + .hdr_sns{
    margin-top: 15px;
  }
  .gnav .gnav_box2{
    width: 65px;
    padding: 30px 0;
  }
  .gnav .inner{
    width: calc(100% - 65px - 65px);
  }
  .gnav .gnav_box2 .hdr_menu.gnav_open{
    font-size: 12px;
  }
  .gnav .gnav_item a{
    width: 100%;
    height: 100%;
    display: flex!important;
    align-items: center;
    justify-content: center;
  }
  .gnav ul > li:nth-last-child(n+4) {
    border-bottom: 1px solid #9f9f9f;
  }
  .gnav ul > li:nth-child(3n){
    border-right: 0;
  }

  .gnav .gnav_item:hover {
  }
  .gnav .gnav_item:hover p{
  }
  .gnav li:after{
    display: none;
  }
  .gnav li .submenu{
    display: none;
  }
}
@media(min-width:1024px){

  /*メインビジュアル*/
  .mv{
    height: 570px;
    margin-bottom: 100px
  }
  .mv:after{
    height: 385px;
    bottom: -100px;
  }
  .mv .swiper-horizontal>.swiper-pagination-bullets,
  .mv .swiper-pagination-bullets.swiper-pagination-horizontal,
  .mv .swiper-pagination-custom, .swiper-pagination-fraction{
    bottom: 20px;
    width: auto;
  }
  .mv .mv_box .txt{
    bottom: 7%;
  }
  .mv .img_fit:before{
    padding-top: 570px;
  }
  .mv .mv_box .txt .title{
    font-size: 40px;
  }

  /*pg_header*/
  .pg_header .container{
    height: 250px
  }

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

  /*ヘッダ-*/
  header{
    padding: 34px 23px 6px 29px;
  }

  /*ヘッダ-r*/
  header .hdr1 .hdr_btn.schedule{
    padding: 0 10px;
  }
  header .hdr1 .hdr_btn .hdr_schedule{
    width: 188px;
  }
  header .hdr1 .hdr_btn .hdr_tel{
    width: 185px;
  }
  header .hdr1 .hdr_btn .hdr_mail{
    width: 165px;
  }

  /*メインビジュアル*/
  .mv{
    height: 700px;
    margin-bottom: 110px;
  }
  .mv:after{
    height: 450px;
    bottom: -110px;
  }
  .mv .swiper-horizontal>.swiper-pagination-bullets,
  .mv .swiper-pagination-bullets.swiper-pagination-horizontal,
  .mv .swiper-pagination-custom, .swiper-pagination-fraction{
    left: 169px;
    bottom: 73px;
  }
  .mv .swiper-slide{
    padding-left: 118px;
  }
  .mv .img_fit:before{
    padding-top: 700px;
  }
  .mv .mv_box .txt{
    left: 174px;
    bottom: 143px;
  }

  /*pg_header*/
  .pg_header .container{
    height: 380px
  }

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

  /*メインビジュアル*/
  .mv{
    height: 830px;
    margin-bottom: 120px;
  }
  .mv:after{
    height: 490px;
    bottom: -120px;
  }
  .mv .img_fit:before{
    padding-top: 830px;
  }
  .mv .mv_box .txt .title{
    font-size: 56px;
  }

}


/* **********************************
 *  フッター
 * ********************************* */
footer{
  background: url(/img/footer/footer_haikei.jpg)no-repeat center center;
  background-size: cover;
}
footer .ftr1{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

/*box1の中身*/
footer .ftr_logo p{
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.075em;
}
footer .ftr_logo a img{
  margin-top: 7px;
}
footer .ftr_addr{
  margin-top: 42px;
  font-weight: 500;
  letter-spacing: 0.075em;
  line-height: 1.75;
}
footer .btn{
  margin-top: 25px;
  text-align: left;
}
footer .btn a{
  width: 285px;
  padding: 9px 0 5px;
  font-weight: 400;
  font-size: 14px;
}
footer .ftr_addr a:before,
footer .btn a:before{
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}
footer .ftr_addr a:before{
  content: "\f879";
  padding-right: 5px;
}
footer .btn a:before{
  content: "\f0e0";
  padding-right: 5px;
}

/*box2の中身*/
footer .box2{
  display: flex;
  flex-wrap: wrap;
}
footer .ftr_links li{
  font-weight: 400;
  letter-spacing: 0.075em;
  line-height: 1.8;
  text-indent: -1rem;
  padding-left: 1em;
}
footer .ftr_links li:before{
  content: "□";
  padding-right: 0px;
}

/*コピーライト*/
footer .copy{
  background: #000;
  color: #fff;
  text-align: center;
  font-size: 14px;
  letter-spacing: 0.075em;
  padding: 12px 0 10px;
}
footer .copy a{
  /*color: #111;*/
}


.footer_fix{
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #aec4e5;
  z-index: 10;
}
.footer_fix ul{
  /*display: table;*/
  width: 100%;
  font-size: 14px;

  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 3px;
}
.footer_fix ul li{
  /*display: table-cell;*/
  text-align: center;
  /*vertical-align: middle;*/
}
.footer_fix ul li.btn1{
  width: 36%;
}
.footer_fix ul li.btn2{
  width: 24%;
}
.footer_fix ul li a{
  display: block;
  padding: 10px;
  background: #4072b3;
  color: #FFF;
  text-decoration: none;
}

@media(max-width:767px){

  footer{
    margin-top: 50px;
    padding: 50px 0 0;
  }
  footer .box1{
    width: 100%;
  }
  footer .box2{
    display: none;
  }
  footer .ftr_addr{
    font-size: 16px;
  }
  footer .copy{
    margin-top: 50px;
  }
  .footer_fix{
    display: block;
  }

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

  footer{
    margin-top: 70px;
    padding: 50px 0 0;
  }
  footer .box1{
    width: 53%;
  }
  footer .box2{
    width: 46%;
  }
  footer .ftr_links{
    padding: 0 15px;
  }
  footer .ftr_links:nth-child(n+2){
    margin-top: -50px;
  }
  footer .ftr_addr,
  footer .ftr_links li{
    font-size: 16px;
  }
  footer .copy{
    margin-top: 50px;
  }

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

  footer{
    padding: 100px 0 0;
  }
  footer .ftr_links{
    padding: 0 15px;
  }
  footer .ftr_links:nth-child(n+2){
    margin-top: -3px;
  }
  footer .ftr_addr,
  footer .ftr_links li{
    font-size: 18px;
  }
  footer .copy{
    margin-top: 70px;
  }
}
@media(min-width:1200px){

  footer{
    margin-top: 120px;
    padding: 150px 0 0;
  }
  footer .ftr_links{
    margin-top: -5px;
    padding: 0 31px;
  }
  footer .copy{
    margin-top: 100px;
  }

}


/* 検索フォーム */
.pg_404{
  text-align: center;
}
.pg_404{

}

.search-form{
  padding: 20px 0;
}
.search-form .search-field{
  padding: 5px;
}
.search-form .search-submit{
  padding: 5px 10px;
}

.pg_image{

}
.pg_image .attachment{
  padding: 20px;
  background-color: #ececec;
  text-align: center;
}

/* 検索 */
.search_list{
  background: #eee;
  padding: 15px;
}
.search_list .item{

}
.search_list .item + .item{

}

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


.breadcrumb{
  display: flex;
  list-style: none;
  margin-top: 10px;
  font-size: 14px;
  overflow-x: auto;
  overflow-y: hidden;
}
.breadcrumb li{
  /*display: inline;*/
  white-space: nowrap;
}
.breadcrumb li + li{
  margin-left: 5px;
}
.breadcrumb li a{
  position: relative;
  padding-right: 15px;
}
.breadcrumb li a:after{
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 12px;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
/*.breadcrumb li:first-child a{
  padding-left: 15px;
}
.breadcrumb li:first-child a:before{
  content: "\f015";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 12px;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}*/

/* **********************************
 *  メイン
 * ********************************* */
.main{
}
body.home .main{
  padding-top: 0;
}

.tt1{
  font-weight: 700;
  letter-spacing: 0.1em;
}

.tt2{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.tt2.ver2{
  display: block;
  text-align: center;
}
.tt2 .en,
.tt2 .ja{
  font-family: "Noto Serif JP", serif;
  color: #313131;
  position: relative;
  z-index: 1;
  white-space: nowrap;
}
.tt2 .en{
  font-weight: 400;
  letter-spacing: 0.01em;
}
.tt2 .en:first-letter{
  color: #afaba6;
}
.tt2 .ja{
  text-align: right;
  font-weight: 500;
  letter-spacing: -0.03em;
  display: flex;
  align-items: center; /* 垂直中心 */
  flex-grow: 1; /* 横幅いっぱい */
}
.tt2.ver2 .ja{
  margin-top: -17px;
}
.tt2 .ja:before{
  content: "";
  display: block;
  width: 100%;
  border-top: 1px solid;
  background: #313131;
}
.tt2.ver2 .ja:before{
  display: none;
}
.tt3{

}
.tt3 span{

}
.tt4{

}
.tt4 span{

}
.tt5{

}
.tt5 span{

}

/* 詳しく見る サンプル */
.read_more{

}
.read_more a{
  display: block;
  width: 290px;
  max-width: 100%;
  margin: 0 auto;
  padding: 15px 0;
  border-radius: 10px;
  background: #00a7c6;
  color: #FFF;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-align: center;
  position: relative;
}
.read_more a:after{
  /*content: "\f054";*/
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  right: 15px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

/*汎用*/

/*ボタン*/
.btn{
  text-align: center;
}
.btn a{
  display: inline-block;
  border: 1px solid #313131;
  border-radius: 30px;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.075em;
  color: #fff;
  background: #313131;
  transition: 0.2s all;
  text-decoration: none;
  text-align: center;
  padding: 12px 0 11px;
  position: relative;
}
.btn a:after{
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  /*  transition: all 3s;*/
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
}
.btn a:hover{
  color: #313131;
  background: #fff;
}
.btn a:after:hover{
  right: 10px;
  transition-timing-function: ease;
  transition-duration: 2s;
  transition-property: width;
}

@media(max-width:767px){
  .breadcrumb{
    margin-bottom: 30px
  }

  .tt1{
    font-size: 20px;
  }
  .tt2 .en{
    width: 100%;
    font-size: 40px;
  }
  .tt2 .ja{
    font-size: 17px;
  }
  .tt2 .ja:before{
    width: 50px;
    margin: 0 15px 0 0;
  }
  .btn a{
    width: 100%;
  }

}
@media(min-width:768px){
  .breadcrumb{
    margin-bottom: 70px
  }

  .tt1{
    font-size: 25px;
  }
  .tt2 .en{
    font-size: 50px;
  }
  .tt2 .ja{
    font-size: 18px;
    justify-content: center; /* 水平中心 */
  }
  .tt2 .ja:before{
    margin: 0 20px;
  }

  .btn a{
    width: 350px;
  }
}
@media(min-width:1024px){
  .breadcrumb{
    margin-bottom: 100px
  }

  .tt1{
    font-size: 30px;
  }
  .tt2 .en{
    font-size: 60px;
  }
  .tt2 .ja{
    font-size: 19px;
  }
  .tt2 .ja:before{
    margin: 0 25px;
  }

}
@media(min-width:1200px){
  .breadcrumb{
    margin-bottom: 86px
  }
  .tt1{
    font-size: 38px;
  }
  .tt2 .en{
    font-size: 70px;
  }
  .tt2 .ja{
    margin-top: 21px;
    font-size: 20px;
  }
  .tt2 .ja:before{
    margin: 0 15px;
  }
}



/* **********************************
 *  Home
 * ********************************* */
.pg_home{
}
.pg_home .section#sec1{
  background: #e9e9e9;
}
.pg_home .section#sec2{
  background: url(/img/home/hwc_haikei.jpg)no-repeat center center;
}
.pg_home .section#sec3{
  background: url(/img/home/hn_haikei.jpg)no-repeat center center;
}
.pg_home .section#sec4{
  background: url(/img/home/hau_haikei.jpg)no-repeat center center;
}
.pg_home .section#sec2,
.pg_home .section#sec3,
.pg_home .section#sec4{
  background-size: cover;
}
.home_web_catalog_box .box .inner,
.home_addr_box .box{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home_web_catalog_box .box .inner,
.home_news{
  position: relative;
}
.home_web_catalog_box .box .inner:after,
.home_news:after{
  content: "";
  border: 1px solid;
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  pointer-events: none;
}

/*ピックアップ商品*/
.pick_up .swiper {
  width: 100%;
  padding-top: 50px;
  padding-bottom: 50px;
}
.swiper-wrapper {
  display: flex; /* Flexboxを使用して中央揃え */
  align-items: center;
}
.pick_up .swiper-slide .img_fit{
  background-position: center;
  background-size: cover;
}
.pick_up .swiper-slide img {
  display: block;
  width: 100%;
}
/*.pick_up .swiper-slide-prev{
  transform: translate3d(148px, 0px, 0px) rotateX(0deg) scale(0.65);
}
.pick_up .swiper-slide-next{
  transform: translate3d(-148px, 0px, 0px) rotateX(0deg) scale(0.65);
}*/

/*ウェブカタログ*/
.home_web_catalog_box .box:nth-child(odd) .inner{
  background: #e2e2e2;
}
.home_web_catalog_box .box:nth-child(even) .inner{
  background: #e8e4d9;
}
.home_web_catalog_box .img_box,
.home_web_catalog_box .tet_box{
}
.home_web_catalog_box .img_box{
  width: 189px;
}
.home_web_catalog_box .tet_box .title,
.home_web_catalog_box .tet_box .text,
.home_web_catalog_box .tet_box .btn{
  letter-spacing: 0.075em;
}
.home_web_catalog_box .tet_box .title{
  font-family: Outfit;
  font-weight: 400;
  line-height: 1;
}
.home_web_catalog_box .tet_box .text{
  font-weight: 500;
  font-size: 15px;
}
.home_web_catalog_box .tet_box .btn{
  margin-top: 24px;
}
.home_web_catalog_box .tet_box .btn a{
  width: 100%;
  padding: 5px 0 4px;
  font-weight: 500;
  font-size: 14px;
  border: 1px solid;
  border-radius: 30px;
  color: #313131;
  background: transparent;
}
.home_web_catalog_box .tet_box .btn a:after{
  right: 7px;
}
.home_web_catalog_box .tet_box .btn a:hover{
  color: #fff;
  background: #313131;
}

/*お知らせ*/
.home_news{
  background-color: rgba( 255,255,255,0.902);
}
.home.post_items{
  padding: 0 0;
}
.home.post_items .item:nth-child(n+2){
  margin-top: 16.75px;
}
.home.post_items .item a{
  /*background: #f0f0f0;*/
  padding-bottom: 20px;
  border-bottom: 1px solid #CCC;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.post_items .item a:hover{
  color: #e8e4d9;
}
.home.post_items .item .date,
.home.post_items .item .category span,
.home.post_items .item .title{
  letter-spacing: 0.075em;
}
.home.post_items .item .date{
  font-family: Outfit;
  font-weight: 400;
  font-size: 15px;
  color: #5a5a5a;
}
.home.post_items .item .category{
  padding: 8px 0 7px;
}
.home.post_items .item .category span{
  display: block;
  font-weight: 500;
  font-size: 14px;
  border: 1px solid;
  border-radius: 30px;
  text-align: center;
}
.home.post_items .item .title{
  font-weight: 500;
  font-size: 16px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.home_news .btn a{
  width: 285px;
}

/*会社案内*/
.home_addr_box .box:nth-child(n+2){
  margin-top: 40px;
}
.home_addr_box .txt_box .title,
.home_addr_box .txt_box .addr,
.home_addr_box  .txt_box .tel{
  font-weight: 500;
  letter-spacing: 0.075em;
}
.home_addr_box .txt_box .title{
  font-size: 18px;
}
.home_addr_box .txt_box .addr,
.home_addr_box  .txt_box .tel{
  font-size: 16px;
  line-height: 2;
  text-indent: -3.3rem;
  padding-left: 3.3rem;
}
.home_addr_box  .txt_box .tel{
  line-height: 1.5;
}
.home_addr_box .addr_data .map{
  margin-top: 18px;
}
.home_addr_box .addr_data iframe{
  height: 183px;
}
.home_about .btn{
  margin-top: 62px;
}

@media(max-width:767px){
  .pg_home .section#sec1,
  .pg_home .section#sec2,
  .pg_home .section#sec3,
  .pg_home .section#sec4{
    padding: 70px 0 80px;
  }
  .pg_home .section#sec4{
    margin-bottom: -50px;
  }
  .home_web_catalog_box .box .inner,
  .home_addr_box .box{
    justify-content: center;
  }
  .home_addr_box .box .img_box,
  .home_web_catalog_box .box .tet_box,
  .home_addr_box .box .addr_data{
    width: 100%;
  }
  .home_web_catalog_box,
  .home_addr_box{
    margin-top: 30px;
  }
  .home_web_catalog_box .box:nth-child(n+2),
  .home_addr_box .addr_data .box:nth-child(n+2){
    margin-top: 50px;
  }
  .home_web_catalog_box .tet_box{
    margin-top: 20px;
  }

  /*ピックアップ商品*/
  .pick_up .swiper{
    padding: 0 15px;
  }
  .pick_up .swiper-slide {
    width: 100%;
    height: 200px;
  }
  .pick_up .swiper-slide .img_fit:before{
    padding-top: 200px;
  }
  .pick_up .btn{
    margin-top: 30px;
  }

  /*ウェブカタログ*/
  .home_web_catalog_box .box .inner{
    padding: 40px 30px;
  }
  .home_web_catalog_box .box .img_fit:before{
    padding-top: 269px;
  }

  /*お知らせ*/
  .home_news{
    padding: 30px 20px 40px;
  }
  .home.post_items .item .date,
  .home.post_items .item .category{
    width: 90px;
  }
  .home.post_items .item .title{
    width: 100%;
  }
  .home.post_items .btn{
    margin-top: 30px;
  }
  .home.post_items .btn a{
    width: 100%;
  }

  /*会社案内*/
  .home_addr_box .addr_data{
    margin-top: 30px;
  }
  .home_addr_box .txt_box .addr,
  .home_addr_box .txt_box .tel{
    margin-top: 10px;
  }
  .home_addr_box .img_fit:before{
    padding-top: 186px;
  }

}
@media(min-width:768px){
  .pg_home .section#sec1,
  .pg_home .section#sec2,
  .pg_home .section#sec3,
  .pg_home .section#sec4{
    padding: 70px 0 80px;
  }
  .pg_home .section#sec4{
    margin-bottom: -70px;
  }

  .home_web_catalog_box .box:nth-child(odd) .img_box,
  .home_addr_box .box:nth-child(odd) .img_box{
    order: 1;
  }
  .home_web_catalog_box .box:nth-child(odd) .tet_box,
  .home_addr_box .box:nth-child(odd) .addr_data{
    order: 2;
  }
  .home_web_catalog_box .box:nth-child(even) .img_box,
  .home_addr_box .box:nth-child(even) .img_box{
    order: 2;
  }
  .home_web_catalog_box .box:nth-child(even) .tet_box,
  .home_addr_box .box:nth-child(even) .addr_data{
    order: 1;
  }

  /*ピックアップ商品*/
  .pick_up .swiper-slide {
    width: 287.3px;
    height: 200px;
  }
  .pick_up .swiper-slide .img_fit:before{
    padding-top: 450px;
  }
  .pick_up .btn{
    margin-top: 45px;
  }

  /*ウェブカタログ*/
  .home_web_catalog_box{
    margin-top: 43px;
  }
  .home_web_catalog_box .box:nth-child(n+2){
    margin-top: 64px;
  }
  .home_web_catalog_box .box .inner{
    padding: 31px 85px 30px;
  }
  .home_web_catalog_box .img_box .img_fit:before{
    padding-top: 269px;
  }
  .home_web_catalog_box .tet_box{
    width: 214px;
  }
  .home_web_catalog_box .tet_box .title{
    margin-top: 65px;
    font-size: 50px;
  }

  /*お知らせ*/
  .home_news{
    padding: 27px 50px 60px;
  }
  .home.post_items{
    margin-top: 28px;
  }
  .home.post_items .item .date{
    width: 100px;
  }
  .home.post_items .item .category{
    width: 100px;
  }
  .home.post_items .item .title{
    padding-left: 25px;
    width: calc(100% - 100px - 100px);
  }
  .home_news .btn{
    margin-top: 60px;
  }

  /*会社案内*/
  .home_addr_box{
    margin-top: 25px;
  }
  .home_addr_box .img_box{
    width: 42%;
  }
  .home_addr_box .img_fit:before{
    padding-top: 156px;
  }
  .home_addr_box .addr_data{
    width: 52%;
  }

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

  /*ピックアップ商品*/
  .pick_up .swiper-slide {
    width: 431px;
    height: 300px;
  }
  .pick_up .swiper-slide .img_fit:before{
    padding-top: 300px;
  }

  /*ウェブカタログ*/
  .home_web_catalog_box .box .inner{
    padding: 31px 200px 30px;
  }

  /*お知らせ*/
  .home_news{
    padding: 27px 160px 60px;
  }
  .home.post_items .item .date{
    width: 125px;
  }
  .home.post_items .item .category{
    width: 135px;
  }
  .home.post_items .item .title{
    padding-left: 25px;
    width: calc(100% - 125px - 135px);
  }

  /*会社案内*/
  .home_addr_box .img_box{
    width: 47%;
  }
  .home_addr_box .img_fit:before{
    padding-top: 235px;
  }
  .home_addr_box .addr_data{
    width: 45%;
  }

}
@media(min-width:1200px){
  .pg_home .section#sec1,
  .pg_home .section#sec2{
    padding: 89px 0 120px;
  }
  .pg_home .section#sec3{
    padding: 264px 0 276px;
  }
  .pg_home .section#sec4{
    margin-bottom: -120px;
    padding: 86px 0 120px;
  }

  /*ピックアップ商品*/
  .pick_up .swiper-slide {
    width: 862px;
    height: 600px;
  }
  .pick_up .swiper-slide .img_fit:before{
    padding-top: 595px;
  }

  /*ウェブカタログ*/
  .home_web_catalog_box .box .inner{
    padding: 31px 285px 30px;
  }

  /*会社案内*/
  .home_addr_box .box{
    align-items: center;
  }
  .home_addr_box .img_box{
    margin-top: 9px;
    width: 571px;
  }
  .home_addr_box .img_fit:before{
    padding-top: 306px;
  }
  .home_addr_box .addr_data{
    width: 444.02px;
  }

}



/* **********************************
 *  会社案内
 * ********************************* */
.pg_company{

}
.pg_company .section#sec1{

}
.pg_company .section#sec2{
  background: #e9e9e9;
}
.pg_company .section#sec4{
  background: url(/img/company/history_haikei.jpg)no-repeat center center;
  background-size: cover;
}
.pg_company .section#sec5{
  background: #f5f5f5;
}
.greetings,
.company_box .inner_box,
.company_img_box,
.brand_item_box,
.history_box .box{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

/*ご挨拶*/
.greetings .txt_box .text,
.greetings .txt_box .name{
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.075em;
  line-height: 1.875;
}
.greetings .txt_box .name{
  margin: 20px 8px;
  text-align: right;
}

/*会社概要*/
.company_box .title{
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.075em;
  background: #fff;
  padding: 13px 35px 14px;
}
.company_tbl tr{
  border-bottom: 1px solid #d9d9d9;
}
.company_img_box{
  justify-content: start;
  margin: 20px -15px 0;
}
.company_box .inner_box .map iframe{
  width: 350px;
  height: 213px;
}
.company_box .swiper-container {
  margin-top: 30px;
  width: 100%;
  height: 253px;
}
.company_box .swiper-slide img {
  width: 100%;
  height: auto;
  padding: 0 15px;
}
/* モーダルのスタイル */
.modal {
  display: none; /* デフォルトでは非表示 */
  position: fixed;
  z-index: 1000; /* モーダルを前面に表示 */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto; /* スクロール可能 */
  background-color: rgba(0, 0, 0, 0.8); /* 背景を半透明に */
}

.modal-content {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
}

#caption {
  text-align: center;
  color: #ccc;
  padding: 10px 0;
}

.close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

/*取り扱いブランド*/
.brand_item_box{
  margin: 30px -15px 0;
}

/*沿革*/
.history_box{
  position: relative;
  z-index: 1;
}
.history_box:before{
  content: "";
  border-left: 5px solid #bfbfbf;
  position: absolute;
  top: 5px;
}
.history_box .box{
  align-items: center;
}
.history_box .box_l{
  background: #fff;
  border-radius: 30px;
  text-align: center;
  padding: 9px 0 8px;
  position: relative;
  z-index: 1;
}
.history_box .box_r{
  line-height: 1.625;
}

/* お問い合わせ */
.contact_tel_box{
  text-align: center;
  background: #e2e2e2;
  position: relative;
}
.contact_tel_box:after{
  content: "";
  border: 1px solid;
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  pointer-events: none;
}
.contact_tel_box a,
.contact_tel_box p{
  font-weight: 400;
  letter-spacing: 0.075em;
}
.contact_tel_box a{
  font-family: Outfit;
}
.contact_tel_box p{
  margin-top: -3px;
  font-size: 18px;
}

/*お問い合わせ1 tel*/
.contact.title{
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.075em;
}

/* お問い合わせ2 コンタクトフォーム */
.mw_wp_form .kome{
  padding-left: 4px;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.075em;
}
.contact_form{
  margin-top: 10px;
  width: 100%;
}
.contact_form tr{
}
.contact_form th,
.contact_form td{
  font-weight: 500;
  letter-spacing: 0.075em;
  border-bottom: 1px solid #f5f5f5;
}
.contact_form th{
  background: #e9e9e9;
}
.contact_form td{
  background: #fff;
}
.contact_form th.vtop{
  vertical-align: top;
}
.contact_form th .require{
  display: inline-block;
  padding: 2px 19px 2px 0;
  color: #d70000;
  font-size: 14px;
  font-weight: normal;
  float: left;
}

/* お問い合わせ2 コンタクトフォーム 住所 */
.mw_wp_form_confirm .addr_auto{
  display: none;
}
.mw_wp_form_confirm .addr_auto_box .zipcode i{
  background: none;
  padding: 0;
  font-size: inherit;
}

.contact_form dl{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.contact_form dl + dl{
  margin-top: 10px;
}
.contact_form dl dt,
.contact_form dl dd{

}
.contact_form dl + p{
  margin-top: 5px;
  margin-bottom: 5px;
}

.contact_form dl.addr dt{
  width: 90px;
}
.contact_form dl.addr dd{
  width: calc(100% - 90px);

}
.contact_form dl.date {
  align-items: flex-start;
}
.contact_form dl.date dt{
  width: 90px;
}
.contact_form dl.date dt + dt{
  margin-left: 5px;
}
.contact_form dl.date dt select{
  width: 100%;
}
.contact_form dl.date dt.wide{
  width: 200px;
}
.contact_form dl.date dt.m,
.contact_form dl.date dt.d{
  width: 120px;
}
.contact_form dl.date dt.m select,
.contact_form dl.date dt.d select{
  width: calc(100% - 2em);
}
.contact_form dl.date dt.t{
  width: 150px;
}
.contact_form dl.date dt.t select{
  width: calc(100% - 5em);
}
.contact_form dl.addr dd{

}
.contact_form_addr{
  display: flex;
  align-items: center;
  margin: 0;
}
.contact_form_addr + .contact_form_addr{
  margin-top: 8px;
}
.contact_form_addr dt,
.contact_form_addr dd{
  margin: 0;
}
.contact_form_addr dt{
  width: 80px;
}
.contact_form_addr dd{
  width: calc(100% - 80px);
}

.contact_form_addr dd [name$="zipcode"]{
  width: 210px;
}
.contact_form_addr dd [name$="addr1"]{
  width: 210px;
}
.addr_auto_box{
  display: flex;
  align-items: center;
}
.addr_auto_box .zipcode{
  display: flex;
  flex-wrap: wrap;
}
.addr_auto_box .zipcode i{
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 15px;
  background: #cccccc;
  padding: 0 5px;
}
.addr_auto_box .zipcode input{

}
.addr_auto_box button{
  margin-left: 20px;
}
.contact_form td input ,
.contact_form td textarea ,
.contact_form td select {
  max-width: 100%;
  border: 0px solid #d6d8d8;
  border-radius: 0;
}
.contact_form td [name$="_zipcode"],
.contact_form td [name="zipcode"],
.contact_form td [name="addr1"]{
  width: 160px;
}
.contact_form td [name="zipcode"]{
  max-width: 115px;
}
.contact_form td [name="addr1"]{
  width: 220px;
}
.contact_form td [name="addr2"]{
}
.contact_form td .addr_auto{
  background: #f0f0f0;
  border: 1px solid #d6d8d8;
  margin-left: 10px;
  padding: 5px 5px;
}

/* お問い合わせ2 コンタクトフォーム お問い合わせ内容 */
.contact_form_msg{
  margin-top: 10px;
  margin-bottom: 10px;
}

/* お問い合わせ2 確認画面用 */
.contact_form_acceptance{
  margin-top: 17px;
}
.contact_form_acceptance a{
  color: #1a3e9b;
}
.contact_form_acceptance .mwform-checkbox-field.horizontal-item{
  margin-right: -9px;
}
.contact_form_acceptance{
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.075em;
  text-align: center;
  margin-top: 10px;
}
.contact_form_acceptance a{
  color: #1a3e9b;
}
.contact_form_acceptance .mwform-checkbox-field.horizontal-item{
  margin-right: 0;
}

/* お問い合わせ2 コンタクトフォーム - ボタン */
.contact_form_btns{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  padding: 55.5px 0 0;
}
.contact_form_btns input[type="submit"],
.contact_form_btns input[type="button"],
.contact_form_btns button{
  font-weight: 500;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.075em;
  background: #313131;
  color: #FFF;
  border: 1px solid #313131;
  border-radius: 30px;
  padding: 12px 0 10px;
  width: 350px;
  position: relative;
}
.contact_form_btns input[type="submit"][disabled],
.contact_form_btns input[type="button"][disabled]{
  background: #CCC;
}
.contact_form_btns button[type="reset"]{
  background: #CCC;
}
.contact_form_btns .ajax-loader{
  order: 10;
  width: 100% !important;
  margin-top: 10px !important;
  background-repeat: no-repeat;
  background-position: center;
}
.contact_form_btns input[type="submit"]:after,
.contact_form_btns input[type="button"]:after,
.contact_form_btns button:after{
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  /*  transition: all 3s;*/
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
}
.contact_form_btns input[type="submit"]:hover,
.contact_form_btns input[type="button"]:hover,
.contact_form_btns button:hover{
  color: #313131;
  background: #fff;
}
.contact_form_btns input[type="submit"]:after:hover,
.contact_form_btns input[type="button"]:after:hover,
.contact_form_btns button:after:hover{
  right: 10px;
  transition-timing-function: ease;
  transition-duration: 2s;
  transition-property: width;
}

/* お問い合わせ2 プライバシーポリシー */
.contact_form .privacy_box{
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.075em;
  line-height: 1.875;
  overflow: auto;
}
.contact_form .privacy_box .item:nth-child(n+2){
  margin-top: 1rem;
}

@media(max-width:767px){
  .pg_company .section#sec2,
  .pg_company .section#sec3,
  .pg_company .section#sec4{
    margin-top: 50px;
  }
  .pg_company .section#sec2,
  .pg_company .section#sec4,
  .pg_company .section#sec5{
    padding: 50px 0 50px;
  }
  .pg_company .section#sec4{
    padding-bottom: 100px;
  }
  .pg_company .section#sec5{
    margin-bottom: -50px;
  }
  .greetings,
  .company_box.box,
  .history_box{
    margin-top: 30px;
  }
  .company_img_box,
  .brand_item_box{
    display: none;
  }

  /*ご挨拶*/
  .greetings .img,
  .greetings .txt_box{
    width: 100%;
  }
  .greetings .img .img_fit:before{
    padding-top: 200px;
  }
  .greetings .txt_box{
    margin-top: 30px;
  }

  /*会社概要*/
  .company_box .title{
    margin-top: 50px;
    padding-left: 20px;
  }
  .company_tbl th,
  .company_tbl td{
    padding: 14.5px 0 12px;
  }
  .company_tbl th{
    width: 110px;
  }
  .company_box .inner_box .map{
    margin-top: 30px;
    width: 100%;
  }
  .company_box .img_box .img{
    width: 100%;
    padding: 0 15px;
  }
  .company_box .img_box .img .img_fit:before{
    padding-top: 205px;
  }

  /*取り扱いブランド*/
  .brand_item_box .item{
    width: 100%;
    padding: 0 15px;
  }
  .brand_item_box .item .img_fit:before{
    padding-top: 123px;
  }

  /*沿革*/
  .history_box:before{
    left: 17.3%;
    bottom: -24px;
  }
  .history_box .box:nth-child(n+2){
    margin-top: 42.4px;
  }
  .history_box .box_l{
    width: 120px;
  }
  .history_box .box_r{
    width: calc(100% - 25px - 120px);
  }

  /* お問い合わせ */
  .contact_tel_box{
    padding: 40px 0;
  }
  .contact_tel_box a{
    font-size: 27px;
  }
  .contact_tel_box p span{
    display: none;
  }
  .contact.title{
    margin-top: 20px;
  }
  .contact_form th,
  .contact_form td{
    display: block;
    padding: 13px 15px 12px;
  }
  .contact_form td [name="addr2"]{
    font-size: 12px;
  }

  /* お問い合わせ2 コンタクトフォーム */
  .contact_form dl dt, .contact_form dl dd{
    width: 100%;
  }
  .contact_form .privacy_box{
    height: 200px;
  }
  .contact_form_acceptance{
    text-align: justify;
  }

}
@media(min-width:768px){
  .pg_company .section#sec2,
  .pg_company .section#sec3,
  .pg_company .section#sec4{
    margin-top: 70px;
  }
  .pg_company .section#sec2,
  .pg_company .section#sec4,
  .pg_company .section#sec5{
    padding: 70px 0 70px;
  }
  .pg_company .section#sec4{
    padding-bottom: 100px;
  }
  .pg_company .section#sec5{
    margin-bottom: -70px;
  }

  /*ご挨拶*/
  .greetings{
    margin-top: 48px;
  }
  .greetings .img{
    width: 40%;
  }
  .greetings .img .img_fit:before{
    padding-top: 236px;
  }
  .greetings .txt_box{
    margin-top: -8px;
    width: calc(100% - 50px - 40%)
  }

  /*会社概要*/
  .company_box.box1{
    margin-top: 47px;
  }
  .company_box .title{
    margin-top: 67px;
  }
  .company_box .inner_box {
    margin-top: 18px;
    align-items: flex-start;
  }
  .company_tbl tr{
    padding-bottom: 15px;
  }
  .company_tbl th,
  .company_tbl td{
    padding: 14.5px 0 12px;
  }
  .company_tbl th{
    width: 150px;
  }
  .company_box .inner_box .company_tbl{
    width: 65%;
  }
  .company_box .inner_box .map{
    width: calc(100% - 30px - 65%);
  }
  .company_box .swiper-container{
    display: none;
  }
  .company_box .company_img_box .img{
    width: 25%;
    padding: 0 15px;
  }
  .company_box .company_img_box .img .img_fit:before{
    padding-top: 120px;
  }
  /* モーダルの表示設定 */
  .modal-content {
    width: 100%; /* スマホ画面でのモーダルの幅を広げる */
  }

  /*取り扱いブランド*/
  .brand_item_box .item{
    width: 25%;
    padding: 0 15px;
  }
  .brand_item_box .item .img_fit:before{
    padding-top: 71px;
  }

  /*沿革*/
  .history_box .box_l{
    width: 255px;
  }
  .history_box .box_r{
    width: calc(100% - 60px - 255px);
  }

  /*沿革*/
  .history_box{
    margin-top: 50px;
  }
  .history_box:before{
    left: 11.3%;
    bottom: -24px;
  }
  .history_box .box:nth-child(n+2){
    margin-top: 42.4px;
  }
  .history_box .box_l{
    width: 160px;
  }
  .history_box .box_r{
    width: calc(100% - 60px - 160px);
  }

  /* お問い合わせ */
  .contact_tel_box{
    margin-top: 31px;
    padding: 40px 0 65px;
  }
  .contact_tel_box a{
    font-size: 50px;
  }

  /*お問い合わせ1 tel*/
  .contact.title{
    margin-top: 64px;
    font-size: 24px;
  }

  /* お問い合わせ2 コンタクトフォーム */
  .mw_wp_form{
    margin-top: 47px;
  }
  .contact_form th,
  .contact_form td{
    padding: 13px 20px 12px;
  }
  .contact_form th{
    width: 225px;
  }
  .contact_form td textarea{
    height: 169px;
  }
  .contact_form .privacy_box{
    margin-right: -20px;
    padding-right: 20px;
  }

  /* お問い合わせ2 コンタクトフォーム */
  .contact_form .privacy_box{
    height: 235px;
  }

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

  /*ご挨拶*/
  .greetings .img{
    width: 45%;
  }
  .greetings .img .img_fit:before{
    padding-top: 358px;
  }
  .greetings .txt_box{
    width: calc(100% - 75px - 45%)
  }

  /*会社概要*/
  .company_box .inner_box .company_tbl{
    width: 55%;
  }
  .company_box .inner_box .map{
    width: calc(100% - 30px - 55%);
  }
  .company_img_box{
    margin-top: 37px
  }
  .company_box .company_img_box .img .img_fit:before{
    padding-top: 169px;
  }

  /*取り扱いブランド*/
  .brand_item_box .item .img_fit:before{
    padding-top: 99px;
  }

  /*沿革*/
  .history_box .box_l{
    width: 210px;
  }
  .history_box .box_r{
    width: calc(100% - 60px - 210px);
  }

  /* お問い合わせ2 コンタクトフォーム */
  .contact_form th,
  .contact_form td{
    padding: 13px 0 12px 35px;
  }
  .contact_form th{
    width: 285px;
  }
  .contact_form td textarea{
    max-width: 95%;
  }
  .contact_form .privacy_box{
    margin-left: -17px;
    margin-right: 0;
    padding-right: 44px;
  }

}
@media(min-width:1200px){
  .pg_company .section#sec2{
    margin-top: 124px;
    padding: 87px 0 152px;
  }
  .pg_company .section#sec3{
    margin-top: 84px;
  }
  .pg_company .section#sec4{
    margin-top: 153px;
    padding: 88px 0 137px;
  }
  .pg_company .section#sec5{
    margin-bottom: -120px;
    padding: 118px 0 202px;
  }

  /*ご挨拶*/
  .greetings .img{
    width: 445px;
  }
  .greetings .img .img_fit:before{
    padding-top: 380px;
  }
  .greetings .txt_box{
    width: calc(100% - 94px - 445px)
  }

  /*会社概要*/
  .company_tbl th{
    width: 190px;
  }
  .company_box .inner_box .company_tbl{
    width: 730px;
  }
  .company_box .inner_box .map{
    width: calc(100% - 30px - 730px);
  }
  .company_box .company_img_box .img .img_fit:before{
    padding-top: 205px;
  }

  /*取り扱いブランド*/
  .brand_item_box .item .img_fit:before{
    padding-top: 123px;
  }

  /*沿革*/
  .history_box .box_l{
    width: 255px;
  }
  .history_box .box_r{
    width: calc(100% - 60px - 255px);
  }

}



/* **********************************
 *  ウェブカタログ
 * ********************************* */
.pg_webcatalog{

}
.pg_webcatalog .section#sec1{

}
.webcatalog .post_items{
  margin: 32px -15px 0;
  display: flex;
  flex-wrap: wrap;
}
.webcatalog .post_items.post2{
  margin-top: 3px;
}
.webcatalog .post_items .item .title{
  margin-top: 8px;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.1em;
  width: 100%;
  text-align: center;
}
.webcatalog .post_items.post1 .item:nth-child(n+2),
.webcatalog .post_items.post2 .item:first-child{
  display: none;
}

@media(max-width:767px){

  .webcatalog .post_items .item{
    width: 50%;
    padding: 0 15px;
  }
  .webcatalog .post_items .item:nth-child(n+4){
    margin-top: 30px;
  }
  .webcatalog .post_items .item .img_fit:before{
    padding-top: 220px;
  }
}
@media(min-width:768px){

  .webcatalog .post_items .item{
    width: 25%;
    padding: 0 15px;
  }
  .webcatalog .post_items .item:nth-child(n+6){
    margin-top: 30px;
  }
  .webcatalog .post_items .item .img_fit:before{
    padding-top: 200px;
  }

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

  .webcatalog .post_items .item .img_fit:before{
    padding-top: 300px;
  }

}
@media(min-width:1200px){
  .pg_webcatalog .section#sec2{
    margin-top: 108px;
  }

  .webcatalog .post_items .item .img_fit:before{
    padding-top: 361px;
  }

}



/* **********************************
 *  トピックス
 * ********************************* */
.pg_topics{
}
.pg_topics .section#sec1{

}
.pg_topics .section#sec2{

}
.pg_topics .section#sec3{

}
.topics .img_fit{
  overflow: hidden;
}
.topics .img_fit img{
  transition: all 0.2s;
}
.topics .img_fit:hover img{
  transform: scale(1.1);
}

/*カテゴリ*/
.cate_btn_items{
  margin: 0 -15px;
  display: flex;
}
.cate_btn_items li{
  width: 50%;
  list-style: none;
}
.cate_btn_items li a{
  display: block;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.075em;
  padding: 12px 0 11px;
  text-align: center;
  transition: all 0.2s;
  border-radius: 30px;
  color: #181818;
  background: #dbdada;
}
.cate_btn_items li a:hover,
.cate_btn_items .on a{
  color: #fff;
  background: #313131;
}

/* 記事リスト */
list-style-type{
  display: none;
}
.topics .post_items{
  margin: 0 -15px;
  display: flex;
  flex-wrap: wrap;
}
.topics .post_items .item a{
}
.topics .post_items .item a:hover{
  color: #e8e4d9;
}
.topics .post_items .img_fit:before{
  padding-top: 74%;
}
.post_items .item .date,
.post_items .item .category span,
.post_items .item .title{
  letter-spacing: 0.075em;
}
.post_items .item .date{
  margin-top: 11px;
  font-weight: 500;
  font-size: 14px;
}
.post_items .item .title{
  font-weight: 500;
  font-size: 16px;
}


/* 詳細　※形だけ */
.post_gallery{
  background: #fff;
}
.post_gallery_main.img_fit:before{
  padding-top: 63%;
}
.post_gallery_sub{
    margin-top: 10px;
}
.post_gallery_sub.img_fit:before{
    padding-top: 62%;
}
.pg_topics　.category,
.pg_topics　.date,
.pg_topics　.title,
.pg_topics　.topics_tbl,
.pg_topics　.setumei{
  font-weight: 500;
  letter-spacing: 0.075em;
}
.pg_topics　.category{
  color: #fff;
  background: #313131;
  border-radius: 30px;
}
.pg_topics　.category,
.pg_topics　.date,
.pg_topics　.title{
  font-weight: 500;
}
.pg_topics　.title{
  font-weight: 700;
  font-size: 20px;
}
.topics_tbl,
.setumei{
  font-size: 16px;
}
.setumei{
  line-height: 2;
}

/*ここから本番で使う詳細*/
.post_items .item.single_item{
  display: flex;
  flex-wrap: wrap;
  border-top: 15px solid #d3d3d3;
  border-bottom: 1px solid #d3d3d3;
  border-left: 1px solid #d3d3d3;
  border-right: 1px solid #d3d3d3;
}
.post_items .item.single_item:after{
  display: none;
}
.post_items .item.single_item .meta{
  display: flex;
  align-items: center;
  width: 100%;
}
.post_items .item.single_item .title{
  width: 100%;
  font-size: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid #CCC;
}
.post_items .item.single_item .content{
  width: 100%;
  margin-top: 20px;
  padding-bottom: 20px;
}
.post_items .item.single_item .content *{
  margin-bottom: 1em;
}
.post_items .item.single_item .content h1,
.post_items .item.single_item .content h2,
.post_items .item.single_item .content h3,
.post_items .item.single_item .content h4,
.post_items .item.single_item .content h5,
.post_items .item.single_item .content h6{
  margin-bottom: 0.5em;
}
.post_items .item.single_item .content a{
  color: #2196F3;
}

.post_items .post_content{
  margin-top: 30px;
}

/* ページ送り(一覧) */
.pagination{
  text-align: center;
  margin-top: 30px;
}
.pagination .nav-links{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;

}
.pagination .page-numbers{
  align-self: stretch;
  border: 1px solid #c0c0c0;
  padding: 5px 10px;
  margin: 4px 4px;
  color: #1e1e1e;
  text-decoration: none;
}
.pagination .page-numbers.current,
.pagination .page-numbers:hover{
  background: #e5e5e5;
}
.pagination .page-numbers.next:after{
  content: "\f101";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-left: 10px;
}
.pagination .page-numbers.prev:before{
  content: "\f100";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 10px;
}

/* ページ送り(詳細) */
.pagination .nav-posts{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.pagination .nav-posts .page-next,
.pagination .nav-posts .page-prev{
  min-width: 200px;
}
.pagination .nav-posts .page-next a,
.pagination .nav-posts .page-prev a{
  display: block;
  border: 1px solid #c0c0c0;
  padding: 10px 50px;
  position: relative;
}
.pagination .nav-posts .page-next a:before,
.pagination .nav-posts .page-prev a:after{
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.pagination .nav-posts .page-next a:before{
  content: "\f053";
  left: 10px;
}
.pagination .nav-posts .page-prev a:after{
  content: "\f054";
  right: 10px;
}
.pagination .nav-posts .page-archive a{
  display: block;
  background: #bcbcbc;
  color: #ffffff;
  padding: 10px 100px;
}

@media(max-width:767px){

  /*カテゴリ*/
  .cate_btn_items li{
    padding: 0 5px;
  }

  /* 記事リスト */
  .topics .post_items{
    margin-top: 50px;
  }
  .topics .post_items .item{
    width: 50%;
    padding: 0 15px;
  }
  .topics .post_items .item:nth-child(n+3){
    margin-top: 30px;
  }

  /* 詳細 */
  .post_gallery{
    padding: 40px 15px 25px;
  }
}
@media(min-width:768px){

  /*カテゴリ*/
  .cate_btn_items li{
    padding: 0 15px;
  }

  /* 記事リスト */
  .topics .post_items{
    margin-top: 50px;
  }
  .topics .post_items .item{
    width: 33.33%;
    padding: 0 15px;
  }
  .topics .post_items .item:nth-child(n+4){
    margin-top: 57px;
  }

  /* 詳細 */
  .post_gallery{
    padding: 51px 30px 50px;
  }

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

  /* 記事リスト */
  .topics .post_items{
    margin-top: 95px;
  }

  /* 詳細 */
  .post_gallery{
    padding: 51px 50px 50px;
  }

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

  /* 記事リスト */
  .topics .post_items{
    margin-top: 115px;
  }

  /* 詳細 */
  .post_gallery{
    padding: 51px 94px 50px;
  }

}




/* **********************************
 *  
 * ********************************* */
.pg_xxxx{

}
.pg_xxxx .section#sec1{

}
.pg_xxxx .section#sec2{

}
.pg_xxxx .section#sec3{

}

@media(max-width:767px){

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

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

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

}
