@charset "utf-8";
/* CSS Document */

picture {
    width: 100%;
}

.module_bg_top{
    padding-bottom: 0;
}
.module_bg_bottom{
    background-image: repeating-linear-gradient(145deg, #f2f4f5, #f2f4f5 8px, #fff 8px, #fff 9px);
    padding-bottom: 200px;
}        
.layout_section_top{
    margin-bottom: 0;
}
.layout_section_bottom {
    margin-top: 0;
}

.emphasis{
    font-size: 2.4rem;
    margin-right: 1rem;
}
.table_box{
    margin-top: 56px;
}
.table{
    width: 100%;
    border-spacing: 8px;        /* セルの間の隙間（ピクセルで調整） */
    /*border-collapse: separate;*/
}

.table td {
    border: 2px solid #fff;    /* 線を2pxに */
    padding: 8px;               /* 内容の余白（任意） */
}
table tr:first-child td {
    background-color: #a84b62;
    color: #fff;
}
table tr:first-child td:first-child {
    width: 44%;
}
table tr:last-child td {
    background-color: #debbc4;
    color: #000;
}
.table_note{
    text-align: right;
    margin-top: 10px;
}
@media (width <= 768px) {
    .module_bg_top {
        padding-bottom: 24px;
    }
    .module_bg_bottom{
        background-color: var(--color-white);
        background-image: none;
        padding-bottom: 20px;
    }
    .module_content_ttl{
        text-align: center;
    }
    .table_box{
        margin-top: 20px;
    }


}