@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;
  line-height: 2;
  color: #181818;

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

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

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

.outfit{
  font-family: 'Outfit', sans-serif;
}

a{
  color: inherit;
  text-decoration: none;
  transition: 0.2s;
}
a:hover{
  opacity: 0.7;
  text-decoration: none;
}

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

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

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

.section{
  width: 100%;
  /*margin-bottom: 50px;*/
  /*padding: 30px 0;*/
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.pg_header{
  margin-bottom: 11px;
  background: #0d0d0d;
  border-bottom: 3px solid #f3592b;
}
.pg_header .container{
}
.pg_header .ttl{
  font-size: 22px;
  padding: 12px 0;
  color: #fff;
  letter-spacing: 0.05em;
  text-align: center;
  font-weight: 400;
  font-family: 'Outfit', sans-serif;
}

@media(max-width:767px){
}
@media(min-width:768px){
  .container{
    max-width: 700px;
  }
  .pg_header .ttl{
    font-size: 38px;
  }
}
@media(min-width:1024px){
  .container{
    max-width: 960px;
  }
}
@media(min-width:1200px){
  .container{
    max-width: 1140px;
  }
}

/* 共通の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 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
}
.hdr_logo h1 a{
  line-height: 1;
  display: inline-flex;
}

/* **********************************
 *  グローバルナビ
 * ********************************* */
.gnav{
}
.gnav > ul{
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  text-align: center;
  /*font-size: 18px;*/
}
.gnav > ul > li{
  width: 100%;
  position: relative;
}
.gnav > ul > li + li{
  margin-left: 1em;
}
.gnav li a {
  font-size: 16px;
  display: block;
  letter-spacing: 0.085em;
}
.gnav > ul:hover > li > a{
  opacity: 0.5;
}
.gnav > ul:hover > li > a:hover{
  opacity: 1;
}

.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_slider .img_fit:before{
  padding-top: 45vh;
}
.mv_slider.slick-dotted.slick-slider{
  margin-bottom: 0;
}
.mv_scroll{
  height: 100px;
  font-size: 13px;
  padding-top: 10px;
  padding-left: 2px;
  position: absolute;
  left: 15px;
  bottom: 3px;
  border-left: 1px solid #f3592b;
  letter-spacing: 0.075em;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  z-index: 1;
  color: #fff;
}
.mv .cs{
  position: absolute;
  right: 17px;
  bottom: 48px;
}
.mv .cs:hover{
  opacity: 1;
  filter: brightness(1.1);
}
.slider_meta{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  color: #fff;
}
.slider_meta .slick-dots{
  bottom: 10px;
  position: inherit;
}
.slider_meta .slick-dots li{
  width: 23.5px;
  margin: 0;
}
.slider_meta .slick-dots li button{
  padding: 0;
}
.slider_meta .slick-dots li button:before{
  font-size: 12px;
  content: "●";
  color: #fff;
  opacity: 1;
  position: inherit;
}
.slider_meta .slick-dots li.slick-active button:before {
  opacity: 1;
  color: #f3592b;
}
.slider_meta .slick-prev,
.slider_meta .slick-prev:before,
.slider_meta .slick-next,
.slider_meta .slick-next:before{
  position: inherit;
  left: inherit;
  top: inherit;
  right: inherit;
  bottom: inherit;
  transform: none;
}
.slider_meta .slick-arrow {
  margin-top: 6px;
  font-size: 11px;
  cursor: pointer;
}
.slider_arrow_prev{
  margin-right: 5px;
}
.slider_arrow_next{
  margin-left: 5px;
}
.slider_dots {
  margin-top: 2px;
}
.img_fit{
  position: relative;
}
.img_fit:before{
  padding-top: 100%;
  display: block;
  content: "";
}
.img_fit img{
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
}

@media(max-width:767px){
  header{
    justify-content: center;
    line-height: 1;
  }
  .hdr_form {
    display: none;
  }
  .hdr_logo img{
    width: 25px;
  }

  .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;
  }
  .gnav > ul > li{
    width: 100%;
    padding: 5px 0;
    border: 0;
  }
  .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 > ul > li + li {
    margin-left: 0;
  }

  .mv .cs{
    right: 10px;
    bottom: 35px;
  }
  .mv .cs img{
    width: 140px;
  }
}
@media(min-width:768px){
  body{
    margin-top: 100px;
  }
  header {
    width: 100%;
    padding: 0 0 0 50px;
    justify-content: space-between;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 5;
  }
  .hdr_contact{
    display: flex;
    align-items: center;
  }
  .hdr_form {
    width: 126px;
    height: 100px;
    margin-left: 30px;
    background: #f3592b;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    letter-spacing: 0.075em;
    line-height: 1.4;
  }
  .hdr_form:before{
    font-size: 18px;
    content: "\f0e0";
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
  }
  .hdr_form:hover{
    opacity: 1;
    background: #dd5831;
  }
  .gnav > ul > li + li{
    margin-left: 2em;
  }
  .gnav li a {
    font-size: 18px;
  }
  .gnav #menu-item-176{
    display: none;
  }

  .mv_slider .img_fit:before{
    padding-top: 50vh;
  }
  .mv_scroll{
    height: 130px;
    left: 100px;
  }
  .mv .cs img{
    width: 200px;
  }
}
@media(min-width:1024px){
  header {
    padding-left: 100px;
  }
  .gnav > ul > li + li{
    margin-left: 3.7em;
  }
  .hdr_form {
    margin-left: 50px;
  }

  .mv_slider .img_fit:before{
    padding-top: 80.3vh;
  }
  .mv_scroll{
    left: 160px;
  }
  .mv .cs img{
    width: auto;
  }
}
@media(min-width:1200px){
  .mv_slider .img_fit{
    max-height: 820px;
  }
}


/* **********************************
 *  フッター
 * ********************************* */
footer{
  margin-top: 80px;
}

footer .ftr1{
}
.ftr_contact .inner{
  font-size: 20px;
  padding: 25px 0 15px;
  letter-spacing: 0.2em;
  display: block;
  border: 1px solid #181818;
  position: relative;
  text-align: center;
}
.ftr_contact a.inner:hover{
  opacity: 1;
  background: #181818;
  color: #fff;
}
.ftr_contact .item:first-child .inner{
  letter-spacing: 0.075em;
}
.ftr_contact .inner:before{
  content: "";
  border-style: solid;
  border-color: transparent transparent #181818 transparent;
  border-width: 0px 0px 12px 12px;
  position: absolute;
  right: 5px;
  bottom: 5px;
}
.ftr_contact .inner:after{
  content: "";
  width: calc(100% - 10px);
  height: 1px;
  background: #181818;
  position: absolute;
  left: 5px;
  bottom: 5px;
}
.ftr_contact a.inner:hover:before{
  border-color: transparent transparent #fff transparent;
}
.ftr_contact a.inner:hover:after{
  background: #fff;
}
.ftr_contact .ttl{
  width: 160px;
  font-size: 18px;
  margin-bottom: -14px;
  padding: 4px 15px;
  letter-spacing: 0.075em;
  line-height: 1.2;
  background: #181818;
  color: #fff;
  font-weight: 400;
  position: relative;
  z-index: 1;
}
.ftr_contact .ttl:first-letter{
  color: #f3592b;
}

footer .ftr_links{
  padding: 35px 0;
  margin-top: 80px;
  display: flex;
  justify-content: center;
}
footer .ftr_links li{
  padding: 0 35px;
  font-size: 18px;
  text-align: center;
  line-height: 1;
  color: #fff;
  letter-spacing: 0.2em;
}
footer .ftr_links li + li{
  border-left: 1px solid #fff;
}

footer .ftr2{
  background: #181818;
  color: #fff;
}
footer .copy{
  text-align: center;
  font-size: 14px;
  padding: 8px 0;
  letter-spacing: 0.075em;
  border-top: 1px solid #f3592b;
}
footer .copy a{
  /*color: #111;*/
}


.footer_fix{
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #494949;
  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;
}
.footer_fix ul li{
  /*display: table-cell;*/
  text-align: center;
  /*vertical-align: middle;*/
}
.footer_fix ul li.btn1{
  width: 38%;
  border-right: 1px solid #373737;
}
.footer_fix ul li.btn2{
  width: 24%;
}
.footer_fix ul li a{
  display: block;
  padding: 10px 5px 3px;
  background: #494949;
  color: #FFF;
  text-decoration: none;
}
.footer_fix ul li a i{
  font-size: 22px;
  display: block;
}
.footer_fix ul li.btn2 a{
  background: #949494;
}
.footer_fix ul li.contact a{
  background: #f3592b;
}

/* ページTOPに戻る */
.pagetop{
  display: none;
  position: fixed;
  right: 10px;
  bottom: 100px;
}
.pagetop a{
  display: block;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.075em;
  text-align: center;
  text-shadow: 1px 1px 0 #fff,
    -1px -1px 0 #fff,
    1px -1px 0 #fff,
    -1px 1px 0 #fff,
    0 1px 0 #fff,
    1px 0 0 #fff,
    0 -1px 0 #fff,
    -1px 0 0 #fff;
}
.pagetop a:before{
  margin: 0 auto 1px;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent transparent #f3592b transparent;
  border-width: 0px 7.5px 13px 7.5px;
  display: block;
}

@media(max-width:767px){
  body{
    padding-bottom: 60px;
  }
  footer .ftr_links{
    display: none;
  }
  .ftr_contact .item + .item{
    margin-top: 20px;
  }
  footer .copy{
    margin-top: 50px;
  }

  .footer_fix{
    display: flex;
  }
}
@media(min-width:768px){
  footer{
    margin-top: 167px;
  }
  .ftr_contact{
    margin: 46px -15px 0;
    display: flex;
  }
  .ftr_contact .item{
    width: 33.33%;
    padding: 0 15px;
  }
  footer .ftr_links{
    padding: 48px 0;
    margin-top: 150px;
  }
  .pagetop{
    right: 35px;
  }
}
@media(min-width:1024px){
  footer .ftr_links li{
    padding: 0 54.5px;
  }
}
@media(min-width:1200px){
}


/* 検索フォーム */
.pg_404{
  text-align: center;
  letter-spacing: 0.075em;
}
.pg_404 .link_1{
  margin-top: 50px;
}

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


/* 記事リスト */
.post_items{
  padding: 0 0;
}
.post_items .item{
  /*background: #f0f0f0;*/
  padding: 10px;
  border-top: 1px solid #CCC;
  display: flex;
  align-items: center;
  position: relative;
}
.post_items .item:last-child{
  border-bottom: 1px solid #CCC;
}
.post_items .item .img{

}
.post_items .item .date{
  width: 130px;
  font-size: 15px;
  color: #5a5a5a;
}
.post_items .item .category{
  width: 150px;
  padding: 0 10px;

}
.post_items .item .category span{
  display: block;
  background: #e5e5e5;
  color: #6c6969;
  padding: 3px;
  margin: 2px;
  text-align: center;
}
.post_items .item .title{
  font-weight: 500;
  width: calc(100% - 130px - 150px);
  /*width: -moz-available;
  width: -webkit-fill-available;
  width: available;*/
}
.post_items .item .title a{
  display: block;
  position: relative;
  padding-right: 1em;
}
.post_items .item:after{
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  right: 5px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.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: 50px;
}
.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: 0 13px;
  margin: 4px 4px;
  color: #1e1e1e;
  text-decoration: none;
}
.pagination .page-numbers.current,
.pagination .page-numbers:hover{
  background: #f3592b;
  border-color: #f3592b;
  color: #fff;
}
.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{
  width: 65px;
}
.pagination .nav-posts .page-next a,
.pagination .nav-posts .page-prev a{
  height: 56px;
  display: block;
  border: 1px solid #181818;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.pagination .nav-posts .page-next a:hover,
.pagination .nav-posts .page-prev a:hover{
  background: #DDD;
  opacity: 1;
}
.pagination .nav-posts .page-next a:before,
.pagination .nav-posts .page-prev a:after{
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

.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{
  max-width: 350px;
  width: 50%;
}
.pagination .nav-posts .page-archive a{
  font-size: 14px;
  display: block;
  background: #f3592b;
  color: #ffffff;
  padding: 14px;
  letter-spacing: 0.075em;
  font-weight: 700;
}
.pagination .nav-posts .page-archive a:hover{
  opacity: 1;
  background: #c44823;
}

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

}
.search_list .item + .item{

}


/* サイトマップ */
.sitemap_items{
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
}
.sitemap_items .item{
  width: 25%;
  padding: 0 10px;
  margin-bottom: 20px;
}
.sitemap_items .item h4{
  border: 1px solid #d3d3d3;
  border-bottom: 5px solid #d3d3d3;
}
.sitemap_items .item h4 a{
  display: block;
  padding: 20px 15px;
}
.sitemap_items .item ul{
}
.sitemap_items .item ul li{
  border-bottom: 1px dashed #d3d3d3;
  position: relative;
}
.sitemap_items .item ul li:before{
  content: "\f111";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 10px;
  position: absolute;
  top: 50%;
  left: 5px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.sitemap_items .item ul li a{
  display: block;
  padding: 5px 10px 5px 20px;
}


/* プライバシーポリシー */
.privacy_tt{
  text-align: center;
  margin-bottom: 30px;
}
.privacy_tt h3{
  font-size: 23px;
  font-weight: 500;
  letter-spacing: 0.2em;
}
.privacy_tt br{
  display: none;
}
.privacy_tt .dots{
  display: flex;
  justify-content: center;
  margin-top: 10px;
}
.privacy_tt .dots i{
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #c1c1c1;
  margin: 0 8px;
}

.privacy_items{
  height: 161px;
  padding: 12px 13px;
  padding-right: 75px;
  overflow-y: scroll;
  border: 1px solid #dedede;
}
.privacy_items .item{
  letter-spacing: 0.075em;
  text-align: justify;
}
.privacy_items .item + .item{
  margin-top: 40px;
}
.privacy_items .item .title{
  margin-bottom: 5px;
  padding-left: 6px;
  border-left: 2px solid;
  font-weight: 700;
  line-height: 1.2;
}
.privacy_items .item .txt{

}
.privacy_items .item ul{
  list-style: none;
  margin-left: 2em;
  margin-top: 10px;
}
.privacy_items .item ul.latin{
  list-style: lower-latin;
}

.privacy_items .item ul li{

}
.privacy_items .item ol{
  margin-left: 2em;
  margin-top: 10px;
}


.breadcrumb{
  display: flex;
  list-style: none;
  margin-bottom: 72px;
  font-size: 14px;
  letter-spacing: 0.075em;
  overflow-x: auto;
  font-family: 'Outfit', 'Noto Sans JP', sans-serif;
}
.breadcrumb li{
  display: inline;
  white-space: normal;
}
.breadcrumb li + li{
  margin-left: 5px;
}
.breadcrumb li:last-child{
  /*font-weight: 500;*/
}
.breadcrumb li a{
  position: relative;
  padding-right: 12px;
}
.breadcrumb li a:after{
  /*content: "\f054";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;*/
  content: ">";
  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%);
}*/

/* **********************************
 *  メイン
 * ********************************* */
.tt1{
  font-size: 28px;
  margin-bottom: 8px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.1em;
  font-family: 'Outfit', sans-serif;
  text-align: center;
}
.tt1:first-letter{
  color: #f3592b;
}
.tt1 span{
  color: #f3592b;
}

.tt2{

}
.tt2 span{

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


/* **********************************
 *  お問い合わせ
 * ********************************* */
.pg_contact{

}
.pg_contact .section#sec1{

}
.pg_contact .section#sec2{

}
.pg_contact .section#sec3{

}

.contact_tt{
  text-align: center;
  font-weight: bold;
  font-size: 23px;
  letter-spacing: 0.2em;
}

.pg_contact .privacy{
  margin-top: 80px;
}



/* **********************************
 *  Home
 * ********************************* */
.pg_home .section.sec1{
  padding-top: 50px;
  position: relative;
}
.pg_home .section.sec1:before{
  content: "";
  width: 100%;
  height: 1000%;
  background: #0d0d0d;
  border-bottom: 3px solid #f3592b;
  z-index: -1;
  position: absolute;
  left: 0;
  bottom: 50%;
}
.pg_home .section.sec1 .tt1{
  color: #fff;
}
.home_text1 {
  padding-left: 6px;
  text-align: center;
  letter-spacing: 0.075em;
  color: #fff;
}

.home_concept{
  margin-top: 40px;
}
.home_concept .item a{
  margin-right: 10px;
  display: block;
  position: relative;
}
.home_concept .item a:hover{
  opacity: 1;
}
.home_concept .item .en{
  font-size: 15px;
  padding: 0 9px;
  font-weight: 500;
  letter-spacing: 0.075em;
  background: #bfbfbf;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  display: inline-block;
}
.home_concept .item .img{
  width: 100%;
  overflow: hidden;
  box-shadow: 10px 10px 0 #e5e5e5;
  display: inline-block;
}
.home_concept .item .img_fit:before{
  padding-top: 75%;
}
.home_concept .item .img img{
  transition: 0.2s;
}
.home_concept .item a:hover .img img{
  scale: 1.1;
}
.home_concept .item .ja{
  font-size: 15px;
  margin-top: 6px;
  padding-right: 10px;
  letter-spacing: 0.075em;
  text-align: center;
  font-weight: 400;
}

.pg_home .section.sec1 .links{
  margin-top: 40px;
}
.link_1{
  max-width: 285px;
  width: 100%;
  padding: 4px;
  margin: 0 auto;
  border: 1px solid;
  background: #e5e5e5;
}
.link_1 a{
  font-size: 15px;
  padding: 15px 0 11px;
  display: block;
  background: #181818;
  color: #fff;
  text-align: center;
  letter-spacing: 0.075em;
  font-family: 'Outfit', sans-serif;
  border-bottom: 2px solid #f3592b;
  position: relative;
}
.link_1 a:hover{
  opacity: 1;
  color: #f3592b;
}
.link_1 a:before{
  content: "";
  border-style: solid;
  border-color: transparent transparent #181818 transparent;
  border-width: 0px 0px 12px 12px;
  position: absolute;
  right: 0;
  bottom: -2px;
}
.link_1 a:after{
  content: "";
  width: 20px;
  height: 2px;
  background: #e5e5e5;
  position: absolute;
  right: -6px;
  bottom: -3px;
  transform: rotate(-45deg);
  transform-origin: left;
}

@media(max-width:767px){
  
  .pg_home .section.sec1 .home_text1{
    font-size: 14px;
  }
  .pg_home .section.sec1 .links .link_1 + .link_1{
    margin-top: 15px;
  }
  .pg_home .section.sec1:before{
    bottom: 35%;
  }
}
@media(min-width:768px){
  .tt1{
    font-size: 36px;
  }
  .pg_home .section.sec1{
    padding-top: 100px;
  }
  .home_concept {
    display: flex;
    margin: 72px -15px 0;
  }
  .home_concept .item{
    width: 50%;
    padding: 0 15px;
  }
  .pg_home .section.sec1 .links{
    margin-top: 90px;
    display: flex;
    justify-content: center;
  }
  .pg_home .section.sec1 .links .link_1{
    margin: 0 15px;
  }
}
@media(min-width:1024px){
}
@media(min-width:1200px){
}


/* **********************************
 *  コンセプト
 * ********************************* */
.concept_text1 {
  margin-bottom: 70px;
  text-align: center;
  letter-spacing: 0.075em;
}
.section#food{
  padding-top: 45px;
}
.concept_img{
  position: relative;
}
.concept_img:before{
  content: "";
  width: calc(100% - 30px);
  height: calc(100% - 20px);
  position: absolute;
  right: -11px;
  top: 31px;
  border-right: 1px solid #f3592b;
  border-bottom: 1px solid #f3592b;
}
.concept_txt{
  padding: 25px;
  background: #fff;
  box-shadow: 2.121px 2.121px 1.98px 0.02px rgba(0, 0, 0, 0.1);
}
.tt1.left{
  text-align: left;
}
.text{
  text-align: justify;
  letter-spacing: 0.075em;
}
.concept_img .img_fit:before{
  padding-top: 40%;
}
.section#garage{
  padding-top: 80px;
}
#garage .concept_img{
  margin-left: auto;
}
#garage .concept_img:before{
  right: inherit;
  left: -10px;
  top: 30px;
  border-right: 0;
  border-left: 1px solid #f3592b;
  border-bottom: 1px solid #f3592b;
}
.pg_concept .section.sec2{
  padding-top: 50px;
}
.pg_concept .section.sec2 .concept_text1{
  margin-bottom: 32px;
}

@media(max-width:767px){
  .concept_img{
    margin-right: 25px;
  }
  #garage .concept_img{
    margin-right: 0;
    margin-left: 25px;
  }
  .concept_txt{
    margin-top: 30px;
  }
}
@media(min-width:768px){
  .concept_text1 {
    padding-left: 9px;
    margin-bottom: 130px;
    text-align: center;
  }
  .section#food{
    padding-top: 60px;
  }
  .concept_img {
    width: 59.1%;
  }
  .concept_img .img_fit:before{
    padding-top: 350px;
  }
  .concept_txt{
    min-height: 297px;
    padding: 35px 65px 20px;
    margin-top: -60px;
    max-width: 540px;
    margin-left: auto;
    position: relative;
    z-index: 1;
  }
  .concept_txt .tt1{
    margin-bottom: 30px;
    letter-spacing: 0.08em;
  }
  .section#garage{
    padding-top: 150px;
  }
  #garage .concept_txt{
    margin-left: 0;
  }

  .pg_concept .section.sec2{
    padding-top: 111px;
  }
  .pg_concept .section.sec2 .concept_text1{
    margin-bottom: 42px;
  }
}
@media(min-width:1024px){
  .concept_img .img_fit:before{
    padding-top: 500px;
  }
  .concept_txt{
    margin-top: -150px;
  }
}
@media(min-width:1200px){
}


/* **********************************
 *  WORKS
 * ********************************* */
#head{
  padding-top: 30px;
  margin-top: -30px;
}
.works_list{
  margin: 40px -8px 0;
  display: flex;
  flex-wrap: wrap;
}
.works_list .item{
  width: 100%;
  padding: 0 8px;
}
.works_list .img{
  position: relative;
  box-shadow: 5px 5px 0 #e5e5e5;
  display: block;
}
.works_list .img:hover{
  opacity: 1;
}
.works_list .img_fit{
  overflow: hidden;
}
.works_list .img_fit:before{
  padding-top: 74%;
}
.works_list .img_fit img{
  transition: 0.2s;
}
.works_list .img_fit:hover img{
  scale: 1.1;
}
.works_list .category{
  font-size: 13px;
  padding: 0 12px;
  line-height: 1.95;
  font-weight: 500;
  letter-spacing: 0.075em;
  background: #bfbfbf;
  position: absolute;
  left: -1px;
  top: 0;
  z-index: 1;
  display: inline-block;
}
.works_list .title{
  font-size: 15px;
  margin-top: 8px;
  letter-spacing: 0.075em;
  text-align: center;
  font-weight: 400;
}
.no_results_content {
  margin-top: 30px;
}

/*詳細*/
.works_detail .detail{
  margin-bottom: 60px;
}
.works_detail .meta {
  margin-bottom: 20px;
}
.works_detail .category{
  font-size: 13px;
  padding: 0 9px;
  font-weight: 500;
  letter-spacing: 0.075em;
  background: #000000;
  color: #fff;
  display: inline-block;
}
.works_detail .title{
  font-size: 17px;
  letter-spacing: 0.075em;
  font-weight: 500;
}
.works_detail .slick-arrow{
  font-size: 22px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}
.works_detail .slick-right{
  right: -30px;
}
.works_detail .slick-left{
  left: -30px;
}
.works_detail .thumb a{
  overflow: hidden;
}
.works_detail .thumb img{
  transition: 0.2s;
}
.works_detail .thumb a:hover img{
  scale: 1.1;
}
.works_detail .sub .slick-track{
  transform: unset !important;
  width: 100%!important;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.works_detail .sub .slick-cloned{
  display: none;
}
.works_detail .sub{
  margin: 0 -2px;
  margin-top: 10px;
}
.works_detail .sub .img_fit{
  margin: 0 2px 4px;
  cursor: pointer;
}
.works_detail .sub .img_fit:before{
  padding-top: 66%;
}
.works_detail .post_content{
  margin-top: 40px;
  letter-spacing: 0.075em;
  text-align: justify;
}
.works_detail .post_content p{
  margin: 0;
}
.works_detail .table_rows {
  margin-top: 11px;
}
.table_rows th{
  width: 110px;
  padding: 15px 10px;
  letter-spacing: 0.075em;
  text-align: left;
  border-bottom: 1px solid #f3592b;
  font-weight: 400;
  vertical-align: top;
}
.table_rows td{
  padding: 15px 10px;
  padding-left: 20px;
  letter-spacing: 0.075em;
  text-align: left;
  border-bottom: 1px solid #000000;
}
.table_rows td a{
  color: #f3592b;
  padding-bottom: 5px;
  border-bottom: 1px solid #f3592b;
  word-wrap: break-word;
}
.single-works .pagination{
  margin-top: 50px;
}

@media(max-width:767px){
  select[name="s_cat"]{
    width: 100%;
    height: 50px;
    padding: 8px;
    border: 1px solid;
    border-radius: 0;
    background: #fff;
  }
  .works_detail .thumb{
    margin: 0 30px;
  }
  .works_list .item:nth-child(n+2){
    margin-top: 35px;
  }
}
@media(min-width:768px){
  #head{
    padding-top: 100px;
    margin-top: -86px;
  }
  .works_cat{
    margin: 0 -8px;
    display: flex;
    flex-wrap: wrap;
  }
  .works_cat li{
    width: 33.33%;
    padding: 0 8px;
  }
  .works_cat li a{
    font-size: 20px;
    padding: 9px 0;
    display: block;
    position: relative;
    border: 1px solid #181818;
    text-align: center;
    letter-spacing: 0.075em;
  }
  .works_cat li a:before {
    content: "";
    border-style: solid;
    border-color: transparent transparent #181818 transparent;
    border-width: 0px 0px 12px 12px;
    position: absolute;
    right: 5px;
    bottom: 5px;
  }
  .works_cat li a:after {
    content: "";
    width: calc(100% - 10px);
    height: 1px;
    background: #181818;
    position: absolute;
    left: 5px;
    bottom: 5px;
  }
  .works_cat li.on a,
  .works_cat li a:hover{
    opacity: 1;
    background: #f3592b;
    border-color: #f3592b;
    color: #fff;
  }
  .works_cat li.on a:before,
  .works_cat li a:hover:before {
    border-color: transparent transparent #fff transparent;
  }
  .works_cat li.on a:after,
  .works_cat li a:hover:after {
    background: #fff;
  }

  .works_list{
    margin: 80px -8px 0;
  }
  .works_list .item{
    width: 33.33%;
    padding: 0 8px;
  }
  .works_list .item:nth-child(n+4){
    margin-top: 40px;
  }
  .works_list .img{
    box-shadow: 10px 10px 0 #e5e5e5;
  }
  .works_list .title{
    margin-top: 15px;
  }

  .single-works .section.sec1{
    padding-top: 58px;
  }
  .works_detail .detail{
    max-width: 920px;
    margin: 0 auto 130px;
  }
  .works_detail .category {
    font-size: 15px;
    margin-right: 25px;
  }
  .works_detail .meta{
    margin-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
  .works_detail .title{
    font-size: 20px;
  }
  .works_detail .thumb{
    max-width: 720px;
    margin: 0 auto;
    padding: 0 50px;
  }
  .works_detail .slider{
    padding: 0;
  }
  .works_detail .slick-right{
    right: 3px;
  }
  .works_detail .slick-left{
    left: 3px;
  }

  .table_rows th{
    width: 284px;
    padding: 18.5px 26px;
  }
  .table_rows td{
    padding: 15px 15px 15px 36px;
  }

  .pagination{
    margin-top: 87px;
  }
  .single-works .pagination{
    margin-top: 100px;
  }

  .table_rows th {
    width: 200px;
  }
}
@media(min-width:1024px){
  .works_cat{
    margin: 0 -15px;
  }
  .works_cat li{
    padding: 0 15px;
  }

  .works_list{
    margin: 80px -15px 0;
  }
  .works_list .item{
    padding: 0 15px;
  }
  .works_list .category{
    font-size: 15px;
  }

  .table_rows th {
    width: 250px;
  }
}
@media(min-width:1200px){
  .table_rows th {
    width: 284px;
  }
}



/* **********************************
 *  COMPANY
 * ********************************* */
.pg_company .section.sec1{
  padding-top: 19px;
}
.company_box1 {
  padding: 30px 15px;
  border: 10px solid #f5f5f5;
  position: relative;
  text-align: center;
}
.company_box1:before{
  content: "";
  width: calc(100% + 8px);
  height: calc(100% + 8px);
  position: absolute;
  left: -5px;
  top: -5px;
  border: 1px solid #f3592b;
  pointer-events: none;
}
.company_box1 .ttl {
  font-size: 18px;
  letter-spacing: 0.075em;
  margin: 24px 0 8px;
}
.company_box1 dl.mean {
  max-width: 600px;
  width: 100%;
  padding: 3px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  letter-spacing: 0.075em;
  position: relative;
}
.company_box1 dl.mean:after{
  content: "";
  width: 100%;
  height: 1px;
  background: #e5e5e5;
  position: absolute;
  left: 0;
  top: 50%;
  z-index: -1;
}
.company_box1 dl.mean dt{
  padding-left: 4px;
  padding-right: 28px;
  background: #fff;
  letter-spacing: 0.085em;
}
.company_box1 dl.mean dt:first-letter{
  color: #00689b;
}
.company_box1 dl.mean dd{
  min-width: 89px;
  margin-right: -8px;
  padding-left: 20px;
  background: #fff;
  text-align: left;
}
.company_box1 .text{
  margin-top: 20px;
  text-align: center;
}
.company_box1 .text p + p{
  margin-top: 32px;
}

.pg_company .section.sec2{
  padding-top: 70px;
}
.pg_company .section.sec2 .tt1{
  margin-bottom: 10px;
}
.pg_company .table_rows td a{
  color: inherit;
  border-bottom: 0;
}

.pg_company .section.sec3{
  padding-top: 70px;
}
.company_access{
  margin-top: 30px;
}
.company_access .ttl{
  width: 220px;
  font-size: 18px;
  margin: 0 auto -15px;
  font-weight: 400;
  letter-spacing: 0.075em;
  text-align: center;
  background: #181818;
  color: #fff;
  border-bottom: 1px solid #f3592b;
  line-height: 1.6;
}
.company_access .text{
  padding: 30px 15px 20px;
  border: 1px solid #181818;
  text-align: center;
}
.access_map{
  margin-top: 40px;
}
.access_map iframe{
  width: 100%;
  border: 0;
  height: 300px;
}

.pg_company .section.sec4{
  padding-top: 70px;
}
.pg_company .section.sec4 .tt1{
  margin-bottom: 37px;
}
.pg_company .section.sec4 .company_box1 .ttl{
  font-size: 15px;
  width: fit-content;
  padding: 0 11px;
  margin: 0 auto 26px;
  background: #000000;
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.075em;
  line-height: 1.85;
}
.company_box1 dl.mean dt a {
  padding-bottom: 5px;
  color: #f3592b;
  border-bottom: 1px solid;
}
.pg_company .section.sec4 .company_box1 dl.mean dt:first-letter{
  color: inherit;
}
.pg_company .section.sec4 .company_box1 dl.mean + dl{
  margin-top: 7px;
}
.pg_company .section.sec4 .company_box1 dd{
  width: 210px;
  padding-left: 30px;
}

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

  .pg_company .section.sec4 .company_box1 dl.mean{
    display: block;
    text-align: center;
  }
  .pg_company .section.sec4 .company_box1 dl.mean:after{
    display: none;
  }
  .pg_company .section.sec4 .company_box1 dl.mean + dl{
    margin-top: 15px;
  }
  .pg_company .section.sec4 .company_box1 dt{
    padding-right: 0;
  }
  .pg_company .section.sec4 .company_box1 dd{
    width: auto;
    margin-top: 5px;
    padding-left: 0;
    text-align: center;
  }
}
@media(min-width:768px){
  .company_box1 {
    padding: 45px 30px 36px;
  }
  .company_box1 dl.mean {
    width: 80%;
  }

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

  .pg_company .section.sec3{
    padding-top: 108px;
  }
  .company_access {
    display: flex;
    margin: 38px -15px 0;
  }
  .company_access .item{
    width: 50%;
    padding: 0 15px;
  }
  .access_map{
    margin-top: 70px;
  }
  .access_map iframe{
    height: 400px;
  }

  .pg_company .section.sec4{
    padding-top: 110px;
  }
  .pg_company .section.sec4 .company_box1{
    padding-top: 44px;
    padding-bottom: 43px;
  }
  .pg_company .section.sec4 .company_box1 dl.mean {
    max-width: 708px;
  }
}
@media(min-width:1024px){
  .access_map iframe{
    height: 500px;
  }
}
@media(min-width:1200px){
}



/* **********************************
 *  お問い合わせ
 * ********************************* */
.contact_text1 {
  text-align: justify;
  letter-spacing: 0.075em;
}

/* コンタクトフォーム */
.contact_info{
  margin-top: 30px;
  padding: 5px;
  text-align: center;
  margin-bottom: 50px;
  border: 1px solid #f3592b;
}
.contact_info .inner{
  padding: 25px 15px;
  background: #0d0d0d;
  color: #fff;
  text-align: center;
}
.contact_info .tel{
  font-size: 30px;
  letter-spacing: 0.2em;
  line-height: 1.2;
}
.contact_info .text{
  margin-top: 10px;
  display: inline-block;
}
.contact_info .text .indent{
  padding-left: 1.1em;
  text-indent: -1.1em;
}

@media(max-width:767px){
}
@media(min-width:768px){
  .contact_info{
    margin-top: 50px;
    margin-bottom: 100px;
  }
  .contact_info .inner{
    padding: 40px 0;
  }
  .contact_text1 {
    text-align: center;
    padding-top: 5px;
    padding-left: 10px;
  }
  .contact_info .tel{
    font-size: 40px;
    padding-left: 12px;
  }
  .contact_info .text {
    padding-left: 8px;
  }
}
@media(min-width:1024px){
  .contact_info .tel{
    font-size: 50px;
  }
}
@media(min-width:1200px){
}

.contact_form{
  width: 100%;
}
.contact_form tr{
}
.contact_form th,
.contact_form td{
  font-weight: normal;
  text-align: left;
}
.contact_form th{
  width: 285px;
  padding: 30px 43px 35px 0;
  vertical-align: top;
  letter-spacing: 0.08em;
  border-bottom: 1px solid #f3592b;
  color: #000000;
}
.contact_form th .require{
  display: inline-block;
  padding: 0 11px 0 12px;
  color: #FFF;
  background: #b80000;
  font-size: 13px;
  float: right;
  font-weight: 400;
  letter-spacing: 0.12em;
  line-height: 1.85;
  margin-top: 7px;
}
.contact_form th .any{
  display: inline-block;
  padding: 0 11px 0 12px;
  color: #b80000;
  border: 1px solid #b80000;
  font-size: 13px;
  float: right;
  font-weight: 400;
  letter-spacing: 0.12em;
  line-height: 1.85;
  margin-top: 7px;
}
.contact_form td{
  padding: 30px 0;
  padding-left: 65px;
  border-bottom: 1px solid #e5e5e5;
}
.contact_form dl{
  width: 100%;
  display: flex;
  align-items: center;
}
.contact_form dl + dl{
  margin-top: 10px;
}
.contact_form dl dt,
.contact_form dl dd{

}

.contact_form dl.addr dt{
  width: 75px;
  font-size: 15px;
  letter-spacing: 0.12em;
}
.contact_form dl.addr dd{
  width: calc(100% - 75px);
}
.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.addr dd{

}


.contact_form td .wpcf7-form-control-wrap{
  display: block;
}
.contact_form td .wpcf7-form-control-wrap + .wpcf7-form-control-wrap {
  margin-top: 5px;
}
.contact_form td [type="text"],
.contact_form td [type="email"],
.contact_form td select,
.contact_form td textarea{
  font-size: 15px;
  height: 39px;
  padding: 6px 11px;
  max-width: 100%;
  border: 1px solid #d6d8d8;
  border-radius: 0;
  letter-spacing: 0.16em;
}
.contact_form td [type="text"]::placeholder,
.contact_form td [type="email"]::placeholder,
.contact_form td select::placeholder,
.contact_form td textarea::placeholder{
  color: #ababab;
}
.contact_form td .wpcf7-checkbox,
.contact_form td .wpcf7-radio{
  border: 0;
}
.contact_form td [type="text"],
.contact_form td [type="email"]{
  width: 462px;
  max-width: 100%;
}
.contact_form td textarea {
  width: 100%;
  height: 280px;
  padding: 3px 11px;
}
.contact_form td [type="file"]{
  padding: 10px 0;
  border: 0;
}
.contact_form td .wpcf7-file + .wpcf7c-conf{
  width: 100%;
  border: 1px solid #398f14;
}
.contact_form td [name="zipcode"],
.contact_form td [name="addr1"]{
  width: 165px;
}
.contact_form td [name="your-tel[data][0]"],
.contact_form td [name="your-tel[data][1]"],
.contact_form td [name="your-tel[data][2]"]{
  width: 100px;
}
.contact_form td [name="addr1"]{
  width: 225px;
  padding-left: 7px;
}
.contact_form td [name="addr2"]{
  width: 425px;
}
.contact_form td [name="zipcode"]{
  margin-right: 10px;
}
.contact_form td .form-control-wrap.zipcode{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.contact_form td .form-control-wrap.zipcode:before{
  vertical-align: top;
  content: "〒";
  background: #CCC;
  width: 25px;
  padding: 2.5px 0;
  margin: 0;
  border: 1px solid #CCC;
  border-right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.contact_form td .addr_auto{
  font-size: 14px;
  background: #f0f0f0;
  border: 1px solid #d6d8d8;
  padding: 4.5px 15px;
  letter-spacing: 0.06em;
  color: #000000;
}

.contact_form td .wpcf7-checkbox,
.contact_form td .wpcf7-radio{
  display: block;
}
.contact_form span.wpcf7-list-item{
  margin: 0 1em 0 0;
}


.contact_form_msg{
  margin-top: 10px;
  margin-bottom: 10px;
}

/* 確認画面用 */

.contact_form_acceptance{
  font-size: 17px;
  text-align: center;
  margin-top: 45px;
  letter-spacing: 0.08em;
}
.contact_form_acceptance a{
  color: #1a3e9b;
}
.contact_form_acceptance span.wpcf7-list-item{
  margin: 0;
}
.contact_form_acceptance .mwform-checkbox-field-text{
  display: none;
}
.mw_wp_form_preview .contact_form_acceptance .check_hide{
  display: none;
}

/* コンタクトフォーム - ボタン */
.contact_form_btns{
  text-align: center;
  padding: 30px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact_form_btns input[type="submit"],
.contact_form_btns input[type="button"]{
  padding: 13px 0 17px;
  width: 350px;
  font-size: 20px;
  background: #FFF;
  border: 0;
  font-weight: 400;
  letter-spacing: 0.075em;
  border: 1px solid #181818;
  position: relative;
  display: block;
  border-radius: 0;
}
.contact_form_btns input[type="submit"][disabled],
.contact_form_btns input[type="button"][disabled]{
  background: #CCC;
}
.contact_form_btns .submit_btn{
  position: relative;
  display: inline-block;
}
.contact_form_btns .submit_btn:before {
  content: "";
  border-style: solid;
  border-color: transparent transparent #181818 transparent;
  border-width: 0px 0px 12px 12px;
  position: absolute;
  right: 5px;
  bottom: 5px;
  z-index: 1;
}
.contact_form_btns .submit_btn:after{
  content: "";
  width: calc(100% - 10px);
  height: 1px;
  background: #181818;
  position: absolute;
  left: 5px;
  bottom: 5px;
  z-index: 1;
}
.contact_form_btns .back_btn input{
  margin-right: 30px;
}
.contact_form_btns input.wpcf7-confirm{

}
.contact_form_btns input[type="submit"].back{
  background: #CCC;
}
.contact_form_btns input.wpcf7-submit{
  background: #398f14;
}

.mw_wp_form{
  margin-top: 55px;
}
.mw_wp_form_preview label[for="privacy_agree-1"]{
  display: none;
}
.contact_form_send_msg {
  text-align: center;
}
.contact_form_send_msg .txt{
  margin-bottom: 50px;
}

@media(max-width:1023px){
  .contact_form_btns input[type="submit"],
  .contact_form_btns input[type="button"] {
    width: 280px;
  }

  .contact_form th {
    width: 210px;
    padding: 30px 15px 35px 0;
  }
  .contact_form td {
    padding-left: 40px;
  }

  .privacy_items {
    padding-right: 30px;
  }
}
@media(max-width:767px){
  .contact_form_btns {
    display: block;
  }
  .contact_form_btns .back_btn {
    display: inline-block;
    margin-bottom: 30px;
  }
  .contact_form_btns .back_btn input{
    margin-right: 0;
  }
  .contact_form,
  .contact_form tbody,
  .contact_form tr{
    display: block;
    width: 100%;
  }
  .contact_form tr + tr{
    margin-top: 10px;
  }
  .contact_form th,
  .contact_form td{
    padding: 15px;
    display: block;
    width: 100%;
  }
  .contact_form_acceptance {
    font-size: 15px;
  }
  .contact_form td .addr_auto {
    padding: 5px 20px;
    margin: 10px 0;
  }

  .privacy_items {
    padding-right: 20px;
  }
  .contact_form_send_msg {
    text-align: justify;
  }
}



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

@media(max-width:767px){
}
@media(min-width:768px){
}
@media(min-width:1024px){
}
@media(min-width:1200px){
}