@charset "UTF-8";

/*********************
color 色設定
*********************/

*,
*:before,
*:after {
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
}

body,
header,
main,
section,
footer,
h1,
h2,
h3,
h4,
h5,
ul,
li,
dl,
dt,
dd,
p,
img {
    margin: 0;
    padding: 0;
    font-weight: normal;
}

html {
    font-size: 62.5%;
    color: #515151;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    overflow-x: hidden;
}

body {
    background-color: #fff;
    font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;
    overflow-x: hidden;
}

p {
    font-size: 2rem;
    line-height: 1.8;
    font-weight: 400;
}

@media only screen and (max-width: 750px) {
    p {
        font-size: 3.8vw;
        line-height: 1.8;
        font-weight: bold;
    }
}

b,
strong,
.bold {
    font-weight: 700;
}

img {
    max-width: 100%;
}

h1 {
    color: #fff;
    font-weight: bold;
    font-size: 4.4vw;
    margin: 0 auto;
    padding: 1% 10% 1%;
    line-height: 120%
}

h2 {
    font-weight: 700;
    margin: 0 auto;
    text-align: center;
}

h3 {
    font-weight: 700;
}

select {
    background: #fff;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
    outline: none;
}

input {
    outline: none;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance:textfield;
}

@media only screen and (max-width: 750px) {
    h1 {
        font-size: 6.667vw;
        padding: 18% 3% 5%;
    }
    h2 {
        font-size: 5.5vw;
    }
    h3 {
        font-size: 4.5vw;
    }
}

.btn {
    margin: 0 auto;
    text-align: center;
    width: 100%;
}

.btn a,
.btn button {
    color: #fff;
    box-shadow: 10px 10px 10px 0 rgba(255,255,255,.2) inset,-10px -10px 10px 0 rgba(0,0,0,.2) inset;
    border: 4px solid #fff;
    border-radius: min(calc(60/750 * 100vw), 60px);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-weight: bold;
    letter-spacing: -.01em;
    padding: 10px 0;
    width: 100%;
    position: relative;
    transition: all 0.5s;
    filter: drop-shadow(5px 5px 5px rgba(0, 0, 0, .25));
    cursor: pointer;
    user-select: none;
    text-decoration: none;
}

.btn a::after,
.btn button::after {
    position: relative;
    content: "";
    width: min(calc(40/750 * 100vw), 40px);
    height: min(calc(40/750 * 100vw), 40px);
}

.btn a:hover,
.btn button:hover {
    transform: translate(0, 8px);
    opacity: 0.8;
}

.btn a:active,
.btn button:active {
    transform: translate(0, 8px);
}

/* btn_cv */
.btn_cv {
    max-width: 800px;
}

.btn_cv a {
    background: linear-gradient(0deg,rgba(255, 106, 24, 1) 0%, rgba(255, 149, 24, 1) 100%);
    font-size: min(calc(44/750 * 100vw), 44px);
}

.btn_cv a::after {
    background: url(../images/arrow_or.svg) no-repeat center/ contain;
}

/* btn_diagnosis */
.btn_diagnosis {
    margin: 0 auto;
    max-width: 460px;
}

.btn_diagnosis button {
    background: linear-gradient(0deg,rgba(8, 124, 85, 1) 0%, rgba(73, 173, 155, 1) 100%);
    border-width: 3px;
    font-size: 34px;
}

.btn_diagnosis button::after {
    background: url(../images/arrow_gr.svg) no-repeat center/ contain;
}

@media only screen and (max-width: 750px) {
    .btn a,
    .btn button {
        display: block;
        border-width: 2px;
        padding: calc(20/750 * 100vw);
    }
    .btn a::after,
    .btn button::after {
        position: absolute;
        right: calc(30/750 * 100vw);
        top: 50%;
        transform: translateY(-50%);
    }
    .btn_diagnosis {
        max-width: 100%;
    }
    .btn_diagnosis button {
        font-size: calc(44/750 * 100vw);
    }
}

.y_line {
    display: inline;
    position: relative;
    background-image: linear-gradient(90deg, #FFD54B, #FFD54B);
    background-repeat: no-repeat;
    transition: all 1s ease-in-out;
    background-size: 0 30%;
    background-position: bottom left;
}

.y_line.inview {
    background-size: 100% 30%;
}

header {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    padding: .8% 5%;
    width: 100%;
    max-height: 130px;
}

@media only screen and (max-width: 750px) {
    header {
        padding: 1% 5%;
        max-height: 100%;
        height: 40px;
    }
}

.header_logo {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5%;
}

.header_logo img {
    display: block;
    margin: 0 1%;
    max-width: 120px;
    box-sizing: border-box;
}

.wrap {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

@media only screen and (max-width: 750px) {
    .wrap {
        max-width: 100%;
        padding: 0 calc(30/750 * 100vw);
    }
    .header_logo img {
        max-width: 80px;
    }
}

@media only screen and (min-width: 751px) and (max-width: 1023px) {
    .wrap {
        margin: 0 20px;
    }
}

.pc {
    display: block !important;
}

.sp {
    display: none !important;
}

@media only screen and (max-width: 750px) {
    .pc {
        display: none !important;
    }
    .sp {
        display: block !important;
    }
}

.fv .fv_inner picture {
    margin: 0 auto;
}

.fv .fv_inner img {
    width: 100%;
}

@media only screen and (max-width: 750px) {
    .fv {
        background: #f8f6e6;
    }
}

@keyframes text_scroll1 {
    0% {
        transform: translateY(100%);
        opacity: 0;
    }
    25% {
        transform: translateY(0);
        opacity: 0;
    }
    50% {
        transform: translateY(0);
        opacity: 1;
    }
    75% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateY(100%);
    }
}

@keyframes text_scroll2 {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    25% {
        transform: translateY(0);
        opacity: 1;
    }
    50% {
        opacity: 0;
        transform: translateY(100%);
    }
    75% {
        transform: translateY(100%);
        opacity: 0;
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.top_scroll {
    animation-name: text_scroll1;
    animation-duration: 5s;
    animation-iteration-count: infinite;
    margin-bottom: -11%;
}

.top_scroll2 {
    animation-name: text_scroll2;
    animation-duration: 5s;
    animation-iteration-count: infinite;
}

.diagnosis {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    width: 100%;
}

.diagnosis h2 {
    display: inline-block;
    color: #fff;
    background-color: #0b6d36;
    border-radius: min(calc(10/750 * 100vw), 10px);
    font-size: min(calc(45/750 * 100vw), 45px);
    font-weight: 600;
    line-height: 1.2;
    margin: 0 auto min(calc(32/750 * 100vw), 32px);
    padding: 0 75px 10px;
    position: relative;
}

.diagnosis h2::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 32px 13px 0 13px;
    border-color: #0b6d36 transparent transparent transparent;
    left: 50%;
    top: 98%;
    transform: translateX(-50%);
}

.diagnosis h2 .strong {
    font-size: min(calc(56/750 * 100vw), 56px);
}

.diagnosis h2 .num {
    font-size: min(calc(68/750 * 100vw), 68px);
    vertical-align: -3px;
}

.diagnosis .diagnosis_inner {
    background: #fff;
    border: 5px solid #0b6d36;
    padding: min(calc(40/750 * 100vw), 40px);
    width: 100%;
}

.diagnosis .diagnosis_form {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 32px;
}

.diagnosis .diagnosis_form > div {
    display: flex;
    align-items: flex-end;
    gap: 5px;
    font-size: 25px;
}

.diagnosis .diagnosis_form select,
.diagnosis .diagnosis_form input {
    border: 2px solid #515151;
    border-radius: unset;
    font-size: 22px;
    padding: 15px 10px;
    appearance: none;
}

.diagnosis .diagnosis_form select {
	color: #aaa;
    background: #fff;
}

.diagnosis .diagnosis_form select:not(:has(option:checked[value=""])) {
	color: #000;
    background: #eef7ff;
}

.diagnosis .diagnosis_form input {
    background: #eef7ff;
}

.diagnosis .diagnosis_form input:placeholder-shown {
	color: #aaa;
    background: #fff;
}

.diagnosis .diagnosis_form select:focus,
.diagnosis .diagnosis_form input:focus {
	color: #000;
    background: #eef7ff;
}

.diagnosis .diagnosis_form input:focus::placeholder {
	color: transparent;
}

.diagnosis .diagnosis_form span {
    display: block;
    font-weight: bold;
}

.diagnosis .diagnosis_form .pulldown {
    position: relative;
}

.diagnosis .diagnosis_form .pulldown::after {
    position: absolute;
    content: "";
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-width: 20px 15px 0 15px;
    border-style: solid;
    border-color: #515151 transparent transparent transparent;
    pointer-events: none;
}

.diagnosis .diagnosis_form .diagnosis_age select {
    width: min(calc(180/1024 * 100vw), 180px);
}

.diagnosis .diagnosis_form .diagnosis_income input {
    width: min(calc(164/1024 * 100vw), 164px);
}

.diagnosis .diagnosis_form .diagnosis_loan input {
    width: min(calc(364/1024 * 100vw), 364px);
    max-width: 18em;
}

@media only screen and (max-width: 750px) {
    .diagnosis h2 {
        padding: 0 calc(30/750 * 100vw) calc(10/750 * 100vw);
    }
    .diagnosis h2 .num {
        vertical-align: -2px;
    }
    .diagnosis h2::after {
        border-width: 16px 6.5px 0 6.5px;
    }
    .diagnosis .diagnosis_inner {
        border-width: 3px;
        max-width: 100%;
    }
    .diagnosis .diagnosis_form {
        display: block;
        margin-bottom: calc(32/750 * 100vw);
    }
    .diagnosis .diagnosis_form > div {
        display: table;
        font-size: calc(37/750 * 100vw);
        width: 100%;
    }
    .diagnosis .diagnosis_form > div:not(:last-child) {
        margin-bottom: calc(30/750 * 100vw);
    }
    .diagnosis .diagnosis_form select,
    .diagnosis .diagnosis_form input {
        display: table-cell;
        font-size: calc(32/750 * 100vw);
        padding: calc(25/750 * 100vw) calc(15/750 * 100vw);
    }
    .diagnosis .diagnosis_form .diagnosis_age select {
        width: 100%;
    }

    .diagnosis .diagnosis_form .diagnosis_income input {
        width: 100%;
    }

    .diagnosis .diagnosis_form .diagnosis_loan input {
        width: 100%;
    }
    .diagnosis .diagnosis_form span {
        display: table-cell;
        text-align: center;
        vertical-align: bottom;
    }
    .diagnosis .diagnosis_form .pulldown::after {
        right: 15px;
        border-width: calc(24/750 * 100vw) calc(18/750 * 100vw) 0 calc(18/750 * 100vw);
    }
}

/* diagnosis_modal */
.diagnosis_modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 100;
}

.diagnosis_modal .modal_content {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    padding: min(calc(40/750 * 100vw), 40px) min(calc(20/750 * 100vw), 20px);
    border-radius: 12px;
    text-align: center;
    margin: 0 auto;
    max-width: 776px;
}

.diagnosis_modal .modal_content h2 {
    display: inline-block;
    color: #fff;
    background-color: #0b6d36;
    border-radius: min(calc(10/750 * 100vw), 10px);
    font-size: min(calc(45/750 * 100vw), 45px);
    font-weight: 600;
    line-height: 1.2;
    margin: 0 auto min(calc(32/750 * 100vw), 32px);
    padding: 0 75px 10px;
}

.diagnosis_modal .modal_content h2 .strong {
    font-size: min(calc(56/750 * 100vw), 56px);
}

.diagnosis_modal .modal_content h2 .num {
    font-size: min(calc(68/750 * 100vw), 68px);
    vertical-align: -3px;
}

.diagnosis_modal .modal_content h3 {
    font-size: min(calc(37/750 * 100vw), 37px);
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: min(calc(25/750 * 100vw), 25px);
}

.diagnosis_modal .modal_content .result_amount {
    margin: 0 auto min(calc(25/750 * 100vw), 25px);
    width: min(calc(106/750 * 100vw), 106px);
}

.diagnosis_modal .modal_content .result_text {
    font-size: 20px;
    line-height: 1.4;
}

.diagnosis_modal .modal_content .result_text .strong {
    color: #ff7e18;
    font-weight: 700;
}

.diagnosis_modal .modal_content .result_logo {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: min(calc(30/750 * 100vw), 30px);
    margin: 0 auto;
    padding: min(calc(30/750 * 100vw), 30px) 0;
}

.diagnosis_modal .modal_content .btn_cv {
    font-size: min(calc(37/750 * 100vw), 37px);
    margin-top: min(calc(30/750 * 100vw), 30px);
    max-width: 565px;
}

.diagnosis_modal .diagnosis_modal_close {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    background: #ccc;
}

.diagnosis_modal .diagnosis_modal_close::before,
.diagnosis_modal .diagnosis_modal_close::after {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    width: 30px;
    height: 4px;
    background: #707070;
    transform: translate(-50%, -50%) rotate(45deg);
}

.diagnosis_modal .diagnosis_modal_close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.diagnosis_modal.result_yes.is-show,
.diagnosis_modal.result_no.is-show {
    display: block;
}

@media only screen and (max-width: 750px) {
    .diagnosis_modal .modal_content {
        margin: 0 calc(30/750 * 100vw);
    }
    .diagnosis_modal .modal_content h2 {
        padding: 0 calc(30/750 * 100vw) calc(10/750 * 100vw);
    }
    .diagnosis_modal .modal_content h2 .num {
        vertical-align: -2px;
    }
    .diagnosis_modal .modal_content .result_amount {
        flex-direction: column;
        gap: 0;
    }
    .diagnosis_modal .modal_content .result_amount dt {
        font-size: calc(30/750 * 100vw);
    }
    .diagnosis_modal .modal_content .result_amount dd {
        font-size: calc(50/750 * 100vw);
    }
    .diagnosis_modal .modal_content .result_amount dd .num {
        font-size: calc(90/750 * 100vw);
    }
    .diagnosis_modal .modal_content .result_text {
        font-size: calc(28/750 * 100vw);
    }
    .diagnosis_modal .modal_content .result_logo {
        width: 30vw;
    }
    .diagnosis_modal .diagnosis_modal_close {
        top: -20px;
        right: -10px;
        width: 45px;
        height: 45px;
    }
    .diagnosis_modal .diagnosis_modal_close::before,
    .diagnosis_modal .diagnosis_modal_close::after {
        width: 25px;
        height: 3px;
    }
}

.cta_area {
    padding: 70px 0;
}

.cta_area .wrap {
    display: flex;
    flex-direction: column;
    gap: 70px;
}

@media only screen and (max-width: 750px) {
    .cta_area {
        padding: calc(80/750 * 100vw) 0;
    }
    .cta_area .wrap {
        gap: calc(80/750 * 100vw);
    }
}

.recommend {
    padding-bottom: 80px;
}

.recommend h2 {
    color: #fff;
    background: #ff8a00;
    font-size: 40px;
    line-height: 1.3;
    margin-bottom: 40px;
    padding: 30px 0;
    text-align: center;
}

.recommend h2 .strong {
    font-size: 55px;
    background: linear-gradient(transparent 80%, #ff6500 80%, #ff6500 95%, transparent 95%);
}

.recommend .recommend_list {
    list-style: none;
}

.recommend .recommend_list li {
    display: flex;
    align-items: center;
    padding: 20px 0;
}

.recommend .recommend_list li:not(:last-child) {
    border-bottom: 2px solid #515151;
}

.recommend .recommend_list li .icon {
    margin-right: min(calc(20/750 * 100vw), 20px);
}

.recommend .recommend_list li .txt {
    font-size: 32px;
    font-weight: 600;
}

@media only screen and (max-width: 750px) {
    .recommend {
        background: #ff8a00;
        padding-bottom: 4px;
    }
    .recommend h2 {
        font-size: calc(50/750 * 100vw);
        margin-bottom: 0;
        padding: calc(20/750 * 100vw) 0;
    }
    .recommend h2 .strong {
        font-size: calc(60/750 * 100vw);
    }
    .recommend .wrap {
        background: #fff;
        border-top: none;
        width: calc(100% - 8px);
    }
    .recommend .recommend_list li .txt {
        font-size: calc(40/750 * 100vw);
    }
}

.reason {
    background: #dcf0e6;
    padding: 65px 0;
}

.reason h2 {
    color: #0b6d36;
    font-size: min(calc(43/750 * 100vw), 43px);
    margin-bottom: min(calc(50/750 * 100vw), 50px);
}

.reason h2 .num {
    display: inline-block;
    color: #fff;
    background: #0b6d36;
    border-radius: min(calc(80/750 * 100vw), 80px);
    font-size: min(calc(73/750 * 100vw), 73px);
    font-family: "Oswald", sans-serif;
    line-height: 1;
    width: min(calc(80/750 * 100vw), 80px);
    height: min(calc(80/750 * 100vw), 80px);
}

.reason h2 .strong {
    font-size: min(calc(63/750 * 100vw), 63px);
}

.reason h3 {
    font-size: min(calc(40/750 * 100vw), 40px);
    text-align: center;
    margin-bottom: min(calc(20/750 * 100vw), 20px);
}

.reason h3 .num {
    display: inline-block;
    color: #fff;
    background: #0b6d36;
    border-radius: min(calc(50/750 * 100vw), 50px);
    font-family: "Oswald", sans-serif;
    line-height: 1.2;
    margin-right: min(calc(5/750 * 100vw), 5px);
    width: min(calc(50/750 * 100vw), 50px);
    height: min(calc(50/750 * 100vw), 50px);
}

.reason .reason_box {
    margin-bottom: min(calc(80/750 * 100vw), 80px);
}

.reason .tab_container {
    position: relative;
}

.reason .tab_list {
    display: flex;
    align-items: flex-end;
    list-style: none;
    margin: 0;
    padding: 0;
    border-bottom: 1px solid #515151;
}

.reason .tab_list li {
    color: #333;
    background: #ccf1d0;
    border: 1px solid #515151;
    border-radius: min(calc(10/750 * 100vw), 10px) min(calc(10/750 * 100vw), 10px) 0 0;
    border-bottom: none;
    cursor: pointer;
    text-align: center;
    padding: min(calc(12/750 * 100vw), 12px) 0;
    width: calc((100% - 2px) / 4);
    position: relative;
    text-decoration: none;
    font-size: min(calc(30/750 * 100vw), 30px);
    font-weight: 600;
    position: relative;
}

.reason .tab_list li:hover {
    background: #e9ecef;
    color: #0b6d36;
}

.reason .tab_list li.active {
    background: #0b6d36;
    color: #fff;
    border-color: #0b6d36;
    font-size: min(calc(34/750 * 100vw), 34px);
    width: calc((100% / 4) + min(calc(50/750 * 100vw), 50px));
    padding-top: min(calc(15/750 * 100vw), 15px);
    padding-bottom: min(calc(15/750 * 100vw), 15px);
}

.reason .tab_list li.active:hover {
    background: #0b6d36;
    color: #fff;
}

.reason .tab_content {
    display: none;
    opacity: 0;
    border: 1px solid #515151;
    border-top: none;
    background: #fff;
    transition: opacity 0.5s ease-in-out;
}

.reason .tab_content.active {
    display: block;
    opacity: 1;
}

.reason .tab_content table {
    width: 100%;
    border-collapse: collapse;
}

.reason .tab_content table tr:nth-child(even) {
    background: #ededed;
}

.reason .tab_content table th,
.reason .tab_content table td {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2;
    padding: 20px 10px;
    text-align: center;
}

.reason .tab_content table td {
    border-left: 1px solid #515151;
}

.reason .tab_content table td:nth-child(3) {
    width: 51%;
}

.reason .tab_content table .txt_gr {
    color: #0b6d36;
    font-weight: 700;
}

.reason .tab_content table .table_label {
    display: block;
    color: #fff;
    border-radius: min(calc(5/750 * 100vw), 5px);
    margin-top: min(calc(3/750 * 100vw), 3px);
    padding: 3px;
}

.reason .tab_content table .table_label_green {
    background: #0b6d36;
}

.reason .tab_content table .table_label_orange {
    background: #ff8a00;
}

.reason .tab_content table .table_label_gray {
    background: #515151;
}

.reason .tab_content table .num {
    font-size: 34px;
    font-family: "Oswald", sans-serif;
    vertical-align: text-bottom;
}

.reason .reason_notice_list {
    list-style: none;
}

.reason .reason_notice_list li {
    font-size: 14px;
    text-indent: -1em;
    margin-left: 1em;
}

.reason_02 .reason_subttl {
    margin: 0 auto min(calc(40/750 * 100vw), 40px);
    width: 705px;
}

.reason_02 .reason_subttl .reason_notice {
    font-size: min(calc(23/750 * 100vw), 23px);
}

.reason_03 .reason_point {
    position: relative;
}

.reason_03 .reason_point::before {
    position: absolute;
    content: "";
    background: url(../images/reason_img01.png) no-repeat center/ contain;
    width: 214px;
    height: 197px;
    bottom: 2px;
    left: 27px;
}

.reason_03 .reason_point .reason_point_ttl {
    color: #fff;
    background: #0b6d36;
    border-radius: min(calc(10/750 * 100vw), 10px) min(calc(10/750 * 100vw), 10px) 0 0;
    padding: min(calc(20/750 * 100vw), 20px) min(calc(20/750 * 100vw), 20px) min(calc(20/750 * 100vw), 20px) 230px;
    text-align: center;
    line-height: 1.3;
}

.reason_03 .reason_point .reason_point_ttl dt {
    font-size: 43px;
    font-weight: 600;
}

.reason_03 .reason_point .reason_point_ttl dt .num {
    font-family: "Oswald", sans-serif;
    font-size: 56px;
    vertical-align: -4px;
}

.reason_03 .reason_point .reason_point_ttl dd {
    font-size: 28px;
    font-weight: 600;
}

.reason_03 .reason_point .reason_point_txt {
    background: #fff;
    border: 2px solid #0b6d36;
    border-radius: 0 0 min(calc(10/750 * 100vw), 10px) min(calc(10/750 * 100vw), 10px);
    font-weight: 600;
    padding: min(calc(30/750 * 100vw), 30px) min(calc(20/750 * 100vw), 20px) min(calc(30/750 * 100vw), 30px) 230px;
    text-align: center;
}

.reason_03 .reason_point .reason_point_txt p {
    font-size: 31px;
    font-weight: 600;
    line-height: 1.2;
}

@media (max-width: 750px) {
    .reason {
        padding: calc(60/750 * 100vw) 0 calc(120/750 * 100vw);
    }
    .reason .reason_img01 {
        width: calc(690/750 * 100vw);
    }
    .reason .tab_content table th,
    .reason .tab_content table td {
        font-size: calc(22/750 * 100vw);
        padding: calc(10/750 * 100vw);
    }
    .reason .tab_content table .table_label {
        padding: calc(3/750 * 100vw);
    }
    .reason .tab_content table .num {
        font-size: calc(32/750 * 100vw);
    }
    .reason .reason_notice_list li {
        font-size: calc(18/750 * 100vw);
    }
    .reason_02 .reason_subttl {
        width: 100%;
    }
    .reason_02 .reason_subttl h4 {
        margin-right: calc(-15/750 * 100vw);
    }
    .reason_03 .reason_point::before {
        background: url(../images/reason_img01_sp.png) no-repeat center/ contain;
        width: calc(131/750 * 100vw);
        height: calc(132/750 * 100vw);
        left: calc(27/750 * 100vw);
    }
    .reason_03 .reason_point .reason_point_ttl {
        padding-left: calc(20/750 * 100vw);
    }
    .reason_03 .reason_point .reason_point_ttl dt {
        font-size: calc(57/750 * 100vw);
    }
    .reason_03 .reason_point .reason_point_ttl dt .num {
        font-size: calc(74/750 * 100vw);
        vertical-align: -4px;
    }
    .reason_03 .reason_point .reason_point_ttl dd {
        font-size: calc(31/750 * 100vw);
    }
    .reason_03 .reason_point .reason_point_txt {
        padding-left: calc(150/750 * 100vw);
    }
    .reason_03 .reason_point .reason_point_txt p {
        font-size: calc(37/750 * 100vw);
    }
    .reason_03 .reason_point .reason_point_txt p .strong {
        font-size: calc(42/750 * 100vw);
    }
}

.flow h2 {
    color: #fff;
    background: #0b6d36;
    font-size: min(calc(43/750 * 100vw), 43px);
    line-height: 1.3;
    margin-bottom: 100px;
    padding: 30px 0;
    text-align: center;
}
.flow .flow_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    column-gap: 40px;
    row-gap: 140px;
    margin: 0;
    margin-bottom: 30px;
    padding: 0;
    position: relative;
}
.flow .flow_list::after {
    position: absolute;
    content: "";
    top: 48%;
    left: 58%;
    transform: translate(-50%, -50%);
    background: url(../images/flow_arrow.svg) no-repeat center/ contain;
    width: 80%;
    height: 96px;
}
.flow .flow_list li {
    border: 3px solid #0b6d36;
    border-radius: 10px;
    list-style: none;
    font-size: 28px;
    line-height: 1.4;
    text-align: center;
    padding: 0 10px 20px;
    width: calc((100% - 80px) / 3);
    position: relative;
}
.flow .flow_list li:not(:last-child)::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 24px 0 24px 22px;
    border-color: transparent transparent transparent #0b6d36;
    right: -35px;
    top: 50%;
    transform: translateY(-50%);
}
.flow .flow_list li:nth-child(3)::after {
    content: none;
}
.flow .flow_list dl {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.flow .flow_list dl .num {
    display: inline-block;
    color: #fff;
    background: #0b6d36;
    border-radius: min(calc(50/750 * 100vw), 50px);
    font-family: "Oswald", sans-serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    margin-top: -25px;
    margin-right: min(calc(5/750 * 100vw), 5px);
    width: min(calc(50/750 * 100vw), 50px);
    height: min(calc(50/750 * 100vw), 50px);
    text-align: center;
}
.flow .flow_list dl .txt {
    font-weight: 500;
    line-height: 1.2;
}
.flow .flow_list dl .label {
    display: inline-block;
    color: #fff;
    background: #ff8a00;
    border-radius: 5px;
    padding: 2px 4px;
}
.flow .flow_list li:nth-child(4) dl .txt {
    margin-top: 15px;
}
.flow .flow_txt {
    font-size: 35px;
    font-weight: 600;
    line-height: 1.3;
    text-align: center;
}

@media (min-width: 751px) and (max-width: 1040px) {
    .flow .flow_list {
        row-gap: calc(120/750 * 100vw);
    }
    .flow .flow_list::after {
        top: 46%;
        background: url(../images/flow_arrow.svg) no-repeat center/ contain;
        width: 80%;
        height: calc(95/1040 * 100vw);
    }
}

@media (max-width: 750px) {
    .flow h2 {
        margin-bottom: calc(70/750 * 100vw);
    }
    .flow .flow_list {
        flex-direction: column;
        row-gap: calc(75/750 * 100vw);
        margin-bottom: calc(50/750 * 100vw);
    }
    .flow .flow_list::after {
        content: none;
    }
    .flow .flow_list li {
        border-width: 2px;
        font-size: calc(35/750 * 100vw);
        padding: 0;
        width: 100%;
    }
    .flow .flow_list li:not(:last-child)::after {
        border-width: 20px 22px 0 22px;
        border-color: #0b6d36 transparent transparent transparent;
        right: auto;
        left: 50%;
        top: auto;
        bottom: calc(-60/750 * 100vw);
        transform: translateX(-50%);
    }
    .flow .flow_list li:nth-child(3)::after {
        content: "";
    }
    .flow .flow_list dl {
        display: table;
    }
    .flow .flow_list dl .num {
        display: table-cell;
        border-radius: 7px 0 0 7px;
        font-size: calc(54/750 * 100vw);
        padding: calc(10/750 * 100vw) calc(10/750 * 100vw) calc(10/750 * 100vw) 0;
        width: calc(100/750 * 100vw);
        height: 100%;
        clip-path: circle(100% at 0 50%);
    }
    .flow .flow_list dl .txt {
        display: table-cell;
        vertical-align: middle;
        padding-left: calc(10/750 * 100vw);
    }
    .flow .flow_list li:nth-child(4) dl .txt {
        margin-top: 0;
    }
    .flow .flow_txt {
        font-size: calc(42/750 * 100vw);
    }
}

.faq {
    background: #ededed;
    padding: 60px 0;
}

.faq h2 {
    color: #000;
    font-size: min(calc(43/750 * 100vw), 43px);
    line-height: 1.3;
    margin-bottom: min(calc(40/750 * 100vw), 40px);
    text-align: center;
}

.faq .wrap {
    max-width: 800px;
}

.faq .faq_list {
    background: #fff;
    border-radius: min(calc(10/750 * 100vw), 10px);
}

.faq .faq_list:not(:last-child) {
    margin-bottom: 20px;
}

.faq .faq_question {
    cursor: pointer;
    font-size: 24px;
    font-weight: 600;
    padding: 20px;
    position: relative;
}

.faq .faq_question::after {
    position: absolute;
    content: "";
    top: 50%;
    right: min(calc(20/750 * 100vw), 20px);
    transform: translateY(-50%) rotate(0deg);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: min(calc(19/750 * 100vw), 19px) min(calc(15/750 * 100vw), 15px) 0 min(calc(15/750 * 100vw), 15px);
    border-color: #515151 transparent transparent transparent;
    transition: transform 0.3s ease-in-out;
}

.faq .faq_question.active::after {
    transform: translateY(-50%) rotate(180deg);
}

.faq .faq_question .faq_q {
    display: inline-block;
    color: #fff;
    background: #515151;
    border-radius: min(calc(35/750 * 100vw), 35px);
    line-height: 1.1;
    font-size: 26px;
    text-align: center;
    margin-right: 12px;
    width: min(calc(35/750 * 100vw), 35px);
    height: min(calc(35/750 * 100vw), 35px);
}

.faq .faq_answer {
    display: none;
    border-top: 2px dashed #515151;
    font-size: 18px;
    line-height: 1.6;
    margin: 0 20px;
    padding: 20px 0;
}

.faq .faq_answer.active {
    display: block;
}

.faq .faq_answer_list {
    display: flex;
}

.faq .faq_answer_list .faq_a {
    font-size: 26px;
    font-weight: 600;
    line-height: 1.2;
    margin: 0 22px 0 8px;
}

.faq .txt_red {
    color: #cb0200;
}

@media only screen and (max-width: 750px) {
    .faq {
        padding: calc(50/750 * 100vw) 0 calc(80/750 * 100vw);
    }
    .faq .faq_question {
        font-size: calc(30/750 * 100vw);
        padding: calc(25/750 * 100vw) calc(50/750 * 100vw) calc(25/750 * 100vw) calc(90/750 * 100vw);
    }
    .faq .faq_question .faq_q {
        position: absolute;
        left: calc(20/750 * 100vw);
        top: 50%;
        transform: translateY(-50%);
        font-size: calc(35/750 * 100vw);
        margin-right: 0;
        width: calc(48/750 * 100vw);
        height: calc(48/750 * 100vw);
    }
    .faq .faq_answer {
        font-size: calc(28/750 * 100vw);
        margin: 0 calc(20/750 * 100vw);
        padding: calc(25/750 * 100vw) 0;
    }
    .faq .faq_answer_list .faq_a {
        font-size: calc(35/750 * 100vw);
        margin: 0 calc(34/750 * 100vw) 0 calc(14/750 * 100vw);
    }
}

.epilogue .epilogue_ttl {
    background: #0b6d36 url(../images/epilogue_bg.png) no-repeat center bottom/ 100% auto;
    min-height: 186px;
    padding: min(calc(70/1920 * 100vw), 70px) 0 min(calc(220/1920 * 100vw), 270px);
}

.epilogue .epilogue_ttl h2 {
    color: #fff;
    font-size: min(calc(45/750 * 100vw), 45px);
    font-weight: 700;
    font-feature-settings: "palt";
    line-height: 1.3;
    text-align: center;
}

.epilogue .epilogue_ttl h2 .strong {
    font-size: min(calc(50/750 * 100vw), 50px);
}

.epilogue .epilogue_inner {
    background: #e1eb9d;
    margin-top: -1px;
    padding: 15px 0 55px;
}

.epilogue .wrap {
    max-width: 1260px;
}

.epilogue .epilogue_point {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 30px;
}

.epilogue .epilogue_box {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 16px;
    filter: drop-shadow(0 0 4px rgba(0, 0, 0, .17));
    width: calc(100% / 3);
}

.epilogue .epilogue_box h3 {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    background: #0b6d36;
    border-radius: 16px 16px 0 0;
    text-align: center;
    font-size: 28px;
    font-weight: 600;
    padding: 20px 10px;
    line-height: 1.3;
    flex-grow: 1;
}

.epilogue .epilogue_box_txt {
    padding: 20px;
}

.epilogue .epilogue_box_txt p {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
    text-align: justify;
}

@media only screen and (max-width: 750px) {
    .epilogue .epilogue_ttl {
        background: #0b6d36 url(../images/epilogue_bg_sp.png) no-repeat center bottom/ 100% auto;
        min-height: calc(164/750 * 100vw);
        padding: calc(60/750 * 100vw) 0 calc(180/750 * 100vw);
    }
    .epilogue .epilogue_inner {
        padding: calc(80/750 * 100vw) 0;
    }
    .epilogue .epilogue_point {
        flex-direction: column;
        gap: calc(30/750 * 100vw);
    }
    .epilogue .epilogue_box {
        width: 100%;
    }
    .epilogue .epilogue_box h3 {
        font-size: calc(40/750 * 100vw);
        padding: calc(20/750 * 100vw) 0;
    }
    .epilogue .epilogue_box_txt {
        padding: calc(25/750 * 100vw);
    }
    .epilogue .epilogue_box_txt p {
        font-size: calc(28/750 * 100vw);
    }
}

@media only screen and (min-width: 751px) and (max-width: 1260px) {
    .epilogue .wrap {
        margin: 0 20px;
    }
    .epilogue .epilogue_point {
        gap: 20px;
    }
}

.fixed_cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, .9);
    padding: 0;
    z-index: 50;
}

.fixed_cta .btn_cv {
    padding: 20px 0;
}

@media only screen and (max-width: 750px) {
    .fixed_cta .btn_cv {
        padding: calc(20/750 * 100vw) 0 calc(30/750 * 100vw);
    }
}

.footer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: min(calc(30/750 * 100vw), 30px) 0;
}

footer {
    background-color: #0B6D36;
    text-align: center;
    color: #fff;
    padding: 30px 0;
}

footer p {
    font-family: "Oswald", sans-serif;
    font-weight: 400;
    font-size: 16px;
}

@media only screen and (max-width: 750px) {
    .footer {
        border-top: 1px solid #686868;
        flex-direction: column;
        gap: 0;
    }
    .footer img {
        width: 30vw;
    }
    footer {
        padding: calc(20/750 * 100vw) 0;
    }
    footer p {
        font-size: calc(29/750 * 100vw);
    }
}

.fade {
    transition: all 1000ms;
    opacity: 0;
    visibility: hidden;
    transform: translate(0px, 50px);
}

.fadein {
    opacity: 1;
    visibility: visible;
    transform: translate(0px, 0px);
}

.window {
    width: 90vw;
    max-width: 40vw;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.txt_orange {
    color: #ff8a00;
}

.txt_red {
    color: #ff4846;
}

@media only screen and (max-width: 750px) {
    .fade {
        opacity: 1;
        visibility: visible;
        transform: translate(0px, 0px);
    }
    .window {
        width: 90vw;
        max-width: 80vw;
        border-radius: 6px;
        display: flex;
        justify-content: center;
        align-items: center;
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
}
