@charset "UTF-8";

/*---------------------------- 共通部分 ----------------------------*/

html,
body,
header,
nav,
article,
section,
aside,
footer,
div,
span,
p,
h1,
h2,
h3,
h4,
ul,
ol,
li,
dl,
dt,
dd,
table,
tr,
th,
td,
tbody,
thead,
tfoot {
  margin: 0;
  padding: 0;
}

header,
nav,
article,
section,
aside,
footer {
  display: block;
}

ol,
ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  border: 0;
}

a:link {
  color: #583822;
}

a:visited {
  color: #583822;
}

a:hover {
  color: #765c47;
}

p {
  margin: 15px 0 15px 0;
  line-height: 1.7;
  letter-spacing: 0.05em;
}

/*---------------------------- スマートフォン向けのスタイル ----------------------------*/
@media only screen and (max-width: 679px) {
  /*---------------------------- ページ全体の指定 ----------------------------*/

  body {
    width: 100%;
    font:
      87.5% "ヒラギノ角ゴ pro W3",
      "Hiragino KaKu Gothic Pro",
      "メイリオ",
      Meiryo,
      Osaka,
      sans-serif;
    color: #333333;
    letter-spacing: 0.05em;
    -webkit-text-size-adjust: 100%;
  }

  /*---------- メイン ----------*/

  #main {
    background-color: #e5fdff;
  }

  /*---------- ヘッダー ----------*/

  #header {
    width: 100%;
    height: auto;
    padding: 0 0 4px 0;
    line-height: 1.6;
    position: fixed; /* ヘッダーを固定する */
top: 0; /* 上部から配置の基準位置を決める */
left: 0; /* 左から配置の基準位置を決める */
    z-index: 1;
  }

  #header h1 {
    display: none;
  }

  /*---------- ヘッダー内 ----------*/

  #header #header_inner {
    margin: 1;  
    height: 130px;  /*-- 高さ --*/
    padding: 3px; /*-- 余白 --*/
    padding-bottom: 1px;
    background-color: #ffffff; /*-- 背景色 --*/
  }

  /*----- 左 logo -----*/

  #h_logo {
    position:fixed; /* ヘッダーを固定する */
    top: 0;
    left: 0;
    width: 100%;
    margin: 13px 0 0 0;
    padding: 5px;
    text-align: left;
    color: #666666;
    background-color:  #ffffff;
    z-index: 5;
  }

  #h_logo h2 {
    padding: 2px 0 0 0; /*-- logo 位置 --*/
  }

  #h_logo img {
    max-width: 60%;
    height: auto;
    margin-left: 10px;
  }

  #h_logo a {
    color: #666666 !important;
    text-decoration: none;
    font-size: 1em;
  }

  #h_logo a:hover {
    color: #888888 !important;
    text-decoration: underline;
    font-size: 1em;
  }

  /*----- 右 info -----*/

  #h_info {
    display: none;
  }

  /*---------- ヘッダーメニュー ----------*/

  .header-menu {
    display: none;
  }

  /*============
スマホhamnav
=============*/
  nav {
    display: block;
    position: fixed;
    top: 0;
    left: -300px;
    bottom: 0;
    width: 300px;
    background: #fff;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transition: all 0.5s;
    z-index: 3;
    opacity: 0;
  }
  .open nav {
    left: 0;
    opacity: 1;
  }
  nav .inner {
    padding: 25px;
  }
  nav .inner ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  nav .inner ul li {
    position: relative;
    margin: 0;
    border-bottom: 1px solid #333;
  }
  nav .inner ul li a {
    display: block;
    color: #333;
    font-size: 14px;
    padding: 1em;
    text-decoration: none;
    transition-duration: 0.2s;
  }
  nav .inner li a:hover {
    background: #d5f8ff;
  }

  nav .inner li:hover ul {
    display: block;
    height: auto;
    margin-bottom: 0;
  }

  nav .inner li:hover ul li {
    background: #ffffff;
    color: #000000;
  }

  nav .inner li:hover li a {
    color: #000000;
    text-align-last: center;
  }
  


  @media screen and (max-width: 767px) {
    nav {
      left: -220px;
      width: 220px;
    }
  }
  /*============
.toggle_btn
=============*/
  .toggle_btn {
    display: block;
    position: fixed;
    top: 45px;
    right: 25px;
    width: 30px;
    height: 30px;
    transition: all 0.5s;
    cursor: pointer;
    z-index: 3;
    background-color: #ffffff;
    padding: 6px;
  }
  .toggle_btn span {
    display: block;
    position: absolute;
    left: 03;
    width: 35px;
    height: 2px;
    background-color: #048fb9;
    border-radius: 4px;
    transition: all 0.5s;
  }
  .toggle_btn span:nth-child(1) {
    top: 10px;
    right: 2px;
  }
  .toggle_btn span:nth-child(2) {
    top: 20px;
    right: 2px;
  }
  .toggle_btn span:nth-child(3) {
    bottom: 10px;
     right: 2px;
  }
  .open .toggle_btn span {
    background-color: #048fb9;
  }
  .open .toggle_btn span:nth-child(1) {
    -webkit-transform: translateY(10px) rotate(-315deg);
    transform: translateY(10px) rotate(-315deg);
  }
  .open .toggle_btn span:nth-child(2) {
    opacity: 0;
  }
  .open .toggle_btn span:nth-child(3) {
    -webkit-transform: translateY(-10px) rotate(315deg);
    transform: translateY(-10px) rotate(315deg);
  }

  .dropdown-tggle li ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    display: none;
  }

  /*============
#mask
=============*/
  #mask {
    display: none;
    transition: all 0.5s;
  }
  .open #mask {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.8;
    z-index: 2;
    cursor: pointer;
  }
  /*============
main
=============*/
  main {
    padding: 50px;
  }
  main h1 {
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
    text-align: center;
  }
  

/*---------- SP電話ボタン ----------*/

.phone {
  margin: 145px 0 0 0;
  padding: 4px 2px 2px 2px;
  text-align: center;
  background-color: #e5fdff;
  background-repeat: repeat-x;

}

.phone p {
  line-height: 0.8;
}


span.tel  {
  font-size: 19px;
  line-height:1;
  font-weight: bold;
}
  
  span.tel a{
  font-size:  19px;
  color: #0801af;
  line-height:1;
  font-weight: bold;
  text-decoration: none;
}
  
span.tel a:hover{
  color: #fdba00;
  font-weight: bold;
  background-color: #fde7ab;
}

/*---------- メイン画像 ----------*/

#header-img {
  width: 100%;
  height: auto;
  margin: 150px 0 6px 0;
}

.main_photo {
  display: block;
  margin: 0 auto 0 auto;
}

/*---------- メインコンテンツ ----------*/

#container {
  padding: 0;
}

/*---------- コンテンツ ----------*/

#contents {
  padding: 8px 6px 10px 6px;
  font-size: 1em;
  background-color: #e5fdff;
}

.article {
  margin: 0;
  padding: 0;
}

.section {
  margin: 0 0 20px 0;
  padding: 0 0 5px 0;
}

#contents #pannavi {
  margin: 0 0 5px 0;
  padding: 0 0 8px 0;
  font-size: 0.92em;
}

#contents h2 {
  margin: 0 0 7px 0;
  padding: 9px 8px 5px 12px;
  font-size: 1.28em;
  color: #696968;
  line-height: 1.7;
}
/*---------- toppagetitle 挨拶----------*/
  
#contents h2.tppage_title {
 position: relative;
  padding: 0.3em 0.7em;
  background: #4081ce;
  font-size: 16px;
  color: #ffffff;
  border: none;
  margin-bottom: 30px;
}
  
  #contents h2.tppage_title:after {
  position: absolute;
  content: '';
  top: 100%;
  left: 30px;
  border: 15px solid transparent;
  border-top: 15px solid #4081ce;
  width: 0;
  height: 0;
  }


   /*---------- 見出し----------*/
#contents h2.page_title {
  background-color:#fff9f0;
  border-bottom: solid 3px skyblue;
  position: relative;
  }
  
  #contents h2.page_title:after{
  position: absolute;
  content: " ";
  display: block;
  border-bottom: solid 3px #ffc778;
  bottom: -3px;
  width: 25%;
  left: 0;
  }

#contents h2.txt {
  height: auto;
  margin: 0 0 7px 0;
  padding: 0;
  border: none;
  font-size: 16px;
  color: #54351f;
  background: none;
}
  
    #contents h2.page_title2 {
  padding: 0.4em 0.5em;/*文字の上下 左右の余白*/
  color: #494949;/*文字色*/
  background: #f4f4f4;/*背景色*/
  border-left: solid 5px #7db4e6;/*左線*/
  border-bottom: solid 3px #d7d7d7;/*下線*/}
  
  /*---------- 小見出しH3----------*/
#contents h3.fusen {
  position: relative;/*相対位置*/
  padding: 0.5em 0.5em 0.5em 1.5em;/*アイコン分のスペース*/
  line-height: 1.4;/*行高*/
  color: #ff6a6a;/*文字色*/
  border-top: dotted 1px #ff4a06;
  border-bottom: dotted 1px #ff4a06;
  background: #f2fcff;
  
}

#contents h3.fusen::before {
  font-family: "Font Awesome 5 Free";/*忘れずに*/
  content: "\f138";/*アイコンのユニコード*/
  font-weight: 900;
  position: absolute;/*絶対位置*/
  font-size: 1em;/*サイズ*/
  left: 0.25em;/*アイコンの位置*/
  top: 0.5em;/*アイコンの位置*/
  color: #ff6a6a; /*アイコン色*/
  }

#contents p {
  margin: 15px 0 15px 0;
  padding: 0 2px 0 2px;
  line-height: 1.7;
  font-size: 16px;
}
  

#contents p {
  padding-right: 2px;
  padding-left: 2px;
  line-height: 1.6;
}

  
/*----------- 画像並び  -----------*/
     .flexbox {
         display: block;
     }
     .flexbox .box1 {
         width: 100%;
         margin: 0 auto;
       text-align: center;
     }
     .flexbox .box2 {
         width: 100%;
         margin: 0 auto;
       text-align: center;
     }

/*-----------  list 箇条書き  -----------*/
  
#contents  .list-1 {
  margin-bottom: 20px;
}

#contents .list-1 li {
     font-weight: 600;
    padding: 0.4em;
}

#contents .list-1 li:not(:last-child) {
    border-bottom: 1px dashed #2589d0;
}


/*---------- 画像の回り込み ----------*/

img.picture {
  display: block;
  clear: both;
  margin: 20px auto 20px auto;
}

img.picture_r {
  display: block;
  clear: both;
  margin: 20px auto 20px auto;
}
  
  
   /*---------- 料金表（クレジット表） ----------*/ 
 
.pale_bg {
  margin: 18px 2px 18px 2px;
  padding: 5px;
  line-height: 1.8;
  letter-spacing: 0.05em;
  width: auto;
}
  
     ul.pale_bg{
       display: flex;
       justify-content: center;
  }

   li.pale_bg{
  list-style: none;
   }
  
  .pale_bg li img{
    padding: 2px;
    
  }
  
  
  
  
/*---------- 料金表（テーブル） ----------*/
.table_design01 {
  border-collapse: collapse;
  width: 100%;
 
}
.table_design01 th, .table_design01 td {
  border: 2px solid #fff;
  background-color: #e6f1f6;
  padding: 1em;
}
.table_design01 th {
  background-color: #4d9bc1;
  color: #fff;
  text-align: center;
  width: 65%;
  min-width: 4em;
}
  
  
/*---------- 表（テーブル） ----------*/
table {
  margin: 20px auto;
}
  
.tbl-r02 th {
  background: #e9727e;
  border: solid 1px #ccc;
  color: #fff;
  padding: 10px;
}
.tbl-r02 td {
  border: solid 1px #ccc;
  padding: 10px;
  background-color: #fff;
}
  
 .last td:last-child {
    border-bottom: solid 1px #ccc;
    width: 100%;
  }
  .tbl-r02 {
    width: 80%;
  }
  .tbl-r02 th,
  .tbl-r02 td {
    border-bottom: none;
    display: block;
    width: 100%;
  }

/*---------- 動画 ----------*/

.movie {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
  margin-top: 20px;
  margin-bottom: 20px;
}

.movie iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*---------- Googleマップ ----------*/

.map {
  position: relative;
  padding-bottom: 75%;
  height: 0;
  overflow: hidden;
}

.map iframe {
  position: absolute;
  top: 0;
  left: 0;
  padding: 6%;
  width: 88% !important;
  height: 100% !important;
}

/*---------- フッター ----------*/

#footer {
  width: auto;
  padding: 20px 10px 50px 10px;
  color: #ffffff;
  line-height: 1.7;
  text-align: center;
  border-top: solid 2px #ffd098;
  background-image: url(../img/footbg.jpg);
}

#footer p {
  padding: 10px;
  color: #555555;
}

#footer a {
  color: #ffffff !important;
}

#footer a:hover {
  color: #78e5ff !important;
}

#footer a:visited {
  color: #555555;
}

#footer small {
  padding: 10px;
  font-size: 0.92em;
  color: #555555;
}

#footer small a {
  color: #555555 !important;
  text-decoration: none;
}

#footer small a:hover {
  color: #777777 !important;
  text-decoration: underline;
}

#footer small a:visited {
  color: #555555;
  text-decoration: none;
}

/*---------- フロート ----------*/

.float-button__wrap {
  width: 100%;
  height: 60px;
  position: fixed;
  background-image: url(../img/bottommenu_bg.png);
  background-repeat: repeat-x;
  border-top: solid 1px #fff;
  bottom: 0;
  right: 0;
  z-index: 10;
}

 .float-button__wrap ul{
   margin-left: 10px;
   margin-top: 3px;
   margin-bottom: 3px;
  display: table;
	margin: auto;
  }

  .float-button__wrap li{
  display: inline;
  list-style-type: none;
  float: left;
  text-align: center;
  border-left: solid 1px #ffffff;
  } 
  
   .float-button__wrap li a{
  display: inline;
  list-style-type: none;
  float: left;
  text-decoration: none;
  padding: 8px 25px;
  } 
  
 .float-button__wrap li a:hover {
  color: #765c47;
  background-image: url(../img/head_menu_back_hover.gif);
  background-repeat: repeat-x;
  padding: 8px 25px;
}

  .float-button__wrap span.sub{
    font-size: 16px;
    color: #fff;
  }
  
   /*---------- 右の予約メニュー ----------*/
 .fix-right{display: none;
  }
}

 /*---------- 横揺れ防止 ----------*/
@media screen and (max-width: 480px) {
  html,
  body {
    overflow-x: hidden;
    overflow-y: scroll;
  }
}
