@charset "UTF-8";
a {
  color: #3e9ac3;
}

/* -- キービジュアル -- */
#Main {
  padding-top: 56.25%;
  /* (画像の高さ / 画像の横幅) × 100 */
  background: url("../images/main.jpg") no-repeat center center/cover;
}

@media only screen and (min-width: 1200px) {
  /* 1200px以上の場合は、それ以上画像大きくしない。 */
  #Main {
    padding-top: 0;
    width: 1200px;
    height: 675px;
    margin: 0 auto;
  }
}
/* -- イントロ --*/
@media only screen and (min-width: 1025px) {
  /* Laptop PC */
  #Intro p {
    font-size: 1.2em;
  }
}
/* -- Goods --*/
#Goods .moreGoods_message {
  font-weight: bold;
  font-size: 1.2em;
  text-align: center;
  margin-top: 40px;
}
#Goods .info_onlinestore {
  background: #eee;
  border-radius: 8px;
  width: 100%;
  padding: 20px;
  margin-top: 40px;
}

@media only screen and (min-width: 1025px) {
  /* Laptop PC */
  #Goods .moreGoods_message {
    font-size: 1.4em;
    margin-top: 120px;
  }
  #Goods .info_onlinestore {
    text-align: center;
  }
}
