@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;
}

/* メニューボタン */
.conteinar {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-items: center;
  align-items: center;
  gap: 1.5rem;
  margin: 50px 40px auto;
}

.btn {
    width: 80px;
}


/* コピーライト */

.copyright {
  background-color: #f3c1da;
  text-align: center;
  color: #333;
  padding: 20px;
  font-size: 20px;
  margin-top: 50px;
}

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

/* メニューボタン */
.conteinar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-content: center;
}

/* コピーライト */

.copyright {
  background-color: #f3c1da;
  text-align: center;
  color: #333;
  padding: 30px;
  font-size: 20px;
  margin-top: 150px;
}

}