@CHARSET "utf-8";
/*--------------------------------------
	body,html要素
---------------------------------------*/
* { margin: 0; padding: 0;}

html {
  height: 100%;
  scroll-behavior: smooth;
  animation: SlideIn 1.6s;
}

body {
  height:100%;
  margin: 0;
  padding: 0;
  background: #ffffff !important;
  color: #333333;
  font-size: 140%;
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "Yu Gothic UI", 游ゴシック体, YuGothic, sans-serif;
  line-height : 1.6;
  animation: fadeIn 2s ease 0s 1 normal;
  -webkit-animation: fadeIn 2s ease 0s 1 normal;
}

@keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

@keyframes SlideIn {
0% {
opacity: 0;
transform: translateY(128px);
}
100% {
opacity: 1;
transform: translateY(0);
}
}
/*--------------------------------------
	基本レイアウト
---------------------------------------*/
#wrap {
  min-height: 100%;
  height: auto;
  /* フッターの高さ分だけ、ネガティブインデントを指定 */
  margin: 0 auto -550px;
  /* フッターの高さ分だけ、パディングを指定 */
  padding: 0 0 550px;
}

/* ヘッダー */
#header_home {
  width: 100%;
  padding: 0 !important;
  margin: 0 !important;
  position: fixed; /* 固定 */
  z-index:20000;
  top: 0;
  background: rgba(255,255,255,1);
}

#header {
  width: 100%;
  padding: 0 !important;
  margin: 0 !important;
  position: fixed; /* 固定 */
  z-index:20000;
  top: 0;
  background: rgba(255,255,255,1);
  justify-content: space-between;
  transition: .5s;
}

#header.transform{
    background: rgba(255,255,255,0.9);
}

.hero{
    max-height: 1px;
    overflow: hidden;
}
.hero img{
    height: auto;
    width: 100%;
}

.header_inner {
  max-width: 1200px;
  margin: 0 auto;

}

.header_logo_01 {
  padding: 0;

}

.header_logo_01 img {
  width: auto;
  margin: auto;
  text-align: center;
}


.tel_num {
  font-size: 32px;
  margin: 0 auto;
  padding: 0;
  text-align: center;
}

.tel_info {
  font-size: 14px;
  margin: 0 auto;
  padding: 0;
  text-align: center;
}








.fontsize_box {
  width: 120px;
  margin: 0;
  padding: 0;
}

.fontsize_box p{
  width: auto;
  height:25px;
  margin: 0 auto;
  padding: 0;
  text-align: center;
}

.fontsize_box ul {
  display: block;
  margin: 0;
  padding: 0;
}

.fontsize_box ul li {
  display: inline-block;
  margin: 0;
  padding: 0;
}

.btn_css_01 a {
  display: block;
  width: 57px;
  height: 22px;
  background: url(images/font_s_1.png) no-repeat;
}

.btn_css_02 a {
  display: block;
  width: 57px;
  height: 22px;
  background: url(images/font_l_1.png) no-repeat;
}

.btn_css_02 a:hover {
  display: block;
  width: 57px;
  height: 22px;
  background: url(images/font_l_2.png) no-repeat;
}







#header .navbar {

  margin-bottom: 0px !important;
  background: #ffffff !important;

}

.fixed-bg {
  min-height: 100vh;
  background-attachment: local;
  background-size: cover;
  background-position: center;
}


.fixed-home_bg {
  position: relative;
  z-index: 0;
  min-width: 100vmin;
  min-height: 100vmin;
  background-attachment: local;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.fixed-home_link {
 position: absolute;
 z-index: 110;
 width: 60px;
 height: 60px;
 top:95%;
 left:50%;
 margin-left:-30px; /*widthの半分*/
 margin-top:-30px;/*heightの半分*/
 text-align: center;
 color: #ffffff;
 font-size:14px;
 background-color: rgba(50,50,50,0.7);
 border-radius: 10px;
}

.fixed-home_link p {
  margin: 0;
  padding:5px 0 0  0;
	}

.fixed-home_link a:link {
  color:#ffffff !important;
  transition: all .8s;
  text-shadow: 1px 1px 2px #000;
  font-weight: bolder;
}
.fixed-home_link a:visited {
  color: #ffffff;
  text-decoration: none;
}

.fixed-home_link a:hover {
  color:#ffffff !important;
  font-size: 18px;
  text-decoration: none;
}

.bg01 {
  background-image: url(images/top_photo_02.png);
}

.bg02 {

}

.bg03 {

}


.top_box_bg {
  height: 100vh;
  min-height: 100vh;
  background-attachment: local;
  background-size: cover;
  background-position: center;

}

.breadcrumbs {
  width: auto;
  margin: 0;
  padding: 5px;
  background: #efefef;
}

.breadcrumbs div{
  max-width: 1200px;
  margin:auto;
}

/*--------------------------------------
  プルダウン
---------------------------------------*/

.dropmenu{
  *zoom: 1;
  list-style-type: none;
  max-width: 1200px;
  margin: 0 auto 5px;
  padding: 0;
  border-left: 1px solid #bbbbbb;
}
.dropmenu:before, .dropmenu:after{
  content: "";
  display: table;
}
.dropmenu:after{
  clear: both;
}
.dropmenu li{
  position: relative;
  width: 20%;
  float: left;
  margin: 0;
  padding: 0;
  text-align: center;
  border-right: 1px solid #bbbbbb;
}
.dropmenu li a{
  display: block;
  margin: 0;
  padding: 8px 0 8px;
  background: #fffff;
  color: #23AC38;
  font-size: 18px;
  line-height: 1;
  text-decoration: none;
}
.dropmenu li ul{
  list-style: none;
  position: absolute;
  z-index: 10000;
  top: 100%;
  left: 0;
  margin: 0;
  padding: 0;
}
.dropmenu li ul li{
  width: 100%;
}
.dropmenu li ul li a{
  padding: 13px 15px;
  border-top: 1px solid #23AC38;
  background: #ffffff;
  text-align: left;
}
.dropmenu li:hover > a{
  background: #ffffff;
}
.dropmenu li a:hover{
  background: rgba(245,245,245,0.95);
}

#fade-in2 li ul{
  opacity: 0;
  top: 50%;
  visibility: hidden;
  transition: .5s;
}
#fade-in2 li:hover ul{
  top: 100%;
  visibility: visible;
  opacity: 1;
}

/* メインコンテンツ */
#contents_01 {
  max-width: 720px !important;
  height: auto;
  margin: 0;
  padding: 0;
}

#contents_02 {
  max-width: 1200px !important;
  height: auto;
  margin:  auto !important;
  padding: 0 !important;

}

#contents_03 {
  max-width: 100% !important;
  height: auto;
  margin:  0 !important;
  padding: 0 !important;

}

#contents_04 {
  max-width: 1000px !important;
  height: auto;
  margin:  auto !important;
  padding: 0 !important;
}

#contents_05 {
  max-width: 1000px !important;
  height: auto;
  margin:  auto !important;
  padding: 0 !important;
  text-align: center;
}

.contents_01 {
  max-width: 720px !important;
  height: auto;
  margin: 0;
  padding: 0;
}

.contents_02 {
  max-width: 1200px !important;
  height: auto;
  margin:  auto !important;
  padding: 0 !important;

}

.contents_03 {
  max-width: 100% !important;
  height: auto;
  margin:  0 !important;
  padding: 0 !important;

}

.contents_04 {
  max-width: 1000px !important;
  height: auto;
  margin:  auto !important;
  padding: 0 !important;
}

.contents_05 {
  max-width: 1000px !important;
  height: auto;
  margin:  auto !important;
  padding: 0 !important;
  text-align: center;
}

.home_box {
  max-width: 100% !important;
  height: auto;
  margin:  auto !important;
  padding: 0 !important;
}

.text_box_01 {
  margin: 0 !important;
  padding: 0 !important;
  background: #ffffff !important;
  border: #e0d3b9 solid 1px;
  border-radius: 3px;
  box-shadow: 2px 2px 3px 1px #bbb;
}

.text_box_02 {
  max-width: 712px;
  background: #ffffff !important;
  border: #e0d3b9 solid 1px;
  border-radius: 3px;
  box-shadow: 2px 2px 3px 1px #bbb;
}

/* サブコンテンツ */
#sub_01 {
  max-width: 220px !important;
  margin: 0 0 10px 30px !important;
  padding: 0 !important;
}

.sub_menu ul, .sub_menu li {
  display: block;
}

.sub_inner {
  width: auto;
  margin: 0 0 10px 0;
}

/* フッター */
#footer {
  position: relative;
  z-index: 0;
  width: 100%;
  min-height: 550px;
  margin: 0 auto;
  border-top: #666666 solid 1px;
  background: url(images/footer_img.jpg) no-repeat;
  background-size: cover;
}

.footer_inner {
  max-width: 1200px;
  margin: auto;
  padding: 0 !important;
}
.pagetop {
  clear: both;
  max-width: 1200px;
  max-height: 27px;
  margin: auto;
}

.pagetop img {
  margin-right: 10px;
}



.footer_title_01 {

}

.footer_title_01 p {
  max-width: 800px !important;
  margin: 40px auto !important;
  padding: 10px;
  text-align: center;
  font-size: 30px;
  font-family: 游明朝体, "Yu Mincho", YuMincho, メイリオ, Meiryo, "ＭＳ ゴシック", sans-serif;
  background: #ffffff;
  box-shadow: 0 2px 2px 2px #999999;
  border-radius: 5px;
}

.footer_box_01 {
  width: 100%;
  height: 220px;
  margin: 0 auto 10px;
  padding: 0 0 10px 0;
  border: 1px solid #666666;
  background: #ffffff;
}

.footer_box_01 h3 {
  margin:0;
  padding:8px 0;
  font-size: 18px;
  font-weight: bold;;
  text-align: center;
  background:#000000;
  border-bottom:#666666 1px solid;
  color: #ffffff;
}

.footer_info {
 width: auto;
 text-align: center;
 position: absolute;
 z-index: 105;
 background: #ffffff;
 top:100%;
}

.footer_info ul {
  margin: 2px auto;
  text-align: center;

}

.footer_info li {
  display: inline-block;
  padding: 0 10px;
}

.footer_menu_border {
  border-right: #666666 solid 1px;
}


.copyright {
  display: block;
  width: auto;
  margin: 0 auto;
  padding: 5px;
  font-size: small;
  color: #666666 !important;
  text-align: center;
}

.footer_tel_num {
  font-size: 32px;
  margin: 0 auto;
  padding: 6px 0 7px 0;
  text-align: center;
}







/*--------------------------------------
	基本パーツ
---------------------------------------*/
a:link {
  color: #666666;
  text-decoration: none;
}

a:visited {
  color: #666666;
  text-decoration: none;
}

a:hover {
  color: #36280c;
  font-weight: bold;
  text-decoration: underline;
}

a:active {
  color: #666666;
  text-decoration: underline;
}

.inner {
  width: auto;
  margin: auto;
  padding: 0;
  text-align: left;
}

.clear { clear: both;}

.d_block { display: block;}

img { border: 0; margin: 0; padding: 0;}

.t_red { color: #ff0000;}

.t_blue { color: #003399;}

.t_orange { color: #ff9900;}

.t_green { color: #72CFF3;}

.t_pink { color: #ff8888;}

.t_brown { color: #5d5743;}

.t_aqua { color: #6699ff;}

.t_white { color:#ffffff;}

.l_font { font-size: 160%; !important;}

.m_font { font-size: 120%; !important;}

.s_font { font-size: 100%; !important;;}

.t_bold { font-weight:bold !important;}

.t_center { width: auto; margin: auto !important; text-align: center !important;}

.t_left { width: auto; margin:auto auto auto 0; text-align: left;}

.t_right { width:auto;margin:auto 0px auto auto; text-align: right;}

.marg_0 { margin: 0 !important;}

.marg_10 { margin: 10px !important;}

.marg_12 { margin: 12px !important;}

.marg_20 { margin: 20px !important;}

.marg_30 { margin: 30px !important;}

.marg_w5 { margin-left: 5px !important;  margin-right: 5px !important;}

.marg_w10 { margin-left: 10px !important;  margin-right: 10px !important;}

.marg_w15 { margin-left: 15px !important;  margin-right: 15px !important;}

.marg_w20 { margin-left: 20px !important;  margin-right: 20px !important;}

.marg_v10 { margin-top: 10px !important; margin-bottom: 10px !important;}

.marg_t5 { margin-top: 5px !important;}

.marg_t10 { margin-top: 10px !important;}

.marg_t20 { margin-top: 20px !important;}

.marg_t30 { margin-top: 30px !important;}

.marg_t50 { margin-top: 50px !important;}

.marg_b10 { margin-bottom: 10px !important;}

.marg_b20 { margin-bottom: 20px !important;}

.marg_l20 { margin-left: 20px !important;}

.padd_0 { padding: 0 !important;}

.padd_l0 { padding-left: 0 !important;}

.padd_r0 { padding-right: 0 !important;}

.padd_10 { padding: 10px !important;}

.padd_20 { padding: 20px !important;}

.padd_30 { padding: 30px !important;}

.padd_40 { padding: 40px !important;}

.padd_50 { padding: 50px !important;}

.padd_v10 { padding-top: 10px !important; padding-bottom: 10px !important;}

.padd_t5 { padding-top: 5px !important;}

.padd_t10 { padding-top: 10px !important;}

.padd_t20 { padding-top: 20px !important;}

.padd_t30 { padding-top: 30px !important;}

.padd_t50 { padding-top: 30px !important;}

.padd_t80 { padding-top: 80px !important;}

.padd_t90 { padding-top: 90px !important;}

.padd_t120 { padding-top: 120px !important;}

.padd_t150 { padding-top: 150px !important;}

.padd_b5 { padding-bottom: 5px !important;}

.padd_b10 { padding-bottom: 10px !important;}

.padd_b20 { padding-bottom: 20px !important;}

.padd_b30 { padding-bottom: 30px !important;}

.padd_b80 { padding-bottom: 80px !important;}

.padd_w0 { padding-left: 0 !important; padding-right: 0 !important;}

.padd_w5 { padding-left: 5px !important; padding-right: 5px !important;}

.padd_w10 { padding-left: 10px !important; padding-right: 10px !important;}

.padd_w20 { padding-left: 20px !important; padding-right: 20px !important;}

.padd_w30 { padding-left: 30px !important; padding-right: 30px !important;}

.padd_l10 { padding-left: 10px !important;}

.padd_l20 { padding-left: 20px !important;}

.padd_l30 { padding-left: 30px !important;}

.padd_r10 { padding-right: 10px !important;}

.padd_r20 { padding-right: 20px !important;}

.padd_r30 { padding-right: 30px !important;}

.must_img { margin: 0 5px;vertical-align:middle;}

.bg_white { background: #ffffff !important;}

.bg_brown { background: #f9f9f5 !important;}

.bg_orange { background: #fffbee !important;}


/*--------------------------------------
	見出し・区切り線共通
---------------------------------------*/
.title_01 {
  display: block;
  width: auto;
  margin: 0;
  padding: 0 0 0 10px;
  background: #fffbee !important;
  box-shadow: 2px 2px 3px 1px #ddd;
  border-radius: 3px;
  border-top: #f76300 solid  1px;
  border-right: #f76300 solid  8px;
  border-left: #f76300 solid  8px;
  border-bottom: #f76300 solid  1px;
  color: #5d5743;
  font-size: 24px;
  font-weight: normal;
  line-height: 1.4;
}


.title_font {
  font-family: 游明朝体, "Yu Mincho", YuMincho, メイリオ, Meiryo, "ＭＳ ゴシック", sans-serif !important
}

.slash-2 {
  height: 8px;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="3px" height="3px" viewBox="0 0 3 3" fill="hsla(0, 0%, 65%, 1.0)"><polygon points="0,0.5 0,1.5 1.5,3 2.5,3"/><polygon points="2.5,0 1.5,0 3,1.5 3,0.5"/></svg>');
  background-size: 3px 3px;
  width: auto;
}

/*--------------------------------------
  共通パーツ
---------------------------------------*/
.list_01 {

}

.list_01 dt {
  display: block;
  padding-left: 30px;
  background: url(images/clover_o_01s.png) no-repeat !important;
}

.list_01 dd {
  display: block;
  margin-left: 30px;
  margin-bottom: 10px;
  padding-left: 13px;
  background: url(images/list_01.png) no-repeat !important;
  background-position: 0 6px !important;
}

.list_02 {

}


.list_02 li {
  display: block;
  margin-bottom: 10px;
  padding-left: 30px;
  background: url(images/clover_o_01s.png) no-repeat !important;
  background-position: 0 2px !important;
}

.txt_box_navi_01 {
  margin: 0 auto 0 0;
  padding: 0;
  text-align: right;
}

.txt_box_navi_01 ul {
  display: block;
  width: auto;
  margin: 0 auto 10px auto;
  padding: 0;
}

.txt_box_navi_01 ul li {
  display: inline-block;
  margin: 0 auto;
  padding: 0;
  border: #666666 solid 1px;
  border-radius: 3px;
  text-align: left;
}

.txt_box_navi_01 ul li a {
  display: block;
  width: 250px;
  height: 40px;
  padding: 8px 0 0 30px;
  color: #666666;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
}

.txt_box_navi_01 ul li a:hover {
  display: block;
  width: 250px;
  height: 40px;
  background: #f6f6f6 !important;
  color: #666666;
}

.txt_box_navi_02 {
  margin: 0 auto;
  padding: 0;
  text-align: center;
}

.txt_box_navi_02 ul {
  display: block;
  width: auto;
  margin: 0 auto 10px auto;
  padding: 0;
}

.txt_box_navi_02 ul li {
  display: inline-block;
  margin: 0 auto;
  padding: 0;
  border: #666666 solid 1px;
  border-radius: 3px;
  text-align: left;
}

.txt_box_navi_02 ul li a {
  display: block;
  width: 250px;
  height: 40px;
  padding: 8px 0 0 30px;
  color: #666666;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 3px;
}

.txt_box_navi_02 ul li a:hover {
  display: block;
  width: 250px;
  height: 40px;
  background: #f6f6f6 !important;
  color: #666666;
}

.txt_box_navi_03 {
  margin: 0 auto;
  padding: 0;
  text-align: center;
}

.txt_box_navi_03 ul {
  display: block;
  width: auto;
  margin: 0 auto 10px auto;
  padding: 0;
}

.txt_box_navi_03 ul li {
  display: inline-block;
  margin: 0 auto;
  padding: 0;
  border: #e0d3b9 solid 1px;
  border-radius: 3px;
  text-align: left;
}

.txt_box_navi_03 ul li a {
  display: block;
  width: auto;
  height: 40px;
  padding: 8px 20px 0 30px;
  color: #663100;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
}

.txt_box_navi_03 ul li a:hover {
  display: block;
  width: auto;
  height: 40px;
  background: #f9f6d7 !important;
  color: #f76300;
}

.txt_box_navi_04 {
  margin: 0 auto;
  padding: 0;
  text-align: center;
}

.txt_box_navi_04 ul {
  display: block;
  width: auto;
  margin: 0 auto 10px auto;
  padding: 0;
}

.txt_box_navi_04 ul li {
  display: inline-block;
  margin: 5px auto;
  padding: 0;
  border: #e0d3b9 solid 1px;
  border-radius: 3px;
  text-align: left;
}

.txt_box_navi_04 ul li a {
  display: block;
  width: auto;
  height: 40px;
  padding: 8px 20px 0 30px;
  color: #663100;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
}

.txt_box_navi_04 ul li a:hover {
  display: block;
  width: auto;
  height: 40px;
  background: #f9f6d7 !important;
  color: #f76300;
}

/*--------------------------------------
	フォーム要素
---------------------------------------*/
form {}

.input_01 {max-width: 50px;}

.input_02 {max-width: 100px;}

.input_03 {max-width: 150px;}

.input_04 {max-width: 200px;}

.input_05 {max-width: 250px;}

/*--------------------------------------
	ボタン要素
---------------------------------------*/
/* css切り替え */
.btn_css_01 {
  font-weight: bold;
  color: #ff6600 !important;
}

.btn_css_02 {
  font-weight: normal;
  color: #666666 !important;
}

.button_01 a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  padding: 1em 2em;
  max-width: 300px;
  color: #666666;
  font-size: 16px;
  font-weight: 700;
  border: 1px solid #666666;
}

.button_01 a::after {
  content: '';
  width: 15px;
  height: 15px;
  border-top: 3px solid #666666;
  border-right: 3px solid #666666;
  transform: rotate(45deg);
}

.button_01 a:hover {
  color: #ffffff;
  text-decoration: none;
  background-color: #333333;
}

.button_01 a:hover::after {
  border-top: 3px solid #ffffff;
  border-right: 3px solid #ffffff;
}

.btn--bw,
a.btn--orange {
  width:100%;
  color: #000;
  background-color: #fff;
  border: solid #000000 1px;
}
.btn--bw:hover,
a.btn--bw:hover {
  color: #fff;
  background: #000000;
}

a.btn--radius {
   border-radius: 100vh;
}

.btn--bw_over {
  color: #ffffff !important;
  background: #000000;
}
/*--------------------------------------
  wordpress style
---------------------------------------*/
/* Images */
.alignleft {
  float: left;
  margin: 5px;
}

.alignright {
  float: right;
  margin: 5px;
}

.aligncenter {
  display: block;
  margin: 5px auto;
}

.wp-caption {
   border: 1px solid #ddd;
   text-align: center;
   background: #f3f3f3 !important;
   padding-top: 4px;
   margin: 10px;
   /* optional rounded corners for browsers that support it */
   -moz-border-radius: 3px;
   -khtml-border-radius: 3px;
   -webkit-border-radius: 3px;
   border-radius: 3px;
}

.wp-caption img {
   margin: 0;
   padding: 0;
   border: 0 none;
}

.wp-caption p.wp-caption-text {
   font-size: 11px;
   line-height: 17px;
   padding: 0 4px 5px;
   margin: 0;
}

/*--------------------------------------
	サイドパーツ
---------------------------------------*/
.widget {
  margin: 0 0 10px 0;
  padding: 15px 0;
  background: #ffffff !important;
  border: #d7d5c4 solid 1px;
  border-radius: 3px;
}

.widgettitle {
  width: auto;
  margin: 0 auto;
  padding: 5px 0 4px 0;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  background: #856119 !important;
}

.widget .menu {
  border-bottom: #d7d5c4 dashed 1px;
}

.widget .menu li {
  display: block;
  width: auto;
  height: 60px;
  border-top: #d7d5c4 dashed 1px;
  background: url(images/side_menu_bg_01.gif) repeat-y !important;
  font-size: 14px !important;
  color: #2e2209 !important;
}

.widget .menu li a {
  display: block;
  width: auto;
  height: 59px;
  margin: 0;
  padding: 19px 0 0 32px !important;
  background: url(images/side_menu_bg_01.gif) repeat-y !important;
  color: #2e2209 !important;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
}

.widget .menu li a:hover {
  width: auto;
  height: 59px;
  background: url(images/side_menu_bg_02.gif) repeat-y !important;
  color: #2e2209 !important;
  font-weight: normal;
}

/*--------------------------------------
	TOPページパーツ
---------------------------------------*/
.top_imagbox {
  padding: 0;
}

.top_imagbox img {
  width: 100%;
}

.slider_box {
  position: relative;
  z-index: 0;
  max-width: 100%;
  max-height: ;
  margin: 0 auto !important;
  padding: 0 !important;
}

.slider_info {
 max-width:620px;
 height:280px;
 padding:10px;
 position: absolute;
 z-index: 100;
 top:50%;
 left:50%;
 margin-left:-310px; /*widthの半分*/
 margin-top:-140px;/*heightの半分*/
 background: #ffffff;
}
.slider_info p {
  margin: 20px 0;
  line-height:2;
  font-size: 20px;
  font-weight: bold;;
  text-align: center;
}
.bx-viewport .slider li{
  display: block!important;
}

.slider_box img {
  width: 100%;
  object-fit: cover;
}

#slider li {
  display: none;
}


.info_box_01 {
  max-width: 800px;
  margin: auto;
  padding: 0 0 80px 0;
}

.info_box_title {
  padding: 150px 0 30px 0;
}

.info_box_title h2 {
  position: relative;
  padding: 0 65px;
  text-align: center;
  font-family: 游明朝体, "Yu Mincho", YuMincho, メイリオ, Meiryo, "ＭＳ ゴシック", sans-serif;
}

.info_box_title h2:before {
  position: absolute;
  top: calc(50% - 1px);
  left: 0;
  width: 100%;
  height: 2px;
  content: '';
  background: #000;
}

.info_box_title h2 span {
  position: relative;
  padding: 0 1em;
  background: #fff;
}

.info_box_01 ul.info_txt_01 {
  display: block;
  float: left;
  width: 100%;
  height: 220px;
  margin: 0 ;
  padding: 0 0 0 20px;
  overflow: auto;


}

.info_box_01 ul.info_txt_01 li {
  border-bottom: 1px dotted;
}

.info_date {
  display: block;
  float: left;
  width: 200px;
  margin: 0;
  padding: 0 10px 0 0;
  font-size: 120%;
  line-height: 1.4;
}

.info_title_01 {
  width: auto;
  margin: 0 0 0 80px;
  padding: 0;
  font-size: 120%;
  line-height: 1.4;
}

.top_inquiry_01 {
  width: auto;
  padding : 5px;
  background : #f35612;
  color : #ffffff;
  font-size : 240% !important;
  font-weight : bolder;
}


.top_btn_01 {
  max-width: 97%;
  height: 100%x;
  margin:auto auto 10px auto;
  padding: 10px;
  text-align:center;
  border: 1px solid #666666;

}
.top_btn_01 p {
  margin: 20px 0;
  line-height:2;
  font-size: 20px;
  font-weight: bold;;
  text-align: center;
}

.top_btn_02 {
  clear:both;
  max-width: 97%;
  height: 100%x;
  padding: 0px;
  margin:auto;
  border: 1px solid #666666;
  text-align: center;
}

.top_btn_02 a {
  transition: color 1s;
}

.top_btn_02 a:hover {
  color:#23AC38 ;
  text-decoration: none;
}
.top_btn_02 p {
  margin: 15px;
  font-size: 20px;
  text-align: left;
}

.top_btn_03 {
  clear:both;
  width: 100%;
  height: 100%x;
  padding: 0px;
  margin:0 5px 10px auto;
  border: 1px solid #666666;

}

.top_btn_03 a {
  transition: color 1s;
}

.top_btn_03 a:hover {
  color:#23AC38 ;
  text-decoration: none;
}

.top_btn_03 p {
  margin: 5px;
  font-size: 20px;
  font-weight: bold;;
  text-align: center;
}
/*--------------------------------------
	記事ページ
---------------------------------------*/
.entry_box_01 {
  width: auto;
  margin: 40px 0 0 0 !important;
  padding: 20px 10px 10px 10px !important;

}

.entry_box_01 ul.entry_txt_01 {
  display: block;
  margin: 0 !important;
  padding: 0 !important;
}

.entry_txt_01_inner {
  width: auto;
  margin: 0;
  padding: 0 0 10px 0;
  background: #ffffff !important;
  border-bottom: #666 1px dotted;
}

.entry_title_01 {
  list-style: none;
}
.entry_title_01 h1 {
  position: relative;
  color: #666666;
  padding: 10px 0;
  text-align: center;
  margin: 1.5em 0;
  font-family: 游明朝体, "Yu Mincho", YuMincho, メイリオ, Meiryo, "ＭＳ ゴシック", sans-serif;
  font-size: 36px !important;
  line-height: 1.4;
}
.entry_title_01 h1:before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  width: 150px;
  height: 82px;
  border-radius: 50%;
  border: 5px solid #a6ddb0;
  border-left-color: transparent;
  border-right-color: transparent;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.entry_title_01 h1 a {
  font-weight: normal;
}

.entry_title_01 h1 a:hover {
  font-weight: normal;
  text-decoration: none;
}

.entry_txt_01_body {
  width: auto;
  padding: 20px 0;
  color: #333333;
  font-size : 118%;
  line-height: 1.6;
}

.entry_txt_01_body h1 {font-size:24px !important;}
.entry_txt_01_body h2 {font-size:20px !important;}
.entry_txt_01_body h3 {font-size:16px !important;}
.entry_txt_01_body h4 {font-size:14px !important;}
.entry_txt_01_body h5 {font-size:12px !important;}
.entry_txt_01_body h6 {font-size:10px !important;}
.entry_txt_01_body p {padding:0 0 15px 0;}
.entry_txt_01_body em {font-style: italic !important; font-family: Arial, "MS Trebuchet", sans-serif !important;}

.entry_txt_01_body li {
  margin-left: 30px;
}

.page_box_01 {
  width: auto;
  margin: 40px 0 0 0 !important;
  padding: 20px 0 10px 0 !important;

}

.page_box_01 ul.page_txt_01 {
  display: block;
  margin: 0 !important;
  padding: 0 !important;
}

.page_txt_01_inner {
  width: auto;
  margin: 0;
  padding: 0 0 10px 0;
  background: #ffffff !important;
  border-bottom: #666 1px dotted;
}

.page_title_01 {
  list-style: none;
}

.page_title_01 h1 {
  position: relative;
  color: #666666;
  padding: 10px 0;
  text-align: center;
  margin: .5em 0;
  font-family: 游明朝体, "Yu Mincho", YuMincho, メイリオ, Meiryo, "ＭＳ ゴシック", sans-serif;
  font-size: 36px !important;
  line-height: 1.4;
}
.page_title_01 h1:before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  width: 150px;
  height: 82px;
  border-radius: 50%;
  border: 5px solid #a6ddb0;
  border-left-color: transparent;
  border-right-color: transparent;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.page_title_01 h1 a {
  font-weight: normal;
}

.page_title_01 h1 a:hover {
  font-weight: normal;
  text-decoration: none;
}

.page_subtitle {
  width: auto;
  margin: auto;
  padding: 0;
  text-align: center;
  list-style: none;
}

.page_titlecaption {
  width: auto;
  margin: auto;
  padding: 0;
  text-align: center;
  list-style: none;
}

.page_txt_01_body {
  width: auto;
  padding: 20px 0;
  color: #333333;
  font-size : 118%;
  line-height: 1.6;
}

.page_txt_01_body h1 {font-size:24px !important;}
.page_txt_01_body h2 {font-size:20px !important;}
.page_txt_01_body h3 {font-size:16px !important;}
.page_txt_01_body h4 {font-size:14px !important;}
.page_txt_01_body h5 {font-size:12px !important;}
.page_txt_01_body h6 {font-size:10px !important;}
.page_txt_01_body p {padding:0 0 15px 0;}
.page_txt_01_body em {font-style: italic !important; font-family: Arial, "MS Trebuchet", sans-serif !important;}

.page_txt_01_body li {
  margin-left: 30px;
}

.page_title_02 {
  clear: both;
  padding: 20px 0;
}

.page_title_02  h2:first-letter {
  font-size: 2em;
  color: #7172ac;
}

.page_title_02 h2 {
  position: relative;
  padding: 0.25em 1em;
  border: solid 2px black;
  border-radius: 3px 0 3px 0;
  font-family: 游明朝体, "Yu Mincho", YuMincho, メイリオ, Meiryo, "ＭＳ ゴシック", sans-serif;
}



.page_title_02 h2:before,.page_title_02  h2:after {
  content: '';
  position: absolute;
  width: 25px;
  height: 25px;
  border: solid 2px black;

}

.page_title_02 h2:after {
  top:-12px;
  left:-12px;
}
.page_title_02 h2:before {
  bottom:-12px;
  right:-12px;
}

.page_title_03 {
  clear: both;
  padding: 150px 0 30px 0;
}

.page_title_03 h2 {
  position: relative;
  padding: 0 65px;
  text-align: center;
  font-family: 游明朝体, "Yu Mincho", YuMincho, メイリオ, Meiryo, "ＭＳ ゴシック", sans-serif;
}

.page_title_03 h2:before {
  position: absolute;
  top: calc(50% - 1px);
  left: 0;
  width: 100%;
  height: 2px;
  content: '';
  background: #000;
}

.page_title_03 h2 span {
  position: relative;
  padding: 0 1em;
  background: #fff;
}

.page_title_04 {
  clear: both;
  padding: 50px 0 30px 0;
}

.page_title_04 h2 {
  position: relative;
  padding: 0 65px;
  text-align: center;
  font-family: 游明朝体, "Yu Mincho", YuMincho, メイリオ, Meiryo, "ＭＳ ゴシック", sans-serif;
}

.page_title_04 h2:before {
  position: absolute;
  top: calc(50% - 1px);
  left: 0;
  width: 100%;
  height: 2px;
  content: '';
  background: #000;
}

.page_title_04 h2 span {
  position: relative;
  padding: 0 1em;
  background: #fff;
}


.page_title_05 h2 {
  position: relative;
  overflow: hidden;
  padding: 1.5rem 2rem 1.5rem 130px;
  border: 2px solid #000;
  font-family: 游明朝体, "Yu Mincho", YuMincho, メイリオ, Meiryo, "ＭＳ ゴシック", sans-serif;
}

.page_title_05 h2:before {
  position: absolute;
  top: -150%;
  left: -100px;
  width: 200px;
  height: 300%;
  content: '';
  -webkit-transform: rotate(25deg);
  transform: rotate(25deg);
  background: #000;
}

.page_title_05 h2 span {
  font-size: 40px;
  font-size: 4rem;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  display: block;
  padding-top: 3px;
  padding-left: 16px;
  color: #fff;
}

.page_title_06 {
  padding: 30px;
}

.page_title_06 h2 {
  width:300px !important;
  margin:auto !important;
  border-bottom: solid 3px skyblue;
  position: relative;
  font-family: 游明朝体, "Yu Mincho", YuMincho, メイリオ, Meiryo, "ＭＳ ゴシック", sans-serif;
  text-align: center;
  padding: 10px 0;
}

.page_title_06 h2:after {
  position: absolute;
  content: " ";
  display: block;
  border-bottom: solid 3px #23AC38;
  bottom: -3px;
  width: 50%;
}





.flow_box {
  padding-bottom: 30px !important;

}

.flow_box h2 {
  display: block;
  margin: 0 0 5px 0;
  padding: 5px 15px 2px 15px;
  background: rgb(158,171,123);
  background: linear-gradient(90deg, rgba(158,171,123,1) 15%, rgba(218,201,148,1) 100%);
  border-radius: 20px;
  font-size: 20px !important;
  font-weight: bold;
  color: #ffffff;
}

.flow_allow {
	display: block;
	text-align: center;
	font-size: 36px;
	color: #666666;
}

.tab-wrap {
    display: flex;
    flex-wrap: wrap;
}
.tab-label {
    color: White;
    background: LightGray;
    margin-right: 5px;
    padding: 3px 12px;
    order: -1;
}
.tab-content {
    width: 100%;
    display: none;
}
/* アクティブなタブ */
.tab-switch:checked+.tab-label {
    background: #23AC38;
}
.tab-switch:checked+.tab-label+.tab-content {
     display: block;
}
/* ラジオボタン非表示 */
.tab-switch {
    display: none;
}


.roomtab-wrap {
    display: flex;
    flex-wrap: wrap;
}
.roomtab-label {
    color: White;
    background: LightGray;
    margin-right: 5px;
    padding: 3px 12px;
    order: -1;
}
.roomtab-content {
    width: 100%;
    display: none;
}
/* アクティブなタブ */
.roomtab-switch:checked+.roomtab-label {
    background: #23AC38;
}
.roomtab-switch:checked+.roomtab-label+.roomtab-content {
     display: block;
}
/* ラジオボタン非表示 */
.roomtab-switch {
    display: none;
}


.room_info {
  max-width: 550px;
  margin: auto;
}

.room_info dt {
  margin: 0;
  padding-top: 2px;
  background: #23AC38;
  color: #ffffff;
  text-align: center;
}

.room_info dd {
  margin: 0 0 10px 0;
  padding: 10px 0 0 10px;
  border-top: #23AC38 solid 1px;
  text-align: left;
  font-size: 100%;
}

/*--------------------------------------
	記事・一覧のページング
---------------------------------------*/
.archive_title_01 {
  list-style: none;
}

.archive_title_01 h1 {
  position: relative;
  color: #666666;
  padding: 10px 0;
  text-align: center;
  margin: 1.5em 0;
  font-family: 游明朝体, "Yu Mincho", YuMincho, メイリオ, Meiryo, "ＭＳ ゴシック", sans-serif;
  font-size: 36px !important;
  line-height: 1.4;
}
.archive_title_01 h1:before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  width: 150px;
  height: 82px;
  border-radius: 50%;
  border: 5px solid #a6ddb0;
  border-left-color: transparent;
  border-right-color: transparent;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}


.archive_title_01 h1 a:hover {
  font-weight: normal;
  text-decoration: none;
}

.archive_box_01 {
  width: auto;
  margin: 0 !important;
  padding: 5px !important;

}

.archive_box_01 ul {
  display: block;
}

.archive_box_01 ul li {
  display: block;
  margin: 0 0 10px 0;
  padding: 0 0 5px 0;
  border-bottom: #666666 dashed 1px;
}

.archive_date_01 {
  display: block;
  float: left;
  width: auto;
  margin: 0 !important;
  padding: 0 !important;
  font-size: 110%;
}

.archive_txt_01 {
  display: block;
  float: left;
  margin: 0 !important;
  padding: 0 !important;
  max-width:550px;
  font-size: 110%;
}

.archive_txt h3_01 {
  display: block;
  width: auto;
  margin: 0;
  padding: 0;
}

.archive_date_02 {
  display: block;
  margin: 0 !important;
  padding: 0 !important;
  font-size: 100%;
  text-align: right;
}

.archive_txt_02 {
  display: block;
  margin: 0 !important;
  padding: 0 !important;
  font-size: 140%;
}

.archive_txt_02 h3 {
  display: block;
  width: auto;
  margin: 0;
  padding: 0;
}

.pagesprit {
  clear: both;
  margin: 20px auto;
  background: #ffffff !important;
  color: #333333;
  line-height: 2;
  text-align: center;
}

.entry_box_01_img {
  max-width: 100px;
  max-height: 100px;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.entry_box_01_img img {
 width: 100px;
 height: auto;
}


.page-numbers a {
  display: inline;
  border: solid 1px #333;
  color: #00019b;
  text-decoration: none;
}

.page-numbers a:hover {
  background: #185c9b !important;
  color: #ffffff;
}

.numbers {
  margin: 0 10px;
}

.nextarticle_box_01 {
  clear: both;
  width: auto;
  margin: 0 auto 0 150px;
  text-align: center
}

.nextarticle_box_01 p {
  display: block;
  float: left;
  width: 200px;
  height: 20px;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  -o-text-overflow: ellipsis; /* Opera9,10対応 */
}

.nextarticle_box_02 {
  clear: both;
  width: auto;
  margin: 0 auto 0 270px;
  text-align: center
}

.nextarticle_box_02 p {
  display: block;
  float: left;
  width: 200px;
  height: 20px;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  -o-text-overflow: ellipsis; /* Opera9,10対応 */
}

/*--------------------------------------
  Comments
---------------------------------------*/
#commentblock {
  display: none;
  width: auto;
  padding: 0px 30px 10px 30px;
  margin: 10px;
  color: #000000;
  }

#commentblock ol {
  margin: 0;
  padding: 0 0 10px;
  list-style: none;
}

.avatar-default {
 border-radius: 4px;
}
#commentblock ol li {
  margin: 0;
  list-style: none;
}

.commentdate {
  padding-left: 0px;
  font-size: 12px;
}

#commentlist li p {
  margin-bottom: 8px;
  padding: 0px;
  line-height: 20px;
  }

#commentblock ul.children { padding: 0 0 0 15px; }

#commentblock .comment-author { padding: 0 }

#commentblock .comment-avatar .avatar {
  float: right;
  margin: 0 0 0 5px;
}

.commentname {
  margin: 0px;
  padding: 5px 5px 5px 0px;
  color: #333333;
  }

.commentinfo {
  clear: both;
  }

.entry-content{
  font-size: 14px;
  line-height:1.8;
}

.commenttext, .commenttext-admin {
  margin: 5px 0px 30px 0px;
  padding: 5px;
  background: #EFEFEF !important;
  border-top: 1px solid #DDDDDD;
  border-right: 1px solid #999999;
  border-left: 1px solid #DDDDDD;
  border-bottom: 1px solid #999999;
  border-radius: 4px;
  color: #000000;
  font-size: 12px;
}

.comment-navigation .previous { float: left; }

.comment-navigation .next { float: right; }

.comment-navigation { margin: 0 0 30px; overflow: hidden; }

#commentformheader {
  padding-left: 0px;
}

#commentform {
  margin: 0px;
  padding: 0px;
}

#commentform form {
  text-align: left;
  margin: 0px;
}

#commentform p {
  margin: 0px;
}

#commentform textarea {

}

p.comments_link  img {
  margin: 0px;
  padding: 0px;
  border-top-style: none;
  border-right-style: none;
  border-bottom-style: none;
  border-left-style: none;
}

.edit_txt {
  font-size: 14px;
  font-weight: bold;
  color: #F60;
}

.edit_txt a { color:#F60;}

/*--------------------------------------
  各固定ページ
---------------------------------------*/
.page_header_img_01  {
  min-width: 100vmin;
  min-height: 400px;
  background: url(images/page_header_01.jpg) no-repeat;
  background-attachment: local;
  background-size: cover;
  background-position: center;

}

/*特徴*/
.page_img_01 {
  min-width: 100vmin;
  min-height: 60vmin;
  background: url(images/page_img_01.jpg) no-repeat;
  background-attachment: local;
  background-size: cover;
  background-position: center;
}

.page_img_caption_01 h2 {
  padding: 20px 0;
  font-family: 游明朝体, "Yu Mincho", YuMincho, メイリオ, Meiryo, "ＭＳ ゴシック", sans-serif;
  color: #ffffff;
  font-size: 36px !important;
  font-weight: normal;
  line-height: 1.5;

}

.page_img_caption_02 p {
  color: #ffffff;
  font-size: 20px !important;
  font-weight: normal;
}

.feature {
  width: auto;
  margin: auto;
  padding: 20px 0;


}


.feature h3 {
  position: relative;
  margin: 80px 0 50px 0;
  text-align: center;
  border: 2px solid #000;
  background: #fff;
  font-family: 游明朝体, "Yu Mincho", YuMincho, メイリオ, Meiryo, "ＭＳ ゴシック", sans-serif;
  color: #333333;
  font-size: 36px !important;
  font-weight: bold;
}

.feature h3:before,
.feature h3:after {
  position: absolute;
  content: '';
}

.feature h3:before {
  top: -40px;
  left: calc(50% - 40px);
  width: 80px;
  height: 80px;
  border: 2px solid #000;
  border-radius: 50%;
  background: #fff;
}

.feature h3:after {
  top: 4px;
  left: 4px;
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  border: 2px dashed #000;
  background: #fff;
}

.feature h3 i {
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 60px;
  position: absolute;
  z-index: 2;
  top: -40px;
  left: calc(50% - 40px);
  width: 80px;
  height: 60px;
  text-align: center;
}

.feature h3 span {
  position: relative;
  z-index: 1;
  display: block;
  padding: 1.5rem;
}

.feature h3 span:before,
.feature h3 span:after {
  position: absolute;
  content: '';
}

.feature h3 span:before {
  top: -34px;
  left: calc(50% - 34px);
  width: 68px;
  height: 40px;
  border: 2px dashed #000;
  border-radius: 50vw 50vw 0 0;
}

.feature h3 span:after {
  position: absolute;
  top: 4px;
  left: calc(50% - 32px);
  width: 64px;
  height: 10px;
  background: #fff;
}


.feature ul {
  margin: auto;
}

ul.feature_list{
  counter-reset:li;
  padding: 0.5em 0.5em 0.5em 2em;
  font: 14px/1.6 'arial narrow', sans-serif;
  max-width:700px;
  list-style: none;
}
.feature_list li{
  position: relative;
  padding: 13px 4px 10px 20px;
  margin-top: 0.8em;
  border-bottom: 1px dashed #ccc;
  font-size: 20px;
  color: #333;
}

.feature_list li:before{
  counter-increment: li;
  content: counter(li);
  position: absolute;
  z-index: -1;
  left: -5px;
  top: -3px;
  background: #f5f5f5;
  height: 1.5em;
  width: 1.5em;
  border: .1em solid rgba(0,0,0,.05);
  text-align: center;
  font: italic bold 1em/1.3em Georgia, Serif;
  color: #ccc;
  border-radius: 1.5em;
  transition: all .2s ease-out;
}

.feature_list li:hover:before{
  background-color: #a6ddb0;
  border-color: rgba(0,0,0,.08);
  border-width: .2em;
  color: #444;
  transform: scale(1.5);
}


/*施設概要*/
.page_img_02  {
  min-width: 100vmin;
  min-height: 400px;
  background: url(images/page_img_02.jpg) no-repeat;
  background-attachment: local;
  background-size: cover;
  background-position: center;

}

.page_image {
	position: relative;

}

.page_image::before,
.page_image::after {
	content: '';
	position: absolute;
	transform: rotate(-35deg);
	width: 70px;
	height: 25px;
	background-color: #fff;
	z-index: 1;
}

.page_image::before {
	top: -10px;
	left: -25px;
	border-bottom: 1px solid #aaa;
}

.page_image::after {
	bottom: -10px;
	right: -25px;
	border-top: 1px solid #aaa;
}

.footer_box {
  height: 150px;
  border-top: 1px solid #dddddd;
  border-right: 1px solid #eeeeee;
  border-bottom: 1px solid #dddddd;
  border-left: 1px solid #cccccc;
  padding:5px !important;
  background: #fcfcfc;
}
.footer_box_icon {
  font-size: 40px;
}
.footer_box_title {
  font-size: 24px;
}

/*料金について*/
ul.pay_list{
  padding: 0;
  font: 14px/1.6 'arial narrow', sans-serif;
  max-width:400px;
  list-style: none;
  margin: auto;
}
ul.pay_list li{
  position: relative;
  padding: 0.5em 1em 0.5em 2.3em;
  margin-bottom:5px;

  font-size: 15px;
  font-weight: bold;
  border-bottom: 1px dotted #666666;
}
ul.pay_list li:after,
ul.pay_list li:before{
  content: "";
  position: absolute;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
ul.pay_list li:before{
  top: 0.7em;
  left: 0.2em;
  width: 12px;
  height: 12px;
  border:2px solid rgba(129,194,250,0.5);
}
ul.pay_list li:after{
  top: 0.9em;
  left: 0.7em;
  width: 14px;
  height: 14px;
  background: rgba(129,194,250,0.3);
  -webkit-transform: rotate(60deg);
  -moz-transform: rotate(60deg);
  -o-transform: rotate(60deg);
  -ms-transform: rotate(60deg);
  transform: rotate(60deg);
}


/*MAP*/
.google-maps {
  position: relative;
  padding-bottom: 35%;
  height: 0;
  overflow: hidden;
}

.google-maps iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}

/*会社概要*/
.company_info {
  max-width: 1000px !important;
  margin: auto;
}

.company_info dt {
  margin: 0;
  padding-top: 2px;
  background: #a6ddb0;
  color: #ffffff;
  text-align: center;
}

.company_info dd {
  margin: 0 0 10px 0;
  padding: 10px 0 0 10px;
  border-top: #a6ddb0 solid 1px;
  text-align: left;
  font-size: 100%;
}


/*Q&A*/
ul.faq_list{
  padding: 0;
  font: 14px/1.6 'arial narrow', sans-serif;
  max-width:800px;
  list-style: none;
  margin: auto;
}
ul.faq_list li{
  position: relative;
  padding: 0.5em 1em 0.5em 2.3em;
  margin-bottom:5px;

  font-size: 15px;
  font-weight: bold;
  border-bottom: 1px dotted #666666;
}
ul.faq_list li:after,
ul.faq_list li:before{
  content: "";
  position: absolute;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
ul.faq_list li:before{
  top: 0.7em;
  left: 0.2em;
  width: 12px;
  height: 12px;
  border:2px solid rgba(129,194,250,0.5);
}
ul.faq_list li:after{
  top: 0.9em;
  left: 0.7em;
  width: 14px;
  height: 14px;
  background: rgba(129,194,250,0.3);
  -webkit-transform: rotate(60deg);
  -moz-transform: rotate(60deg);
  -o-transform: rotate(60deg);
  -ms-transform: rotate(60deg);
  transform: rotate(60deg);
}

.faq{
  background: #F6F6F6;
  padding: 1em;
  border-radius: 1em;
}
.faq dt{
  padding-bottom: 5px;
  margin-bottom: 5px;
  border-bottom: 1px dotted;
  font-weight: bold;
}
.faq dt:before{
  content: "Q";
  font-weight: normal;
  background: #cc0000;
  color: #fff;
  width: 1.5em;
  height: 1.5em;
  line-height: 1.6;
  text-align: center;
  display: inline-block;
  border-radius: 1em;
  margin-right: .5em;
}
.faq dd{
  margin-bottom: 2em;
}
.faq dd:last-child{
  margin-bottom: 0;
}

/*料金*/
.pay_01 {
  margin:auto;
  max-width: 500px;
}

.pay_01 table {
  margin:auto;
  max-width: auto;
}

.pay_01 table th {
  width: 50% !important;
}

.pay_01 table td {
  width: 50% !important;
  text-align: right;
}

.pay_02 {
  margin:auto;
  max-width: 500px;
}

.pay_02 table {
  margin:auto;
  max-width: auto;
}

.pay_02 table th {
  width: 50% !important;
  background: #333333;
  color: #ffffff;
}

.pay_02 table td {
  width: 50% !important;
  text-align: right;
  padding: 0 !important;
}

.pay_02 table td p {
  display:block;
  margin: 0px auto !important;
  padding: 0px !important;
  text-align:center;
  font-size: 2em;
  font-weight: bold;
}

.total_01 {
  max-width: 500px;
  background: #333333;
  margin: auto;
  padding: 10px;
  text-align: center;
}

.total_01 sapn{
  font-size: 2em;
  font-weight: bold;
  color: #ffffff;
}

.plus_01 {
  text-align:center;
  font-size: 30px !important;
  font-weight: bolder;
}


/*お問い合わせ*/
.inquiry_menu {
  clear:both;
  margin: 20px !important;

}

.inquiry_01 {
  margin:auto;
  max-width: 900px;
}

.inquiry_01 table {
  margin:auto;
  max-width: auto;
}

.inquiry_01 table th {
  width: 30% !important;
  background: #eeeeee;
}

.inquiry_01 table td {
  width: 70% !important;
}
.inquiry_item {
  clear: both;
  width: 100 !important;
}

.required {
  display: block;
  width:50px;
  background: #ff0000;
  color: #ffffff;
  border-radius: 5px;
  text-align: center;
  font-size: 16px;
}

.inquiry_button {
  display       : inline-block;
  border-radius : 20px;
  font-size     : 18px;
  text-align    : center;
  cursor        : pointer;
  padding       : 10px 30px;
  background    : #ffffff;
  color         : #23AC38;
  line-height   : 1em;
  transition    : .3s;

  border        : 2px solid #23AC38;
}
.inquiry_button:hover {
  box-shadow    : none;
  color         : #ffffff;
  background    : #23AC38;
  box-shadow    : 3px 3px 3px #666666;
}
/*--------------------------------------
  bootstrap 補正
---------------------------------------*/
.container {
  width: 100% !important;


}

#nav_mobile ul.nav li.dropdown:hover > ul.dropdown-menu {
  display: block;
}

@media print {
  a[href]:after {
    content: ""!important;
  }
  abbr[title]:after {
    content: ""!important;
  }
}

.navbar-collapse.in {
    overflow-y: visible !important;
}

/*--------------------------------------
  youtube可変
---------------------------------------*/
.youtube {
  position:relative;
  width:100%;
  padding-top:56.25%;
}
.youtube iframe {
  position:absolute;
  top:0;
  right:0;
  width:100%;
  height:100%;
}

/*-----------------------------
ギャラリー
------------------------------*/
.gallery { /** ギャラリーを囲むボックス **/
	width: 100%;
	margin-bottom: 20px !important;
    overflow: hidden;
}

.gallery br {display: none;} /** 自動で挿入される clearfix の余白解除 **/

.gallery-item { /** 画像共通のスタイル **/
    float: left;
	margin-bottom: 0 !important;
}
.gallery-icon { /** 画像を囲む dt のスタイル **/
    text-align: center;
}

.gallery-icon img {
	width: 100%;
	height: auto;
	margin-bottom: 10px !important;
}

.gallery-caption { /** キャプション **/
    color: #222;
    font-size: 12px;
    margin: 0 0 10px;
    text-align: center;
}

.gallery-columns-1 .gallery-item { /** カラムなし **/
    width: 100% !important;
    margin-right: 0 !important;
}
.gallery-columns-2 .gallery-item { /** 2カラム **/
	width: 48% !important;
	margin: 0 1% !important;
}
.gallery-columns-3 .gallery-item { /** 3カラム **/
    width: 31.33333% !important;
	margin: 0 1% !important;
}
.gallery-columns-4 .gallery-item { /** 4カラム **/
    width: 23% !important;
    margin: 0 1% !important;
}
.gallery-columns-5 .gallery-item { /** 5カラム **/
    width: 18% !important;
    margin: 0 1% !important;
}

.gallery-columns-6 .gallery-item { /** 6カラム **/
    width: 14% !important;
    margin: 0 1% !important;
}

.gallery-columns-7 .gallery-item { /** 7カラム **/
    width: 12% !important;
    margin: 0 1% !important;
}

.gallery-columns-8 .gallery-item { /** 8カラム **/
    width: 10% !important;
    margin: 0 1% !important;
}

.gallery-columns-9 .gallery-item { /** 9カラム **/
    width: 9% !important;
    margin: 0 1% !important;
}

@media screen and (max-width: 640px) {
	/* 640px以下用の記述 */
	.gallery-columns-3 .gallery-item, .gallery-columns-4 .gallery-item {
		width: 48% !important;
		margin: 0 1% !important;
	}
	.gallery-columns-5 .gallery-item, .gallery-columns-6 .gallery-item, .gallery-columns-7 .gallery-item, .gallery-columns-8 .gallery-item, .gallery-columns-9 .gallery-item {
		width: 31.33333% !important;
		margin: 0 1% !important;
	}
}


/*--------------------------------------
  google
---------------------------------------*/
.grecaptcha-badge { visibility: hidden; }
