/***************************************************************
全体
***************************************************************/
.inner {
  margin-right: auto;
  margin-left: auto;
  width: 96%;
}
/*-----------------------
sp 続きを見る
参考：https://metrograph.jp/css_gradation_paragraph/
-----------------------*/
.sp-txt-show {
  position: relative;
}
.sp-txt-show__btn {
  background: #76b755;
  border-radius: 10px;
  color: #FFF;
  cursor: pointer;
  display: block;
  font-size: 16px;
  line-height: 1;
  margin-left: -75px;
  padding: 10px 0;
  position: absolute;
  bottom: 0;
  left: 50%;
  text-align: center;
  width: 150px;
  z-index: 3;
}
.sp-txt-show__item {
  position: relative;
  overflow: hidden;
  height: 100px;
}
.sp-txt-show__item::before {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40px; /*グラデーションで隠す高さ*/
  content: "";
}
.sp-txt-show__item.-white::before {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255,255,255,0)), color-stop(50%, rgba(255,255,255,0.9)), color-stop(50%, rgba(255,255,255,0.9)), to(#fff));
  background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,0.9) 50%, rgba(255,255,255,0.9) 50%, #fff 100%)
}
.sp-txt-show__item.-orange::before {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 195, 0,0)),color-stop(50%, rgba(255, 195, 0,0.9)),color-stop(50%, rgba(255, 195, 0,0.9)), to(#0080cc));
  background: linear-gradient(to bottom, rgba(255, 195, 0,0) 0%,rgba(255, 195, 0,0.9) 50%,rgba(255, 195, 0,0.9) 50%, #0080cc 100%);
}
.sp-txt-show__trigger {
  display: none; /*チェックボックスは常に非表示*/
}
.sp-txt-show__trigger:checked + .sp-txt-show__btn {
  display: none; /*チェックされていたら、sp-txt-show__btnを非表示にする*/
}
.sp-txt-show__trigger:checked ~ .sp-txt-show__item {
  height: auto; /*チェックされていたら、高さを戻す*/
}
.sp-txt-show__trigger:checked ~ .sp-txt-show__item::before {
  display: none; /*チェックされていたら、sp-txt-show__itemのbeforeを非表示にする*/
}
/*--------------------------------------------------------------
フォント
--------------------------------------------------------------*/
body
{
  font-family: Meiryo, "Hiragino Kaku Gothic ProN", "MS PGothic", Sans-Serif;
  animation: fadeIn 3s ease 0s 1 normal;
  -webkit-animation: fadeIn 3s ease 0s 1 normal;
}
@keyframes fadeIn {
  0% {opacity: 0}
  100% {opacity: 1}
}
@-webkit-keyframes fadeIn {
  0% {opacity: 0}
  100% {opacity: 1}
}
/*--------------------------------------------------------------
リンク
--------------------------------------------------------------*/
a
{
  -webkit-transition: 0.5s;
  transition: 0.5s;
}


/***************************************************************
ヘッダー
***************************************************************/
.header-title {
  font-size: 12px;
  padding: 5px;
  text-align: center;
}
/*--------------------------------------------------------------
パソコン用
--------------------------------------------------------------*/
/* 固定
--------------------------------------------------------------*/
header
{
  display: block;
}
/* テーブル
--------------------------------------------------------------*/
header #pc
{
  display: none;
}
/* ロゴ
--------------------------------------------------------------*/
header #pc .logo
{
  display: none;
}
header #pc .logo a
{
  display: none;
}
header #pc .logo a span
{
  display: none;
}
header #pc .logo a span img
{
  display: none;
}
/* メニュー
--------------------------------------------------------------*/
header #pc .menu
{
  display: none;
}
header #pc .menu p
{
  display: none;
}
header #pc .menu p:nth-of-type(2),
header #pc .menu p:nth-of-type(3),
header #pc .menu p:nth-of-type(4),
header #pc .menu p:nth-of-type(5),
header #pc .menu p:nth-of-type(7),
header #pc .menu p:nth-of-type(8),
header #pc .menu p:nth-of-type(9),
header #pc .menu p:nth-of-type(10)
{
  display: none;
}
header #pc .menu p:hover
{
  display: none;
}
header #pc .menu p a
{
  display: none;
}
header #pc .menu p a span
{
  display: none;
}
/*--------------------------------------------------------------
タブレット&スマートフォン用
--------------------------------------------------------------*/
/* 固定
--------------------------------------------------------------*/
.header-inner
{
  background: #f7f7f7;
  height: 50px;
  z-index: 100;
}
/* ロゴ
--------------------------------------------------------------*/
.global_menu__logo {
  width: 200px;
}
/* オープン時
--------------------------------------------------------------*/
header #sp nav.global_menu ul
{
  display: table;
  width: 95%;
  margin: 0 auto;
  padding: 5px 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
/*ロゴ*/
header #sp nav.global_menu ul li:nth-of-type(1)
{
  display: table-cell;
  width: 80%;
  vertical-align: middle;
}
header #sp nav.global_menu ul li:nth-of-type(1) h1
{
  display: inline-block;
}
header #sp nav.global_menu ul li:nth-of-type(1) h1 a
{
  display: inline-block;
  color: #333;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
}
header #sp nav.global_menu ul li:nth-of-type(1) h1 a span
{
  display: block;
  color: #333;
  font-size: 12px;
  font-weight: bold;
}
header #sp nav.global_menu ul li:nth-of-type(1) h1 a span img
{
  display: ineline-block;
  vertical-align: middle;
  width: 20px;
  height: 20px;
  padding: 0 10px 0 0;
}
/*トグル*/
header #sp nav.global_menu ul li:nth-of-type(2)
{
  display: table-cell;
  width: 20%;
  vertical-align: middle;
  text-align: right;
}
header #sp nav.global_menu ul li:nth-of-type(2) a
{
  display: inline-block;
  width: 30px;
  height: 30px;
  padding: 5px;
  background: #3B240B;
  border-radius: 50%;
  color: #fff;
  font-size: 30px;
  text-align: center;
  text-decoration: none;
}
/* クローズ時
--------------------------------------------------------------*/
/*領域*/
header #sp #category_list
{
  display: none;
  width: 100%;
  padding: 20px 10px;
  z-index: 999;
  position: absolute;
  top: 63px;
  left: 0px;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  background: rgba(255,255,255,0.9);
}
/*グローバルナビゲーション*/
header #sp #category_list ul.globalnavi
{
  font-size: 0;
  list-style-type: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.globalnavi__item
{
  border-bottom: 1px solid #CCC;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 10px 0;
  vertical-align: top;
}
.globalnavi__item a,
.nav-btn
{
  color: #333;
  display: block;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 2px;
  padding: 5px 0;
  position: relative;
  text-decoration: none;
}
.globalnavi__item a::after {
  color: #CCC;
  content: "\f105";
  font-family: FontAwesome;
  position: absolute;
  right: 3px;
}
.nav-btn {
  line-height: 1;
  text-align: left;
  width: 100%;
}
.nav-btn__bar,
.nav-btn__bar::before {
  background: #CCC;
  height: 2px;
  margin-top: -1px;
  position: absolute;
  top: 50%;
  -webkit-transition: .5s;
  transition: .5s;
  width: 10px;
}
.nav-btn__bar {
  right: 3px;
}
.nav-btn__bar::before {
  content: "";
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
.close .nav-btn__bar::before {
  background: transparent;
}
.nav-list {
  background: #F5F5F5;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0 10px;
  margin: 10px auto 0;
  width: 95%;
}
.nav-list__item {
  border-bottom: 1px solid #CCC;
  padding: 5px 0;
}
.nav-list__item:last-child {
  border-bottom: none;
}
.nav-list__item a {
  padding: 10px 0;
}
/*まずはお気軽にお問い合わせください*/
header #sp #category_list .inquiry
{
  margin: 20px 0 0 0;
  padding: 20px;
  border-color: #688A08;
  border-width: 2px;
  border-style: solid;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
header #sp #category_list .inquiry .text p
{
  padding: 0 0 10px 0;
  border-color: #D3D3D3;
  border-width: 0 0 2px 0;
  border-style: solid;
  color: #333;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 2px;
  text-align: center;
}
header #sp #category_list .inquiry .telephone
{
  margin: 10px 0 0 0;
  text-align: center;
}
header #sp #category_list .inquiry .telephone a
{
  display: inline-block;
  color: #333;
  font-size: 30px;
  font-weight: bold;
  letter-spacing: 2px;
  text-decoration: none;
}
header #sp #category_list .inquiry .telephone a i
{
  display: inline-block;
  padding: 0 20px 0 0;
  color: #9ACD32;
  font-size: 30px;
  font-weight: bold;
  line-height: 30px;
}
header #sp #category_list .inquiry .link a
{
  display: table;
  width: 80%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 10px auto 0 auto;
  padding: 10px;
  background: url(/image.php?id=27);
  border-radius: 10px;
  text-decoration: none;
}
header #sp #category_list .inquiry .link a span:nth-of-type(1)
{
  display: table-cell;
  width: 95%;
  vertical-align: middle;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 2px;
}
header #sp #category_list .inquiry .link a span:nth-of-type(2)
{
  display: table-cell;
  width: 5%;
  vertical-align: middle;
  text-align: center;
}
header #sp #category_list .inquiry .link a span:nth-of-type(2) i
{
  color: #fff;
  font-size: 14px;
  font-weight: bold;
}
/*閉じる*/
header #sp p.list_close
{
  width: 45%;
  margin: 20px auto 0 auto;
  padding: 5px;
  background: #333;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 2px;
  text-align: center;
}


/***************************************************************
フッター
***************************************************************/
footer {
  border-top: 3px solid #0080cc;
  padding-top: 30px;
  position: relative;
}
.page-top {
  background: #FFF;
  border-color: #0080cc;
  border-radius: 8px 8px 0 0;
  border-style: solid;
  border-width: 3px 3px 0 3px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #0080cc;
  cursor: pointer;
  font-size: 14px;
  height: 30px;
  margin-left: -75px;
  padding-top: 5px;
  position: absolute;
  top: -30px;
  left: 50%;
  text-align: center;
  width: 150px;
}
.page-top i {
  margin-right: 5px;
}
/*--------------------------------------------------------------
インフォ
--------------------------------------------------------------*/
/*footer-inner*/
.footer-inner {
  margin-right: auto;
  margin-left: auto;
  width: 96%;
}
/*footer-info*/
.footer-info__item {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  list-style: none;
  padding: 15px 5px;
}
/*reservation line*/
.reservation {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.reservation__txt,
.reservation__img,
.line__txt,
.line__img {
  display: table-cell;
}
.reservation__txt {
  text-align: center;
  vertical-align: middle;
  width: 70%;
}
.reservation__txt01,
.reservation__txt02 {
  display: inline-block;
  font-weight: bold;
  vertical-align: middle;
}
.reservation__txt01 {
  font-size: 24px;
}
.reservation__tac {
  text-align: center;
}
.reservation__txt03 {
  display: inline-block;
  font-size: 24px;
  font-size: 5vw;
  margin-top: 30px;
  padding: 0 6px 0 15px;
  position: relative;
  text-align: center;
}
.reservation__txt03::before,
.reservation__txt03::after {
  background: #333;
  content: "";
  height: 20px;
  height: 5vw;
  position: absolute;
  top: 0;
  width: 1px;
}
.reservation__txt03::before {
  right: 0;
  -webkit-transform: rotate(30deg);
  transform: rotate(30deg);
}
.reservation__txt03::after {
  left: 0;
  -webkit-transform: rotate(-30deg);
  transform: rotate(-30deg);
}
.reservation__txt04 {
  color: #76b755;
  font-size: 28px;
  font-size: 6vw;
  font-weight: bold;
  margin-top: 10px;
}
.reservation__txt04 i {
  display: inline-block;
  font-size: 48px;
  font-size: 7vw;
  padding-right: 10px;
  vertical-align: middle;
}
.tel-change {
  display: inline-block;
  font-weight: inherit;
}
.tel-change a {
  color: inherit;
  font-weight: inherit;
}
.reservation__img,
.line__img {
  vertical-align: bottom;
  width: 30%;
}
.reservation__img01,
.line__img01 {
  vertical-align: bottom;
}
.line {
  background-color: #00a734;
  background-image: url(image.php?id=8);
}
.line-wrapper {
  position: relative;
}
.footer-line-link {
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.line__txt {
  color: #FFF;
  text-align: center;
  vertical-align: middle;
}
.line__txt-inner {
  display: inline-block;
}
.line__txt01 {
  border-bottom: 1px solid #FFF;
  font-size: 48px;
  font-weight: bold;
  line-height: 1.2;
  padding-bottom: 15px;
}
.line__txt02 {
  font-size: 24px;
  font-weight: bold;
  margin-top: 20px;
}
@media (max-width: 500px){
  .reservation__txt {
    padding: 15px 0;
  }
  .reservation__txt01 {
    font-size: 16px;
    font-size: 4.5vw;
  }
  .reservation__txt02 {
    font-size: 14px;
    font-size: 3.5vw;
    margin-left: 5px;
    padding: 8px;
  }
  .reservation__txt03 {
    font-size: 16px;
    font-size: 5vw;
    margin-top: 20px;
  }
  .reservation__txt04 {
    font-size: 16px;
    font-size: 6vw;
  }
  .reservation__txt04 i {
    font-size: 18px;
    font-size: 6vw;
    padding-right: 5px;
  }
  .line__txt01 {
    font-size: 24px;
    padding-bottom: 10px;
  }
  .line__txt02 {
    font-size: 16px;
    margin-top: 10px;
  }
}
/*oil*/
@media (max-width: 400px) {
  .oil {
    padding: 0 10px;
  }
  .oil__txt01 {
    font-size: 24px;
    font-size: 8vw;
  }
  .oil__txt02 {
    font-size: 14px;
    font-size: 4vw;
  }
}
/*open-close*/
.oc-table {
  font-size: 14px;
  width: 100%;
}
.oc-table thead {
  background: #0080cc;
}
.oc-table th,
.oc-table td {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 12px 5px;
  text-align: center;
}
.oc-table__h-ttl,
.oc-table__h-txt {
  border-color: #FFF;
  border-style: solid;
  border-width: 0 1px 0 0;
  color: #FFF;
}
.oc-table__h-txt:last-child {
  border-color: #0080cc;
}
.oc-table__b-ttl,
.oc-table__b-txt {
  border-color: #0080cc;
  border-style: solid;
  border-width: 0 1px 1px 1px;
}
.oc-table__b-txt {
  color: #0080cc;
}
.open-close__box {
  text-align: center;
}
.open-close__close {
  margin: 20px 0;
}
.open-close__txt {
  background: #9a9a9a;
  border-radius: 8px;
  color: #FFF;
  display: inline-block;
  font-weight: bold;
  padding: 10px 25px;
  text-align: center;
}
@media (max-width: 500px) {
  .oc-table {
    font-size: 12px;
  }
  .oc-table th,
  .oc-table td {
    padding: 8px 5px;
  }
  .open-close__close,
  .open-close__txt {
    font-size: 12px;
  }
  .open-close__close {
    margin: 10px 0;
  }
}
/*symptom*/
.symptom {
  padding: 20px 10px;
}
.symptom__ttl {
  color: #FFF;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 30px;
  text-align: center;
}
.symptom__item {
  background: #FFF;
  border-radius: 8px;
  color: #0060d0;
  display: inline-block;
  font-weight: bold;
  list-style: none;
  margin-bottom: 10px;
  padding: 10px 30px;
  text-align: center;
}
@media (max-width: 500px) {
  .symptom__ttl {
    font-size: 18px;
  }
  .symptom__item {
    font-size: 14px;
    padding: 10px 20px;
  }
}
/*--------------------------------------------------------------
メニュー
--------------------------------------------------------------*/
/* 領域
--------------------------------------------------------------*/
footer #menu .wrapper
{
  display: none;
}
/*--------------------------------------------------------------
著作権
--------------------------------------------------------------*/
.copy {
  padding: 20px 0;
  text-align: center;
}
.copy__item {
  color: #FFF;
  font-size: 14px;
  list-style: none;
  margin-bottom: 10px;
}
.copy__item:last-child {
  margin-bottom: 0;
}
.copy__num {
  display: block;
  margin-bottom: 10px;
}