/********* タブのレイアウト *********/
.tab-switch {
    --tab-color: #A9C2CC;
    display: flex;
    flex-wrap: wrap;
    max-width: 800px;
    margin-inline: auto;
    gap: 0px 25px;
    justify-content: space-around;
}

/* ラジオ非表示 */
.tab-switch input {
    display: none;
}

/* タブボタン */
.tab-switch label {
    margin-top: 40px;
    padding: 0.7em 1em;
    background: #eee;
    cursor: pointer;
    order: -1;
    text-align: center;
    border: double 2px #555555;
}

/* コンテンツ非表示 */
.tab-content {
    display: none;
    width: 100%;
    padding: 1.5em 0;
}

/* 選択されたタブ＋コンテンツ表示 */
.tab-switch input:checked+label {
    background: var(--tab-color);
    color: #fff;
}

.tab-switch input:checked+label+.tab-content {
    display: block;
}

/********** タブのレイアウト（終） **********/