@charset "utf-8";
body {
  margin: 0;
  background-color: black;
}

main {
  margin: 0;
  background-color: black;
}

.prolog {
  font-size: 2rem;
  font-style: italic;
  text-align: center;
}

.content {
  margin: 0 20%;
  font-family: "游明朝 Medium", serif;
  font-size: 1.5rem;
  line-height: 2;
  color: whitesmoke;
  text-shadow: 0.1rem 0.1rem 0.2rem rgb(233, 13, 13);
}

.caution {
  margin: 0;
  padding: 0 0 5%;
  font-family: "游明朝 Medium", serif;
  color: whitesmoke;
}

.cau-title {
  width: 200px;
  margin: auto;
  text-align: center;
}

.cau-title > h3 {
  font-size: 2rem;
  font-weight: bold;
  border-bottom: double 0.5rem rgb(233, 13, 13);
}

.cau-list {
  margin: auto 20%;
}

.list-item {
  text-align: left;
  font-size: 1.5rem;
  line-height: 2;
}

@media (min-width: 641px) {
  .background {
    margin: 0;
    width: 100%;
    height: 100vh;
    background-image: url(../img/ghost-background.jpg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
  }
}
@media (max-width: 640px) {
  .background {
    margin: 0;
    width: 100%;
    height: 100vh;
    background-image: url(../img/ghost-background-short.jpg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
  }
  .content {
    margin: 0 10%; /* 横幅を広げる */
    font-size: 1.3rem; /* 文字サイズを少し小さく */
    line-height: 1.8; /* 行間を調整 */
  }
	.prolog {
	font-size: 1.5rem;
	font-style: italic;
	text-align: center;
	}
  .cau-list {
    margin: 0 10%; /* 横幅を広げる */
  }
  .list-item {
    font-size: 1.3rem; /* 文字サイズを少し小さく */
    line-height: 1.8; /* 行間を調整 */
  }
}

@media (min-width: 641px) and (max-width: 1024px) {
  .content {
    margin: 0 10%; /* 横幅を調整 */
    font-size: 1.4rem; /* 文字サイズを中間に */
    line-height: 1.8; /* 行間を調整 */
  }
  .cau-list {
    margin: 0 10%; /* 横幅を調整 */
  }
  .list-item {
    font-size: 1.4rem; /* 文字サイズを中間に */
    line-height: 1.8; /* 行間を調整 */
  }
}

@media (min-width: 1025px) {
  .content {
    margin: 0 20%; /* 横幅を広げる */
    font-size: 1.5rem; /* 文字サイズを大きく */
    line-height: 2; /* 行間を調整 */
  }
  .cau-list {
    margin: 0 20%; /* 横幅を広げる */
  }
  .list-item {
    font-size: 1.5rem; /* 文字サイズを大きく */
    line-height: 2; /* 行間を調整 */
  }
}
