.title-primary {
    margin: 40px 0 80px;
    font-size: 36px;
    font-weight: bold;
    text-align: center;
    line-height: 1;
    color: #192b5b;
}

.title-secondary {
    margin: 34px 0 14px;
    font-size: 24px;
    font-weight: bold;
    line-height: 1.5;
    color: #192b5b;
}

.toggleIcon {
    position: relative;
    cursor: pointer;
}

.toggleIcon::after {
    content: "";
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%) translateX(-10%) rotate(45deg);
    width: 6px;
    height: 6px;
    border-right: 2px solid #192b5b;
    border-bottom: 2px solid #192b5b;
    pointer-events: none;
}

#contants {
    margin-bottom: 80px;
}

/* 絞り込み検索
-----------------------------------------------------------*/
.searchBox {
    padding: 34px 60px 40px;
    background-color: #f0f0f0;
}

.searchBox .title-secondary:first-child {
    margin-top: 0;
}

/* ============ キーワード検索 ============ */
.keywordSearch_fieldset {
    overflow: hidden;
    display: flex;
    width: 100%;
    margin-top: 14px;
    border-radius: 4px;
}

.keywordSearch_input[type="text"] {
    width: calc(100% - 40px);
    height: 36px;
    padding: 0 10px;
    border: 1px solid #c6c6c6;
    border-right: none;
    border-top-left-radius: 4px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 4px;
    line-height: 36px;
    box-sizing: border-box;
}

.keywordSearch_btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 36px;
    border: 1px solid #c6c6c6;
    border-left: none;
    border-top-left-radius: 0;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 0;
    background-color: #8ccdff;
    font-family: "icomoon" !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    color: #333;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.keywordSearch_btn::before {
    content: "\e916";
    display: inline-block;
    width: 18px;
    height: 18px;
    font-size: 18px;
    color: #333;
}

/* ============ カテゴリーから調べる ============ */
.catSearch {
    margin-top: 14px;
}

.catSearch .catSearch_content + .catSearch_content {
    margin-top: 10px;
}

.catSearch .catSearch_header {
    padding: 18px 60px 18px 24px;
    border: 1px solid #c6c6c6;
    background-color: white;
    position: relative;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.5;
    color: #192b5b;
    cursor: pointer;
}

.catSearch .catSearch_header::before,
.catSearch .catSearch_header::after {
    content: "";
    position: absolute;
    top: 50%;
    background-color: #192b5b;
}

.catSearch .catSearch_header::before {
    right: 30px;
    transform: translateY(-50%);
    width: 10px;
    height: 2px;
}

.catSearch .catSearch_header::after {
    right: 35px;
    transform: translateY(-50%) translateX(50%);
    transition: opacity 0.3s;
    opacity: 1;
    width: 2px;
    height: 10px;
}

.catSearch .catSearch_header.is-active::after {
    opacity: 0;
}

.catSearch .catSearch_body {
    display: none;
}

.catSearch .catSearch_inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.catSearch .catSearch_body .catSearch_text {
    padding: 18px 50px 18px 24px;
    border: 1px solid #c6c6c6;
    border-top: none;
    background-color: white;
    font-size: 14px;
    font-weight: bold;
    color: #192b5b;
}

.catSearch .catSearch_body .catSearch_text:nth-child(even) {
    border-left: none;
}

/* 検索結果
-----------------------------------------------------------*/
.resultBox {
    margin-top: 34px;
}

.resultBox .resultBox_item {
    margin-top: 10px;
}

.resultBox .resultBox_item:first-child .title-secondary {
    margin-top: 0;
}

.result_content + .result_content {
    margin-top: 10px;
}

.result_content .result_header {
    padding: 18px 60px;
    border: 1px solid #c6c6c6;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.5;
    color: #192b5b;
}

.result_content .result_header.is-active::after {
    transform: translateY(-50%) translateX(-10%) rotate(-135deg);
}

.result_content .result_body {
    display: none;
    padding: 40px 84px;
    border: 1px solid #c6c6c6;
    border-top: none;
    font-size: 14px;
    font-weight: normal;
    color: #333333;
}

.step_wrapper {
    margin: 0 auto;
}

.stepContents {
    width: 1000px;
    margin: 80px auto;
}

.stepSlide_wrapper {
    background: linear-gradient(transparent 49%, #c6c6c6 49%, #c6c6c6 50%, transparent 50%);
    display: flex;
    justify-content: space-between;
}

.stepSlede {
    background: #fff;
    margin: 0;
    width: 235px;
    height: 412px;
    border: 2px solid #192b5b;
    position: relative;
}

.stepSlede_num {
    position: absolute;
    top: -5px;
    left: -5px;
    height: 96px;
    width: 96px;
}

.stepSlede_inner {
    padding: 80px 15px 0;
}

.stepSlede_inner h3 {
    font-size: 24px;
    color: #192b5b;
    text-align: center;
    font-weight: bold;
    border-bottom: 2px solid #ffe24e;
    padding: 0 0 6px;
    margin: 0 0 20px;
}

.stepSlede_inner p {
    margin: 20px 0 0;
    font-size: 16px;
}

.stepSlede_inner img {
    width: 155px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.stepSlide_wrapper {
    margin-top: 20px;
}

.stepSlede {
    width: 263px;
    height: auto;
    padding-bottom: 15px;
}

.stepSlede_inner {
    padding-top: 55px;
}

.stepSlede_inner h3 {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 3em;
    font-size: 20px;
    line-height: 1.5;
}

.stepSlede_inner p {
    font-size: 14px;
}

.tipsList {
    display: flex;
    flex-wrap: wrap;
    gap: 20px calc(20/830*100%);
}

.tipsList li {
    position: relative;
    display: flex;
    align-items: center;
    font-weight: bold;
    width: calc(405/830*100%);
    height: 80px;
    padding-left: 67px;
    background-color: #f0f0f0;
}

.tipsList li::before,
.tipsList li::after {
    content: "";
    position: absolute;
    top: 50%;
    display: block;
    transform: translate(0, -50%);
}

.tipsList li::before {
    left: 10px;
    width: 42px;
    height: 30px;
}

.tipsList li::after {
    right: 10px;
    width: 56px;
    height: 56px;
}

.tipsList li:nth-of-type(1)::before {
    background: url(/cmn/img/faq/icon_01.svg) no-repeat center center / 100% auto;
}

.tipsList li:nth-of-type(2)::before {
    background: url(/cmn/img/faq/icon_02.svg) no-repeat center center / 100% auto;
}

.tipsList li:nth-of-type(3)::before {
    background: url(/cmn/img/faq/icon_03.svg) no-repeat center center / 100% auto;
}

.tipsList li:nth-of-type(4)::before {
    background: url(/cmn/img/faq/icon_04.svg) no-repeat center center / 100% auto;
}

.tipsList li:nth-of-type(1)::after {
    background: url(/cmn/img/faq/icon_tips01.png) no-repeat center center / 100% auto;
}

.tipsList li:nth-of-type(2)::after {
    background: url(/cmn/img/faq/icon_tips02.png) no-repeat center center / 100% auto;
}

.tipsList li:nth-of-type(3)::after {
    background: url(/cmn/img/faq/icon_tips03.png) no-repeat center center / 100% auto;
}

.tipsList li:nth-of-type(4)::after {
    background: url(/cmn/img/faq/icon_tips04.png) no-repeat center center / 100% auto;
}