@charset "UTF-8";
/* フルワイド背景 */
.bg-img {
  position: absolute;
  background-size: cover;
  left: 50%;
  right: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}


@media screen and (max-width: 480px) {
  .bg-img {
    height: auto;
    min-height: 200px;
  }
}


.bg-img1 {
  background-image: url("./img/hito.jpg");
  background-size: cover;
  min-height: 300px; 
  z-index: 0;
}

.bg-img2 {
  background-image: url("./img/25719067_s.jpg");
  background-size: cover;
  height: 400px; 
  z-index: 0;
}

.bg-img:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: white;
  opacity: 0.8;
  z-index: -1;
}


.bg-img p {
  position: absolute;
  font-size: 14px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
}



/* コンテナ */
.container {
  position: relative;
  z-index: 1;
}



/* 文字の上に点 */
.dots02 {
  text-emphasis: circle;
  -webkit-text-emphasis: circle;
}
/* フォント調整 */
p {
}



/* フルワイド背景色 */
.bg-color {
  background-color: #fff;
  position: absolute;
  background-size: cover;
  left: 50%;
  right: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 200px; 
  z-index: 0;
}


/* 自作フッター */
.full-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
}