@charset "utf-8";

/*---------------------------------
リセットｃｓｓ
---------------------------------*/

*{
  padding: 0;
  margin: 0;
}


html{
 font-size: 100%;
}

body{
 color: #24292e;
 font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
}

a{
 text-decoration: none;
}

p{
 font-size: 1rem;
}

img{
 max-width: 100%;
}

li{
 list-style: none;
 font-size: 1.2rem;
}

.wrapper{
max-width: 1000px;
margin: 0 auto 130px auto;
font-size: 0.9rem;
padding: 0 4%;
}
.button {
  position: relative;
  display: inline-block;
  padding: 0.8em 2em;
  text-decoration: none;
  color: black;
  background: pink;/*色*/
  border: solid 1px pink;/*線色*/
  border-radius: 25px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.2);
  text-shadow: 0 1px 0 rgba(0,0,0,0.2);
  margin: 5px;
  font-size: 16px;
}
  
.button:active {
  /*押したとき*/
  border: solid 1px #f74d71;
  box-shadow: none;
  text-shadow: none;
  
}
.button:hover{
  opacity: 0.8;
}

#hero {
  text-align: center;
}
#hero img {
  width: 1000px;
}
#top {
    border-radius: 20px;

 }
h1 {
  text-align: center;
  margin-top: 100px;
  padding: 30px;
} 

#top .flex {
  display: flex;
}
#top img {
  padding: 10px;
}
#notice {
  background-color: pink;
}
#notice a {
  color: black;
  font-size: 18px;
}
#notice p {
  text-align: center;
}

@media screen and (max-width:600px) {
#hero img {
  margin-top: 60px;
}
}

#contents .flex {
  display: flex;
  margin-top: 40px;

}
#contents .box img{
  width: 500px;
  padding: 10px;

}

.bun {
  font-size: 15px;
  font-weight: 500;
  max-width: 700px;
}
.t-h2 {
  padding: 10px;
}

#access .flex {
  display: flex;
}
#access .flex .box {
  width: 50%;
  border-radius: 20px;
  margin-top: 20px;
  padding: 10px;
  margin-left: 10px;

}
#access address {
  font-style: normal;
  }
#access p {
  font-size: 15px;
}
#access address ul li {
  font-size: 18px;
}
#access address img {
margin: 20px 0;
}

@media screen and (max-width:600px) {

#contents .flex {
    flex-direction: column;
  }
#contents .box:nth-child(1) {
  order: 2;
}
#contents .box:nth-child(2) {
  order: 1;
}

#contents .box img{
  width: 100%;

}


#access .flex {
flex-direction: column;

}
#access iframe {
max-width: 100%;
height: auto;
} 
#access .box p {
text-align: left;
}
#access ul li span {
display: inline-block;
}
aside {
text-align: center;
}
#access .flex .box {
  width: 100%;
}
}
h2 {
  font-size: 25px;
  text-align: center;
  padding: 30px;
  margin-top: 80px;
}

.question {
  text-align: center;
  margin-top: 50px;
}

#photo .flex {
  display: flex;
}
#photo p {
  font-size: 14px;
  max-width: 200px;
}
.photo-a {
  width: 200px;

}
.arrow {
  width: 15px;
  height: 15px;
  margin: 60px 10px;
}
@media screen and (max-width:600px) {
#photo .flex {
  flex-direction: column;
}
.photo-a {
  width: 100%;

}
#photo p {
  font-size: 14px;
  max-width: 100%;
}

.arrow {
  display: none;
}
  
}

   
   /*---------------------------------
トップへもどるボタン
---------------------------------*/

.go-top{
  position: fixed;
  bottom: 10px;
  right: 20px;
  z-index: 9999;
}
.go-top a{
  width: 50px;
  height: 50px;
  display: inline-block;
  background: #E94E66;
  border-radius: 50%;
  text-align: center;
  line-height: 50px;
  color: black;
  text-decoration: none;
}

.go-top a:hover{
    opacity: 0.8;
  }

@media screen and (max-width:600px) {

.go-top{
position: fixed;
z-index: 9999;
bottom: 10px;
left: 10px;

}
}


/*---------------------------------
フッター
---------------------------------*/


   /*--------------------------------------------
   FOOTER
   ---------------------------------------------*/
   
   #footer{ clear:both;  overflow:hidden;}
   
   
   #footer ul li a{text-decoration: none; line-height: 1.0; font-size: x-small; }
   
   #footer ul li a:link{color: #272727; }
   
   #footer ul li a:visited{color: #272727;}
   
   #footer ul li a:hover{color: #272727; text-decoration: underline;  }
   
   #footer ul li a:active{color: #272727; text-decoration: underline;  }
   
   
   #footer {
     position: relative;
   }
   
   #searchStore {
     position: fixed;
     z-index: 10;
     backface-visibility: hidden;
     will-change: opacity;
     transition: opacity 0.3s ease-in;
   }
   
   #searchStore.is-absolute {
     position: absolute;
   }
   
   #searchStore img {
     display: block;
     width: 100%;
     max-width: 100%;
     height: auto;
   }
   
   @media screen and (max-width: 768px) {
     #searchStore {
       right: calc(20 * 100vw / 750);
       width: calc(300 * 100vw / 750);
       height: calc(300 * 100vw / 750);
     }
     #searchStore.is-absolute {
       top: calc(-200 * 100vw / 750) !important;
     }
     #searchStore:not(.is-absolute) {
       bottom: calc(20 * 100vw / 750) !important;
     }
   }
   
   @media screen and (min-width: 769px) and (max-width: 9366px) {
     #searchStore {
       right: calc(20 * 100vw / 1366);
       width: calc(120 * 100vw / 1366);
       height: calc(120 * 100vw / 1366);
     }
     #searchStore:hover {
       opacity: 0.7;
     }
     #searchStore.is-absolute {
       top: calc(-140 * 100vw / 1366);
     }
     #searchStore:not(.is-absolute) {
       bottom: calc(20 * 100vw / 1366);
     }
   }
   
   @media print, screen and (min-width: 9200px) {
     #searchStore {
       right: 20px;
       width: 120px;
       height: 120px;
     }
     #searchStore.is-absolute {
       top: -140px;
     }
     #searchStore:not(.is-absolute) {
       bottom: 20px;
     }
   }
   





/*---------------------------------
トップへもどるボタン
---------------------------------*/

.go-top{
  position: fixed;
  bottom: 100px;
  left: 30px;
  z-index: 9999;
  
}
.go-top a{
  
  width: 50px;
  height: 50px;
  display: inline-block;
  background: #E94E66;
  border-radius: 50px;
  text-align: center;
  line-height: 50px;
  color: black;
  text-decoration: none;
}

.go-top a:hover{
    opacity: 0.8;
  }
  @media screen and (max-width:600px) {
    .go-top {
      position: relative;
      left: 0;
      bottom: 0;
    }
  }
