@charset "UTF-8";
/* 共通事項 */
html {
    font-size: 100%;
}

body {
    font-family: "DotGothic16";
    background-color: #fff6fb;
}


/* ヘッダー */
header {
    background-color: #f3c1da;
    height: 50%;
    width: 100%;
}
.logo {
    width: 150px;
    margin: 15px 0 15px 20px;
}

/* メニュー */

.menu-1 {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.menu-2 {
    display: flex;
    justify-content: center;
    gap: 1.5rem;

}

a {
  text-decoration:none;
  color: black;
}

/* 題名 */
h1 {
    text-align: center;
    margin-top: 50px;
}

h2 {
  text-align: center;
  margin-top: 30px;
}

.goods-ph {
  width: 160px;
  height: 160px;
  border: #cccccc solid 1px;
}

.item {
  background-color: #fff;
  width: 160px;
  height: 220px;
  margin-bottom: 30px;
  border: #cccccc solid 1px;
}

p {
  padding: 3px;
}

.new-item {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-items: center;
  margin: 40px auto;
}

.shop-img {
  width: 100px;
  margin: 65px 20px auto;
}

/* コピーライト */
.copyright {
  background-color: #f3c1da;
  text-align: center;
  color: #333;
  padding: 30px;
  font-size: 20px;
  margin-top: 50px;
}

/* レスポンシブ */
@media (min-width: 820px) {

/* メニュー */

.menu {
    text-align: center;
}

.menu-1, .menu-2 {
    display: inline;
    font-size: 22px;
    gap: 2rem;
}

/* 商品 */

.goods-ph {
  width: 200px;
  height: 200px;
}

.new-item {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-items: center;
  align-items: center;
  gap: .7rem;
  margin: 40px auto;
}

.item {
  background-color: #fff;
  width: 200px;
  height: 260px;
  margin-bottom: 30px;
  border: #cccccc solid 1px;
}

/* コピーライト */
.copyright {
  background-color: #f3c1da;
  text-align: center;
  color: #333;
  padding: 30px;
  font-size: 20px;
  margin-top: 150px;
}

}