@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
/* fontサイズ・バリエーション */
div,
footer,
img,
li,
nav,
p,
section,
table,
table tr td,
table tr th,
ul {
  box-sizing: border-box;
}

h1,
h2,
h3,
p {
  margin: 0;
}

img {
  max-width: 100%;
}

h3 {
  margin: 0;
}

body {
  background: url(../img/background.png);
  color: #2E231A;
  /*見出し書体指定*/
  font-family: "Zen Old Mincho", "Noto Serif KR", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  /*本文書体指定*/
  /* font-family:"Noto Sans KR", "游ゴシック",  "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;*/
  font-size: 15px;
  /* 基準サイズ */
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

header {
  /* header部分にスタイルを追加 */
  padding: 20px;
  background-color: #090F12;
  font-size: 24px;
}

/* ========= 遷移アニメーション ========= */
#showloading {
  width: 100%;
  height: 100vh;
  background-color: #fff;
  position: relative;
  opacity: 1;
  transition: opacity 0.5s ease;
  /* フェードアウト */
}

#showloading img {
  width: 300px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* フェードイン設定 */
.hidden {
  opacity: 0;
  transition: opacity 0.5s ease;
  /* フェードイン */
}

.visible {
  opacity: 1;
  display: block;
  /* displayをblockに設定して確実に表示 */
}

#contents {
  text-align: center;
  position: relative;
  display: none;
  /* 初期は非表示 */
}

/* ========= グリッドの設定 ========= */
.grid {
  display: grid;
  grid-gap: 20px;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  grid-auto-rows: 5px;
  grid-template-rows: auto;
}

@media (max-width: 1024px) {
  .grid {
    grid-gap: 20px;
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
    grid-auto-rows: 5px;
  }
}
@media (max-width: 700px) {
  .grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
/*各ボックスの見た目の設定*/
.item {
  background-color: #fff;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.item a {
  text-decoration: none;
  display: block;
  color: #2E231A;
  background-color: #fff;
  transition: all 0.2s;
}

.item a:hover {
  color: #3FD56D;
}

/*各ボックスの動きの設定*/
.item {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 0.8s ease forwards;
  background: #fff;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.title {
  padding: 50px 15px;
}

.title h3 {
  text-align: justify;
  font-weight: 500;
}/*# sourceMappingURL=common.css.map */