body {
    font-family: "Noto Sans JP", sans-serif;
}

a {
    transition: 0.3s;
}

a:hover {
    filter: brightness(1.20);
    transition: 0.3s;
}

/* ヘッダー */

header {
    margin-bottom: 0 !important;
    background: #FDEDF2 !important;
}

/* 背景調整（他css上書き） */

.lp_bg01 {
    background: #fdedf2;
    padding: 60px 0;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
}

.lp_bg01 h3 {
    text-align: center;
}

@media screen and (max-width: 669px) {
    .lp_bg01 {
        padding: 40px 0;
    }
    .lp_bg01 h3 img {
        max-width: 85%;
    }
}

/* キービジュアル */

#kv {
    padding-top: 30px;
    margin-bottom: 40px;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    background: #FDEDF2;
    overflow: hidden;
}

.kv_inner {
    padding: 0 0 15px 0;
    text-align: center;
    margin-bottom: 20px;
}

.kv_bg {
    background: #fff;
    border-top-left-radius: 50%;
    border-top-right-radius: 50%;
    margin-left: -100px;
    margin-right: -100px;
    padding-left: 100px;
    padding-right: 100px;
    width: 110%;
    margin-top: 20px;
}

.kv_img {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 6px;
    margin-top: -42px;
}

.kv_img img {
    max-width: 420px;
}

.center {
    display: block;
    margin: 0 auto;
    transition: 0.3s;
}

.entry {
    max-width: 436px;
}

@media screen and (max-width: 669px) {
    .kv_bg {
        width: unset;
    }
    .kv_img img,
    .kv_inner h2 img,
    .balloon img {
        max-width: 85%;
    }
    .entry {
        max-width: 90%;
    }
    #kv {
        padding-top: 10px;
    }
}

/* 吹き出し見出し */

.balloon {
    position: relative;
    padding: 40px;
    background-color: #FFF5D9;
}

.balloon::before{
    content: '';
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    left: 0;
    right: 0;
    bottom: -15px;
    margin: 0 auto;
    border-top: 15px solid #FFF5D9;
    border-right: 15px solid transparent;
    border-left: 15px solid transparent;
}

@media screen and (max-width: 669px) {
    .balloon {
        padding: 20px;
    }
}

/* 選ばれる理由 */

.reason {
    display: grid;
    /* grid-template-columns: 1.4fr 2.2fr; */
    grid-template-rows: max-content max-content 1fr auto;
    grid-template-areas:
    "reason_title reason_img"
    "reason_txt reason_img"
    "reason_txt reason_img";
    max-width: 560px;
    margin: 60px auto;
}

.reason_title_area {
    grid-area: reason_title;
}

.reason_txt_area {
    grid-area: reason_txt;
}

.reason_img_area {
    grid-area: reason_img;
}

.reason h4 {
    max-width: 219px;
    width: 100%;
    margin-bottom: 20px;
}

.reason p {
    font-size: 1.2rem;
    line-height: 1.8;
    font-weight: 500;
}

.reason p + p {
    margin-top: 20px;
}

.reason p span {
    color: #db3b6e;
    font-weight: 600;
}

@media screen and (max-width: 669px) {
    .reason {
        width: 90%;
        margin: 30px auto;
        grid-template-areas:
        "reason_title reason_title"
        "reason_txt reason_img"
        "reason_txt reason_img";
        justify-items: center;
        align-items: center;
    }
    .reason h4 {
        text-align: center;
    }
    .reason h4 img {
        max-width: 85%;
    }
}

/* サポート */

.support {
    text-align: center;
    margin: 20px 0;
}

.support p {
    font-size: 1.6rem;
    line-height: 1.6;
    font-weight: 600;
    color: #333;
}

@media screen and (max-width: 669px) {
    .support p {
        font-size: 1.4rem;
    }
}

/* サポートの流れ */

.flow {
    position: relative;
    margin: 20px auto 0 auto;
    max-width: 560px;
    width: 100%;
    padding: 15px 18px;
    background:#db3b6e;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.flow_inner {
    position: relative;
    margin: 0 auto;
    max-width: 560px;
    width: 100%;
    background:#fff;
    border:1px solid #db3b6e;
    padding: 15px 20px 25px 20px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.flow_inner_step {
    display: flex;
    justify-content: space-between;
    max-width: 560px;
    width: 100%;
}

.flow_inner_step p {
    font-size: 1.2rem;
    line-height: 1.6;
    text-align: justify;
    margin-top: 10px;
}

.flow_inner_step div:nth-child(odd) {
    max-width: 156px;
    width: 100%;
}

.flow_inner_step div:nth-child(even) {
    max-width: 12px;
    width: 100%;
    align-self: center;
}

.flow_hr {
    margin: 20px 0;
    border-top: 1px solid #D4D4D4;
}

@media screen and (max-width: 669px) {
    .flow,
    .flow_inner {
        width: 90%;
    }
    .flow_inner_step h4 img,
    .flow_inner_step div:nth-child(even) img {
        max-width: 85%;
    }
    .flow_inner_step {
        column-gap: 10px;
    }
    .flow_inner_step p {
        font-size: 1.0rem;
    }
}

/* フッター */

#footer_area {
    padding-top: 60px;
    margin-bottom: 40px;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    background: #e14678;
    overflow: hidden;
}

.footer_inner {
    padding: 0;
    text-align: center;
    margin-bottom: 5px;
}

.footer_bg {
    background: #fff;
    border-top-left-radius: 50%;
    border-top-right-radius: 50%;
    margin-left: -100px;
    margin-right: -100px;
    padding-left: 100px;
    padding-right: 100px;
    width: 110%;
    margin-top: 20px;
}

.footer_img {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 30px 0 10px 0;
}

.footer_img img {
    max-width: 420px;
}

@media screen and (max-width: 669px) {
    .footer_bg {
        width: unset;
    }
    .footer_bg_img img,
    .footer_bg_inner img,
    .footer_bg_bg img,
    .footer_inner h2 img {
        max-width: 85%;
    }
    #footer_area {
        padding-top: 40px;
    }
}

/* 他css上書き */

@media screen and (min-width: 670px) {
    .newstep_logo_img {
        width: 16% !important;
    }
}

/* チャットフォーム埋め込み */
.form_box {
    margin: 50px auto;
    text-align: center;
    position: relative;
    width: 610px;
    padding: 15px 10px 30px;
    display: flex;
    justify-content: center;
    flex-flow: column;
    align-items: center;
    background: #fff;
    border: #000 1.2px solid;
    border-radius: 5px;
}

.form_label {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: -20px;
    background-image: url(/images/form_label_PC.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
}

.label_right {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    width: 400px;
    padding: 0 0 0 20px;
    font-size: 16px;
    font-weight: bold;
    color: #d64476;
}

h2.select_form_title {
    font-style: normal;
    font-weight: 500;
    font-size: 17px;
    color: #000;
    padding: 35px 0 25px;
}

.form_selection {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.form_link {
    display: block;
    font-size: 14px;
    font-weight: 400;
    width: 200px;
    color: #d64476;
    line-height: 1.4;
    text-align: center;
    background-color: #fff;
    border: 1.5px solid #d64476;
    border-radius: 30px;
    position: relative;
    padding-top: 12px;
    padding-bottom: 12px;
    margin: 5px;
    box-shadow: 0 1px 1px 1px #d64476;
    transition: 0.3s;
}

a.form_link span {
    color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.form_selection a:hover {
    background:#d64476;
    color: #fff;
    transition: 0.3s;
  }
  
  .form_selection a:hover span {
    color: #fff;
  }

@media screen and (max-width: 769px) {
    .form_box {
        width: 95%;
        padding: 5px 5px 15px;
    }

    .form_label {
        background-image: url(/images/form_label_SP.png);
        width: 90%;
    }

    .label_right {
        width: auto;
        padding: 0 0 0 10%;
    }

    .form_selection {
        width: 100%;
    }

    .form_link {
        width: 45%;
        font-size: 13px;
        padding: 10px 0;
        height: 40px;
    }
}

/* ご紹介求人例 */
.job_ex_area {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column;
    padding-bottom: 35px;
}

h3.job_ex_title {
    font-size: 17px;
    font-weight: 500;
    padding: 0 22px;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

h3.job_ex_title:before,
h3.job_ex_title:after {
    content: '';
    position: absolute;
    top: 50%;
    display: inline-block;
    width: 16px;
    height: 2px;
    background-color: #000;
}

h3.job_ex_title:before {
    left: 0;
}

h3.job_ex_title:after {
    right: 0;
}

.job_ex_ul {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}

.job_ex_li {
    padding: 0 8px;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media screen and (max-width: 769px) {
    .job_ex_area {
        padding: 0 3% 50px;
    }

    .job_ex_ul {
        display: grid;
        width: fit-content;
        column-gap: 2em;
        grid-template-columns: repeat(3, auto);
    }
}