@charset "UTF-8";




html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: 250px;
}
body {
  color:#5f3a3a;
  font-family: 'Zen Maru Gothic', sans-serif;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -o-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
a {
  text-decoration: none;

}

a:visited{
  color:#5f3a3a;
}
a{
  color:#5f3a3a;
}

img {
  max-width: 100%;
}
li {
  list-style: none;
}
p{
  margin:0 20px;
}
.wrapper {
    max-width: 1000px;
    margin: 10px auto 30px;
    font-size: 1.2rem;
  }
 
  .sec-title {
    font-size: 1.5rem;
    vertical-align:middle;
    justify-content:center;
    text-align: center;
    margin-bottom: 1rem;
  }
  .sec-title::before{
    content: url(../img/title_icon.png);    
    padding-right:10px;
    padding-bottom:50px;
  }
/*-------------------------------------------
インスタアイコン
-------------------------------------------*/
  /* Style all font awesome icons */
.fa {
  width: 30px;
  padding-top: 3px;
}
/*-------------------------------------------
メディアクエリ
-------------------------------------------*/
@media screen and (min-width:768px){
  /* 画面がPCサイズの時、PC版ヘッダーを表示 */
  h1.header1 {
    display: block;
   }
  
   /* 画面がPCサイズの時、スマホ版ヘッダーを消す */
   h1.header2 {
    display: none;
   }
  }

/*-------------------------------------------
ヘッダー
-------------------------------------------*/
#header {
    position:fixed;
    width:100%;
    text-align: center;
    height:200px;
    z-index: 1;
    background-color:#ffffff;
    color:#562100;
    transition: .3s;
    background-image: url(../img/footer_img_pc.png);
    background-position: bottom;
}
  #header ul {
    display: flex;
    padding: 0 0 20px 0;
    justify-content: center;  
    font-size:1.1rem;
  }
  #header li {
    margin-left: 30px;
  }
  #header li a {
    color:#5b0909;
    transition: 0.3s;
  }
  #header li a:hover {
    opacity: 0.7;
  }
  #header li img.icon {
    width: 20px;
  }


  #header  li a:hover {color: #d54b00ed;}
  #header  li.icon {display: none;}
 


 /*-------------------------------------------
home
-------------------------------------------*/
#home{
  text-align: center;
  padding-top:250px;
}

  
  /*-------------------------------------------
policy
-------------------------------------------*/
#policy{
  display:block;
}
#policy p {
    text-align: center;
  }
  
  /*-------------------------------------------
  temporary
  -------------------------------------------*/
  #temporary dl {
    display: flex;
    flex-wrap: wrap;
    margin:auto 100px;
  }
  #temporary dt {
    background: #ff9100;
    color:#fff;
    border-radius: 60% 60% 70% 55%;
    width: 20%;
    text-align: center;
    padding:10px 5px;
    margin:auto 15px;
  }  
  #temporary dd {
    width: 75%;
    padding:20px 0 20px 5px;
  }
  #temporary dd span{
    color: #ff0000;
  }

/*-------------------------------------------
  ordinary
  -------------------------------------------*/
  #ordinary table {
    width:90%;
    margin: 0 auto;
    border-spacing:0;
  }
  
  #ordinary tr {
    text-align: center;    
  }

 
  #ordinary th {   
    border-bottom:#9f6f6f solid 1px;
    margin:15px;
    padding: 20px;
  }
  #ordinary td {
    border-bottom:#9f6f6f solid 1px;
    padding: 15px;
  }


  /*-------------------------------------------
  Contact
  -------------------------------------------*/
  #contact{
   text-align: center;

  }
  #contact p span{
   display:block;
   font-size: 1.5em;
   margin:30px;
   font-weight: bold;
  }
  #contact div.button{
    margin: 40px auto 60px;
  }
  

  #contact a {
    color: #fff;
    background: #ff9100;;
    padding: 20px 35px;
    border-radius: 30px;
    transition: .3s;
  }
  #contact a:hover {
    background: #743c05;
  }
  

/*-------------------------------------------
  googlemap
  -------------------------------------------*/
  #access {
    width:100%;
    margin:0 auto;
  }



  /*-------------------------------------------
  フッター
  -------------------------------------------*/
  #footer {
    height:130px;
    color: #5f3a3a;
    text-align: center;
  }
  #footer span{
  font-size: 1.5rem;
  }
  #footer p{
    margin:20px 0;
  }
  #footer .banner{
     padding-bottom:30px;

  }
  /*-------------------------------------------
  スクロールするとヘッダー背景をぼかす
  -------------------------------------------*/
  .is-animation {
    opacity:0.5;
  }
 

  /*-------------------------------------------
  SP
  -------------------------------------------*/
  /* メディアクエリ */

  @media screen and (max-width:767px) {
    /*　画面サイズが767px以下の場合読み込む　*/
    /* 画面がPCサイズの時、PC版ヘッダーを表示 */
    h1.header1 {
     display: none;
     }

    /* 画面がPCサイズの時、スマホ版ヘッダーを消す */
     h1.header2 {
    display: block;
    text-align: left;
     }

    .wrapper {
      margin-bottom:40px;
    }
    
   
    /*-------------------------------------------
    ヘッダー
    -------------------------------------------*/
    #header {
      display:flex;
      background-image: url("../img/footer_img_sp.png");
      height: 100px;
    }

    
  /*　ハンバーガーボタン　*/
    .hamburger {
       display : block;
       position: absolute;
       z-index : 3;
       right : 13px;
       top   : 12px;
       width : 42px;
  height: 42px;
  padding-top:20px;
  cursor: pointer;
    }

.hamburger span {
  display : block;
  position: absolute;
  width   : 30px;
  height  : 2px ;
  left    : 6px;
  background : #555;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition   : 0.3s ease-in-out;
  transition        : 0.3s ease-in-out;
  
}
.hamburger span:nth-child(1) {
  top: 10px;
}
.hamburger span:nth-child(2) {
  top: 20px;
}
.hamburger span:nth-child(3) {
  top: 30px;
}

/* ナビ開いてる時のボタン */
.hamburger.active span:nth-child(1) {
  top : 16px;
  left: 6px;
  background :#fff;
  -webkit-transform: rotate(-45deg);
  -moz-transform   : rotate(-45deg);
  transform        : rotate(-45deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 16px;
  background :#fff;
  -webkit-transform: rotate(45deg);
  -moz-transform   : rotate(45deg);
  transform        : rotate(45deg);
}
nav{
  flex-direction:column;

}
nav.globalMenuSp {
  position: fixed;
  z-index : 2;
  background: rgb(51, 36, 36);
  transition: opacity .6s ease, visibility .6s ease;
}

nav.globalMenuSp ul {
  text-align: center;
  flex-direction: column;/* リストの文字方向が横並びで表示できた */
  width: 100vw;/* vhじゃなくて%で画面中央に配置できた */
  height:100vh;/* vhじゃなくて%で画面中央に配置できた */

}

nav.globalMenuSp ul li {
  list-style-type: none;
  width: 100vw;
  transition: .4s all;
}
nav.globalMenuSp ul li:last-child {
  padding-bottom: 0;
}
#header nav.globalMenuSp ul li a{
  color:#ffffff;
  display:block;
  width:100%;
  padding:1em 2em;
}

#header nav.globalMenuSp ul li a:hover{
  color:#890000;
  background-color: #fff;
  display:block;
  width:100vw;
  margin-right:50px;
  opacity:0.8 ;
 
  }
nav.globalMenuSp {  
  visibility: hidden;

}

/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
  opacity: 100;
  visibility: visible;

}

#home p{
  margin-top:-100px;
}
  
    /*-------------------------------------------
    temporary
    -------------------------------------------*/
    #temporary dl {
      flex-direction: column;
      display:block;
      margin:0 auto;
    }
    #temporary dt {
      flex-direction: column;
      width:90%;
      background:none;
      color:#562100;
      border-radius:0%;
      border-bottom:#5b0909 dotted 2px;
      padding-bottom:5px;
    }
    #temporary dd {
      flex-direction: column;
      width:100%;
      padding:20px;
    }
    /*-------------------------------------------
    ordinary
    -------------------------------------------*/
    #ordinary tr {
      width:100%;
      flex-direction: column;
      margin: 0 20px;
      }
  
   /*-------------------------------------------
    footer
    -------------------------------------------*/
    #footer p{
      color:#562100;
    }
  }