/*共通*/
html,
body {
    margin: 0;
    padding: 0;
    font-family: 'Noto Sans JP', sans-serif;
    width: 100vw;
    overflow-x: hidden;
    color: #000;
    background-color: #fff;
    scroll-behavior: smooth;
    font-size: 1rem;
    line-height: 1.75;
}

* {
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: inherit;
}

a:hover {
    text-decoration: none;
    color: inherit;
    opacity: 0.6;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    padding: 0;
    font-family: 'Noto Sans JP', sans-serif;
}

button:focus {
    outline: none;
}

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    font-weight: normal;
}

input {
    font-family: 'Noto Sans JP', sans-serif;
}

input:focus {
    outline: none;
}

textarea {
    font-family: 'Noto Sans JP', sans-serif;
}

textarea:focus {
    outline: none;
}

select {
    font-family: 'Noto Sans JP', sans-serif;
}

select:focus {
    outline: none;
}

label {
    cursor: pointer;
}

label:hover {
    opacity: 0.8;
}

.pc {
    display: block;
}

.sp {
    display: none;
}

@media screen and (max-width: 768px) {
    .pc {
        display: none;
    }

    .sp {
        display: block;
    }
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

@media screen and (max-width: 768px) {
    .container {
        padding: 0 0.625rem;
    }
}

/* 共通パーツ */
.section_header {
    text-align: center;
    width: fit-content;
    font-weight: bold;
    margin: 0 auto;
    font-size: min(3vw, 2.25rem);
    font-weight: bold;
    color: #2a5b9a;
    white-space: nowrap;
    position: relative;
}

@media screen and (max-width: 768px) {
    .section_header {
        font-size: 6.6vw;
    }
}

.section_header::before,
.section_header::after {
    content: "";
    position: absolute;
}

.section_header::before {
    width: min(4vw, 3rem);
    height: min(4vw, 3rem);
    background-image: url("../img/kojo/section_header_ttl_before.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    top: max(-1vw, -0.75rem);
    right: 100%;
}

@media screen and (max-width: 768px) {
    .section_header::before {
        width: 7vw;
        height: 7vw;
        top: -3.5vw;
    }
}

.section_header::after {
    width: min(3vw, 2.25rem);
    height: min(3vw, 2.25rem);
    background-image: url("../img/kojo/section_header_ttl_after.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    bottom: 4%;
    left: 100%;
}

@media screen and (max-width: 768px) {
    .section_header::after {
        width: 5.3vw;
        height: 5.3vw;
        bottom: 1.5vw;
    }
}

.section_header h2 {
    font-weight: bold;
}

.section_header p {
    font-size: min(1.5vw, 1.125rem);
    margin-top: 0.625rem;
    color: #606060;
}

@media screen and (max-width: 768px) {
    .section_header p {
        font-size: 4vw;
        margin-top: 0;
    }
}

/* ページのcss */

.header_upper {
    background-color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 3vw;
    padding: 1.25rem 2.5rem;
}

@media screen and (max-width: 768px) {
    .header_upper {
        padding: 0.375rem 1rem;
    }
}

.header_upper h1 {
    width: min(30rem, 25vw);
}

@media screen and (max-width: 768px) {
    .header_upper h1 {
        width: calc(100% - 106px);
    }
}

.header_upper h1 img {
    height: 100%;
    width: auto;
}

.header_menu {
    display: none;
}

@media screen and (max-width: 768px) {
    .header_menu {
        display: block;
        width: 36px;
        height: 21px;
        position: relative;
        cursor: pointer;
        z-index: 11;
    }

    .header_menu span {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 36px;
        height: 3px;
        border-radius: 6px;
        background: #000;
        -webkit-transition: top 0.3s linear, -webkit-transform 0.3s linear;
        transition: top 0.3s linear, -webkit-transform 0.3s linear;
        transition: transform 0.3s linear, top 0.3s linear;
        transition: transform 0.3s linear, top 0.3s linear, -webkit-transform 0.3s linear;
    }

    .header_menu.is-active span {
        background-color: #fff;

    }

    .header_menu span:nth-child(2) {
        top: 9px;
    }

    .header_menu span:nth-child(3) {
        top: 18px;
    }

    .header_menu span {
        position: absolute;
        left: 0;
        width: 100%;
        height: 0.3rem;
        background-color: #000;
        border-radius: 0.15rem;
        transition: all 0.3s ease;
    }

    .header_menu.is-active span:nth-child(1) {
        top: 50%;
        transform: translateY(-50%) rotate(45deg);
    }

    .header_menu.is-active span:nth-child(2) {
        opacity: 0;
    }

    .header_menu.is-active span:nth-child(3) {
        top: 50%;
        transform: translateY(-50%) rotate(-45deg);
    }
}

.header_inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 3vw;
}

.header_tel {
    line-height: 1;
}

.header_tel_text {
    font-size: min(1vw, 1.125rem);
    font-weight: bold;
    margin-bottom: 5px;
    color: #303030;
    text-align: center;
}

.header_tel_num {
    font-size: min(1.5vw, 1.625rem);
    font-weight: bold;
    display: flex;
    align-items: flex-start;
    column-gap: 10px;
    margin-bottom: 5px;
    color: #d81518;
    text-align: right;
    letter-spacing: 0.1em;
    margin-bottom: -0.2vw;
}

.header_tel_num img {
    width: min(2.3vw, 2.75rem);
}

.header_tel_time {
    font-size: min(1vw, 1.125rem);
    letter-spacing: 0.1em;
    text-align: center;
    color: #303030;
    font-weight: bold;
    text-align: right;
}

.header_contact {
    width: min(21.5625rem, 18vw);
}

.header_lower {
    background-color: #000;
    padding: 1.25rem 0;
}

@media screen and (max-width: 768px) {
    .header_lower {
        position: fixed;
        top: 0;
        left: 100%;
        width: 80%;
        height: 100vh;
        padding: 5rem 0 0 0;
        transition: left 0.3s ease;
        z-index: 10;
    }

    .header_lower.is-active {
        left: 20%;
    }
}

.header_nav_list {
    display: flex;
    justify-content: center;
    column-gap: 3vw;
}

@media screen and (max-width: 768px) {
    .header_nav_list {
        flex-direction: column;
        row-gap: 2rem;
    }
}

.header_nav_list li a {
    color: #fff;
    font-size: min(1.67vw, 1.25rem);
    padding: 0.5rem 0;
    display: block;
}

@media screen and (max-width: 768px) {
    .header_nav_list li a {
        font-size: 4vw;
        padding: 0 5vw;
    }
}

.mv {
    width: 100%;
    aspect-ratio: 444 / 184;
    background: url("../img/kojo/mv.png") no-repeat center/cover;
    display: flex;
    align-items: center;
    padding-left: 6vw;
}

@media screen and (max-width: 768px) {
    .mv {
        aspect-ratio: 4 / 3;
        background-position: right center;
        padding-left: 5vw;
        align-items: center;
    }
}

.mv h2 {
    width: 55vw;
}

@media screen and (max-width: 768px) {
    .mv h2 {
        width: 90vw;
    }
}

.about {
    padding: 3.75rem 1.25rem;
    background-color: #ececec;
}

@media screen and (max-width: 768px) {
    .about {
        padding: 3.75rem 0.625rem;
    }
}

.about .container {
    background-color: #fff;
    padding: 1.25rem min(11vw, 8.25rem);
    position: relative;
}

@media screen and (max-width: 768px) {
    .about .container {
        padding: 1.25rem
    }
}

.about h2 {
    font-size: min(3vw, 2.25rem);
    font-weight: bold;
    margin-bottom: 1.25rem;
    text-align: center;
}

@media screen and (max-width: 768px) {
    .about h2 {
        font-size: 6vw;
        margin-bottom: 1rem;
    }
}

.about p.about_text {
    font-size: min(1.8vw, 1.3125rem);
    line-height: 1.5;
}

@media screen and (max-width: 768px) {
    .about p.about_text {
        font-size: 3.5vw;
    }
}

.about_officer {
    display: flex;
    font-size: min(1.25vw, 1.5rem);
    font-weight: bold;
    text-align: right;
    justify-content: flex-end;
    align-items: flex-end;
    column-gap: 1vw;
    margin-top: 2.5rem;
    padding-right: 20%;
}

@media screen and (max-width: 768px) {
    .about_officer {
        font-size: 3.7vw;
        margin-top: 38%;
        padding-right: 31vw;
        justify-content: flex-start;
        flex-direction: column;
        text-align: left;
        align-items: flex-start;
    }
}

.about_officer img {
    width: min(13vw, 15.5625rem);
}

@media screen and (max-width: 768px) {
    .about_officer img {
        width: 45vw;
    }
}

.about_officer_img {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 17%;
}

@media screen and (max-width: 768px) {
    .about_officer_img {
        display: block;
        width: 40%;
        margin: 1.5rem auto 0 auto;
    }
}

.annoy_upper {
    background-color: #96b3ce;
    position: relative;
}

.annoy_upper::before {
    content: "";
    position: absolute;
    top: 99%;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 5.25rem solid transparent;
    border-right: 5.25rem solid transparent;
    border-top: 3.75rem solid #96b3ce;
}

.annoy_upper .container {
    position: relative;
    padding: 3.75rem 1.25rem;
}

@media screen and (max-width: 768px) {
    .annoy_upper .container {
        padding: 2.5rem 1.25rem 10%;
    }
}

.annoy_upper_img {
    position: absolute;
    bottom: 0;
    left: 11%;
    width: 15%;
}

@media screen and (max-width: 768px) {
    .annoy_upper_img {
        width: 29%;
        left: 0;
    }
}

.annoy_upper h2 {
    font-size: min(3vw, 2.25rem);
    white-space: nowrap;
    width: fit-content;
    margin: 0 auto;
}

@media screen and (max-width: 768px) {
    .annoy_upper h2 {
        font-size: 4.3vw;
        width: fit-content;
        margin-left: auto;
        margin-right: 0;
    }
}

.annoy_upper h2 span.t-red {
    color: #d81418;
}

.annoy_middle {
    padding: 6.25rem 1.25rem 3.75rem;
    background-image: url("../img/kojo/annoy_middle_bg.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

@media screen and (max-width: 768px) {
    .annoy_middle {
        padding: 4rem 0 3.75rem;
        background-position: left top;
    }
}

.annoy_middle h3 {
    font-size: min(2.67vw, 2rem);
    text-align: center;
    margin-bottom: 3.75rem;
    background-color: #2a5b9a;
    color: #fff;
    line-height: 2;
}

@media screen and (max-width: 768px) {
    .annoy_middle h3 {
        font-size: 6vw;
        margin-bottom: 2.5rem;
    }
}

.annoy_list {
    display: flex;
    flex-wrap: wrap;
    row-gap: 3.75rem;
    justify-content: space-between;
    column-gap: 2%;
}

@media screen and (max-width: 768px) {
    .annoy_list {
        row-gap: 0.5rem;
    }
}

.annoy_list li {
    width: 32%;
    background-color: #fff;
    padding: 1rem 1.25rem 1rem 3.75rem;
    box-sizing: border-box;
    font-size: min(1.4vw, 1.125rem);
    font-weight: bold;
    line-height: 1.5;
    position: relative;
}

@media screen and (max-width: 768px) {
    .annoy_list li {
        width: 49%;
        font-size: 3.5vw;
        padding: 0.625rem 0 0.625rem 8vw;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}

.annoy_list li::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 1.25rem;
    transform: translateY(-50%);
    width: min(2.6vw, 1.9375rem);
    height: min(2.6vw, 1.9375rem);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url("../img/kojo/annoy_middle_check.svg");
}

@media screen and (max-width: 768px) {
    .annoy_list li::before {
        width: 5vw;
        height: 5vw;
        left: 0.625rem;
    }
}

.annoy_lower {
    background-color: #96b3ce;
    padding: 3.75rem 1.25rem 0;
    position: relative;
}

@media screen and (max-width: 768px) {
    .annoy_lower {
        padding: 2.5rem 1.25rem;
    }
}

.annoy_lower::before {
    content: "";
    position: absolute;
    top: 99%;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 100vw solid transparent;
    border-right: 100vw solid transparent;
    border-top: 10vw solid #96b3ce;
}

.annoy_lower .container {
    background-color: #fff;
    padding: 1rem;
    border-radius: 1.875rem;
}

.annoy_lower_inner {
    padding: 1.25rem;
    border: 3px solid #000;
    border-radius: 1.875rem;
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 2.5rem;
}

@media screen and (max-width: 768px) {
    .annoy_lower_inner {
        flex-direction: column;
        row-gap: 1.5rem;
        padding: 1rem;
    }
}

.annoy_lower_inner>img {
    width: 40%;
}

@media screen and (max-width: 768px) {
    .annoy_lower_inner>img {
        width: 60%;
    }
}

.annoy_lower_inner p {
    font-size: min(3vw, 2.25rem);
    line-height: 1.5;
    width: 34%;
    text-align: center;
}

@media screen and (max-width: 768px) {
    .annoy_lower_inner p {
        font-size: 6vw;
        width: 100%;
    }
}

.annoy_lower_inner p .b-yellow {
    display: inline-block;
    background: linear-gradient(transparent 70%, #ffe103 70%);
    padding-bottom: 1%;
}

.annoy_lower_inner p .t-red {
    color: #d81418;
    font-weight: bold;
}

.reason {
    padding: calc(10vw + 3.75rem) 1.25rem min(11vw, 8.25rem);
    background-image: url("../img/kojo/reason_bg.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    overflow: hidden;
}

@media screen and (max-width: 768px) {
    .reason {
        padding: calc(10vw + 2.5rem) 0.625rem 10%;
    }
}

.reason .container {
    background-color: #fff;
    border: 3px solid #ccc;
    border-radius: 50% 50% 0 0 / 200px 200px 0 0;
    padding: 8.125rem min(11vw, 8.25rem);
    position: relative;
}

@media screen and (max-width: 768px) {
    .reason .container {
        padding: 14vw 0.625rem;
        border-radius: 50% 50% 0 0 / 22vw 22vw 0 0;
    }
}

.reason_bg_before,
.reason_bg_after {
    position: absolute;
}

.reason_bg_before {
    width: 18%;
    top: 0;
    left: 94%;
    transform: translateX(-50%) translateY(10%);
}

@media screen and (max-width: 768px) {
    .reason_bg_before {
        width: 30%;
        left: 90%;
        z-index: 2;
    }
}

.reason_bg_after {
    width: 22%;
    bottom: 0;
    left: 0;
    transform: translateY(45%);
}

@media screen and (max-width: 768px) {
    .reason_bg_after {
        width: 45%;
    }
}

.reason_header p {
    font-size: min(3.5vw, 2.625rem);
    font-weight: bold;
    text-align: center;
    color: #333;
    margin-bottom: 1.25rem;
    padding-left: 5px;
    letter-spacing: 0.1em;
    display: flex;
    justify-content: center;
    align-items: baseline
}

@media screen and (max-width: 768px) {
    .reason_header p {
        font-size: 6vw;
        margin-bottom: 1vw;
    }
}

.reason_header p img {
    width: calc(100% - min(28.3vw, 21.25rem));
    margin-right: 0.3125rem;
}

@media screen and (max-width: 768px) {
    .reason_header p img {
        width: calc(100% - 30vw);
    }
}

.reason_header h2 {
    font-size: min(5vw, 3.75rem);
    font-weight: bold;
    line-height: 1;
    text-align: center;
    margin-bottom: 1.25rem;
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 0.625rem;
    color: #fff;
}

@media screen and (max-width: 768px) {
    .reason_header h2 {
        font-size: 7vw;
        margin-bottom: 6vw;
    }
}

.reason_header h2 span {
    background-color: #0099ff;
    width: fit-content;
    aspect-ratio: 1 / 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

@media screen and (max-width: 768px) {
    .reason_header h2 span {
        padding: 1.5vw;
    }
}

.reason_list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 2%;
    row-gap: 3.75rem;
    padding-bottom: 1.875rem;
}

@media screen and (max-width: 768px) {
    .reason_list li {
        flex-direction: column;
        row-gap: 0;
        padding-bottom: 1.5rem;
        align-items: flex-start;
        position: relative;
    }
}

.reason_list_num {
    width: 20%;
}

@media screen and (max-width: 768px) {
    .reason_list_num {
        width: 18%;
        position: absolute;
        top: -2vw;
        left: -2px;

    }
}

.reason_list_text {
    width: 78%;
    font-size: min(1.8vw, 1.3125rem);
    line-height: 1.5;
}

@media screen and (max-width: 768px) {
    .reason_list_text {
        width: 100%;
        font-size: 3.5vw;
        margin-bottom: 1.875rem;
    }
}

.reason_list_text h3 {
    font-weight: bold;
    color: #fff;
    background-color: #2a5b9a;
    padding-left: 1.25rem;
    line-height: 2;
    margin-bottom: 0.625rem;
}

@media screen and (max-width: 768px) {
    .reason_list_text h3 {
        padding-left: 17vw;
        margin-bottom: 3vw;
        font-size: 4vw;
    }
}

.cta {
    padding: 3.75rem 1.25rem min(1.8vw, 1.3125rem);
    background-image: url("../img/kojo/cta_bg.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    overflow: hidden;
}

@media screen and (max-width: 768px) {
    .cta {
        padding: 2.5rem 1.25rem;
    }
}

.cta .container {
    background-color: #fff;
    padding: min(3.3vw, 2.5rem) 0 min(1.6vw, 1.1875rem);
    position: relative;
}

@media screen and (max-width: 768px) {
    .cta .container {
        padding: 8vw 1.25rem;
    }
}

.cta h3 {
    font-size: min(1.8vw, 1.3125rem);
    font-weight: bold;
    text-align: center;
    background-color: #fdee22;
    border-radius: 100px;
    border: 2px solid #ccc;
    width: 90%;
    margin: max(-5.7vw, -60px) auto min(1vw, 0.75rem) auto;
}

@media screen and (max-width: 768px) {
    .cta h3 {
        font-size: 3.7vw;
        margin: -12vw auto 2rem auto;
        width: 100%;
    }
}

.cta h3 span {
    color: #d81418;
}

.cta_content {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 2.5rem;
}

@media screen and (max-width: 768px) {
    .cta_content {
        flex-direction: column;
        row-gap: 1.5rem;
    }
}

.cta_tel {
    font-size: min(1.8vw, 1.3125rem);
    letter-spacing: 0.1em;
    line-height: 1;
    color: #606060;
}

@media screen and (max-width: 768px) {
    .cta_tel {
        font-size: 4.4vw;
    }
}

.cta_tel_num {
    font-size: min(2.5vw, 1.875rem);
    font-weight: bold;
    color: #d81418;
    display: flex;
    align-items: center;
    column-gap: 10px;
    margin-top: 0.625rem;
}

@media screen and (max-width: 768px) {
    .cta_tel_num {
        font-size: 8vw;
        margin-top: 0.5rem;
    }
}

.cta_tel_num img {
    width: min(4.8vw, 3.5625rem);
}

@media screen and (max-width: 768px) {
    .cta_tel_num img {
        width: 11vw;
    }
}

.cta_tel_num span {
    margin-top: -3%;
}

.cta_content a.cta_btn {
    width: min(28vw, 21rem);
}

@media screen and (max-width: 768px) {
    .cta_content a.cta_btn {
        width: 80%;
    }
}

.cta_lady {
    width: min(14.7vw, 10.875rem);
    position: absolute;
    bottom: max(-5vw, -60px);
    right: -2%;
}

@media screen and (max-width: 768px) {
    .cta_lady {
        width: 21vw;
        bottom: -12vw;
        right: -5vw;
    }
}

.achieve {
    padding: 3.75rem 1.25rem;
    background-color: #dee7f0;
}

@media screen and (max-width: 768px) {
    .achieve {
        padding: 2.5rem 0;
    }
}

.achieve .container {
    position: relative;
}

.achieve_list {
    position: relative;
}

.achieve_list h3 {
    font-size: min(2.67vw, 2rem);
    text-align: center;
    background-color: #2a5b9a;
    color: #fff;
    font-weight: bold;
    line-height: 2;
    margin-top: 3.75rem;
}

@media screen and (max-width: 768px) {
    .achieve_list h3 {
        font-size: 6vw;
        margin-top: 2.5rem;
    }
}

.achieve_human {
    position: absolute;
    bottom: 100%;
    left: 96.6%;
    transform: translateX(-50%);
    width: 13%;
}

@media screen and (max-width: 768px) {
    .achieve_human {
        width: 23vw;
        left: 92.4%;
    }
}

.achieve_list>ul>li {
    background-color: #fff;
    padding: 1.25rem 0.625rem;
    margin-bottom: 1rem;
}

.achieve_list>ul>li>h4 {
    width: 100%;
    font-size: min(2.2vw, 1.625rem);
    font-weight: bold;
    margin-bottom: 1.25rem;
    display: flex;
    justify-content: space-around;
    align-items: center;
    color: #fff;
    background-image: url("../img/kojo/achieve_list_ttl_bg.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    padding: 0.625rem 0;
}

@media screen and (max-width: 768px) {
    .achieve_list>ul>li>h4 {
        font-size: 5vw;
        margin-bottom: 1rem;
        padding: 0.5rem 0;
        background-size: cover;
        line-height: 1.2;
    }
}

.achieve_list_img {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 2%;
}

.achieve_list_img img {
    width: 48%;
}

.achieve_list_text h4 {
    font-size: min(1.8vw, 1.3125rem);
    border-left: 1.25rem solid #2a5b9a;
    padding-left: 1.25rem;
    margin: 1.25rem 0 1.25rem 1.25rem;
}

@media screen and (max-width: 768px) {
    .achieve_list_text h4 {
        font-size: 3.7vw;
        margin: 1rem 0 1rem 1rem;
        border-left: 0.8rem solid #2a5b9a;
        padding-left: 0.8rem;
    }
}

.achieve_list_text p {
    font-size: min(1.8vw, 1.3125rem);
    line-height: 1.5;
    margin-left: 1.25rem;
}

@media screen and (max-width: 768px) {
    .achieve_list_text p {
        font-size: 3.5vw;
        margin-left: 1rem;
    }
}

.step_upper {
    padding: 3.75rem 1.25rem;
    background-color: #b5cce3;
    position: relative;
}

@media screen and (max-width: 768px) {
    .step_upper {
        padding: 2.5rem 1.25rem;
    }
}

.step_upper::before {
    content: "";
    position: absolute;
    top: 99%;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 5.25rem solid transparent;
    border-right: 5.25rem solid transparent;
    border-top: 3.75rem solid #b5cce3;
}

.step_header {
    text-align: center;
    font-weight: bold;
    color: #2a5b9a;
}

.step_header h2 {
    font-size: min(3vw, 2.25rem);
    white-space: nowrap;
    text-align: center;
    font-weight: bold;
}

@media screen and (max-width: 768px) {
    .step_header h2 {
        font-size: 5.3vw;
    }
}

.step_header p {
    font-size: min(2.8vw, 2.0625rem);
    font-weight: bold;
}

.step_header p span {
    color: #d81418;
}

@media screen and (max-width: 768px) {
    .step_header p {
        font-size: 5vw;
    }
}

.step_upper_text {
    margin-top: 1.25rem;
    font-size: min(2.8vw, 2.0625rem);
    line-height: 1.5;
    text-align: center;
    color: #2b2c2c;
}

@media screen and (max-width: 768px) {
    .step_upper_text {
        font-size: 5vw;
        margin-top: 1rem;
    }
}

.step_upper_text span {
    color: #d81418;
}

.step_lower {
    padding: 7.5rem 1.25rem 3.75rem;
}

@media screen and (max-width: 768px) {
    .step_lower {
        padding: 5rem 0 3.75rem;
    }
}

.flyer {
    padding: 3.75rem 0;
    background-color: #b5cce3;
}

.flyer ul li:first-child {
    margin-bottom: 3.75rem;
}

.voice {
    padding: 3.75rem 0;
    background-color: #eff4f9;
    background-image: url("../img/kojo/voice_bg_top.svg"), url("../img/kojo/voice_bg_bottom.svg");
    background-repeat: no-repeat, no-repeat;
    background-position: top right, bottom left;
    background-size: contain, contain;
}

.voice_list {
    margin-top: 3.75rem;
}

.voice_list li {
    background-color: #fff;
    padding: 1.25rem 0.625rem;
    margin-bottom: 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 2%;
    box-shadow: 6px 6px 10px rgba(0, 0, 0, 0.3);
}

@media screen and (max-width: 768px) {
    .voice_list li {
        flex-direction: column;
        row-gap: 1rem;
        align-items: flex-start;
    }
}

.voice_list_img {
    width: 30%;
}

@media screen and (max-width: 768px) {
    .voice_list_img {
        width: 45%;
        margin: 0 auto;
    }
}

.voice_list_content {
    width: 68%;
    font-size: min(1.8vw, 1.3125rem);
    line-height: 1.5;
    color: #1a1a1a;
}

@media screen and (max-width: 768px) {
    .voice_list_content {
        width: 100%;
        font-size: 4vw;
    }
}

.voice_list_content p {
    font-size: min(1.8vw, 1.3125rem);
    line-height: 1.5;
    color: #1a1a1a;
}

@media screen and (max-width: 768px) {
    .voice_list_content p {
        font-size: 3.5vw;
    }
}

.voice_list_content p.text {
    padding-bottom: 1rem;
}

.voice_list_content p.place,
.voice_list_content p.company {
    font-weight: bold;
}

.faq {
    padding: 3.75rem 1.25rem;
    background-image: url("../img/kojo/faq_bg.png");
    background-repeat: no-repeat;
    background-position: top left;
    background-size: cover;
}

@media screen and (max-width: 768px) {
    .faq {
        padding: 2.5rem 0;
    }
}

.faq_list {
    margin-top: 3.75rem;
}

.faq_list>div {
    margin-bottom: 2.5rem;
    position: relative;
}

@media screen and (max-width: 768px) {
    .faq_list>div {
        margin-bottom: 1.5rem;
    }
}

.faq_list .icon {
    font-size: 36px;
    color: #2a5b9a;
    padding-right: 2.25rem;
    font-weight: bold;
}

@media screen and (max-width: 768px) {
    .faq_list .icon {
        font-size: 6vw;
        padding-right: 4vw;
    }

}

.faq_list dt {
    font-size: min(1.8vw, 1.3125rem);
    font-weight: bold;
    position: relative;
    padding: 1rem 1.25rem;
    box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #1a1a1a;
    cursor: pointer;
    background-color: #fff;
}

@media screen and (max-width: 768px) {
    .faq_list dt {
        font-size: 4vw;
        margin-bottom: 0.5rem;
        padding: 0.75rem 1rem;
    }
}

.faq_list dt p {
    display: flex;
    align-items: baseline;
}

@media screen and (max-width: 768px) {
    .faq_list dt p {
        width: calc(100% - 3.125rem);
    }
}

.faq_list dt button {
    width: 43px;
    height: 43px;
    border-radius: 50%;
    background-color: #2a5b9a;
    position: relative;
}

@media screen and (max-width: 768px) {
    .faq_list dt button {
        width: 8vw;
        height: 8vw;
    }
}

.faq_list dt button::before,
.faq_list dt button::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60%;
    height: 4px;
    background-color: #fff;
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease;
}

.faq_list dt button::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq_list dt.is-active button::before {
    transform: translate(-50%, -50%) rotate(180deg);
}

.faq_list dt.is-active button::after {
    display: none;
}

.faq_list dd {
    font-size: min(1.8vw, 1.3125rem);
    line-height: 1.5;
    padding: 1rem 1.25rem;
    color: #1a1a1a;
    background-color: #d0d9e5;
    display: none;
}

@media screen and (max-width: 768px) {
    .faq_list dd {
        font-size: 4vw;
    }
}

.faq_list>div:first-child dd {
    display: block;
}

.faq_list dd p {
    display: flex;
    align-items: baseline;
}

.contact {
    padding: 3.75rem 1.25rem;
}

@media screen and (max-width: 768px) {
    .contact {
        padding: 2.5rem 0;
    }
}

.contact_text {
    font-size: min(2.2vw, 1.625rem);
    text-align: center;
    margin: 2.5rem 0;
}

@media screen and (max-width: 768px) {
    .contact_text {
        font-size: 3.7vw;
        margin: 1.5rem 0;
    }
}

.contact_text span {
    color: #d81418;
}

.contact_form {
    position: relative;
}

.contact_form img {
    position: absolute;
    bottom: 100%;
    width: 15%;
}

.contact_form img.contact_form_img1 {
    left: 0;
}

.contact_form img.contact_form_img2 {
    right: 0;
}

.contact_form dl>div {
    display: flex;
}

@media screen and (max-width: 768px) {
    .contact_form dl>div {
        flex-direction: column;
        align-items: stretch;
    }
}

.contact_form dl>div dt {
    width: 30%;
    font-size: min(2vw, 1.5rem);
    font-weight: bold;
    padding: 1.25rem;
    background-color: #d9d9d9;
    line-height: 1;
}

@media screen and (max-width: 768px) {
    .contact_form dl>div dt {
        width: 100%;
        font-size: 4.5vw;
        padding: 0.5rem 1rem;
    }
}

.contact_form dl>div dt span {
    font-size: min(1vw, 0.75rem);
}

.contact_form dl>div dd {
    width: 70%;
    padding: 0.625rem 1.25rem;
    border: 1px solid #d9d9d9;
    line-height: 1.5;
    display: flex;
    align-items: center;
}

@media screen and (max-width: 768px) {
    .contact_form dl>div dd {
        width: 100%;
        font-size: 4vw;
    }
}

.contact_form dl>div dd>span {
    width: 100%;
}

.contact_form dl>div dd input,
.contact_form dl>div dd textarea,
.contact_form dl>div dd select {
    width: 100%;
    border: 2px solid #000;
    padding: 0.5rem;
    font-size: min(1.7vw, 1.25rem);
    background-color: #fff;
    border-radius: 0;
}

@media screen and (max-width: 768px) {

    .contact_form dl>div dd input,
    .contact_form dl>div dd textarea,
    .contact_form dl>div dd select {
        font-size: 4vw;
        border: 1px solid #000;
    }
}

.contact_form dl>div dd p {
    width: 100%;
}

.contact_form dl>div dd label {
    width: fit-content;
    justify-content: flex-start;
    display: flex;
    align-items: center;
    font-size: min(1.7vw, 1.25rem);
    white-space: nowrap;
}

@media screen and (max-width: 768px) {
    .contact_form dl>div dd label {
        font-size: 4vw;
    }
}

.wpcf7-form-control.wpcf7-radio {
    display: flex;
    align-items: center;
    column-gap: 0.625rem;
}

@media screen and (max-width: 768px) {
    .wpcf7-form-control.wpcf7-radio {
        flex-direction: column;
        align-items: flex-start;
        row-gap: 0.5rem;
    }
}

.contact_form .wpcf7-list-item {
    display: block;
    margin-left: 0;
    padding-left: 0;
}

.contact_form .wpcf7-list-item-label,
.contact_form .wpcf7-radio input[type="radio"] {
    margin: 0;
    padding: 0;
}

.contact_form .wpcf7-list-item-label::before,
.contact_form .wpcf7-list-item-label::after {
    display: none;
}

.contact_form input.wpcf7-submit {
    display: block;
    width: auto;
    background-color: #2a5b9a;
    color: #fff;
    font-size: min(1.7vw, 1.25rem);
    font-weight: bold;
    letter-spacing: 0.5em;
    padding: 0.75rem 2rem;
    cursor: pointer;
    border: none;
    margin: 1.25rem auto 0 auto;
    border-radius: 0.625rem;
}

@media screen and (max-width: 768px) {
    .contact_form input.wpcf7-submit {
        font-size: 4vw;
        width: 80%;
    }
}

.footer {
    background-image: url("../img/kojo/footer_bg.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    aspect-ratio: 444 / 246;
    max-height: 37.5rem;
    color: #fff;
}

@media screen and (max-width: 768px) {
    .footer {
        aspect-ratio: 1 / 1;
    }
}

.footer_logo {
    width: min(10vw, 7.5rem);
    margin-bottom: 1.25rem;
}

@media screen and (max-width: 768px) {
    .footer_logo {
        width: 20vw;
    }
}

.footer_textlogo {
    width: min(37vw, 27.75rem);
}

@media screen and (max-width: 768px) {
    .footer_textlogo {
        width: 80vw;
    }
}

.footer .container {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 1.25rem;
}

.footer address {
    font-size: min(2vw, 1.5rem);
    font-weight: bold;
}

@media screen and (max-width: 768px) {
    .footer address {
        font-size: 4vw;
        text-align: center;
    }
}

.footer address span.zipcode {
    padding-right: 1rem;
}

.footer_tel {
    font-size: min(3vw, 36px);
    font-weight: bold;
    color: #fff;
}

@media screen and (max-width: 768px) {
    .footer_tel {
        font-size: 7vw;
    }
}