@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;
}
*/
@font-face {
  font-family: "SnellBT";
  src: url(css/fonts/SnellBT-Bold.woff2) format("woff2"),
  url(css/fonts/SnellBT-Bold.woff) format("woff");
  font-weight: 700;
  font-style: normal;
}

/* ==========================================================================
   サイト毎の独自のスタイル
   ========================================================================== */

/* 基本フォント: ゴシック */
body{
  font-family:  'Noto Serif JP', "游明朝体", "Yu Mincho", YuMincho, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.666;
  color: #413827;
}

/* 基本フォント: 明朝 */
/**/
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;
}

a{
  color: inherit;
  text-decoration: none;
}
a:hover{
  text-decoration: underline;
}

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: 1220px;
  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-color: #ccc;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.pg_header .container{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 728px;
  position: relative;
}

/* 共通の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-top: 15px;
  background: rgba(255,244,227,0.9);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
}
header .hdr_blc{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  /*align-items: center;*/
}
header .hdr_blc .hdr1{
  width: 18.66%;
}
header .hdr_blc .hdr2{
  width: 76.66%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}

header .hdr_blc .hdr_logo{
  padding-top: 10px;
  padding-bottom: 10px;
  line-height: 1;
}
header .hdr_blc .hdr_langs{
  display: flex;
  font-size: 14px;
  color: #735829;
}
header .hdr_blc .hdr_langs li{
  padding: 0 10px;
  line-height: 1;
  border-right: 1px solid;
}
header .hdr_blc .hdr_langs li:first-child{
  border-left: 1px solid;
}
header .hdr_blc .hdr_contact{
  
}
header .hdr_blc .hdr_contact .btn1{
  margin-right: 20px;
}
header .hdr_blc .hdr_contact .btn2{
  position: relative;
  top: -15px;
}
header .hdr_blc .gnav{
  width: 100%;
  margin-top: 30px;
}




/* **********************************
 *  グローバルナビ
 * ********************************* */
.gnav{
  
}
.gnav > ul{
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-around;
  align-items: center;
  text-align: center;
  font-size: 15px;
  
}
.gnav > ul > li{
  width: 100%;
  position: relative;
  padding-bottom: 10px;
}
.gnav > ul > li.current-menu-item:before{
  content: "";
  display: block;
  width: 108px;
  max-width: 100%;
  height: 5px;
  background: #735829;
  position: absolute;
  left: 50%;
  bottom: 0;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}

.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: #735829;
  text-decoration: none;
  display: block;
  padding: 5px;
}
.gnav li a:hover{
}

.gnav li a span{
  display: block;
  font-size: 15px;
  margin-top: 5px;
}

.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: 886px;
  
  background: #CCC;
  background-image: url('/img/mv.jpg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.mv .mv_box{
  /*display: flex;*/
  /*justify-content: flex-end;*/
  /*align-items: flex-end;*/
  text-align: right;
  padding-bottom: 120px;
}

.mv .mv_box .txt{
  font-size: 32px;
}
.mv .mv_box .img{
  
}
.mv .mv_box .img img{
  
}


/* **********************************
 *  フッター
 * ********************************* */
footer{
  background-color: #c2ab69;
  color: #FFF;
  margin-top: 200px;
}

footer .ftr1{
  background-color: #fff4e3;
  color: #413827;
  padding-top: 60px;
  padding-bottom: 75px;
}
footer .ftr1 .container{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  
}
footer .ftr1 .box1{
  /*width: 27.5%;*/
  width: 34.16%;
}
footer .ftr1 .box2{
  width: 63.75%;
}

footer .ftr1 .ftr_logo{
  margin-bottom: 60px;
}
footer .ftr1 .ftr_addr{
  
}
footer .ftr1 .ftr_addr dl{
  font-size: 14px;
  font-family: "Noto Sans JP";
  width: 330px;
  max-width: 100%;
}
footer .ftr1 .ftr_addr dl + dl{
  margin-top: 30px;
}
footer .ftr1 .ftr_addr dl dt{
  font-weight: 700;
  display: flex;
  align-items: center;
  white-space: nowrap;
  margin-bottom: 10px;
}
footer .ftr1 .ftr_addr dl dt:after{
  content: "";
  width: 100%;
  margin-left: 10px;
  border-bottom: 2px dotted #aba192;
}
footer .ftr1 .ftr_addr dl dd{
  font-weight: 400;
  line-height: 1.57;
}

footer .ftr1 .map{
  
}
footer .ftr1 .map iframe{
  width: 100%;
  height: 400px;
}
footer .ftr1 .ftr_contact{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 35px;
}
footer .ftr1 .ftr_contact li{
  width: 50%;
}
footer .ftr3{
  margin-top: 30px;
}



.ftr_links_wrap{
  display: flex;
  
}
.ftr_links_wrap .ftr_links{
  width: 240px;
}
.ftr_links_wrap .ftr_links.wide{
  width: 670px;
}

footer .ftr_links{
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  align-content: flex-start;
}
footer .ftr_links li{
  width: 100%;
  font-size: 16px;
  line-height: 1;
  padding: 10px 0;
}

footer .ftr_links li:before{
  content: "▶";
  font-size: 11px;
  line-height: 16px;
  margin-right: 5px;
}
footer .ftr_links li a{
  
}
footer .ftr_links.wide ul{
  display: flex;
  flex-wrap: wrap;
  margin-left: 20px;
  margin-top: 10px;
}
footer .ftr_links.wide ul li{
  width: 50%;
}
footer .ftr_links.wide ul li:before{
  display: none;
}
.ftr_sns_links{
  display: flex;
  justify-content: center;
  width: 100%;
}
.ftr_sns_links li{
  margin: 0 8px;
}


footer .ftr2{
  padding-top: 40px;
  padding-bottom: 20px;
}
footer .ftr2 .container{
  display: flex;
  justify-content: space-between;
}
footer .ftr2 .box1{
  
}
footer .ftr2 .box2{
  text-align: right;
}

footer .copy{
  text-align: center;
  font-size: 12px;
  padding: 10px 0;
}
footer .copy a{
  /*color: #111;*/
}


.footer_fix{
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff4e3;
  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: #c2ab69;
  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_items{
  padding: 0 0;
}
.post_items .item{
  /*background: #f0f0f0;*/
  padding: 10px;
  border-top: 1px solid #CCC;
  display: flex;
  align-items: center;
  position: relative;
}
.post_items .item:last-child{
  border-bottom: 1px solid #CCC;
}
.post_items .item .img{
  
}
.post_items .item .date{
  width: 130px;
  font-size: 15px;
  color: #5a5a5a;
}
.post_items .item .category{
  width: 150px;
  padding: 0 10px;
  
}
.post_items .item .category span{
  display: block;
  background: #e5e5e5;
  color: #6c6969;
  padding: 3px;
  margin: 2px;
  text-align: center;
}
.post_items .item .title{
  font-weight: 500;
  width: calc(100% - 130px - 150px);
  /*width: -moz-available;
  width: -webkit-fill-available;
  width: available;*/
}
.post_items .item .title a{
  display: block;
  position: relative;
  padding-right: 1em;
}
.post_items .item:after{
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  right: 5px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.post_items .item.single_item{
  display: flex;
  flex-wrap: wrap;
  border-top: 15px solid #735829;
  border-bottom: 1px solid #735829;
  border-left: 1px solid #735829;
  border-right: 1px solid #735829;
  font-family: "Noto Sans JP";
  font-weight: 500;
  padding: 40px 40px;
}
.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: 25px;
  font-weight: bold;
  padding-bottom: 20px;
  border-bottom: 1px solid #CCC;
  color: #000;
}
.post_items .item.single_item .thumb{
  margin-bottom: 10px;
}
.post_items .item.single_item .content{
  width: 100%;
  margin-top: 20px;
  padding-bottom: 20px;
}
.post_items .item.single_item .content *{
  margin-bottom: 1em;
}
.post_items .item.single_item .content h1,
.post_items .item.single_item .content h2,
.post_items .item.single_item .content h3,
.post_items .item.single_item .content h4,
.post_items .item.single_item .content h5,
.post_items .item.single_item .content h6{
  margin-bottom: 0.5em;
}
.post_items .item.single_item .content a{
  color: #2196F3;
}

.post_items .post_content{
  margin-top: 30px;
}

/* ページ送り(一覧) */
.pagination{
  text-align: center;
  margin-top: 30px;
}
.pagination .nav-links{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  
}
.pagination .page-numbers{
  align-self: stretch;
  border: 1px solid #c0c0c0;
  padding: 5px 10px;
  margin: 4px 4px;
  color: #1e1e1e;
  text-decoration: none;
}
.pagination .page-numbers.current,
.pagination .page-numbers:hover{
  background: #e5e5e5;
}
.pagination .page-numbers.next:after{
  content: "\f101";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-left: 10px;
}
.pagination .page-numbers.prev:before{
  content: "\f100";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 10px;
}

/* ページ送り(詳細) */
.pagination .nav-posts{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.pagination .nav-posts .page-next,
.pagination .nav-posts .page-prev{
  min-width: 200px;
}
.pagination .nav-posts .page-next a,
.pagination .nav-posts .page-prev a{
  display: block;
  border: 1px solid #c0c0c0;
  border-radius: 5px;
  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: #735829;
  color: #ffffff;
  padding: 10px 100px;
  border-radius: 5px;
}

/* 検索 */
.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: #c2ab69;
  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 #b0a58d;
}
.contact_form tr{
  border-bottom: 1px solid #b0a58d;
}
.contact_form th,
.contact_form td{
  padding: 15px;
  font-weight: normal;
  text-align: left;
}
.contact_form th{
  background: #fff4e3;
  width: 310px;
}
.contact_form th .require{
  display: inline-block;
  padding: 2px 5px;
  color: #FFF;
  background: #be323c;
  font-size: 14px;
  font-weight: normal;
  float: right;
}
.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 + p{
  margin-top: 5px;
  margin-bottom: 5px;
}

.contact_form dl.addr dt{
  width: 90px;
}
.contact_form dl.addr dd{
  width: calc(100% - 90px);
}
.contact_form dl.date {
  align-items: flex-start;
}
.contact_form dl.date dt{
  width: 90px;
}
.contact_form dl.date dt + dt{
  margin-left: 5px;
}
.contact_form dl.date dt select{
  width: 100%;
}
.contact_form dl.date dt.wide{
  width: 200px;
}
.contact_form dl.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 .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: 500px;
  max-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;
}

.contact_form td .addr_auto{
  background: #f0f0f0;
  border: 1px solid #d6d8d8;
  margin-left: 10px;
  padding: 0 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;
}

/* 確認画面用 */
.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_acceptance{
  text-align: center;
  margin-top: 20px;
}
.contact_form_acceptance a{
  color: #1a3e9b;
}
.contact_form_acceptance span.wpcf7-list-item{
  margin: 0;
}

/* コンタクトフォーム - ボタン */
.contact_form_btns{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  padding: 30px 0;
}
.contact_form_btns input[type="submit"],
.contact_form_btns input[type="button"],
.contact_form_btns button{
  background: #be323c;
  color: #FFF;
  border: 0;
  padding: 15px 10px;
  width: 300px;
  margin: 0 10px;
  border-radius: 5px;
  font-size: 18px;
}
.contact_form_btns input[type="submit"][disabled],
.contact_form_btns input[type="button"][disabled]{
  background: #CCC;
}
.contact_form_btns button[type="reset"]{
  background: #CCC;
}
.contact_form_btns input.wpcf7-confirm{
  
}
.contact_form_btns input.wpcf7-back{
  background: #CCC;
}
.contact_form_btns input.wpcf7-submit{
  background: #398f14;
}
.contact_form_btns .ajax-loader{
  order: 10;
  width: 100% !important;
  margin-top: 10px !important;
  background-repeat: no-repeat;
  background-position: center;
}

.contact_msg1{
  text-align: center;
  margin-bottom: 110px;
  font-size: 15px;
  font-family: "Noto Sans JP";
  font-weight: 400;
}
.contact_msg2{
  margin-top: 10px;
  margin-bottom: 30px;
}

/* サイトマップ */
.sitemap_items{
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
}
.sitemap_items .item{
  width: 25%;
  padding: 0 10px;
  margin-bottom: 20px;
}
.sitemap_items .item h4{
  border: 1px solid #d3d3d3;
  border-bottom: 5px solid #d3d3d3;
}
.sitemap_items .item h4 a{
  display: block;
  padding: 20px 15px;
}
.sitemap_items .item ul{
}
.sitemap_items .item ul li{
  border-bottom: 1px dashed #d3d3d3;
  position: relative;
}
.sitemap_items .item ul li:before{
  content: "\f111";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 10px;
  position: absolute;
  top: 50%;
  left: 5px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.sitemap_items .item ul li a{
  display: block;
  padding: 5px 10px 5px 20px;
}


/* プライバシーポリシー */
.privacy_tt{
  text-align: center;
  margin-bottom: 30px;
}
.privacy_tt h3{
  font-size: 23px;
  font-weight: 500;
  letter-spacing: 0.2em;
}
.privacy_tt br{
  /*display: none;*/
}
.privacy_tt .dots{
  display: flex;
  justify-content: center;
  margin-top: 10px;
}
.privacy_tt .dots i{
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #c1c1c1;
  margin: 0 8px;
}

.privacy_items{
  font-family: "Noto Sans JP";
  font-weight: 500;
}
.privacy_items .item{
  line-height: 1.6;
}
.privacy_items .item + .item{
  margin-top: 40px;
}
.privacy_items .item h4{
  font-size: 18px;
  
  border-left: 4px solid #735829;
  padding-left: 15px;
  margin-bottom: 10px;
  line-height: 1.8;
  color: #735829;
}
.privacy_items .item .txt{
  font-weight: 400;
  font-size: 15px;
  line-height: 2;
}
.privacy_items .item ul{
  list-style: disc;
  margin-left: 2em;
  margin-top: 10px;
}
.privacy_items .item ul.latin{
  list-style: lower-latin;
}

.privacy_items .item ul li{
  
}
.privacy_items .item ol{
  margin-left: 2em;
  margin-top: 10px;
}


.breadcrumb{
  display: flex;
  list-style: none;
  margin-bottom: 20px;
  font-size: 14px;
  overflow-x: auto;
}
.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: 15px;
}
.breadcrumb li a:after{
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 12px;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.breadcrumb li:first-child a{
  padding-left: 15px;
}
.breadcrumb li:first-child a:before{
  content: "\f015";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 12px;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

/* **********************************
 *  メイン
 * ********************************* */
.main{
  /*padding: 0 0 50px;*/
  padding-top: 130px;
}
body.home .main{
  padding-top: 0;
}

.tt1{
  background: rgba(0, 0, 0, 0.7);
  /*background: rgba(105, 61, 40, 0.8);*/
  color: #f6eecd;
  width: 140px;
  padding: 80px 0 50px;
  
  position: absolute;
  /*top: 154px;*/
  top: 168px;
  bottom: 0;
  left: 50px;
  
  
  font-size: 44px;
  font-weight: 500;
  line-height: 1;
  /*letter-spacing: 0.075em;*/
  letter-spacing: 0.04em;
  
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  align-content: center;
  
  -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    -o-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
}
.tt1 .str1,
.tt1 .str2{
  height: 100%;
  white-space: nowrap;
}
.tt1 .str2{
  display: block;
  font-size: 28px;
  font-family: "SnellBT";
  font-weight: bold;
  margin-right: 3px;
  margin-top: 10px;
  letter-spacing: 0.05em;
}
.tt1 .str2:first-letter{
  text-transform: capitalize;
}

.tt1:before,
.tt1:after{
  content: "";
  display: block;
  background-repeat: no-repeat;
  position: absolute;
  
  width: 100%;
}
.tt1:before{
  top: 7px;
  height: 58px;
  background-image: url('/img/mv_pages_icon1.png');
  background-position: left 3px top;
}
.tt1:after{
  bottom: 5px;
  height: 44px;
  background-image: url('/img/mv_pages_icon2.png');
  background-position: right 10px bottom;
}

.tt2{
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.5;
  text-align: center;
  color: #c2ab69;
  /*height: 55px;*/
  background-image: url('/img/tt2_bg2.png');
  background-repeat: no-repeat;
  background-position: center bottom;
  margin-bottom: 100px;
  padding-bottom: 20px;
}
.tt2.lg{
  background-image: url('/img/tt2_bg2.png');
}
.tt2 span{
  
}
.tt3{
  
}
.tt3 span{
  
}
.tt4{
  
}
.tt4 span{
  
}
.tt5{
  
}
.tt5 span{
  
}

/* 詳しく見る サンプル */
.read_more{
  
}
.read_more a{
  display: block;
  width: 360px;
  max-width: 100%;
  margin: 0 0;
  
  padding: 15px 0;
  border-radius: 5px;
  background: #be323c;
  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";*/
  content: "\f138";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  right: 15px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.read_more.col2 a{
  background: #cf8d00;
}


ul.read_more{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
ul.read_more li{
  margin: 0 25px;
}
ul.read_more li a{
  width: 380px;
}

.pg_head{
  text-align: center;
  background-image: url('/img/home_tt4_bg1.png'), url('/img/home_tt4_bg3.png');
  background-position:left top 20px, right top; 
  background-repeat: no-repeat;
  min-height: 170px;
  margin-bottom: 10px;
}
.pg_head .inner{
  /*width: 620px;*/
  max-width: 100%;
  margin: 0 auto;
  padding-top: 25px;
}
.pg_head .tt2{
  margin-bottom: 0;
}
.pg_head .title{
  font-size: 20px;
  font-weight: 700;
  color: #735829;
  letter-spacing: 0.08em;
  margin-bottom: 50px;
}
.pg_head .txt{
  font-size: 15px;
  line-height: 2;
}


.pg_nav{
  display: flex;
  flex-wrap: wrap;
  margin-left: -40px;
  margin-right: -40px;
}
.pg_nav.center{
  justify-content: center;
}
.pg_nav li{
  width: 33.333%;
  padding-left: 40px;
  padding-right: 40px;
}
.pg_nav li:nth-child(n+4){
  margin-top: 20px;
}
.pg_nav li a{
  display: flex;
  align-items: center;
  height: 38px;
  background-image: url('/img/pg_nav_icon.png');
  background-repeat: no-repeat;
  background-position: left center;
  color: #c2ab69;
  font-size: 18px;
  font-weight: 600;
  left: 0.05em;
  padding-left: 65px;
}

.pg_nav.md{
  margin-left: -10px;
  margin-right: -10px;
}
.pg_nav.md li{
  width: 25%;
  padding-left: 10px;
  padding-right: 10px;
}
.pg_nav.md li:nth-child(n+4){
  margin-top: 0;
}
.pg_nav.md li:nth-child(n+5){
  margin-top: 25px;
}

.pg_nav + .tt2{
  margin-top: 100px;
}



/* **********************************
 *  Home
 * ********************************* */
.pg_home{
  
}
.pg_home .section#sec1{
  background-image: url('/img/insta_bg.png');
  margin-top: -85px;
  position: relative;
  z-index: 5;
}
.pg_home .section#sec1 .container{
  height: 334px;
}
.pg_home .section#sec2{
  background-image: url('/img/home/bg1.jpg');
  background-position: right top;
  background-size: auto;
}
.pg_home .section#sec3{
  margin-top: 130px;
}
.pg_home .section#sec4{
  margin-top: 270px;
  padding-bottom: 90px;
  background-color: #fff4e3;
}
.pg_home .section#sec5{
  margin-top: 130px;
}
.pg_home .section#sec6{
  margin-top: 225px;
  background-color: #fff4e3;
}
.pg_home .section#sec7{
  margin-top: 190px;
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #eae2cb;
}
.pg_home .section#sec8{
  margin-top: 130px;
}
.pg_home .section#sec9{
  margin-top: 210px;
  padding-bottom: 40px;
  background-color: #fff4e3;
}
.pg_home .section#sec10{
  margin-top: 70px;
}


.insta_tt{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 85px;
}
.insta_body{
  
}

.home_tt1,
.home_tt2,
.home_tt3,
.home_tt4{
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-align: center;
  position: relative;
}
.home_tt1 em,
.home_tt2 em,
.home_tt3 em,
.home_tt4 em{
  display: block;
  font-size: 14px;
  text-align: center;
}

.home_tt1{
  color: #FFF;
  background: #735829;
  margin-bottom: 80px;
  padding: 10px;
  background-image: url('/img/home_tt1_bg.png');
  background-size: cover;
  background-position: center;
}
.home_tt1:after{
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 15px 0 15px;
  border-color: #735829 transparent transparent transparent;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 100%);
  transform: translate(-50%, 100%);
}
.home_tt2{
  color: #FFF;
  margin-bottom: 10px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.home_tt2 span{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  margin: 0 auto;
  width: 523px;
  max-width: 100%;
  height: 129px;
  background: #c2ab69;
  background-image: url('/img/home_tt2_bg.jpg');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.home_tt2 span em{
  width: 100%;
}
.home_tt3{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  color: #c2ab69;
  margin-bottom: 60px;
}
.home_tt3 em{
  width: 100%;
  color: #735829;
}
.home_tt3.bg1{
  height: 110px;
  background-image: url('/img/home_tt3_bg1.png'), url('/img/home_tt3_bg2.png');
  background-repeat: no-repeat;
  background-position: calc(50% - 330px) center, calc(50% + 330px) center;
}
.home_tt3.bg2{
  height: 180px;
  background-image: url('/img/home_tt4_bg1.png'), url('/img/home_tt4_bg2.png');
  background-repeat: no-repeat;
  background-position: left bottom, right top;
}
.home_tt3.bg3{
  
  
}




.home_blc1{
  padding-left: 88px;
}
.home_blc1 .box1{
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  height: 520px;
  padding-bottom: 20px;
}
.home_blc1 .box1 .inner{
  background: #c2ab69;
  padding-top: 25px;
  padding-bottom: 15px;
  width: 850px;
  max-width: 100%;
}
.home_blc1 .box1 .txt1{
  font-size: 27px;
  line-height: 1.777;
  color: #FFF;
  padding-left: 25px;
  padding-right: 25px;
  letter-spacing: 0.01em;
}
.home_blc1 .box1 .txt2{
  font-size: 14px;
  color: #735829;
  padding-left: 15px;
  
}
.home_blc1 .box1 .bdr{
  width: 635px;
  height: 1px;
  background: #735829;
  margin: 15px 0;
  margin-left: -220px;
}
.home_blc1 .box2{
  font-size: 15px;
  line-height: 2;
  margin-top: 35px;
}

/* 限定価格プラン */
.home_blc2{
  background-image: url('/img/home/limited_bg.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding: 100px 50px 100px 125px;
}

.home_blc2 .title{
  position: relative;
}
.home_blc2 .title:before{
  content: "";
  display: block;
  width: 83px;
  height: 83px;
  background-image: url('/img/home/limited_icon.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  position: absolute;
  top: 0;
  right: 100%;
  -webkit-transform: translate(-10px, -50%);
  transform: translate(-10px, -50%);
}
.home_blc2 ul{
  display: flex;
  flex-wrap: wrap;
  margin-left: -8px;
  margin-right: -8px;
  margin-top: 35px;
  font-size: 20px;
  line-height: 1.35;
  color: #FFF;
}
.home_blc2 ul li{
  width: 186px;
  padding-left: 8px;
  padding-right: 8px;
}
.home_blc2 ul li a{
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  text-decoration: none;
  height: 100%;
  border: 1px solid ;
  padding: 10px;
}
.home_blc2 ul li a:hover{
  /*color: #735829;*/
  background: #735829;
}



.home_plan_items{
  display: flex;
  flex-wrap: wrap;
  margin-left: -30px;
  margin-right: -30px;
}
.home_plan_items .item{
  width: 33.333%;
  padding-left: 30px;
  padding-right: 30px;
}
.home_plan_items .item:nth-child(n+4){
  margin-top: 60px;
}
.home_plan_items .item .inner{
  display: block;
  position: relative;
}
.home_plan_items .item .img{
  
}
.home_plan_items .item .img img{
  
}
.home_plan_items .item .box{
  z-index: 1;
  text-align: center;
  padding: 10px;
}
.home_plan_items .item .title{
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.home_plan_items .item .title:after{
  content: "";
  display: block;
  width: 60px;
  height: 1px;
  background: #FFF;
  margin: 0 auto;
  margin-top: 5px;
}
.home_plan_items .item .price{
  font-family: "Noto Sans JP";
  font-weight: 500;
  font-size: 28px;
  letter-spacing: 0.05em;
  margin-top: 5px;
}
.home_plan_items .item .price em{
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.1em;
}
.home_plan_items .item .txt{
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 15px;
  text-align: left;
  /*letter-spacing: 0.05em;*/
  line-height: 1.866;
}

.home_plan_items.type1 .item .box{
  padding: 20px 10px;
  background: rgba(0,0,0,0.7);
  color: #FFF;
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 10px;
}

.home_plan_items.type2{
  margin-left: -25px;
  margin-right: -25px;
}
.home_plan_items.type2 .item{
  padding-left: 25px;
  padding-right: 25px;
}
.home_plan_items.type2 .item:nth-child(n+4){
  margin-top: 60px;
}

.home_plan_items.type2 .item .box{
  padding-top: 20px;
  background: rgba(0,0,0,0.7);
  color: #FFF;
  position: absolute;
  top: 100%;
  left: 23px;
  right: 23px;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.home_plan_items.type2 .item .title{
  margin-bottom: 20px;
}
.home_plan_items.type2 .item .title:after{
  /*margin-top: 10px;*/
  
}

.home_plan_items.type2 .item .box.col1{
  background: rgba(166,50,148,0.8);
}
.home_plan_items.type2 .item .box.col2{
  background: rgba(45,117,163,0.8);
}
.home_plan_items.type2 .item .box.col3{
  background: rgba(105,55,18,0.8);
}

/* 理由 */
.home_reason_items{
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}
.home_reason_items .item{
  width: 33.333%;
  padding-left: 15px;
  padding-right: 15px;
}
.home_reason_items .item:nth-child(n+4){
  margin-top: 60px;
}
.home_reason_items .item .inner{
  
}
.home_reason_items .item .img{
  position: relative;
  padding: 0 0 20px 20px;
}
.home_reason_items .item .num{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  width: 105px;
  height: 105px;
  background-color: #c2ab69;
  color: #FFF;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  text-align: center;
  position: absolute;
  left: 0;
  bottom: 0;
}
.home_reason_items .item .num em{
  width: 100%;
  font-size: 44px;
  font-weight: 500;
  font-family: "Roboto", sans-serif;
  letter-spacing: 0.025em;
}
.home_reason_items .item .img img{
  
}
.home_reason_items .item .title{
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #c2ab69;
  margin-top: 20px;
  margin-bottom: 10px;
  padding: 0 10px;
}

.home_reason_items .item .txt{
  font-family: "Noto Sans JP";
  font-weight: 400;
  font-size: 15px;
  line-height: 2;
  /*letter-spacing: 0.075em;*/
  padding: 0 10px;
}

.home_reason_items .item:nth-child(even) .num{
  background-color: #735829;
}
.home_reason_items .item:nth-child(even) .title{
  color: #735829;
}


/* オプション */
.home_option_items{
  display: flex;
  flex-wrap: wrap;
  margin-left: -25px;
  margin-right: -25px;
}
.home_option_items .item{
  width: 33.333%;
  padding-left: 25px;
  padding-right: 25px;
}
.home_option_items .item .inner{
  background: #c2ab69;
  color: #FFF;
  height: 100%;
  position: relative;
}
.home_option_items .item .img{
  
}
.home_option_items .item .img img{
  
}
.home_option_items .item .title{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(194, 171, 105, 0.9);
  font-size: 18px;
  text-align: center;
  letter-spacing: 0.1em;
  z-index: 1;
  padding: 5px;
}
.home_option_items .item .txt{
  font-size: 15px;
  font-family: "Noto Sans JP";
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.8;
  padding: 10px 10px;
}

.booking_bn{
  margin-top: 40px;
}

/* **********************************
 *  ブログ
 * ********************************* */
.pg_blog{
  
}
.pg_blog .section#sec1{
  
}
.pg_blog .section#sec2{
  
}
.pg_blog .section#sec3{
  
}

.pg_home .blog_items{
  padding-top: 50px;
}

.blog_items{
  display: flex;
  flex-wrap: wrap;
  margin-left: -40px;
  margin-right: -40px;
  color: #000000;
}
.blog_items .item{
  width: 50%;
  padding-left: 40px;
  padding-right: 40px;
}
.blog_items .item:nth-child(n+3){
  margin-top: 50px;
}
.blog_items .item .inner{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.blog_items .item .inner .box1{
  width: 26.78%;
}
.blog_items .item .inner .box2{
  width: 70.53%;
}
.blog_items .item .img{
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.blog_items .item .img:before{
  content: "";
  display: block;
  padding-top: 100%;
  
}
.blog_items .item .img img{
  
}
.blog_items .item .date{
  font-size: 15px;
}
.blog_items .item .title{
  font-family: "Noto Sans JP";
  font-size: 18px;
  font-weight: 700;
  /*height: 3em;*/
  height: calc(1em * 1.666 * 2);
  overflow: hidden;
}
.blog_items .item .txt{
  
}
.blog_items .item .link{
  margin-top: 20px;
}
.blog_items .item .link a{
  display: block;
  border: 1px solid #bfbfbf;
  border-radius: 5px;
  text-align: center;
  font-size: 19px;
  /*font-weight: normal;*/
  padding: 5px 10px;
}


.blog_items + .read_more{
  margin-top: 60px;
}
.blog_items + .read_more a{
  width: 360px;
  max-width: 100%;
  margin: 0 auto;
  background: #735829;
  border-radius: 0;
  font-size: 19px;
  font-weight: 400;
  
}
.blog_items + .read_more a:after{
  content: "\f35a";
  position: static;
  margin-left: 10px;
  font-weight: 400;
}


.blog_wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.blog_wrap .blog_l{
  width: 70.83%;
}
.blog_wrap .blog_r{
  width: 26.66%;
}

.blog_tt{
  font-family: "Noto Sans JP";
  font-size: 18px;
  font-weight: bold;
  color: #735829;
  border-left: 4px solid;
  padding-left: 15px;
  margin-bottom: 20px;
}

.blog_items.all{
  margin-left: -7.5px;
  margin-right: -7.5px;
}
.blog_items.all .item{
  width: 33.333%;
  padding-left: 7.5px;
  padding-right: 7.5px;
}
.blog_items.all .item:nth-child(n+3){
  margin-top: 0;
}
.blog_items.all .item:nth-child(n+4){
  margin-top: 25px;
}

.blog_items.all .item .inner .box1{
  width: 100%;
}
.blog_items.all .item .inner .box2{
  width: 100%;
  margin-top: 5px;
}
.blog_items.all .item .img:before{
  padding-top: 65.45%;
}
.blog_items.all .item .title{
  font-size: 16px;
}
.blog_items.all .item .link {
  margin-top: 5px;
}

.sidebar .box{
  margin:0 0 45px 0;
  font-family: "Noto Sans JP";
  font-weight: 500;
}
.sidebar .box .side_ttl{
  font-weight: 500;
  color:#735829;
  border-bottom:1px solid #735829;
  padding:0 0 10px 0;
  letter-spacing: 0.6px;
  margin:0 0 20px 0;
}
.sidebar .box .side_ttl i{
  margin:0 7px 0 0;
}

/* äººæ°—è¨˜äº‹ */
.sidebar .rec dl {
  width: 100%;
  font-size: 0;
  /*padding: 0 15px;*/
  margin:0 0 13px 0;
}
.sidebar .rec dt,
.sidebar .rec dd{
  font-size: initial;
  display: inline-block;
  vertical-align: top;
}
.sidebar .rec dt{
  width: 35%;
  padding-top: 24%;
  overflow: hidden;
  height: 0;
  position: relative;
  background-size: cover;
  background-position: center;
  background-color: #ccc;
}
.sidebar .rec dd{
  width: 62%;
  margin: 0 0 0 3%;
}
.sidebar .rec a{
  display: block;
}
.sidebar .rec dt img{
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}
.sidebar .rec dd .ttl{
  
  font-size:14px;
  line-height: 21px;
  font-weight: bold;
  margin:0 0 20px 0;
}
.sidebar .rec dd .date{
  text-align: right;
  font-size:13px;
}
.sidebar .rec dt span {
  position: absolute;
  z-index: 100;
  background: #c76529;
  color: #fff;
  font-size: 12px;
  top: 0;
  left: 0;
  padding: 2px 6px;
}

/*æ¤œç´¢ãƒœãƒƒã‚¯ã‚¹*/
.sidebar .kensaku .form_area .search_btn {
  -webkit-appearance: none;
  background: #fff;
  border: solid 2px #eee;
  border-radius: 3px;
  color: #555;
  font-size: inherit;
  padding: 0;
  line-height: 38px;
  margin: 0;
  width: 96%;
}
.sidebar .cate ul {
  margin: 0;
  /*padding: 0 15px;*/
  font-size: 15px;
}
.sidebar .cate ul li a {
  padding: 12px 10px;
  display: block;
  font-weight: 500;
  color: #333;
  position: relative;
  letter-spacing: 0.6px;
}
.sidebar .cate ul li {
  border-bottom: 1px solid #eee;
}
.sidebar .cate ul.children{
  padding:0 0 0 15px;
}
.sidebar .cate ul.children li i{
  margin:0 6px 0 0;
}

/* ギャラリー */
.pg_gallery{
  
}
.pg_gallery .post_items + .post_items{
  margin-top: 125px;
}

/* スポット */
.home_spot_items{
  
}

.spot_box{
  
}
.spot_box .img{
  
}
.spot_box .title{
  font-size: 20px;
  text-align: center;
  color: #735829;
  margin-top: 25px;
  margin-bottom: 20px;
}
.spot_box .title:after{
  content: "";
  display: block;
  margin: 0 auto;
  margin-top: 15px;
  width: 120px;
  height: 1px;
  background: #735829;
}
.spot_box .img{
  text-align: center;
}
.spot_box .txt{
  font-size: 15px;
  font-weight: 400;
  line-height: 1.888;
  letter-spacing: 0.04em;
}

.home_spot_items.flex{
  display: flex;
  flex-wrap: wrap;
  margin-left: -40px;
  margin-right: -40px;
}
.home_spot_items.flex .spot_box{
  width: 50%;
  padding-left: 40px;
  padding-right: 40px;
}
.home_spot_items.flex .spot_box:nth-child(n+3){
  margin-top: 75px;
}


/* 店舗一覧 */
.home_shop_items{
  display: flex;
  flex-wrap: wrap;
  margin-left: -20px;
  margin-right: -20px;
}
.home_shop_items .item{
  width: 50%;
  padding-left: 20px;
  padding-right: 20px;
}
.home_shop_items .item:nth-child(n+3){
  margin-top: 30px;
}
.home_shop_items .item .inner{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home_shop_items .item .inner .box1{
  width: 39.65%;
}
.home_shop_items .item .inner .box2{
  width: 56.86%;
  position: relative;
}
.home_shop_items .item .img{
  
}
.home_shop_items .item .img img{
  
}
.home_shop_items .item .txt1{
  font-size: 18px;
  font-family: "Noto Sans JP";
}
.home_shop_items .item .txt2{
  font-size: 28px;
}
.home_shop_items .item .txt3{
  font-size: 15px;
  font-family: "Noto Sans JP";
}
.home_shop_items .item .link{
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
}
.home_shop_items .item .link a{
  display: block;
  background: #c2ab69;
  color: #FFF;
  font-size: 19px;
  text-align: center;
  padding: 8px 10px;
  margin-top: 10px;
}

/* **********************************
 *  プラン
 * ********************************* */
.pg_plan{
  
}
.pg_plan .section#sec1{
  
}
.pg_plan .section#sec2{
  margin-top: 120px;
}
.pg_plan .section#sec3{
  
}

.plan_nav{
  display: flex;
  flex-wrap: wrap;
  margin-left: -7.5px;
  margin-right: -7.5px;
  margin-top: 50px;
}
.plan_nav li{
  width: 25%;
  padding-left: 7.5px;
  padding-right: 7.5px;
}
.plan_nav li:nth-child(n+5){
  margin-top: 24px;
}
.plan_nav li a{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 63px;
  margin-right: 6px;
  background-image: url('/img/plan/plan_nav_bg.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  font-size: 18px;
  letter-spacing: 0.1em;
  color: #FFF;
  position: relative;
}
.plan_nav li a:before{
  content: "";
  display: block;
  border: 1px solid #c2ab69;
  position: absolute;
  top: 6px;
  left: 6px;
  bottom: -6px;
  right: -6px;
  z-index: -1;
}


.pg_head + .plan_blc1{
  margin-top: 110px;
}
.plan_flow + .plan_blc1{
  margin-top: 165px;
}

.plan_blc1{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.plan_blc1 + .plan_blc1{
  margin-top: 170px;
}
.plan_blc1 .title{
  display: flex;
  align-items: center;
  width: 100%;
  height: 63px;
  padding-left: 80px;
  margin-right: 6px;
  margin-bottom: 60px;
  
  background-image: url('/img/plan/plan_tt_bg.jpg');
  background-size: cover;
  background-position: left center;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #FFF;
  position: relative;
}
.plan_blc1 .title:before{
  content: "";
  display: block;
  border: 1px solid #c2ab69;
  position: absolute;
  top: 6px;
  left: 6px;
  bottom: -6px;
  right: -6px;
  z-index: -1;
}
.plan_blc1 .box1{
  width: 40%;
}
.plan_blc1 .box2{
  width: 54.16%;
}

.plan_blc1 .box1 img + img{
  margin-top: 30px;
}

.plan_blc1 .txt + .price{
  margin-top: 60px;
}
.plan_blc1 .txt + .check{
  margin-top: 55px;
}
.plan_blc1 .txt + .read_more{
  margin-top: 65px;
}

.plan_blc1 .check + h5{
  margin-top: 90px;
} 

.plan_blc1 .price{
  border-left: 3px solid #c5230d;
  padding-left: 20px;
  padding-top: 10px;
  margin-bottom: 20px;
}
.plan_blc1 .price .str1{
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #735829;
}
.plan_blc1 .price .str1 span{
  font-size: 16px;
}
.plan_blc1 .price .str2{
  font-family: "Noto Sans JP";
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.08em;
  color: #c5230d;
  line-height: 1;
  margin-top: 5px;
}
.plan_blc1 .price .str2 + .str2{
  margin-top: 15px;
}
.plan_blc1 .price .str2 span{
  font-size: 16px;
  margin-right: 5px;
}
.plan_blc1 .price .str2 em{
  font-size: 44px;
  font-family: "Roboto";
  font-weight: 500;
  letter-spacing: 0.01em;
}
.plan_blc1 .price .str2 span.sz1{
  width: 180px;
  display: inline-block;
}
.plan_blc1 .price .str2 span.sz2{
  width: 160px;
  display: inline-block;
}

.plan_blc1 .price .str3{
  font-size: 16px;
  font-family: "Noto Sans JP";
  font-weight: 700;
  color: #c5230d;
  margin-top: 10px;
}

.plan_blc1 .price .price_tt{
  font-size: 16px;
  font-weight: 600;
  color: #735829;
  border-bottom: 1px solid #735829;
  margin-top: 20px;
  margin-bottom: 10px;
}

.plan_blc1 .txt{
  background: #fff4e3;
  color: #413827;
  font-size: 15px;
  line-height: 2;
  padding: 20px 15px 20px 20px;
  margin-bottom: 25px;
}
.plan_blc1 .txt2{
  background: #fff4e3;
  color: #413827;
  font-size: 15px;
  line-height: 2;
  padding: 10px 15px;
}
.plan_blc1 .check{
  border: 1px solid #c2ab69;
  background-image: url('/img/plan/check_icon.png'), url('/img/plan/check_bg.jpg');
  background-size: auto, cover;
  background-position: left 25px center, center center;
  background-repeat: no-repeat;
  padding: 15px 10px;
  padding-left: 140px;
  
  font-weight: 700;
  font-size: 15px;
  line-height: 2;
  color: #413827;
}
/*.plan_blc1 .check:before{
  content: "";
  width: 100px;
  height: 100px;
  background-image: url('/img/plan/check_icon.png');
  background-size: cover;
  background-position: center;
}*/
.plan_blc1 .check ul{
  padding-left: 1em;
  text-indent: -1em;
}
.plan_blc1 .check h4{
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.2em;
  color: #c2ab69;
}

.plan_blc1 .info{
  
}
.plan_blc1 .info tr{
  border-bottom: 1px solid #ccad65;
}


.plan_blc1 .info tr th,
.plan_blc1 .info tr td{
  padding: 32px 0 10px;
}
.plan_blc1 .info tr th{
  width: 150px;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.1em;
  /*line-height: 1.875;*/
  color: #cab67d;
  text-align: left;
  vertical-align: top;
  padding-left: 36px;
  
  background-image: url('/img/th_icon.png');
  background-size: auto;
  background-position: left top 32px;
  background-repeat: no-repeat;
}
.plan_blc1 .info tr td{
  font-size: 15px;
  font-weight: 700;
  line-height: 2;
  color: #413827;
}
.plan_blc1 .info a{
  display: inline-block;
  background: #c2ab69;
  color: #FFF;
  border-radius: 5px;
  font-family: "Noto Sans JP";
  font-weight: 500;
  padding: 3px 12px;
  margin-top: 5px;
}


.plan_blc1 h3{
  font-size: 20px;
  font-weight: 600;
  /*letter-spacing: 0.02em;*/
  padding-left: 35px;
  background-image: url('/img/plan/plan_tt_bg2.png');
  background-repeat: no-repeat;
  background-position: left center;
  margin-top: 15px;
  margin-bottom: 15px;
  color: #735829;
}
.plan_blc1 h4{
  
}
.plan_blc1 h5{
  text-align: center;
  margin-bottom: 40px;
}
.plan_blc1 h5 span{
  display: inline-block;
  background: #c2ab69;
  color: #FFF;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 8px 80px;
  border-radius: 20px;
}

.plan_blc1 .set{
  display: flex;
  flex-wrap: wrap;
  margin-left: -2px;
  margin-right: -2px;
}
.plan_blc1 .set li{
  width: 76px;
  height: 76px;
  padding-left: 2px;
  padding-right: 2px;
}
.plan_blc1 .set li span{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  border: 2px solid #bba463;
  border-radius: 50%;
  background: #735829;
  font-size: 20px;
  font-weight: 700;
  font-family: "Noto Sans JP";
  /*letter-spacing: 0.08em;*/
  color: #FFF;
  white-space: nowrap;
}

.plan_blc1 .read_more{
  margin-top: 35px;
}
.plan_blc1 .read_more + .check{
  margin-top: 50px;
}

.plan_blc1 .read_more a{
  width: 360px;
  background: #be323c;
  color: #FFF;
  font-size: 20px;
  margin-left: 0;
}
.plan_blc1 .read_more.col2 a{
  background: #cf8d00;
}
.plan_blc1 .read_more a:after{
  
}

.plan_blc2{
  border: 2px solid #c2ab69;
  background-image: url('/img/flow/flow_bg.jpg');
  background-size: cover;
  background-position: center;
  padding: 30px 120px;
  margin-top: 60px;
}
.plan_blc2 h3{
  display: flex;
  justify-content: center;
  align-items: flex-start;
  font-size: 23px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-align: center;
  line-height: 1.2;
  margin-bottom: 30px;
  color: #735829;
}
.plan_blc2 h3:before,
.plan_blc2 h3:after{
  content: "";
  background-repeat: no-repeat;
  margin: 0 10px;
}
.plan_blc2 h3:before{
  background-image: url('/img/plan/tt_icon1.png');
  width: 30px;
  height: 31px;
}
.plan_blc2 h3:after{
  background-image: url('/img/plan/tt_icon2.png');
  width: 37px;
  height: 35px;
}
.plan_blc2 .txt{
  font-size: 15px;
  line-height: 2;
}
.plan_blc2 .txt + .txt{
  margin-top: 20px;
}

.plan_read_more{
  margin-top: 80px;
}
.plan_read_more a{
  margin: auto;
}


.plan_flow{
  margin-top: 90px;
}
.plan_flow_items{
  display: flex;
  justify-content: space-between;
  /*flex-wrap: wrap;*/
  margin-left: -8px;
  margin-right: -8px;
}
.plan_flow_items li{
  margin: 0 8px;
}

.plan_point_items{
  display: flex;
  justify-content: center;
  /*flex-wrap: wrap;*/
  margin-left: -30px;
  margin-right: -30px;
}
.plan_point_items li{
  margin: 0 30px;
}

.yukata_bn{
  background-image: url('/img/plan/yukata_plan_bn_bg.jpg');
  background-size: cover;
  background-position: center;
  padding: 17px;
  margin-top: 190px;
}
.yukata_bn .box{
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 2px solid #c2ab69;
  height: 236px;
  padding: 15px 12px 15px 25px;
  position: relative;
}
.yukata_bn .box .img{
  
}
.yukata_bn .box .btn{
  position: absolute;
  right: 12px;
  bottom: 15px;
}

.pg_ceremony{
  
}
.pg_ceremony .section#sec1{
  
}
.pg_ceremony .section#sec2{
  background: #fff4e3;
  margin-top: 70px;
  padding-top: 60px;
  padding-bottom: 60px;
}
.pg_ceremony .section#sec3{
  margin-top: 170px;
}

/* **********************************
 *  レンタルの流れ
 * ********************************* */
.pg_flow{
  
}
.pg_flow .section#sec1{
  
}
.pg_flow .section#sec2{
  
}
.pg_flow .section#sec3{
  
}


.flow_blc1{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 20px;
  border: 2px solid #c2ab69;
  background-color: #f6ecdb;
  background-image: url('/img/flow/flow_bg.jpg');
  background-size: cover;
  background-position: center center;
  position: relative;
}
.flow_blc1 + .flow_blc1{
  margin-top: 160px;
}
.flow_blc1 + .flow_blc1:before{
  content: "";
  display: block;
  width: 48px;
  height: 27px;
  background-image: url('/img/flow/arrow.png');
  background-size: cover;
  background-position: center center;
  position: absolute;
  top: -92px;
  left: 50%;
  -webkit-transform: translate(-50%, 0%);
  transform: translate(-50%, 0%);
}
.flow_blc1 + .read_more{
  margin-top: 140px;
}

.flow_blc1 .title{
  display: flex;
  align-items: center;
  width: 100%;
  height: 66px;
  margin-bottom: 20px;
  padding-left: 90px;
  font-size: 23px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #735829;
  background-repeat: no-repeat;
  background-position: left center;
}
.flow_blc1 .title.n1{
  background-image: url('/img/flow/step01.png');
}
.flow_blc1 .title.n2{
  background-image: url('/img/flow/step02.png');
}
.flow_blc1 .title.n3{
  background-image: url('/img/flow/step03.png');
}
.flow_blc1 .title.n4{
  background-image: url('/img/flow/step04.png');
}
.flow_blc1 .title.n5{
  background-image: url('/img/flow/step05.png');
}
.flow_blc1 .title.n6{
  background-image: url('/img/flow/step06.png');
}
.flow_blc1 .title.n7{
  background-image: url('/img/flow/step07.png');
}
.flow_blc1 .title.n8{
  background-image: url('/img/flow/step08.png');
}
.flow_blc1 .title.n9{
  background-image: url('/img/flow/step09.png');
}
.flow_blc1 .title.n10{
  background-image: url('/img/flow/step10.png');
}

.flow_blc1 .box1{
  width: 307px;
}
.flow_blc1 .box2{
  width: calc(100% - 307px - 30px);
}
.flow_blc1 .txt{
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.04em;
  margin-bottom: 30px;
}
.flow_blc1 .read_more{
  
}
.flow_blc1 .read_more + .read_more{
  margin-top: 18px;
}
.flow_blc1 .read_more a{
  width: 380px;
}


/* **********************************
 *  よくある質問
 * ********************************* */
.pg_faq{
  
}
.pg_faq .section + .section{
  margin-top: 200px;
}
.pg_faq .section#sec0{
  margin-top: 0;
}
.pg_faq .section#sec1{
  margin-bottom: 130px;
}
.pg_faq .section#sec2{
  
}
.pg_faq .section#sec3{
  
}



.faq_blc1{
  background: #ede1bf;
}
.faq_blc1 + .faq_blc1{
  margin-top: 80px;
}

.faq_blc1 .title{
  display: flex;
  align-items: center;
  height: 69px;
  padding-left: 110px;
  background: #c2ab69;
  background-image: url('/img/faq/faq_tt_bg.jpg');
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: left center;
  font-size: 23px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #FFF;
  position: relative;
}
.faq_blc1 .title:before{
  content: "Q";
  font-family: "Roboto";
  font-weight: 500;
  font-size: 44px;
  line-height: 1;
  color: #c2ab69;
  position: absolute;
  top: 50%;
  left: 25px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.faq_blc1 .title.bg2{
  background-image: url('/img/faq/faq_tt_bg2.jpg');
  padding-left: 25px;
}
.faq_blc1 .title.bg2:before{
  display: none;
}

.faq_blc1 .body{
  background-image: url('/img/faq/faq_box_bg.png');
  background-repeat: no-repeat;
  background-position: right 10px bottom 18px;
  padding: 30px 25px;
  font-family: "Noto Sans JP";
  font-weight: 400;
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.04em;
  
}
.faq_blc1 .body .txt{
  
}
.faq_blc1 .body .txt a{
  
}

.faq_blc1 .body h3{
  font-size: 17px;
  font-weight: bold;
  margin-top: 30px;
  margin-bottom: 5px;
}
.faq_blc1 .body h3:before{
  /*content: "\f054";*/
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

.faq_blc1 .body .box1{
  font-size: 15px;
}
.faq_blc1 .body .box1 + h3{
}
.faq_blc1 .body .box1.wh{
  background: #FFF;
  padding: 25px;
}
.faq_blc1 .body .box1 dl{
  
}
.faq_blc1 .body .box1 dl+dl{
  margin-top: 20px;
}
.faq_blc1 .body .box1 dl dt{
  font-weight: bold;
}
.faq_blc1 .body .box1 dl dt:before{
  content: "・";
}
.faq_blc1 .body .box1 dl dd{
  
}

.faq_blc1 .body .box1 h5{
  font-size: 15px;
  margin-top: 15px;
  margin-bottom: 5px;
}
.faq_blc1 .body .box1 h5 span{
  display: inline-block;
  color: #ede1bf;
  background: #735829;
  border-radius: 13px;
  min-width: 185px;
  text-align: center;
  line-height: 1.8;
}
.faq_blc1 .body .box1 p + h5{
  margin-top: 30px;
}

/* **********************************
 *  アクセス
 * ********************************* */
.pg_access{
  
}
.pg_access .section#sec1{
  
}
.pg_access .section#sec2{
  margin-top: 125px;
}
.pg_access .section#sec3{
  background-image: url('/img/access/spot_bg.jpg');
  background-size: auto;
  background-repeat: repeat;
  margin-top: 240px;
  padding-bottom: 80px;
}


.access_map{
  margin-bottom: 90px;
}
.access_map iframe{
  width: 100%;
  height: 465px;
}

.access_tbl{
  
}
.access_tbl tr{
  border-top: 1px solid #ccad65;
}
.access_tbl tr:last-child{
  border-bottom: 1px solid #ccad65;
}

.access_tbl tr th,
.access_tbl tr td{
  padding: 20px 0;
}
.access_tbl tr th{
  width: 135px;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.04em;
  line-height: 1.875;
  color: #cab67d;
  text-align: left;
  vertical-align: top;
}
.access_tbl tr td{
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.533;
  color: #413827;
}

.access_items{
  
}
.access_items{
  display: flex;
  flex-wrap: wrap;
  margin-left: -17.5px;
  margin-right: -17.5px;
}
.access_items .item{
  width: 50%;
  padding-left: 17.5px;
  padding-right: 17.5px;
}
.access_items .item:nth-child(n+3){
  margin-top: 35px;
}
.access_items .item .inner{
  padding: 20px ;
  border: 2px solid #c2ab69;
  background-color: #f6ecdb;
  background-image: url(/img/flow/flow_bg.jpg);
  background-size: cover;
  background-position: center center;
  height: 100%;
  min-height: 200px;
}

.access_items .item .title{
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #735829;
  
  background-image: url(/img/home_tt3_bg1.png);
  background-size: 45px auto;
  background-position: left center;
  background-repeat: no-repeat;
  padding: 5px 0 5px 65px;
  margin-bottom: 20px;
}

.access_items .item .txt{
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.04em;
}

/* **********************************
 *  
 * ********************************* */
.pg_back{
  
}
.pg_back .section#sec1{
  
}
.pg_back .section#sec2{
  background-image: url('/img/access/spot_bg.jpg');
  background-size: auto;
  background-repeat: repeat;
  margin-top: 170px;
  padding-top: 90px;
  padding-bottom: 60px;
}
.pg_back .section#sec3{
  margin-top: 120px;
}
.pg_back .section#sec4{
  margin-top: 120px;
}



.pg_back .plan_blc1{
  margin-top: 100px;
}
.back_reco_items{
  display: flex;
  flex-wrap: wrap;
  margin-left: -12px;
  margin-right: -12px;
}
.back_reco_items .item{
  width: 33.333%;
  padding-left: 12px;
  padding-right: 12px;
}
.back_reco_items .item:nth-child(n+4){
  margin-top: 30px;
}
.back_reco_items .item .inner{
  background: #FFF;
  padding: 15px 15px 30px;
  height: 100%;
}
.back_reco_items .item .img{
  text-align: center;
}
.back_reco_items .item .img img{
  
}
.back_reco_items .item .title{
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  line-height: 1.25em;
  text-align: center;
  color: #c2ab69;
  height: 2.5em;
  margin-bottom: 10px;
}
.back_reco_items .item .txt{
  font-family: "Noto Sans JP";
  font-weight: 400;
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.06em;
  margin-top: 10px;
}

/* **********************************
 *  予約
 * ********************************* */
.pg_xxxx{
  
}
.pg_xxxx .section#sec1{
  
}
.pg_xxxx .section#sec2{
  
}
.pg_xxxx .section#sec3{
  
}

.booking_calendar{
  font-family: "Noto Sans JP";
  margin: 90px 0;
}

#booking-package-locale-ja{
  margin-bottom: 100px;
}
#booking-package_calendarPage label {
  background: #735829;
  color: #ffffff;
  width: 120px;
  line-height: 50px;
  display: inline-block;
  font-size: 17px;
  font-weight: bold;
  padding-top: 5px;
  padding-bottom: 5px;
}
#booking-package_calendarPage .calendarPanel{
  padding:10px 0 40px 0;
}
#booking-package_calendarPage .dayPanelHeight {
  height: 6.5em!important;
}
.numberInsteadOfSymbols{
  margin: 17px 0 0 0;
  font-size: 21px!important;
  color: #bfa761;
}
.numberInsteadOfSymbols:before{
  content:'残';
}
#booking-package_inputFormPanel .row, #booking-package_myBookingDetails .row, #booking-package_serviceDetails .row{
  padding:0!important;
}
#booking-package_inputFormPanel .name, #booking-package_serviceDetails .name{
  background: #c2ab69;
  line-height: 1.5;
  display: block!important;
  padding: 10px;
  margin: 0 0 10px 0;
}
#booking-package_inputFormPanel .value, #booking-package_serviceDetails .value {
  padding: 5px 10px 15px 10px;
}
#booking-package_inputFormPanel label, #booking-package-subscription_form label{
  margin-bottom:15px;
}
#booking-package_inputFormPanel .description{
  font-size:14px;
  line-height: 28px;
  color:#ff7877;
}
#booking-package_inputFormPanel .returnButton,
#booking-package_schedulePage button{
  width: 180px!important;;
  display: block;
  background: #eee;
  border: 0;
  height: 50px;
  margin: 0 auto;
}
#booking-package .bookingButton {
  width: 346px!important;
  height: 52px!important;
  border: 0;
  background: #be323c!important;
  color: #fff;
  margin: 20px auto 1px auto;
  display: block!important;
}
#booking-package_inputFormPanel textarea{
  height:200px;
}
#booking-package_schedulePage button{
  margin:30px 0 0 0;
}

.calendarData{
  font-size: 28px!important;
  font-weight: 500!important;
}
#booking-package_calendarPage .arrowRight,
#booking-package_calendarPage .arrowLeft{
  font-size: 22px;
}
#booking-package_calendarPage .arrowLeft{
  /*padding-right: 50px;*/
}
#booking-package_calendarPage .arrowRight{
  /*padding-left: 50px;*/
}
/*
.calendarData{
  
}
#booking-package_calendarPage .arrowRight,
#booking-package_calendarPage .arrowLeft{
  display: inline-block;
  font-size: 20px;
  background: #735829;
  color: #FFF;
  padding: 15px 0 ;
}
#booking-package_calendarPage .arrowLeft{
  padding-right: 50px;
}
#booking-package_calendarPage .arrowRight{
  padding-left: 50px;
}
#booking-package_calendarPage .dayPanel{
  color: #443b28;
  padding: 10px 0!important;
}
.numberInsteadOfSymbols{
  margin-top: 17px;
}*/

#booking-package_calendarPage .dayPanel{
  padding: 10px 0!important;
  font-size: 20px;
}
#booking-package_calendarPage .dayPanelHeight{
  height: 6.5em!important;
}
#booking-package_calendarPage .numberInsteadOfSymbols {
  color: #bfa761; 
}

/* **********************************
 *  
 * ********************************* */
.pg_blog{
  
}
.pg_blog .section#sec1{
  
}
.pg_blog .section#sec2{
  
}
.pg_blog .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{
  
}

.pg_contact .wpcf7{
  font-family: "Noto Sans JP";
  font-weight: 400;
}

.contact_tt{
  text-align: center;
  font-weight: bold;
  font-size: 23px;
  letter-spacing: 0.2em;
}

.pg_contact .privacy{
  margin-top: 80px;
}


.pg_sitemap{
  
}
.pg_sitemap .section#sec1{
  
}
.pg_sitemap .section#sec2{
  margin-top: 140px;
}
.pg_sitemap .section#sec3{
  margin-top: 140px;
}