@charset "UTF-8";

  /* 共通部分
------------------------------- */
@media screen and (max-width: 900px){
  img{
  max-width: 100%;
  /* width:auto; */
  }

  html {
    font-size: 100%;
    background-color: #eefdff;
  }
  
  body{
    margin: 0;
    font-family: "Yu Gothic Medium", "游ゴシック Medium",
    YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3",
    sans-serif;
    line-height: 1.7;
    color:#c9ae77;
  }
  
  a {
    text-decoration: none;
  }
  
  .wrapper {
    max-width: 900px;
    height: auto;
    margin: 0 auto;
    padding: 0 0.4%;
  }
  
  article {
    text-align: center;
    margin: 0;
    font-size: 25px;
    color: #686663;
  }
  
  article h1 {
    margin: 0;
  }
  
  section {
    text-align: center;
  }
  
  
  /* ブルベリーライン */
  
  .bb {
    text-align: center;
  }
  
  /* 大きな背景画像 */
  .big-bg {
    background-image: url(images/bv36.png);
    min-height: 100vh;
    width: 100%;
    height: 100%;
    background-size: 100%;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
  }
  
  /* HEADER
  ------------------------------- */
  .page-header {
    margin: 0;
  }

  .logo {
    display: none;
  }


  .main-nav {
    display: flex;
    position: fixed;
    width: 90%;
    top: 20px;
    list-style: none;
    text-align: center;
  }
  
  .main-nav a:hover {
    opacity: 0.8;
  }
  
  
  .main-nav li {
    width: 200px;
  }
  
  
  .grid {
    display: grid;
    padding: 0;
    gap: 100px;
    grid-template-columns: repeat(auto-fit, minmax(390px, 1fr));
    margin-top: 3%;
    margin-bottom: 70px;
  }
  
  /* 案内 */
  .guide {
    text-align: center;
    color: #686663;
    font-size: 23px;
    margin-bottom: 100px;
  }
  
  .tel {
    text-align: center;
    max-width: 200%;
  }

  .fee {
    max-width: 150%;
  }
  /* 店舗情報・地図 */

  #location {
    padding: 4% 0;
    font-size: 18px;
  }
  
  #location .wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
  }
  
  .location-info {
    top: 0;
    width: 100%;
    color: #fff;
    background: #c9ae77;
  }
  
  .location-info p {
    padding: 12px 10px;
  }
  
  .location-info span {
    font-size: 25px;
  }

  /* iframe */
  iframe {
    max-width: 100%;
    height: 500px;
  }

  aside img{
    margin: 0 0 0 15px;
    padding-top: 30px;
  }
  
  aside > p {
    margin: 0;
    color: #686663;
  }

  .top {
    text-align: center;
  }
  /* フッター
  ------------------------------- */
  footer {
    margin: 0;
    background: #c9ae77;
    text-align: center;
    padding: 26px 0;
  }
  
  footer p {
    color: #fff;
    font-size: 20px;
  }
}