.site-header {
    height: 40vh; /* 高さはお好みで */
}


.container {
    max-width: 80%;
    margin: 0 auto;
    padding: 40px 20px;
    background: #ffffff;
    box-shadow: 0 0 0px rgba(0, 0, 0, 0.05);
    text-align: center;
 }

.container p {
  color: #222;
  margin-bottom: 1.5em;
  text-align: left !Important;
}

.container ul {
    /*list-style: none;*/
    counter-reset: section;
    padding-left: 1.2em;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    background-color: #f6f6f6;
    padding-bottom: 0.2em;
}

.container ul > li {
    /*    counter-increment: section;*/
    margin-bottom: 0.2em;
}


/* スマホ画面（最大幅600px）で小さめに調整 */
@media screen and (max-width: 600px) {
    .container {
	margin: 0 10;
    }
    p {
	width: 100%;
	font-size: 1.0rem !Important;
    }
    .container ul > li {
	font-size: 1.0rem !Important;
    }
}

