@charset "utf-8";
/* CSS Document */

/* CSSファイル内でのスタイルシートの記述 */
@import url('https://fonts.googleapis.com/css2?family=Kosugi+Maru&display=swap');

body {
    font-family: 'Kosugi Maru', sans-serif;
}

#wrapper {
    text-align: center;
    max-width: 1280px;
    margin: 0 auto;
}
img {
    width: 200px;
    height: 160px;
    margin-bottom: 0.5em;
}
h2 {
    margin: 20px 0;
    font-size: 20px;
    line-height: 30px;
    font-weight: bold;
}
h3, p {
    font-size: 16px;
    line-height: 24px; /* 行間を広げる */
    font-weight: bold;
}
p {
    line-height: 24px; /* 行間を広げる */
    text-align: left;
}
p img {
    display: block;
    margin: 0 auto;
}
.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.box {
    box-sizing: border-box;
    flex: 1 0 30%;
    margin: 1%;
    padding: 3%; /* パディングを増やす */
    border: 1px solid #999;
    background-color: #f9f9f9; /* 背景色を設定 */
}
#footer{
    text-align:center;
    clear: both;
}

/*横幅768px未満のメディア*/
@media screen and (max-width:768px) {
.box {
    width: 92%;
}
}