body {
    font-size: 14px;
    line-height: 1.8;
    color: #000;
    /* font-family: 'jeiafont', "メイリオ", Osaka, "ヒラギノ角ゴ Pro W3", Arial, Helvetica, sans-serif; */
}

* {
    list-style: none;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* アコーディオンメニュー全体のサイズ・位置 */
.ac {
    width: 100%;
    max-width: 370px;
    margin: 0 auto;
}

/* クリック領域 */
.ac-parent {
    position: relative;
    /* 追加 */
    height: 50px;
    border-bottom: 2px solid #fff;
    background-color: #eee;
    color: #da3c41;
    text-align: left;
    line-height: 50px;
    cursor: pointer;
    padding-left: 10px;
    font-weight: bold;
}

.ac-parent:hover {
    background-color: #e3e3e3;
}

/* 擬似要素で下三角形を作成 */
.ac-parent::after {
    content: "";
    display: inline-block;
    position: absolute;
    top: 45%;
    right: 25px;
    width: 8px;
    height: 8px;
    border-right: 3px solid #fff;
    border-bottom: 3px solid #fff;
    transform: translateY(-50%) rotate(45deg);
    transition: .3s;
}

/* オープン時にopenクラスを付与 */
.ac-parent.open:after {
    transform: rotate(225deg);
}

/* クリックしたら表示される領域 */
.ac-child {
    display: none;
    padding: 0.5em 1em;
    background-color: #fff;
    text-align: center;
}

table.seibun {
    border-collapse: collapse;
    margin: 0 auto;
    padding: 0;
    width: 250px;
    border: 1px solid #666;
}

table.seibun tr {
    background-color: #fff;
    font-size: .8em;
}

table.seibun tbody tr:hover {
    background-color: #fffae9;
}

table.seibun th,
table.seibun td {
    padding: .15em .1em .15em .9em;
}

table.seibun tbody th {
    text-align: center;
    border-bottom: 1px solid #666;
    padding: 3px;
}

table.ag {
    margin: 10px auto;
    border: 1px solid #ccc;
    min-width: 315px;
    max-width: 330px;
}

table.ag tr {
    background-color: #fff;
    font-size: .8em;
}

table.ag img {
    padding: 10px 0 10px 0;
}

.image_c {
    text-align: center;
}

.image_size_s {
    width: 130px;
    margin-top: 10px;
}

.image_size_m {
    width: 250px;
    margin-top: 10px;
}

.image_ag {
    width: 45px;
    text-align: left;
}

.gen {
    magin: 0;
    padding: 10px 0;
    text-align: center;
    font-size: 100%;
    line-height: 1.4;
}

.gen2 {
    magin: 0;
    padding: 10px 0;
    text-align: left;
    font-size: 90%;
    line-height: 1.4;
}

.atai {
    text-align: center;
    font-size: .7em;
    color: #999;
}

.kan {
    text-align: left;
    font-size: .7em;
}

.is-hide {
    display: none;
}

ul {
    margin-top: 10px;
    padding-left: 0;
}


.radio-input {
    display: none;
}

.radio-input+label {
    padding-left: 18px;
    position: relative;
    margin-right: 9px;
}

.radio-input+label::before {
    content: "";
    display: block;
    position: absolute;
    top: 1px;
    left: 0;
    width: 13px;
    height: 13px;
    border: 1px solid #999;
    border-radius: 50%;
}

.radio-input:checked+label {
    color: #d01137;
}

.radio-input:checked+label::after {
    content: "";
    display: block;
    position: absolute;
    top: 3px;
    left: 2px;
    width: 9px;
    height: 9px;
    background: #d01137;
    border-radius: 50%;
}

.checkbox-input {
    display: none;
}

.checkbox-parts {
    padding-left: 18px;
    position: relative;
    margin-right: 9px;
}

.checkbox-parts::before {
    content: "";
    display: block;
    position: absolute;
    top: 2px;
    left: 0;
    width: 13px;
    height: 13px;
    border: 1px solid #999;
    border-radius: 4px;
}

.checkbox-input:checked+.checkbox-parts {
    color: #d01137;
}

.checkbox-input:checked+.checkbox-parts::after {
    content: "";
    display: block;
    position: absolute;
    top: -3px;
    left: 5px;
    width: 7px;
    height: 14px;
    transform: rotate(40deg);
    border-bottom: 3px solid #d01137;
    border-right: 3px solid #d01137;
}

.table_01 {
    border: 2px solid #cccccc;
    border-collapse: collapse;
    width: 100%;
    table-layout: fixed;
    font-size: 95%;
}

.th_01 {
    border: 2px solid #cccccc;
    padding: 7px 0;
    background-color: whitesmoke;
    width: 95px;
}

.td_01 {
    border: 2px solid #cccccc;
    padding: 7px;
    background-color: #fff;
}