
html{
  font-size: 100%;
}
body{
  margin: 0px;
  line-height: 1.7;
  color: black;
}
main{
  display: flex;
}

header{
  position: fixed;
  margin-bottom: 0px;
  z-index: 1;
}

/*ここまで*/
.waku{
  "border: #ffb6c1 solid 1px; font-size:22px; padding: 20px;"
}

.toikake{
  text-decoration: underline;solid #32605a;
  color: #32605a;
}

.pikature img{
  display: flex;
  width: 500px;
  margin: 10px;
  }/*画像を横並び*/

  nav {
      display: block;
      width: :400px;
      position: fixed;
      background-color: #ffffff;
      top:0;
      left: -200px;
      bottom: 0;
      transition: all 0.5s;
      z-index: 3;
      opacity: 0;
    }

    .open nav {
      left:0px;
      opacity:1;
      width: 300px;
    }

    nav .inner{
      padding: 25px;
    }

    nav .inner ul{
      list-style: none;
      margin: 0;
      padding: 0;
    }

    nav .inner ul li{
      margin: 0;
      border-bottom: 2px solid #333;

    }
    nav .inner ul li a {
      display: block;
      text-decoration: none;
      color: #333;
      font-size: 14px;
      padding: 1rem;
      transition-duration: 0.2s;
    }

    nav .inner ul li a:hover{
      background-color: #e4e4e4;
    }

    .toggle-btn{
      display: block;
      position: fixed;
      top: 15px;
      right: 30px;
      width: 30px;
      height: 30px;
      z-index: 3;
      cursor:pointer;
    }
    .toggle-btn span{
      position: absolute;
      display: block;
      left: 0px;
      width: 50px;
      height: 3px;
      background-color: #333;
      transition: :all 0.5s;
      border-radius: 4px;
    }
    .open .toggle-btn span{
      background-color: #fff;
    }

    .toggle-btn span:nth-child(1) {
    top: 4px;
    }
    .toggle-btn span:nth-child(2){
      top: 14px;
    }
    .toggle-btn span:nth-child(3){
      bottom: 4px;
    }

    #mask{
      display: none;
      transition: all 0.5s;}

      .open #mask {
        display: block;
        background-color: #000;
        height: 100%;
        width: 100%;
        top: 0;
        left: 0px;
        position: fixed;
        opacity: 0.8;
      }




/*画像のスライダー*/
  .mv{
    width: 100%;
    height: 500px;
    position: relative;
    z-index: 0;
  }
  .mv h1{
    position: absolute;
    color: white;
    top: 50%;
    left:50%;
    text-align: center;
    -ms-transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    margin: 0;
    padding: 0;
    font-size: 32px;
  }
  .bar{
    text-align: center;
    background-color:#0e6227;
    color: white;
    margin: 0px;
    padding: 2px;
  }
  .items{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    animation: img-change 15s infinite;
    opacity: 0;
    z-index: 0;
  }
  .items img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;

  }

  .items:nth-child(1){
    animation-delay: 0s;
  }
  .items:nth-child(2){
    animation-delay: 3s;
  }
  .items:nth-child(3){
    animation-delay: 6s;
  }
  .items:nth-child(4){
    animation-delay: 9s;
  }
  .items:nth-child(5){
    animation-delay: 12s;
  }
  .items:nth-child(6){
    animation-delay: 15s;
  }
  @keyframes img-change {
    0%{
      opacity: 0;
    }
    10%{
      opacity: 1;
    }
    20%{
      opacity: 1;
    }
    30%{
      opacity: 1;
    }
    40%{
      opacity: 0;
    }
    100%{
      opacity: 0;
    }
  }
/*ここまで*/
.senn{
  padding: 10px;
  background-color: #32605a;
  margin: 10px;
  color: white;
}

.senn h2{
  text-align: center;
}

#home{
  background-image: url(images/bed.jpg);
  min-height: 80vh;
  margin-bottom: 5px;
  padding-bottom: 5px;
}

.page-header{
  display: flex;
justify-content: space-between;
  background-color: #c3dcbe;
  width: 100%;
  height: 70px;
  margin-bottom: 0;
}
.logo{
  z-index: 1;
  padding: 0px;
  margin: 0px;
}
.logo img{
  height: 70px;
}
.mein-nav {
  display: flex;
  list-style-type: none;
  text-transform: uppercase;
  font-size: 30px;
  margin-top: 10px;
}
.mein-nav li{
  margin-left: 50px;
  margin-bottom: 5px;
}
.mein-nav a{
  color: #432;
}

.gazou img{
  width: 600px;
  height: 500px;
  align-items: center;
}

.flex{
  display: flex;
  justify-content: space-between;

  }/*横並び*/

article{
  width: 65%;
  background-color: rgba(225, 238, 193, 0.7);
  padding: 25px 25px;
  margin: 10px;
}
/*問い合わせのQA*/
.qa{
  width: auto;
  border: 3px solid green;
  font-size: 20px;
}
.qa h3{
  color: red;
}

aside{
    width: 31%;
    border: 2px solid black;
    margin: 10px;
    text-align: center;
  }

  .botann{                  /*ボタンの追加*/
    font-size: 20px;
    background: #32605a;
    border-radius: none;
    margin: 30px 50px 30px 40px;
    padding: 5px 30px;
    text-align: center;
    display: block;
  }
.botann  a{
  color: white;
  border-radius: none;
  text-decoration: underline;
}

  .botann:hover{
    background: green;
  }

  .lp{
    background-color: #F0FFF0;
    padding: 40px;
  }

  .home-content{
padding-top: 70px;

  }

  .home-content h1  {
    margin-top: 20px;
    color: white;
    text-align: center;
  }

  .home-content p  {
    color: white;
    text-align: center;
    padding-bottom: 10px;:
  }



  .before{
    background:url(images/hosi.png)no-repeat 0 0/50px auto;
    padding: 10px 10px 10px 70px;
  }

.big-bg{
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;

}




h1{
  font-size: 40px;
  text-align: center;
}

h2{
  font-size: 32px;
}
h3{
  font-size: 20px;
  text-align: center;
}
h4{
  font-size: 19px;
  text-align: center;
}
.footer{
  position: fixed;
  background-color: green;
  bottom: 0px;
  width: 100%;
  height: 40px;
  padding: 0px;
}
.footer h2{
  margin: 5px;
  text-align: center;
  color: white;
  font-size: 18px;
}

#footer{
  display: none;
}

.glid{
  display: grid;
  grid-gap: 26px;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  margin: 0 auto 0px;
  text-align: center;
}

.item img{
  width: 300px;
  height: 300px;
}

.teck ul{
  list-style: none;

  }

.teck ul li{
  padding: 2px 25px;
  line-height: 1.4em;
  background:url(images/tiextuku.png)left 0px top 4px no-repeat;
  background-size: 20px auto;
  margin: 20px 30px;
}



/*モバイルHTML*/
  @media screen and (min-width:769px){
    .mobpng{
      display: none;
    }

}

    @media(max-width:768px) {
header{
  position: fixed;
}

.mobpng{
  display: inline;
  width: 100%;
  margin:15px 0 ;
}
.waku{
  border-radius: 10px; border: 4px double #32605a;
  font-size:22px;
  padding: 20px;
  background-color:white;
}
.waku h1{
  font-size: 32px;
  color: #32605a;
}
.waku h2{
  font-size: 26px;
  text-align: center;
}
.waku li{
  font-size: 18px;
}

iframe{
  display: block;
  margin: auto;
}

.sitasenn ol{
  padding: 10px;
  background:white;
}
.sitasenn li{
  border-bottom: red dotted;
  margin: 15px 0px;
  list-style-position:inside;
  padding-left: 10px;
}


.item img {
  width: 100px;
}

.teck h3{
  font-size: 28px;
}

.teck ul li{
  padding: 2px 25px;
  line-height: 1.4em;
  background:url(images/tiextuku.png)left 0px top 4px no-repeat;
  background-size: 20px auto;
  margin: 20px 0px;
  font-size: 18px;
}
.qa{
  align-items: center;
  display:inline-block;
  margin: 25px auto;
  padding: 20px;
  border: 3px solid green;
  font-size: 20px;
}
.qa h2{
  text-align: center;
}
.rei img{
  width:200px;
  height: 200px;
  margin: 5px 40px;

}
.before{
  font-size: 20px;
}

.before2{
  font-size: 20px;
}

.yoyaku{
  display: none;
}

.pikature img{
  display: inline;
  width: 100%;
  margin:15px 0 ;
}


.gazou{

}
.gazou img{
  width: 380px;
  height: 300px;
}

.head{
  background-color: green;
  position: fixed;
  top: 0px;
  width: 100%;
  height: 70px;
}

.head a {
  left: 0;
  top: 0;
}
.head a img{
  width: 300px;
  height: 70px;
}
nav {
    display: block;
    width: :400px;
    position: fixed;
    background-color: #ffffff;
    top:0;
    left: -200px;
    bottom: 0;
    transition: all 0.5s;
    z-index: 3;
    opacity: 0;
  }

  .open nav {
    left:0px;
    opacity:1;
    width: 300px;
  }

  nav .inner{
    padding: 25px;
  }

  nav .inner ul{
    list-style: none;
    margin: 0;
    padding: 0;
  }

  nav .inner ul li{
    margin: 0;
    border-bottom: 1px solid #333;

  }
  nav .inner ul li a {
    display: block;
    text-decoration: none;
    color: #333;
    font-size: 14px;
    padding: 1rem;
    transition-duration: 0.2s;
  }

  nav .inner ul li a:hover{
    background-color: #e4e4e4;
  }

  .toggle-btn{
    display: block;
    position: fixed;
    top: 15px;
    right: 30px;
    width: 30px;
    height: 30px;
    z-index: 3;
    cursor:pointer;
  }
  .toggle-btn span{
    position: absolute;
    display: block;
    left: 0px;
    width: 50px;
    height: 3px;
    background-color: #333;
    transition: :all 0.5s;
    border-radius: 4px;
  }
  .open .toggle-btn span{
    background-color: #fff;
  }

  .toggle-btn span:nth-child(1) {
  top: 4px;
  }
  .toggle-btn span:nth-child(2){
    top: 14px;
  }
  .toggle-btn span:nth-child(3){
    bottom: 4px;
  }

  #mask{
    display: none;
    transition: all 0.5s;}

    .open #mask {
      display: block;
      background-color: #000;
      height: 100%;
      width: 100%;
      top: 0;
      left: 0px;
      position: fixed;
      opacity: 0.8;
    }

    .mein-nav{
      display: none;
    }

    main{
      display: inline;
      padding: 0px;
    }
    article{
      width: 85%;
      margin:10px auto;
      padding: 0px;
   }

    aside{width: 90%;
    margin: 15px auto;
  padding: auto;}

.ooo {
  font-size: 20px;
}

h1{
  font-size: 25px;
}

li{
  font-size: 20px;
}
ul{

  font-size: 20px;
}

.mobilekaicentaer h3{
  text-align: center;
  font-size: 20px;
}
    h2 h3{
      font-size: 20px;
    }

    p{
      font-size: 18px;
    }

    .senn{
      padding: 1px 0px;
      background-color: #32605a;
      margin: 10px 0px;
      color: white;
    }

    .senn h2{
      font-size: 20px;
      text-align: center;
    }
    /*星のアイコン*/
    .before{
      background:url(images/hosi.png)no-repeat 0 0/50px auto;
      padding: 10px 10px 10px 70px;
    }
    .before h3{
      font-size: 20px;
    }

/*フッターの設定*/
.footer{
  background-color:rgba(71,118,60,0.7);
  position: fixed;
  height: 60px;
  padding:20 0 0 0px;
}

.footer h2{
  display: none;
}

#footer{
  display: flex;
  justify-content: space-between;
}
#footer img {
  width: 100%;
  height: 60px;
}
#footer img  a{
  margin: 0;
  padding: 0px;
}
 .as{
   padding-bottom: 60px;
   box-sizing: border-box;
 }
.border ul li{
  font-size: 18px;
}

 .glid{
   margin: 0px;
  padding: 0px;
 }
.glid img{
  width: 400px;
  height: 380px;
  margin: 0px auto;

}

.botann{
  font-size: 15px;
  background: #32605a;
  border-radius: none;
  margin:10px;
  padding: 5px 20px;
  text-align: center;
  display: block;
}
/*表の装飾*/
table{
  width:100%;
  border-collapse: collapse;
  margin-bottom:10px;
  margin-top: 3px;
}
table tr{
  border: solid 3px white;
}

}
table th{
  position: relative;
  width: 30%;
  background-color: #32605a;
  color: white;
  text-align: center;
  padding: 10px 0;
}
table td{
  text-align: left;
  width: 70%;
  text-align: center;
  background-color: #eee;
  padding: 10px 0;
  font-size: 18px;
}

.sitasenn{
  text-align: center;
  border-bottom: dotted 3px green;
}
.sitasenn h1{
  margin-bottom: 5px;
}

.ususenn{
  padding: 0px 30px;
  background-color: #e1eec1;
  margin: 10px 0px;
}
.ususenn h2{
  font-size: 26px;
}
/*枠のポイントのやつ */
.point {
  display:;
  position: relative;
  margin: 0;
  font-size: 100%;
}

/* タイトル部分 */
.point-title {
  position: relative;
  top: 3px;
  padding: 0 .5em;
  height: 1.5em;
  line-height: 1.5em;
  color: #ffffff;
  background: green;
  font-weight: bold;
  text-align: center;
  border-radius: 5px 5px 0 0;
  display: inline-block;
}

/* 本文部分 */
.point-body {
  background: rgba(255, 255, 255, 0);
  border: solid 3px green;
  padding: 0px;
  font-size: 18px;
}
   /*768px以上電話できない*/
   @media(min-width: 768px) {
     a[href^="tel:"]{
       pointer-events: none;
     }
     /*モバイル用の改行をなしにする*/
     .mobilekai br{display: none
     }
   }
