@charset "UTF-8";
/*
Theme Name: MY-THEME
*/

/* ==========================================================================
   サイト毎の独自のスタイル
   ========================================================================== */

/* 基本フォント: ゴシック */
/*@import url(//fonts.googleapis.com/earlyaccess/notosansjapanese.css);*/
body{
  /*font-family:  'Noto Sans Japanese', '游ゴシック体','Yu Gothic', 'YuGothic', 'Hiragino Kaku Gothic Pro', "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;*/
}

/* 基本フォント: 明朝 */
/**/
body{
  /* 游明朝体 */
  font-family: "游明朝体", "Yu Mincho", YuMincho, "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  /**/
  /* ヒラギノ明朝 */
  /*font-family: 'Hiragino Mincho Pro', 'ヒラギノ明朝 Pro', 'Yu Mincho', '游明朝', 'MS Mincho', 'MS明朝', serif;*/
}

.gothic{
  font-family: '游ゴシック体','Yu Gothic', 'YuGothic', "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.mincho{
  font-family: "游明朝体", "Yu Mincho", YuMincho, "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

a{
  color: inherit;
  text-decoration: none;
}
a:hover{
  text-decoration: underline;
}

img{
  max-width: 100%;
}
a img:hover{
  opacity: 0.8;
}

img[class*="wp-image-"],
img[class*="attachment-"]{
  max-width: 100%;
  height: auto;
}

/* 動画埋め込みのレスポンシブ対応 */
.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%;
}



/* **********************************
 *  コンテナ
 * ********************************* */
.wrapper{
}
.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_section{
  width: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.pg_header{
  padding: 0 0;
}


/* 共通の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{
}
header .hdr1{
  margin-bottom: 10px;
}
header .hdr1 .hdr_logo{
  float: left;
}
header .hdr1 .hdr_contact{
  float: right;
}

.header_sp{
  background: #ac6a00;
  padding: 5px 10px;
  text-align: center;
  display: none;
}
.header_sp img{
  height: 160px;
}


/* **********************************
 *  グローバルナビ
 * ********************************* */
.gnav{
  background-image: url('/img/gnav_bg.jpg');
  background-repeat: repeat-x;
  background-position: center center;
  
  
}
.gnav > .container{
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}
.gnav .logo{
  width: 28%;
  color: #ffffff;
  text-align: center;
}
.gnav .logo span{
  font-size: 15px;
}
.gnav .gnav_ul{
  width: 70%;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-around;
  align-items: center;
  text-align: center;
  font-size: 16px;
}
.gnav .gnav_ul > li{
  /*width: 100%;*/
  position: relative;
}
.gnav .gnav_ul > li.menu-item-has-children:after{
  content: "\f0d7";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #FFF;
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.gnav li a{
  color: #ffffff;
  text-decoration: none;
  display: block;
  padding: 5px;
}
.gnav li a:hover{
  /*color: #FFF;*/
}

.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: 880px;
  
  background-image: url('/img/mv_bg.jpg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.mv .mv_box{
  text-align: center;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.mv .mv_box .txt{
  font-size: 32px;
}
.mv .mv_box .img{
  
}
.mv .mv_box .img img{
  
}
.mv .mv_box .img + .img{
  margin-top: 20px;
}


/* **********************************
 *  フッター
 * ********************************* */
footer{
  background-image: url('/img/footer_bg.jpg');
  background-repeat: repeat;
  color: #ffffff;
  padding-top: 30px;
}
footer .ftr_logo1{
  text-align: center;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #ffffff;
}
footer .ftr1{
  margin-bottom: 30px;
}
footer .ftr1 .container{
  display: flex;
  justify-content: space-between;
}
footer .ftr1 .ftr_logo2{
  width: 26%;
}
footer .ftr1 .ftr_logo2 .img{
  text-align: center;
  margin-bottom: 10px;
}
footer .ftr1 .ftr_logo2 .txt{
  font-size: 15px;
}
footer .ftr1 .ftr_links{
  width: 72%;
  display: flex;
  justify-content: space-around;
}
footer .ftr1 .ftr_links li{
  text-align: center;
}

footer .ftr1 .ftr_links li a{
  color: #ffffff;
}

footer .ftr2{
  
}
footer .ftr2 .box_l{
  
}
footer .ftr2 .box_r{
  text-align: right;
}

footer .copy{
  text-align: center;
  font-size: 12px;
  padding: 10px 0;
  background: #6a3906;
}
footer .copy a{
  /*color: #111;*/
}


.footer_fix{
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #e7debd;
  z-index: 10;
}
.footer_fix ul{
  /*display: table;*/
  width: 100%;
  font-size: 14px;
  
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 3px;
}
.footer_fix ul li{
  /*display: table-cell;*/
  text-align: center;
  /*vertical-align: middle;*/
}
.footer_fix ul li.btn1{
  width: 36%;
}
.footer_fix ul li.btn2{
  width: 24%;
}
.footer_fix ul li a{
  display: block;
  padding: 10px;
  background: #ac6a00;
  color: #FFF;
  text-decoration: none;
}


/* 検索フォーム */
.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_list{
  padding: 0 0;
}
.post_list .item{
  /*background: #f0f0f0;*/
  padding: 10px;
  border-top: 1px solid #CCC;
  display: flex;
  align-items: center;
}
.post_list .item:last-child{
  border-bottom: 1px solid #CCC;
}
.post_list .item .img{
  
}
.post_list .item .date{
  width: 100px;
}
.post_list .item .category{
  width: 150px;
  padding: 0 10px;
}
.post_list .item .category span{
  display: block;
  background: #CCC;
  text-align: center;
  padding: 3px;
}
.post_list .item .title{
  font-weight: normal;
  /*width: -moz-available;
  width: -webkit-fill-available;
  width: available;*/
}
.post_list .item .title a{
  display: block;
}

.post_list .item .excerpt{
  
}
.post_list .item .more{
  
}


/* ページ送り(一覧) */
.pagination{
  text-align: center;
  margin-top: 30px;
}
.pagination .nav-links{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  
}
.pagination .page-numbers{
  align-self: stretch;
  border: 1px solid #c0c0c0;
  padding: 5px 10px;
  margin: 4px 4px;
  color: #1e1e1e;
  text-decoration: none;
}
.pagination .page-numbers.current,
.pagination .page-numbers:hover{
  background: #e5e5e5;
}
.pagination .page-numbers.next:after{
  content: "\f101";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-left: 10px;
}
.pagination .page-numbers.prev:before{
  content: "\f100";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 10px;
}

/* ページ送り(詳細) */
.pagination .nav-posts{
  display: flex;
  /*flex-wrap: wrap;*/
  justify-content: space-between;
  align-items: center;
}
.pagination .nav-posts .page-next,
.pagination .nav-posts .page-prev{
  width: 200px;
} 
.pagination .nav-posts .page-next a,
.pagination .nav-posts .page-prev a{
  display: block;
  border: 1px solid #c0c0c0;
  padding: 10px 10px;
  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;
  border: 1px solid #c0c0c0;
}

/* ページ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_form{
  width: 100%;
}
.contact_form tr{
  /*border-bottom: 1px dashed #999;*/
}
.contact_form th,
.contact_form td{
  padding: 15px;
  font-weight: normal;
  text-align: left;
  border: 1px solid #898989;
}
.contact_form th{
  width: 27%;
  background: #eeeeee;
  font-weight: bold;
}
.contact_form th .require{
  display: inline-block;
  padding: 2px 5px;
  color: #FFF;
  background: #e60012;
  font-size: 10px;
  font-weight: normal;
  float: right;
  border-radius: 5px;
}
.contact_form dl{
  width: 100%;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.contact_form dl dt,
.contact_form dl dd{
  
}
.contact_form dl dt{
  width: 90px;
}
.contact_form dl dd{
  width: calc(100% - 90px);
}
.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 .wpcf7-form-control ,
.contact_form td .wpcf7c-conf-hidden {
  padding: 10px;
  max-width: 100%;
  border: 1px solid #CCC;
  border-radius: 0;
}
.contact_form td .wpcf7-checkbox,
.contact_form td .wpcf7-radio{
  border: 0;
}
.contact_form td .wpcf7-text {
  width: 100%;
}
.contact_form td .wpcf7-textarea {
  width: 100%;
}
.contact_form td .wpcf7-file {
  width: 100%;
  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: 150px;
}
.contact_form td [name="addr1"]{
  width: 180px;
}
.contact_form td [name="addr2"]{
}
.contact_form td .wpcf7-form-control-wrap.zipcode{
  display: flex;
  align-items: stretch;
}
.contact_form td .wpcf7-form-control-wrap.zipcode:before{
  vertical-align: top;
  content: "〒";
  background: #CCC;
  width: 30px;
  padding: 0;
  margin: 0;
  border: 1px solid #CCC;
  border-right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* 確認画面用 */
.wpcf7c-conf:not([type="radio"]):not([type="checkbox"]){
  background: #eeffe4;
  -webkit-box-shadow: 0 0 0px 1000px #eeffe4 inset;
  border: 1px solid #398f14;
  opacity: 0.9;
}
.wpcf7c-conf:checked + .wpcf7c-conf-hidden + .wpcf7-list-item-label{
  color: #398f14;
}
/*input:-webkit-autofill,
textarea:-webkit-autofill, 
select:-webkit-autofill {
  background-color: #eeffe4 !important;
  background-image: none !important;
  color: #666 !important;
}*/ 

/* コンタクトフォーム - ボタン */
.contact_form_btns{
  text-align: center;
  padding: 30px 0;
}
.contact_form_btns input[type="submit"],
.contact_form_btns input[type="button"]{
  /**/background: #13b5b1;
  color: #FFF;
  
  border: 0;
  padding: 10px;
  width: 300px;
  margin: 0 10px;
}
.contact_form_btns input[type="submit"]{
  
  
}

.contact_form_btns input.wpcf7-confirm{
  background: #ffffff;
  color: #111111;
  border: 1px solid #111111;
}
.contact_form_btns input.wpcf7-back{
  background: #CCC;
}
.contact_form_btns input.wpcf7-submit{
  background: #398f14;
}



/* **********************************
 *  メイン
 * ********************************* */
.main{
  padding: 0 0 50px;
}
.home .main{
  padding-top: 40px;
}

.pg_section{
  padding-top: 50px;
  padding-bottom: 50px;
}

.pg_header{
  
  background-image: url('/img/pg_header_bg.jpg');
  background-position: center center;
}
.pg_header .container{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 300px;
}
.pg_header .tt1{
  width: 470px;
  height: 200px;
  background: #ac6a00;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-content: center;
  flex-wrap: wrap;
  position: relative;
}
.pg_header .tt1:before{
  content: "";
  display: block;
  width: 100%;
  height: 38px;
  background-image: url('/img/icon2.png');
  background-repeat: no-repeat;
  background-position: center center;
  margin: 0 auto 20px;
}
.pg_header .tt1:after{
  content: "";
  position: absolute;
  top: 5px;
  bottom: 5px;
  left: 5px;
  right: 5px;
  border: 1px solid #FFFFFF;
}

.tt1{
  
}
.tt2{
  font-size: 34px;
  text-align: center;
  margin-bottom: 40px;
}
.tt2 span{
  display: block;
  font-size: 18px;
}
.tt3{
  font-size: 34px;
  margin-bottom: 40px;
  text-align: center;
}
.tt3:before{
  content: "";
  display: block;
  width: 27px;
  height: 27px;
  background-image: url('/img/icon1.png');
  background-repeat: no-repeat;
  margin: 0 auto 10px;
}

.tt4{
  border-bottom: 5px solid #996c33;
  padding-bottom: 10px;
  margin-bottom: 30px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.tt4 .date{
  font-size: 16px;
}

.tt5{
  font-size: 18px;
  border-bottom: 1px solid;
  padding: 5px 0;
  margin-bottom: 15px;
}

.map{
  margin-top: 100px;
}
.map iframe{
  
}

.link_btn1{
  display: flex;
  justify-content: center;
}
.link_btn1 a{
  display: flex;
  justify-content: center;
  align-items: center;
  
  width: 334px;
  height: 67px;
  text-align: center;
  text-decoration: none;
  background-image: url('/img/link_bg1.png');
  background-repeat: no-repeat;
  font-size: 18px;
  position: relative;
}
.link_btn1 a:after{
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  right: 35px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.link_btn1 a:hover{
  opacity: 0.8;
}

.link_btn2{
  display: flex;
  justify-content: center;
}
.link_btn2 a{
  display: flex;
  justify-content: center;
  align-items: center;
  
  width: 670px;
  height: 100px;
  text-align: center;
  text-decoration: none;
  background-image: url('/img/link_bg2.png');
  background-repeat: no-repeat;
  font-size: 28px;
  position: relative;
}
.link_btn2 a:after{
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  right: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.link_btn2 a:hover{
  opacity: 0.8;
}


.about_items{
  display: flex;
  justify-content: space-between;
}
.about_items .item{
  width: 31.25%;
}
.about_items .item .txt{
  line-height: 1.8;
  margin-top: 10px;
}

.top_msg{
  background-image: url('/img/bg1.jpg');
  background-position: center top;
}
.msg_box{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.msg_box .box1{
  width: 34%;
}
.msg_box .box2{
  width: 64%;
}
.msg_box .title{
  font-size: 26px;
}
.msg_box .txt{
  margin-top: 15px;
  line-height: 1.8;
}
.msg_image_items{
  background: #77511e;
  display: flex;
  justify-content: center;
  padding: 25px 0;
}
.msg_image_items .item{
  background: #FFFFFF;
  border: 1px solid #000;
  padding: 9px;
  width: 100%;
}


.products_items{
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
  margin-bottom: 20px;
}
.products_items .item{
  width: 33.333333%;
  position: relative;
  padding-left: 15px;
  padding-right: 15px;
  margin-bottom: 25px;
}
.products_items .item .box{
  background: #ffffff;
  box-shadow: 0 0 4px 0px #CCC;
  padding: 10px;
  height: 100%;
}
.products_items .item .img{
  display: block;
  overflow: hidden;
  position: relative;
  background: #eeeeee;
}
.products_items .item .img:before{
  content: "";
  display: block;
  padding-top: 75%;
}
.products_items .item .img img{
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: auto;
  max-width: none;
  height: 100%;
}
.products_items .item .category{
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
}
.products_items .item .category span{
  background: #77511e;
  color: #ffffff;
  font-size: 14px;
  padding: 3px 15px;
  margin-bottom: 3px;
}
.products_items .item .category span+span{
  margin-left: 5px;
}

.products_items .item .date{
  margin-top: 5px;
}
.products_items .item .title{
  margin-top: 5px;
}


.top_works{
  background-image: url('/img/bg2.jpg');
}



.products_gallery{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.products_gallery .gallery_main{
  width: 67%; 
}
.products_gallery .gallery_main .sp-image{
  width: auto !important;
  height: auto !important;
  max-width: 100%;
  max-height: 100%;
}
.products_gallery .gallery_thumb{
  width: 31%;
}
.products_gallery .gallery_thumb ul{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.products_gallery .gallery_thumb ul li{
  width: 49%;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  background: #CCC;
}
.products_gallery .gallery_thumb ul li img{
  width: 100%;
}

.products_data{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.products_data .box1,
.products_data .box2{
  width: 49%;
}
.products_data .box2{
  border: 1px solid #898989;
  padding: 10px;
}
.products_data .box3{
  width: 100%;
  border: 1px solid #898989;
  padding: 10px;
}
.products_data .details{
  width: 100%;
}
.products_data .details th,
.products_data .details td{
  padding: 10px 5px;
  border: 1px solid #898989;
}
.products_data .details th{
  background: #eeeeee;
  width: 140px;
}
.products_data .details td{
  padding: 10px 15px;
}

.link_form_btns{
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}
.link_form_btns a{
  width: 49%;
  text-decoration: none;
  text-align: center;
  padding: 10px;
  background: #ffffff; /* Old browsers */
  background: -moz-linear-gradient(top, #ffffff 0%, #f1f1f1 50%, #e1e1e1 51%, #f6f6f6 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #ffffff 0%,#f1f1f1 50%,#e1e1e1 51%,#f6f6f6 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #ffffff 0%,#f1f1f1 50%,#e1e1e1 51%,#f6f6f6 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  border: 1px solid #CCC;
  position: relative;
}
.link_form_btns a:after{
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.works_bfaf_items{
  margin-top: 50px;
}
.works_bfaf_items .item{
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 30px;
}
.works_bfaf_items .item.wide{
  justify-content: center;
}
.works_bfaf_items .item .bf{
  width: 43%;
}
.works_bfaf_items .item .af{
  width: 53%;
}
.works_bfaf_items .item .title{
  display: block;
  background: #d1c0a5;
  font-weight: bold;
  font-size: 24px;
  padding: 3px 0;
  text-align: center;
  margin-top: 10px;
}


.order_nav{
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
}
.order_nav li{
  background-image: url('/img/link_btn3.png');
  background-repeat: no-repeat;
  width: 520px;
  font-size: 20px;
  font-weight: bold;
  position: relative;
}
.order_nav li:before{
  content: "";
  border: 2px solid #FFFFFF;
  position: absolute;
  top: 5px;
  bottom: 5px;
  left: 5px;
  right: 5px;
}
.order_nav li.on:before{
  background: rgba(255,255,255,0.5);
}

.order_nav li a{
  display: block;
  text-align: center;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 68px;
  position: relative;
}


.contact_desc2{
  padding: 15px;
  margin-top: 15px;
  margin-bottom: 50px;
  border: 6px solid #e5e5e5;
  line-height: 1.6;
}
.contact_desc2 h4{
  padding-bottom: 5px;
  margin-bottom: 5px;
  border-bottom: 1px dotted;
}

/* プライバシーポリシー */
.privacy_items{
  border: 6px solid #e5e5e5;
  padding: 25px 20px;
}
.privacy_items .item{
  line-height: 1.8;
}
.privacy_items .item + .item{
  margin-top: 30px;
}
.privacy_items .item h4{
  font-size: 18px;
  /*border-left: 6px solid #bbbbbb;*/
  border-bottom: 1px dotted;
  /*padding-left: 15px;*/
  margin-bottom: 10px;
}
.privacy_items .item .txt{
  
}
.privacy_items .item ul{
  list-style: disc;
  margin-left: 2em;
  margin-top: 10px;
}
.privacy_items .item ul li{
  
}

.privacy_items .item ol{
  list-style: none;
  /*margin-left: 2em;*/
  margin-top: 10px;
}
.privacy_items .item ol li{
  display: flex;
}

.order_desc_items,
.order_desc_items2{
  margin-bottom: 60px;
}
.order_desc_items .item,
.order_desc_items2 .item{
  line-height: 1.8;
}
.order_desc_items .item + .item,
.order_desc_items2 .item + .item{
  margin-top: 30px;
}
.order_desc_items .item h4{
  font-size: 18px;
  border-bottom: 1px solid #898989;
}
.order_desc_items .item .txt_b,
.order_desc_items2 .item .txt_b{
  font-weight: bold;
}
.order_desc_items .item .red,
.order_desc_items2 .item .red{
  color: #d90000;
}
.order_desc_items .item .blue,
.order_desc_items2 .item .blue{
  color: #162cff;
}

.order_desc_items .item ul,
.order_desc_items2 .item ul{
  list-style: disc;
  margin-left: 2em;
  margin-top: 10px;
}
.order_desc_items .item ol,
.order_desc_items2 .item ol{
  list-style: none;
  margin-top: 10px;
}
.order_desc_items .item ol li,
.order_desc_items2 .item ol li{
  display: flex;
}

.order_rules{
  display: flex;
  flex-wrap: wrap;
  margin-left: -17.5px;
  margin-right: -17.5px;
  margin-bottom: 30px;
  font-size: 14px;
  font-weight: bold;
}
.order_rules li{
  width: 33.333333%;
  padding-left: 17.5px;
  padding-right: 17.5px;
  margin-bottom: 15px;
}
.order_rules li a{
  display: block;
  border: 1px solid #d1c0a5;
  border-bottom: 3px solid #d1c0a5;
  padding: 10px 5px;
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.order_rules li a:after{
  content: "\f138";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}
.order_rules li a:hover{
  background: #d1c0a5;
  color: #FFFFFF;
}



.tbl{
  width: 100%;
}
.tbl th,
.tbl td{
  border: 1px solid #898989;
  padding: 10px;
}
.tbl th{
  background: #eeeeee;
  width: 24%;
}
.tbl td{
  
}