html {
    font-family: 'Noto Sans JP', sans-serif;
}

.pop {
    font-family: 'Poppins', sans-serif;
}

html {
    width: 1200px;
    max-width: 100%;
    margin: 0 auto;
}

.header {

    width: 60%;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: flex-end; /* ★ここに移動します（中身をすべて下揃えにする） */
    padding: 25px 0;
}

.header h1.text {
 margin: 0;
    text-align: center;
    font-size: 34px;

}

.header h2.text-sub {
    margin: 0;
    align-items: flex-end;
    font-size: 16px;
    background-color: aqua;
}


.main-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-top: 20px;
    /* max-width: 1200px; */
    /* margin: 0 auto; */
}

.side-image {
    flex: 0 0 200px;
    width: 150px;
    margin-top: 10px;
}

.side-image img {
    width: 100%;
    height: auto;
}

.center-content {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.grid-item {
    background-color: #f0f0f0;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 10px;
}

.grid-item a {
    display: block;
    padding: 20px;
}


.simple-table {
    border-collapse: collapse;
    margin: 0 auto;
    width: 80%;
    margin-top: 15px;
}

.simple-table th,
.simple-table td {
    border: 1px solid #333;
    /* padding: 10px; */
    text-align: center;
}

/* --- 修正箇所 --- */
.simple-table td a {
    display: block;
    /* ブロック要素にして全体に広げる */
    padding: 10px;
    /* tdに設定していたpaddingをここに移動 */
    text-decoration: none;
    /* 下線を消す（任意） */
    color: inherit;
    /* 文字色を親（td）から継承（任意） */
    width: 100%;
    /* 幅いっぱい */
    box-sizing: border-box;
    /* paddingを含めた幅計算 */
}

/* ホバー時に背景色を変えるなどしてクリック可能であることを示す（任意） */
.simple-table td a:hover {
    background-color: #f0f0f0;
}

.simple-table th {
    padding: 10px;
    background-color: #f4eded;
}

.ham {
    font-size: 24px;
    padding: 20px 0 15;
    margin-top: 50px;
    display: flex;
    justify-content: center;
}

.simple-table {
    margin-bottom: 70px;
}


footer {
    padding-bottom: 20px;
    text-align: center;
    font-size: 18px;
}

footer span {
    font-size: 25px;
    font-weight: 700;
    color: brown;
}

footer img {
    width: 18%;
    margin-bottom: 15px;
}