  @charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@300&display=swap');
@font-face {
  font-family: 'A-OTF 太ゴB101 Pro';
  src: url('path/to/A-OTF-太ゴB101-Pro.woff2') format('woff2'),
       url('path/to/A-OTF-太ゴB101-Pro.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

.element {
  font-family: 'A-OTF 太ゴB101 Pro', sans-serif;
}

body {
  font-family: 'A-OTF 太ゴB101 Pro', sans-serif;
}


a {color: #666;}
a:hover {opacity: 0.6; text-decoration: none;}

.relative {
  position: relative;
}

/*MAIN BLOCK TXT*/
.abs_on {
  position: absolute;
  top:0px;
  left: 0px;
}

.abs_on_1 {
  position: absolute;
  top:0px;
  left: 0px;
}

.img_title02_pc {
  max-width: 510px;
  width: 50%;
}

.img_title01_pc {
  max-width: 840px;
  width: 80%;
}

@media (max-width: 1399px){
  .abs_on_1 {
    position: absolute;
    top:150px;
    left: 0px;
  }
}

@media (max-width: 1199px){
  .abs_on_1 {
    position: absolute;
    top:200px;
    left: 0px;
  }
}


.line-height {line-height:200%;}

.grid-container {
  display: grid;
  gap: 10px;
  padding: 20px;
}

/* PC: 1行5列 */
@media (min-width: 768px) {
  .grid-container {
      grid-template-columns: repeat(5, 1fr);
      grid-template-rows: auto;
  }
}

/* SP: 3行2列 */
@media (max-width: 767px) {
  .grid-container {
      grid-template-columns: repeat(2, 1fr);
      grid-template-rows: repeat(3, auto);
      justify-content: center;
  }
  /* 6つ目の要素を中央寄せ */
  .grid-container div:nth-child(6) {
      grid-column: 2;
  }
}

.grid-item {
  color: white;
  text-align: center;
  padding: 2%;
}