html, body {
    height: 100%;
    margin: 0;
}

body {
    display: flex;
    flex-direction: column;
    font-family: "M PLUS Rounded 1c";
}

header {
    background: #007BFF;
    color: #fff;
    padding: 10px 0;
    text-align: center;
}

main {
    padding: 00px;
    max-width: 100%; /* 幅を100%に設定 */
    margin: auto;
}

h3{
	text-align:center;
	margin:1em 0;
}

.faq {
    width: 90vw; /* 幅を90%に設定 */
    margin: auto;
}

dt {
    font-weight: bold;
    font-size:2em;
    margin-top: 15px; /* 質問の上にスペースを追加 */
    padding-left: 15px; /* 左側にパディングを追加 */
    line-height:1.2em;
}

dd {
    margin: 0 0 3em 0; /* 回答の下にスペースを追加 */
    background: #fff;
    font-size:1.2em;
    line-height:1.15em;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0);
    border-bottom:1px dotted #c5c5c5;
    padding-left: 15px; /* 左側にパディングを追加 */
    padding-bottom:2em;
}


/* フッターのスタイル */
footer {
    text-align: center;
    padding: 10px 0;
    background: #333;
    color: #fff;
    font-size: 14px;
}

footer a {
    color: #fff;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline; /* ホバー時に下線を追加 */
}



