@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: #181818;
}
body.home{
  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:1200px){
  .md:not(.pc){
    display: none;
  }
  .pc:not(.md){
    display: block!important;
  }
}
@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;
  }
  .sp:not(.tb){
    display: none;
  }
  .md:not(.tb){
    display: none;
  }
}
@media (max-width:767px){
  .pc:not(.sp){
    display: none;
  }
  .md:not(.sp){
    display: none;
  }
  .md:not(.sp){
    display: none;
  }
}

/* **********************************
 *  コンテナ
 * ********************************* */
.wrapper{
  overflow-x: hidden;
}
.container{
  width: 1140px;
  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{
  height: 243px;
  padding-top: 20px;
  /*padding: 15px 0;*/
  text-align: center;
  background: url(/img/hdr_img.jpg) no-repeat center bottom;
}
.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%;
  position: relative;
}
.gnav > ul > li:after{
  content: "";
  width: calc(100% - 15px);
  height: 3px;
  margin: 13px auto 0;
  border-bottom: 3px solid transparent;
  display: block;
}
.gnav > ul > li.current_page_item:after{
  border-bottom: 3px solid #d7720f;
}

.gnav li a{
  width: 100%;
  padding: 7px 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: 200px;
  padding-bottom: 30px;
  background: #f4efe7;
  text-align: center;
  overflow: hidden;
}
.home footer {
  margin-top: 145px;
}
footer:before{
  content: "";
  width: 100%;
  height: 61px;
  margin-bottom: 55px;
  background: url(/img/ftr_line.jpg) no-repeat center top;
  display: block;
}

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: 5px 0;
  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;
}

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: 25px;
}
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;
}
.mw_wp_form .contact_form_acceptance .horizontal-item,
.mw_wp_form .important_check .horizontal-item{
  margin-right: 0;
  vertical-align: middle;
  display: inline-block;
}

/* コンタクトフォーム - ボタン */
.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-top: 15px;
  margin-bottom: 50px;
  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{
}
/* 詳しく見る サンプル */
.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 {
  padding: 25px 0 10px;
  background: url(/img/home/border1.jpg) no-repeat center bottom #f2fafe;
}
.home_banner .item{
  font-size: 24px;
  padding: 10px 0;
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.075em;
  line-height: 1.5;
  border-top: 2px solid #dbd1b8;
}
.home_banner .item .txt{
  min-height: 64px;
  padding: 5px;
  display: inline-block;
  vertical-align: middle;
  line-height: 1.2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: #ffffff;
}

.pg_home .section#sec2{
  padding: 205px 0 212px;
}
.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% - 65px);
  padding-bottom: 10px;
  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: 290px;
  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% + 65px);
  margin-right: -65px;
  margin-top: -55px;
  background: #FFFFFF;
  height: 310px;
  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: 80px 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_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;
}





/* **********************************
 *  商品券について
 * ********************************* */
.pg_about{
  color: #181818;
}
.pg_about .section#sec1 .tt2{
  margin-bottom: 30px;
}
.pg_about .section#sec1 .text{
  margin: 0 0 55px;
  letter-spacing: 0.075em;
}
.about_tbl{
  border-right: 1px solid #b5b5b5;
  border-top: 1px solid #b5b5b5;
  table-layout: auto;
}
.about_tbl th,
.about_tbl td{
  padding: 15px;
  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,
.about_tbl tbody td{
  width: 39.65%;
}
.about_tbl thead th:first-of-type{
  width: 230px;  
  text-align: left;
  font-weight: 500;  
}
.about_tbl thead th.th1{
  background: #f4abc2;
}
.about_tbl thead th.th2{
  background: #f8c166;
}
.about_tbl tbody th{
  width: 159px;
  text-align: left;
  font-weight: 500;
  background: #f9f9f9;
}
.about_tbl tbody th.th3{
  width: 71px;
  padding: 0;
  text-align: center;
  letter-spacing: 0.075em;
}
.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;
}
.about_ttl1 {
  font-size: 20px;
  padding: 5px;
  margin-top: 50px;
  margin-bottom: 30px;
  background: #f4efe7;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.075em;
}
.about_caution.red{
  font-size: 18px;
  margin-top: 45px;
  font-weight: 500;
  letter-spacing: 0.075em;
  text-align: center;
  color: #d50303;
}

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

@media (max-width: 1199px){
  .about_tbl thead th, 
  .about_tbl tbody td {
    width: 38.65%;
  }
}

@media (max-width: 1023px){
  .about_tbl thead th, 
  .about_tbl tbody td {
    width: 33.65%;
  }
}

@media (max-width: 767px){
  .sp .thead{
    height: 50px;
    margin-top: 25px;
    border-right: 1px solid #b5b5b5;
    border-top: 1px solid #b5b5b5;    
    position: relative;
  }
  .sp .thead:after{
    font-size: 12px;
    content: "▼";
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
  }
  /*.sp .thead .th{
    width: 120px;
    padding: 12px 10px 12px 10px;
    border-left: 1px solid #b5b5b5;
    letter-spacing: 0.1em;
  }*/
  .sp .thead ul{
    width: 100%;
    -webkit-appearance:none;
    appearance:none;
    border: 0;
    border-left: 1px solid #b5b5b5;
    border-bottom: 1px solid #b5b5b5;
    position: absolute;             /* 選択肢が開いた時に高さが変わるので指定 */
    top: 0px;                       /* 好きな位置に */
    right: 0px;
  }
  .sp .thead li{
    padding: 12px 15px;
    display: none;
    text-align: center;
  }
  .sp .thead li:first-child{
    background: #f4abc2;
  }
  .sp .thead li:nth-child(2) {
    background: #f8c166;
  }
  .about_tbl{
    margin-top: 0;
  }
  .about_tbl th, 
  .about_tbl td {
    padding: 10px;
  }
  .about_tbl th{    
    letter-spacing: 0.15em;
  }
  .about_tbl,
  .about_tbl tr,
  .about_tbl thead,
  .about_tbl tbody,
  .about_tbl tbody th,
  .about_tbl tbody td {
    width: 100%;
  }
  .about_tbl tbody th.th3{
    width: 25%;
  }
  .about_tbl tbody th.th3 + th,
  .about_tbl tbody th.th3 + td{
    width: 75%;
  }
  .about_tbl.hide{
    display: none;
  }
  .pg_about .section#sec1 .text{
    text-align: left;
  }

  .about_caution {
    font-size: 16px;
  }
  
  .about_tbl tbody th[colspan="2"] + td{
    width: 0;
    padding: 0;
    border: 0;
  }
}


/* **********************************
 *  市民のみなさん
 * ********************************* */
.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;
}


/* **********************************
 *  取扱店のみなさん（取扱店舗登録）
 * ********************************* */
.regist_text{
  font-size: 17px;
  padding: 50px 62px;
  letter-spacing: 0.075em;
  line-height: 2.35;
  border: 10px solid #ec7399;
  border-radius: 40px 0 40px 0;
  text-align: justify;
}
.pg_regist .links{
  max-width: 840px;
  margin: 95px auto 0;
}
.pg_regist .links a{
  text-align: center;
  background: #f4efe7;
  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: 45px;
  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: 130px;
  padding-bottom: 140px;
}
.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: 20px;
  margin-bottom: 18px;
  padding: 5px;
  font-weight: 700;
  text-align: center;
  background: url(/img/dealer/bg1.png) left top;
  letter-spacing: 0.08em;
  text-shadow: 2px 2px 1px #ffffff, 
    -2px 2px 1px #ffffff, 
    2px -2px 1px #ffffff, 
    -2px -2px 1px #ffffff, 
    2px 0px 1px #ffffff, 
    0px 2px 1px #ffffff, 
    -2px 0px 1px #ffffff, 
    0px -2px 1px #ffffff;
}
.regist_box .text{
  padding: 0 25px;
  letter-spacing: 0.075em;
  line-height: 1.6;
  text-align: justify;
}
.regist_box .medium{
  font-size: 20px;
  padding-top: 15px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.08em;
  text-align: center;
}
.regist_box .medium span{
  display: inline-block;
}
.regist_box .text .red{
  font-size: 24px;
  margin-bottom: 15px;
  font-weight: 700;
  text-align: center;
}
.regist_text a,
.regist_box .text a:not(.nocol){
  color: #3065eb;
}
.logo_accept_box{
  font-size: 17px;
  margin-top: 30px;
  font-weight: 700;
  letter-spacing: 0.075em;
  color: #d01313;
}
.logo_content{
  display: none;
}

@media(max-width:1199px){  
  .regist_box .medium {
    font-size: 18px;
  }
}

@media(max-width:1023px){
  .pg_regist .links .link2 {
    max-width: 49%;
  }
  .regist_box .medium {
    font-size: 17px;
    padding-top: 30px;
  }
  .regist_box .text .red {
    font-size: 17px;
  }
  .pg_regist .section#sec1 .text{
    text-align: left;
  }
  .pg_regist .links {
    margin: 40px auto 0;
  }
  .regist_box .item {
    width: 100%;
  }
  .regist_box .item + .item{
    margin-top: 15px;
  }
  .pg_regist .section#sec2 {
    padding-top: 80px;
    padding-bottom: 100px;
  }
}

@media(max-width:767px){
  .pg_regist .links .link1 {
    font-size: 16px;
  }
  .pg_regist .links a i {
    margin-right: 10px;
  }
  .pg_regist .links .flex {
    margin-top: 25px;
  }
  .pg_regist .links a.link1 i img{
    width: 40px;
  }
  .pg_regist .links a.link2{
    max-width: 100%;
  }
  .pg_regist .links a.link2 i img{
    width: 30px;
  }
  .pg_regist .links a.link2 + .link2{
    margin-top: 10px;
  }

  .pg_regist .section#sec2 {
    padding-top: 60px;
  }
  .regist_box .medium {
    font-size: 14px;
    padding-top: 0;
  }
  .regist_box .text .red {
    font-size: 18px;
  }
  .regist_box .text{
    padding: 0 10px;
    letter-spacing: 0;
  }

  .regist_text {
    font-size: 15px;
    padding: 30px 15px;
  }
  .logo_accept_box {
    font-size: 15px;
  }
}


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

.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;
}
.pg_faq .read_more2{
  max-width: 450px;
}