@charset "utf-8";


/* ========================================
 * .topic
 * ======================================== */
.topic .topicInner {
    background-color: #dce6f2;
    border-radius: 16px;
    position: relative;
}
.topic .topicInner::before {
    content: "";
    background: url( /assets/img/common/topic_img.png );
    position: absolute;
}
.topic .topicInner h2 {
    line-height: 1.3;
    border-bottom: 2px solid #215968;
}
.topic .topicInner .area_2clm {
    background-color: #fff;
}
@media screen and ( min-width: 768px ) {
    .topic .topicInner {
        margin: 0 0 0 32px;
        padding: 32px;
    }
    .topic .topicInner::before {
        width: 200px;
        height: 70px;
        top: 24px;
        left: -26px;
    }
    .topic .topicInner h2 {
        font-size: calc( 30 / 16 * 1rem );
        text-align: center;
        padding-bottom: 24px;
    }
    .topic .topicInner h2+p {
        margin-top: 16px;
    }
    .topic .topicInner .area_2clm {
        -webkit-box-pack: justify;
        justify-content: space-between;
        padding: 32px;
        margin-top: 32px;
    }
    .topic .topicInner .topicTxt {
        flex: 1;
    }
}
@media not all and ( min-width: 768px ) {
    .topic .topicInner {
        margin: 0 0 0 13px;
        padding: 16px;
    }
    .topic .topicInner::before {
        background-size: 100px 35px;
        width: 100px;
        height: 35px;
        top: 16px;
        left: -13px;
    }
    .topic .topicInner h2 {
        padding: 0 0 8px 72px;
    }
    .topic .topicInner h2+p {
        margin-top: 8px;
    }
    .topic .topicInner .area_2clm {
        padding: 16px;
        margin-top: 16px;
    }
}


/* ========================================
 * table
 * ======================================== */
.tableSection {
    margin: 5px 0 15px 0;
    text-align: left;
    min-width: 50%;
}
table {
    width: 100%;
    word-wrap: break-word;
}
table th {
    background-color: #c6eafa;
    margin: 1px;
    padding: 6px;
    font-style: normal;
    font-weight: normal;
    vertical-align: middle;
}
table tr {
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
}
table td {
    background-color: #fff;
    padding: 6px;
    margin: 1px;
}
table th, table td {
    font-size: 85%;
    padding: 6px 3px;
}



/* ========================================
 * box
 * ======================================== */
.box {
    box-shadow: 3px 3px 15px 1px gray;
    border-radius: 10px;
    padding: 16px;
    margin: 20px auto;
    width: fit-content;
}
@media screen and ( min-width: 768px ) {
    .w30 > .box {
        width: 30%;
    }
}

.box2 {
    border: 1px solid #3e94cc;
    padding: 16px;
}
.box2 h3 {
    color: #3e94cc;
}

.box3 {
    padding: 4px;
    text-align: center;
    box-shadow: 0px 0px 4px 0px gray;
    border-radius: 6px;
    margin: auto;
    margin-top: 6px;
}
@media screen and ( min-width: 768px ) {
    .box3 {
        width: 48%;
        font-size: 85%;
    }
}

.box4 {
    border: 1px solid #3e94cc;
    border-radius: 10px;
    padding: 48px 16px 16px 16px;
    text-align: left;
    height: fit-content;
    position: relative;
}
.box4 .box-title {
    position: absolute;
    display: inline-block;
    border-radius: 10px 0;
    top: -1px;
    left: -1px;
    padding: 5px 15px;
    background: #0072bc;
    color: #ffffff;
    font-weight: bold;
}


/* ========================================
 * tit
 * ======================================== */
.tit {
    font-weight: bold;
    margin-bottom: 10px;
}
.tit::before {
    content: "●";
    display: inline-block;
    color: #FF7C80;
    vertical-align: top;
}
@media screen and ( min-width: 768px ) {
    .tit::before {
        font-size: 0.8rem;
        margin-right: 5px;
        padding-top: 4px;
    }
}
@media not all and ( min-width: 768px ) {
    .tit {
        font-size: calc( 15 / 16 * 1rem );
        margin-bottom: 4px;
    }
}


/* ========================================
 * その他
 * ======================================== */
.mb10 { margin-bottom: 10px; }
.w45 { width: 45%; }
.w35 { width: 35%; }
.center { text-align: center; }
.marginAuto { margin: auto; }
.right { text-align: right; }
.font-size-85 {
    font-size: 85%;
    line-height: 1.3;
}

.block {
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    font-weight: bold;
    background: #c6eafa;
    width: 300px;
    margin: 10px;
    padding: 5px;
}

.triangle {
    width: 0;
    height: 0;
    border-style: solid;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 0;
    border-left: 17px solid #d6eeef;
    margin-right: 10px !important;
}

@media ( min-width: 768px ) {
    .pc-flex {
        display: flex;
    }
    .jc-space-between {
        justify-content: space-between
    }
    .wrap {
        flex-wrap: wrap;
    }
    .ml20 { margin-left: 20px; }
    .mt00 { margin-top: 0px; }
    .w20 { min-width: 20%; max-width: 20%; }
    .w25 { min-width: 25%; max-width: 25%; }
    .w40 { min-width: 40%; max-width: 40%; }
    .w50 { min-width: 50%; max-width: 50%; }
    .w60 { min-width: 60%; max-width: 60%; }
    .w70 { min-width: 70%; max-width: 70%; }
}

@media ( max-width: 767px ) {
    .sp-flex {
        display: flex;
        justify-content: space-between;
    }
    .sp-none {
        display: none;
    }
    .sp-container {
        padding: 10px 10% 0px 10%;
    }
    .sp-w50 {
        min-width: 50%;
        max-width: 50%;
    }
}


/* ========================================
 * list
 * ======================================== */
.list {
    display: inline-flex;
}
.list p {
    margin: auto;
}
.list::before {
    content: "・";
    font-weight: bold;
    font-size: 25px;
    color: #00aeef;
}
ul.etc > .list:last-child::after {
    content: "など";
    margin: auto auto auto 20px;
}
.disc li {
    list-style-type: disc;
    margin-left: 40px;
}