h1 {
  font-size: 3em;
}

h2 {
  font-size: 1.5em;
  font-weight: bold;
}

h3 {
  font-weight: bold;
}


div.midasi {
  font-size: 1.2rem;
  line-height: 2.2;
}

.preserve-whitespace {
        white-space: pre-wrap;
        margin: 0;
        padding: 0; 
}

.spacer {
  height: 1.5em;
}

.shiharailist {
  margin-top: 0.2em;
  margin-bottom: 0.2em;
}
.shiharailist li {
  line-height: 1.8;
}

.button a {
    background: #eef;
    border: 3px solid #222;
    border-radius: 3px;
    position: relative;
    display: block;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    padding: 10px 25px;
    color: #313131;
    transition: 0.15s ease-in-out;
    font-weight: 500;
    line-height: 1.5;  
    text-align: center;
    text-decoration: none;
}
.button a:hover {
    background: #222;
    color: #FFF;
}
.button a:after {
    content: '';
    width: 5px;
    height: 5px;
    border-top: 3px solid #222;
    border-right: 3px solid #222;
    transform: rotate(45deg) translateY(-50%);
    position: absolute;
    top: 50%;
    right: 20px;
    border-radius: 1px;
    transition: 0.15s ease-in-out;
}
.button a:hover:after {
    border-color: #FFF;
}

.page-footer {
  height: 100px;
  background-color: #222;
  margin-top: 3em;/* 本文との余白（必要に応じて） */
}