@charset "utf-8";

/* common */

.l-content .h2Ttl {
    position: relative;
    padding: 0 0 4px 30px;
    border-bottom: 1px solid #333;
    margin: 80px 0 10px;
    font-size: 23px;
    font-weight: bold;
}

.l-content .h2Ttl::before {
    position: absolute;
    top: 5px;
    left: 0;
    width: 5px;
    height: 28px;
    box-sizing: border-box;
    background: #0f218b;
    content: "";
}

.l-content .h2Ttl.row_2::before {
    height: 60px;
}

.l-content .h2Ttl>.num {
    font-size: 27px;
}

.l-content .h3Ttl {
    width: 1200px;
    padding: 11px 0 3px;
    border-bottom: solid 3px #0f218b;
    margin: 60px 0 25px;
    color: #0f218b;
    font-size: 27px;
    text-align: center;
}

.l-content .h3Ttl>.num {
    font-size: 31px;
}

.l-content .h4Ttl {
    font-size: 21px;
    font-weight: bold;
}

.l-content .h4Ttl>.num {
    font-size: 25px;
}

.l-content .wrap {
    padding: 0 15px;
}

.l-content .h4Ttl_02 {
    text-align: center;
}

.l-content .h4Ttl_02>span {
    position: relative;
    padding: 0 25px;
    font-size: 23px;
    font-weight: bold;
}

.l-content .h4Ttl_02>span::before,
.l-content .h4Ttl_02>span::after {
    position: absolute;
    top: 2px;
    width: 3px;
    height: 30px;
    box-sizing: border-box;
    background: #0f218b;
    content: "";
}

.l-content .h4Ttl_02>span::before {
    left: 0;
}

.l-content .h4Ttl_02>span::after {
    right: 0;
}

.l-content .btn>a {
    width: 400px;
    padding: 14px 0 10px;
    font-size: 21px;
}

.l-content .btn>a.m-btnWin--default::after,
.l-content .btn>a.m-btnWin--strong::after,
.l-content .btn>a.m-btnWin--conversion::after {
    vertical-align: -1px;
}

/* /common */

.l-content .h1Ttl {
    box-sizing: border-box;
    width: 1200px;
    padding: 16px 0 11px 25px;
    border-left: solid 6px #fc0;
    background: #0f218b;
    color: #fff;
    font-size: 29px;
}

/* summary */
.l-content .summary {
    font-size: 21px;
    font-weight: bold;
    text-align: center;
}

/* tableOfContent */
.l-content .tableOfContent {
    box-sizing: border-box;
    padding: 30px 0 36px 36px;
    margin-top: 50px;
    background: #f2f2f2;
}

.l-content .tableOfContent .heading {
    font-size: 27px;
    font-weight: bold;
    text-align: center;
}

.l-content .tableOfContent .contentList {
    margin-top: 20px;
    counter-reset: number;
}

.l-content .tableOfContent .contentList>li {
    position: relative;
    padding-left: 30px;
}

.l-content .tableOfContent .contentList>li::before {
    counter-increment: number;
    content: counter(number) ".";
    position: absolute;
    top: 6px;
    left: 0;
    font-size: 17px;
}

.l-content .tableOfContent .contentList>li:not(:first-child) {
    margin-top: 15px;
}

.l-content .tableOfContent .contentList>li .title {
    width: 180px;
    padding: 9px 0 5px;
    border-radius: 5px;
    color: #fff;
    background: #0f218b;
    font-size: 17px;
    font-weight: bold;
    text-align: center;
}

.l-content .tableOfContent .contentList>li .tableOfContent_summary {
    flex-grow: 1;
}

.l-content .tableOfContent .contentList>li .tableOfContent_summary.m-down {
    padding-left: 0;
    text-indent: 0;
}

.l-content .tableOfContent .contentList>li .tableOfContent_summary a {
    color: #004098;
    font-size: 15px;
    font-weight: bold;
    line-height: 40px;
    text-decoration: none;
}

/* caseList */
.l-content .caseList .case {
    position: relative;
    padding: 50px 0;
}

.l-content .caseList .case:not(:first-of-type)::before {
    position: absolute;
    top: 0;
    left: 50%;
    width: 180px;
    height: 1px;
    background-image: linear-gradient(to right, #ccc, #ccc 2px, transparent 2px);
    background-size: 4px 1px;
    background-position: left bottom;
    background-repeat: repeat-x;
    transform: translateX(-50%);
    content: "";
}

.l-content .caseList .case .head {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 20px;
}

.l-content .caseList .case .head ::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 30px;
    background: #0f218b;
    content: "";
}

.l-content .caseList .case .head .maker {
    font-size: 21px;
    font-weight: bold;
}

.l-content .caseList .case .head .label {
    padding: 5px 12px 2px;
    margin-left: 10px;
    background: #e7e8f3;
    font-size: 15px;
    font-weight: bold;
}

.l-content .caseList .case .wrap {
    display: flex;
}

.l-content .caseList .case .detail {
    box-sizing: border-box;
    width: 570px;
    padding-right: 40px;
}

.l-content .caseList .case .detail .title {
    display: flex;
    font-size: 19px;
    font-weight: bold;
}

.l-content .caseList .case .detail .title>img {
    margin-right: 10px;
    position: relative;
    top: 4px;
}

.l-content .caseList .case .comment {
    box-sizing: border-box;
    width: 570px;
    padding: 15px 20px 25px;
    background: #f1f1f1;
}

.l-content .caseList .case .comment .txt {
    margin-top: 10px;
    font-size: 13px;
    line-height: 24px;
}