@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{
  /*padding-top: 177px;*/
  font-family:  'Noto Sans JP', "游明朝体", "Yu Mincho", YuMincho, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 16px;
  line-height: 1.85;
  color: #000000;
}

/* 基本フォント: 明朝 */
/**/
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;
  }
} 

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

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

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:1024px){
  .tb:not(.pc){
    display: none;
  }
  .sp:not(.pc){
    display: none;
  }
}
@media (min-width:768px) and (max-width:1023px){
  .pc:not(.tb){
    display: none;
  }
  .sp:not(.tb){
    display: none;
  }
}
@media (max-width:767px){
  .pc:not(.sp){
    display: none;
  }
  .tb:not(.sp){
    display: none;
  }
}

/* **********************************
 *  コンテナ
 * ********************************* */
.wrapper{
  overflow-x: hidden;
}
.container{
  width: 1140px;
  padding: 0 10px; 
  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{
  /*padding: 15px 0;*/
  background-image: url(/img/header/pg_hdr_ttl_bg.png), url(/img/header/pg_hdr_bg.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain, cover;
}
.pg_header .container{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 200px;
}

/* 共通の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: 15px 0 0;
  background: #f4efe7;
  /*position: fixed;
  left: 0;
  top: 0;
  z-index: 5;*/
}


/* **********************************
 *  グローバルナビ
 * ********************************* */
.gnav{
}
.gnav > ul{
  margin: 0;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-around;
  align-items: center;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
}
.gnav > ul > li{
  width: 100%;
  padding: 0 0 15px;
  position: relative;
  border-bottom: 3px solid #f4efe7;
}
.gnav > ul > li.current_page_item{
  border-bottom: 3px solid #d7720f;
}

.gnav li a{
  width: 100%;
  padding: 8px 0;
  border-right: 1px solid #d7720f;
  display: block;
  letter-spacing: 0.075em;
}
.gnav li:first-child a{
  border-left: 1px solid #d7720f;
}
.gnav li a:hover{
}

.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;
  height: 991px;  
  background-image: url('/img/home/mv.jpg?3');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  
  display: flex;
  justify-content: center;
  align-items: center;
}
.mv .mv_box{
  
}
.mv .mv_box .txt{
  font-size: 32px;
}
.mv .mv_box .img{
  
}
.mv .mv_box .img img{
  
}


/* **********************************
 *  フッター
 * ********************************* */
footer {
  margin-top: 205px;
  padding-top: 60px;
  padding-bottom: 30px;
  background: #f4efe7;
  text-align: center;
}

footer .ftr1{
  margin-bottom: 45px;
  letter-spacing: 0.08em;
}
footer .ftr1 .text1 {
  font-size: 18px;
  line-height: 1.55;
}
footer .ftr1 .text1 span:first-letter{
  color: #e26aae;
}
footer .ftr1 .text1 span.text_1_1{
  color: #e26aae;
}
footer .ftr1 .text1 span.text_1_2{
  color: #65c52a;
}
footer .ftr1 .text1 span.text_1_3{
  color: #9549cf;
}
footer .ftr1 .text1 span.text_1_4{
  color: #cd8b23;
}
footer .ftr1 .text1 span.text_1_5{
  color: #438aea;
}
footer .ftr1 .text1 span.text_1_6{
  color: #e2396d;
}
footer .ftr1 .text1 span.text_1_7{
  color: #36bfb7;
}
footer .ftr1 .text2 {
  font-size: 16px;
  margin: 8px 0 5px;
  line-height: 1.85;
}
footer .ftr1 .text3 {
  font-size: 15px;
}
footer .ftr1 .contact_ttl{
  width: 180px;
  font-size: 14px;
  margin: 10px auto 0;
  background: #ffffff;
  text-align: center;
  border-radius: 13px;
  color: #181818;
}
footer .ftr1 .tel {
  font-size: 34px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.75;
}

footer .ftr_links{    
  margin: 0 -50px;
  padding: 20px 0;
  display: flex;
  justify-content: center;
}
footer .ftr_links li{
  text-align: center;
  font-size: 15px;
  line-height: 1;
  /*padding: 0 70px;*/
  padding: 0 50px;
  
  text-align: center;
  letter-spacing: 0.05em;
}
footer .ftr_links li + li{
  border-left: 1px solid;
}

footer .ftr2{
  padding-bottom: 40px;
}
footer .ftr2 .caution_link{
  margin-top: 20px;
  font-size: 14px;
  display: inline-block;
}

footer .copy{
  text-align: center;
  font-size: 14px;
  padding: 8px 0;
  background: #ffffff;
}
footer .copy a{
  /*color: #111;*/
}


.footer_fix{
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  z-index: 10;
  border-top: 1px solid #ffffff;
}
.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{
  width: 50%;
  /*display: table-cell;*/
  text-align: center;
  /*vertical-align: middle;*/
}
.footer_fix ul li a{
  display: block;
  padding: 10px 5px 5px;
  color: #FFF;
  text-decoration: none;
}
.footer_fix ul li.btn1{
  background: #ec7399;
}
.footer_fix ul li.btn2{
  background: #f39800;
}
.footer_fix ul li a i{
  font-size: 20px;
  display: block;
}


/* 検索フォーム */
.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;
}


/* 記事リスト */
.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 .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: #ffba02;
  color: #ffffff;
  padding: 3px;
  margin: 2px;
  text-align: center;
}
.post_items .item .category span.cat_dealer{
  background: #ec7399;
}
.post_items .item .category span.cat_citizen{
  background: #f39800;
}
.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: 92px;
}
.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: 3px 14px;
  margin: 4px 4px;
  color: #1e1e1e;
  text-decoration: none;
}
.pagination .page-numbers.current,
.pagination .page-numbers:hover{
  background: #e5e5e5;
  border-color: #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;
}

/* 検索 */
.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;
}

/* コンタクトフォーム */
.contact_info{
  background: #f0f0f0;
  text-align: center;
  padding: 20px;
  margin-bottom: 100px;
}
.contact_info .box1{
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.14em;
}
.contact_info .box2{
  margin-top: 20px;
  background: #FFFFFF;
  padding: 20px 5px;
  line-height: 1;
}
.contact_info .box2 .icon{
  display: inline-block;
  font-size: 25px;
  font-weight: bolder;
  background: #8c8c8c;
  color: #FFFFFF;
  padding: 5px 15px;
  margin-right: 10px;
  vertical-align: middle;
  border-radius: 5px;
}
.contact_info .box2 .tel{
  display: inline-block;
  font-size: 44px;
  font-weight: bold;
  vertical-align: middle;
  font-weight: bold;
  letter-spacing: 0.2em;
}
.contact_info .box2 .tel a{
  display: block;
}
.contact_info .box2 .txt{
  display: inline-block;
  vertical-align: bottom;
  margin-left: 10px;
}

.contact_form{
  width: 100%;
  border: 1px solid #b5b5b5;
  background: #f9f9f9;
}
.contact_form tr{
  border-bottom: 1px solid #b5b5b5;
}
.contact_form th,
.contact_form td{    
  height: 61px;
  padding: 10px 20px;
  font-weight: normal;
  text-align: left;
  letter-spacing: 0.08em;
}
.contact_form th{
  width: 273px;
  padding: 8px 10px 8px 25px;
  vertical-align: middle;
  background: #f2fbe8;
  font-weight: 500;
}
.contact_form td{
  padding-left: 30px;
}
.contact_form th .require{
  display: inline-block;
  padding: 0 10px 0 12px;
  margin-top: 3px;
  color: #FFF;
  background: #b80000;
  font-size: 13px;
  font-weight: normal;
  float: right;
  font-weight: 900;
}
.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;
}
.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;
  padding: 8px 15px;
  max-width: 100%;
  border: 1px solid #CCC;
  border-radius: 5px;
  letter-spacing: 0.06em;
}
.contact_form td .wpcf7-checkbox,
.contact_form td .wpcf7-radio{
  border: 0;
}
.contact_form td [type="text"],
.contact_form td [type="email"]{
  width: 580px;
  max-width: 100%;
}
.contact_form td textarea {
  width: 100%;
  height: 280px;
}
.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="zipcode1"],
.contact_form td [name="zipcode2"]{
  width: 160px;
  margin-right: 10px;
  border-radius: 0 5px 5px 0;
}
.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"],
.contact_form td [name="addr3"]{
  width: 205px;
}
.contact_form td [name="addr2"],
.contact_form td [name="addr4"]{
  width: 100%;
}
.contact_form td .form-control-wrap.zipcode{
  display: flex;
  align-items: stretch;
}
.contact_form td .form-control-wrap.zipcode:before{
  vertical-align: top;
  content: "〒";
  background: #CCC;
  width: 25px;
  padding: 0;
  margin: 0;
  border: 1px solid #CCC;
  border-right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 5px 0 0 5px;
}

.contact_form td button[class*="addr_auto"]{
  font-size: 14px;
  background: #ffffff;
  border: 1px solid #d6d8d8;
  padding: 5px 10px;
  letter-spacing: 0.05em;
  border-radius: 5px;
}

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

.mw_wp_form .error{
  padding: 0 10px;
  margin: 5px 0;
  color: #ff0000;
  font-weight: 700;
}
.mw_wp_form .error:before{
  content: "※";
}

/* エラー件数表示 */
.mw_wp_form .error {
    background: #ffeaea;
    padding: 0.3em 0.5em;
    margin-bottom: 10px;
    display: block;
    flex: 0 1 100%;
}
.error-notice {
    color: #B70000;
    background: #ffeaea;
    padding: 14px;
    text-align: center;
}
.error-notice a {
    display: block;
    font-size: 0.8em;
}

/* 確認画面用 */

.contact_form_acceptance{
  font-size: 17px;
  text-align: center;
  margin-top: 45px;
  letter-spacing: 0.1em;
}
.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;
}
.contact_form_btns input[type="submit"],
.contact_form_btns input[type="button"]{
  padding: 14px;
  width: 314px;
  margin: 0 10px;
  font-size: 18px;
  background: #b80000;
  color: #FFF;
  border: 0;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.contact_form_btns input[type="submit"][disabled],
.contact_form_btns input[type="button"][disabled]{
  background: #CCC;
}
.contact_form_btns input.wpcf7-confirm{
  
}
.contact_form_btns input[type="submit"].back{
  background: #CCC;
}
.contact_form_btns input.wpcf7-submit{
  background: #398f14;
}


.breadcrumb{
  display: flex;
  list-style: none;
  margin-bottom: 100px;
  font-size: 14px;
  flex-wrap: wrap;
}
.breadcrumb li{
  display: inline;
  white-space: normal;
}
.breadcrumb li + li{
  margin-left: 10px;
}
/*.breadcrumb li:last-child{
  font-weight: 500;
}*/
.breadcrumb li a{
  position: relative;
  padding-right: 20px;
}
.breadcrumb li a:after{
  /*content: "\f054";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;*/
  content: "＞";
  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{
}

.tt1{
  font-size: 32px;
  font-weight: bold;
  line-height: 1.4;
}
.tt1 span{
  display: block;
  text-align: center;
  font-size: 14px;
}

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

/* **********************************
 *  Home
 * ********************************* */
.home_banner .item{
  min-height: 80px;
  font-size: 40px;
  padding: 5px;
  background: url(/img/home/catch_bg.png) no-repeat center / cover;
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #ffffff;
  text-shadow: 0 3px 2px #353535;
  line-height: 1.5;
}
.home_banner .item:before,
.home_banner .item:after{
  content: "";
  width: 110px;
  height: 40px;
  margin-right: 30px;
  background: url(/img/home/catch_i1.png) no-repeat center / contain;
  display: inline-block;
  vertical-align: middle;
}
.home_banner .item:after{
  margin-right: 0;
  margin-left: 30px;
  background: url(/img/home/catch_i2.png) no-repeat center / contain;
}
.home_banner .item .txt{
  display: inline-block;
  vertical-align: middle;
  line-height: 1.2;
}

.pg_home .section#sec2{
  padding: 200px 0;
}
.flex{
  display: flex;
  flex-wrap: wrap;
}
.home_btns{
  margin: 0 -15px;
}
.home_btns .item{
  width: 50%;
  padding: 0 15px;
  position: relative;
  display: flex;
}
.home_btns .item a{
  width: calc(100% - 60px);
  padding-bottom: 30px;
  border-radius: 40px 0 40px 0;
  display: flex;
  flex-wrap: wrap;
}
.home_btns .item.left a{
  background: #ec7399;
}
.home_btns .item.right a{
  background: #f39800;
}
.home_btns .item .txt{
  width: 54%;
  height: 252px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.home_btns .item .ttl{  
  font-size: 28px;
  color: #ffffff;
}
.home_btns .item .img {
  width: calc(46% + 60px);
  margin-right: -60px;
  margin-top: -50px;
  background: #FFFFFF;
  height: 292px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 40px 40px 40px;
  border: 10px solid #f4efe7;
}
.read_more1 {
  max-width: 219px;
  width: 100%;
  padding: 8px;
  margin: 50px auto 0;
  background: #ffffff;
  text-align: center;
  border-radius: 23px;
  position: relative;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: 700;
}
.read_more1:after,
.read_more2:after{
  content: "";
  width: 41px;
  height: 34px;
  background: url(/img/home/link_click.png) no-repeat center / contain;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}
.read_more2{
  max-width: 348px;
  width: 100%;
  padding: 10px;
  font-size: 15px;
  margin: 70px auto 0;
  background: #ffffff;
  text-align: center;
  border-radius: 23px;
  position: relative;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: 700;
  border: 1px solid #d1c0a5;
  display: block;
}

.pg_home .section#sec3 .ttl{
  font-size: 24px;
  padding-bottom: 15px;
  margin-bottom: 60px;
  font-weight: 700;
  text-align: center;
  background: url(/img/home/ttl_bg1.png)no-repeat center bottom;
  position: relative;
}
.pg_home .section#sec3 .ttl:before{
  content: "";
  width: 63px;
  height: 71px;
  background: url(/img/home/illust3.png)no-repeat center / contain;
  position: absolute;
  left: 70px;
  bottom: 10px;
}
.pg_home .section#sec3 .ttl:after{
  content: "";
  width: 67px;
  height: 65px;
  background: url(/img/home/illust4.png)no-repeat center / contain;
  position: absolute;
  right: 90px;
  bottom: 10px;
}


/* **********************************
 *  
 * ********************************* */
.pg_xxxx{
  
}
.pg_xxxx .section#sec1{
  
}
.pg_xxxx .section#sec2{
  
}
.pg_xxxx .section#sec3{
  
}


/* **********************************
 *  会社概要
 * ********************************* */
.pg_company{
  
}
.pg_company .section#sec1{
  
}
.pg_company .section#sec2{
  
}
.pg_company .section#sec3{
  
}


/* **********************************
 *  お問い合わせ
 * ********************************* */
.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;
}



/* **********************************
 *  取扱店舗登録フォーム
 * ********************************* */
.regi_ttl1 {
  font-size: 20px;
  margin: 50px 0 20px;
  padding: 6px;
  background: #7cab44;
  color: #ffffff;
  text-align: center;
  letter-spacing: 0.2em;
}
.pg_regist_form .section#sec1 .text{
  padding: 0 10px;
  margin: 0 0 50px;
  letter-spacing: 0.08em;
}
.pg_regist_form .section#sec1 .text ul{
  margin-top: 20px;
  margin-bottom: 85px;
  list-style-type: "●";
  padding-left: 1em;
  letter-spacing: 0.075em;
  line-height: 2.1;
}
.pg_regist_form .section#sec1 .text a{
  font-weight: 700;
  color: #ff0000;
}
.red{
  color: #ff0000;
}

.mw_wp_form .horizontal-item{
  display: inline-block;
}
.mw_wp_form .horizontal-item + .horizontal-item {
  margin-left: 50px;
}
.mwform-checkbox-field input, 
.mwform-radio-field input {
  margin-right: 0;
  vertical-align: middle;
}
.contact_form td [name="input-month"],
.contact_form td [name="input-day"]{
  width: 86px;
  margin: 0 5px 0 12px;
}
.contact_form td [name="your-kana"],
.contact_form td [name="your-company-kana"]{
  width: 100%;
}
.contact_form td [name*="tel"],
.contact_form td [name*="fax"],
.contact_form td [name*="person-name"],
.contact_form td [name*="person-kana"],
.contact_form td [name*="open-time"],
.contact_form td [name="holiday"],
.contact_form td [name*="bank-name"],
.contact_form td [name*="bank-shop-name"]{
  width: 285px;
}
.form_ttl {
  font-size: 16px;
  padding: 2px 10px;
  margin: 25px 0 10px;
  font-weight: 500;
  background: #d2d2d2;
  letter-spacing: 0.08em;
}
.pg_regist_form .section#sec1 .text + .contact_form{
  margin-top: -35px;
}
.contact_form td [name*="same-"] + span{
  margin-right: 15px;
  display: inline-block;
  vertical-align: middle;
}
.contact_form td p{
  font-size: 15px;
  margin-bottom: 15px;
}
.contact_form td .job-detail{
  margin-top: 10px;
}
/*.contact_form td .job-type{
  font-size: 15px;
  letter-spacing: 0;
}
.contact_form td .job-type dt{
  width: 146px;
}
.contact_form td .job-type dd{
  width: calc(100% - 146px);
  display: flex;
}*/
.contact_form td [name*="job-type1-text"],
.contact_form td [name*="job-type2-text"],
.contact_form td [name*="job-type3-text"]{
  width: 587px;
  margin: 0 8px;
}
.contact_form td.nols{
  letter-spacing: 0;
}
.contact_form td.nols > span{
  display: inline-block;
}
.contact_form td.nols span + span{
  margin-left: 20px;
}
.contact_form td.nols span .horizontal-item + .horizontal-item{
  margin-left: 40px;
}
.contact_form td.ls1{
  letter-spacing: 0.07em;
}
.contact_form td [name*="bank-name"],
.contact_form td [name*="bank-shop-name"]{
  margin-right: 10px;
}
.contact_form td [name*="bank-code"],
.contact_form td [name*="bank-shop-code"]{
  width: 100px;
}
.contact_form td [name*="bank-account-number"]{
  width: 215px;
}
.contact_form td [name*="bank-account-name"],
.contact_form td [name*="bank-account-kana"]{
  width: 415px;
}

input[name="acceptance1[data][]"] + span{
  display: none;
}

#mw_wp_form_mw-wp-form-82 {
  margin-top: -180px;
  padding-top: 180px;
}
.center{
  text-align: center;
}

.contact_form td [name*="tel"],
.contact_form td [name*="fax"]{
  width: 145px;
}

.contact_form td span.week{
  margin-right: 15px;
}
.contact_form td span.week .horizontal-item + .horizontal-item {
  margin-left: 10px;
}
.contact_form td span.week_other{
  display: inline-block;
}

.contact_form td [name*="open-time"]{
  width: 80px;
}
.contact_form td > div + div{
  margin-top: 10px;
}


/* **********************************
 *  商品券について
 * ********************************* */
.pg_about .section#sec1 .text{
  margin: -5px 0 50px;
  letter-spacing: 0.08em;
}
.about_tbl{
  margin-top: 50px;
  margin-bottom: 10px;
  border-right: 1px solid #b5b5b5;
  border-top: 1px solid #b5b5b5; 
}
.about_tbl th,
.about_tbl td{
  padding: 16px 10px 16px 25px;
  border-left: 1px solid #b5b5b5;
  border-bottom: 1px solid #b5b5b5;
  font-weight: 400;
  letter-spacing: 0.08em;
}
.about_tbl th{
  letter-spacing: 0.2em;
}
.about_tbl thead th:first-of-type{
  width: 240px;  
  text-align: left;
  font-weight: 500;  
}
.about_tbl thead th.th1{
  background: #b0cd8f;
}
.about_tbl thead th.th2{
  background: #66c1eb;
}
.about_tbl tbody th{
  text-align: left;
  font-weight: 500;
  background: #f9f9f9;
}
.about_tbl tbody td{
  text-align: center;
}
.about_tbl tbody td p{
  display: inline-block;
  text-align: left;
}
.hide{
  display: none;
}
.pg_about .tbl_text{
  letter-spacing: 0.08em;
}
.pg_about .caution{
  margin-top: 30px;
  letter-spacing: 0.08em;
}
.pg_about .caution .ttl {
  font-size: 16px;
  padding: 0 10px;
  margin-bottom: 10px;
  background: #0097dd;
  color: #ffffff;
  letter-spacing: 0.08em;
}
.pg_about .caution ul{
  margin-top: 15px;
  list-style-type: decimal;
  padding-left: 21px;
}


/* **********************************
 *  市民のみなさん
 * ********************************* */
.pg_citizen .dealer_cat_wrap{
  margin-bottom: 20px;
}
.pg_citizen .dealer_cat_wrap:before {
  background-image: url(/img/home/i_2.png);
}
.pg_citizen .dealer_cat_wrap .box .item a{
  background: url(/img/home/bg_2.jpg?1);
}
.pg_citizen .dealer_cat_wrap .box:before {
  background: url(/img/home/bg_4.jpg);
}
.pg_citizen .dealer_cat_wrap .box{
  height: auto;
}
.dealer_cat_wrap .box .item a{
  display: block;
}
.pg_citizen .section#sec2{
  padding-top: 80px;
  text-align: center;
}
.dcontainer {
  max-width: 1120px;
  width: 100%!important;
}


/* **********************************
 *  取扱店のみなさん（取扱店舗登録）
 * ********************************* */
.pg_regist .section#sec1 .text{
  letter-spacing: 0.08em;
  line-height: 2;
}
.pg_regist .section#sec1 .text a{
  font-weight: 700;
}
.pg_regist .section#sec1 .text a.link1{
  color: #ff0000;
}
.pg_regist .section#sec1 .text a.link2{
  color: #0097dd;
}
.pg_regist .section#sec1 .text a.link3{
  color: #7cab44;
}
.pg_regist .links{
  max-width: 840px;
  margin: 70px auto 0;
}
.pg_regist .links a{
  text-align: center;
  background: #f5f5f5;
  border: 1px solid #b5b5b5;
  display: block;
  font-weight: 700;
  line-height: 1;
}
.pg_regist .links .link1{
  font-size: 22px;
  padding: 15px;
  border-radius: 44px;
}
.pg_regist .links .flex{
  margin-top: 34px;
  justify-content: space-between;
}
.pg_regist .links .link2{
  max-width: 400px;
  width: 100%;
  padding: 8px 5px 5px;
  border-radius: 29px;
}
.pg_regist .links a i{
  margin-right: 20px;
  vertical-align: middle;
}

.pg_regist .section#sec2{
  padding-top: 120px;
}
.regist_box{
  margin: 0 -15px;
}
.regist_box .item{
  width: 50%;
  padding: 0 15px;
  display: flex;
}
.regist_box .bg{
  width: 100%;
  padding-bottom: 10px;
  border: 1px solid #b5b5b5;
}
.regist_box .ttl{
  font-size: 16px;
  margin-bottom: 15px;
  padding: 9px;
  font-weight: 700;
  text-align: center;
  color: #ffffff;
  background: #7cab44;
  letter-spacing: 0.08em;
}
.regist_box .text{
  padding: 0 10px 0 16px;
  letter-spacing: 0.04em;
  line-height: 1.6;
}
.regist_box .medium{
  font-size: 20px;
  padding-left: 6px;
  padding-top: 10px;
  font-weight: 500;
  line-height: 2.1;
  letter-spacing: 0.08em;
}
.regist_box .medium span{
  display: inline-block;
}
.regist_box .text .red{
  font-size: 24px;
  margin-bottom: 15px;
  font-weight: 700;
  text-align: center;
}


/* **********************************
 *  取扱店向け説明会
 * ********************************* */
.pg_briefing{

}
.pg_briefing .section#sec1 .tt2{
  margin-bottom: 65px;
}
.pg_briefing .section#sec2{

}
.briefing_qr_wrap{
  position: relative;
}
.briefing_qr_wrap .items{
  border: 1px solid #1b1b1b;
  padding: 5px;
  position: relative;
}
.briefing_qr_wrap .items:before{
  content: "";
  display: block;
  width: 50px;
  height: 50px;
  background-image: url("/img/dealer/dealer_bg3.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  position: absolute;
  top: -15px;
  left: 0;
  z-index: 3;
}
.briefing_qr_wrap .items .inner{
  border: 1px solid #1b1b1b;
  padding: 12px 22px 8px;
}
.briefing_qr_wrap .items .item_top{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  /*align-items: center;*/
}
.briefing_qr_wrap .items .item1{
  width: calc(100% - 165px);
  padding-right: 60px;
}
.briefing_qr_wrap .items .item1 .text{
  font-size: 18px;
  font-weight: normal;
  line-height: 1.8888em;
  letter-spacing: 0.075em;
  margin: 15px 0;
}
.briefing_qr_wrap .items .item2{
  width: 165px;
  text-align: center;
}
.briefing_qr_wrap .items .item2 .text{
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  background: #79a544;
  border-radius: 30px;
  padding: 2px 6px;
  letter-spacing: -0.04em;
}
.briefing_qr_wrap .items .item2 .img{
  margin-top: 5px;
}
.briefing_qr_wrap .items .item1.bt{
  width: 73.01%;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.briefing_qr_wrap .items .item1.bt .tet1{
  font-size: 18px;
  font-weight: 500;
  padding: 10px 0;
}
.briefing_qr_wrap .items .item2.bt{
  width: calc(100% - 73.01%);
}
.briefing_qr_wrap .items + .items{
  margin-top: 50px;
}

.briefing_qr_wrap .items .item3{
  width: calc(100% - 270px);
  font-size: 17px;
  padding: 35px 0;
  padding-right: 15px;
  font-weight: 500;
}
.briefing_qr_wrap .items .item3 .tet1{
  padding: 11px 2px 11px 17px;
}
.briefing_qr_wrap .items .item3 .tet1:nth-child(odd){
  background: #eeeeee;
}
.briefing_qr_wrap .items .item4 {
  width: 270px;
  padding-top: 35px;
}

.pg_briefing .section#sec2{
  padding-top: 80px;
}
.pg_briefing .section#sec2 .tt2{
  border: 3px solid #ffffff;
}
.pg_briefing .section#sec2 .bg{
  padding: 25px 10px 20px;
  background: #eeeeee;
}
.briefing_movies{
  margin: 0 -25px;
}
.briefing_movies .item{
  width: 50%;
  padding: 0 25px;
}
.briefing_movies .center{
  margin-top: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
}


/* **********************************
 *  準備中表記
 * ********************************* */
.dealer_cat_wrap .box .item.cs a{
  pointer-events: none;
  overflow: hidden;
  position: relative;
  font-weight: 500;
}
.dealer_cat_wrap .box .item.cs a:before{
  content: "Coming soon";
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  color: #ffffff;
  font-family: 'M PLUS Rounded 1c', sans-serif;  
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  border-radius: 5px;
}
.cs_movie {
  height: 320px;
  font-size: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #ffffff;
  background: #8b8b8b;
}

.briefing_qr_wrap .items .item4.cs a{
  position: relative;
  pointer-events: none;
  display: block;
}
.briefing_qr_wrap .items .item4.cs a:before{
  height: 100%;
  width: 100%;
  content: "Coming soon";
  font-size: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #ffffff;
  background: rgba(0,0,0,0.6);  
  position: absolute;
  left: 0;
  top: 0;
}

.link_1.cs{
  position: relative; 
}
.link_1.cs a{
  pointer-events: none;
}
.link_1.cs:after{
  height: 100%;
  width: 100%;
  content: "Coming soon";
  font-size: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #ffffff;
  background: rgba(0,0,0,0.6);  
  position: absolute;
  left: 0;
  border-radius: 29px;
}

/*よくある質問：リンク*/
.faq_items .item dd a[href*="mailto:"],
.faq_items .item dd a[href*="tel:"]{
  color: inherit;
}