@charset "UTF-8";


/* header
-------------------*/

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 25px;
    width: 100%;
    height: 75px;
    background-color: #fff;
    position: relative;
    z-index: 1;
}

/* .header-top {
    height: 75px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.8) 65%, rgba(255, 255, 255, 0)) 100%;
    position: absolute;
    top: 0;
} */

.h-logo {
    width: 150px;
    margin-top: 0;
}

.h-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    align-content: flex-start;
    justify-content: flex-end;
    gap: 35px 43px;
    width: 595px;
    margin-top: 34px;
}

.h-nav {
    width: 100%;
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.1em;
    line-height: 1;
}

.h-nav_list {
    display: flex;
    justify-content: space-between;
}

.drawer-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}


/* main-vis
-------------------*/
.vis {
    position: relative;
}

.main-vis {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.main-vis_img {
    text-align: center;
    position: relative;
    transform: scale(1.5);
}

.main-vis_img img {
    width: 500px;
}

.main-vis_catch {
    margin-top: 120px;
    text-align: center;
    position: relative;
}

.main-vis_catch img {
    width: 320px;
}

.main-vis_catch::before {
    content: "";
    width: calc(226px / 2);
    height: calc(285px / 2);
    background: url(/images/key/deco.png) no-repeat center / contain;
    position: absolute;
    top: -70px;
    left: calc(50% - 220px);
    z-index: -1;
}

/* sub-vis
-------------------*/

.sub-vis {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    width: 100%;
    height: 400px;
    padding: 0 20px;
    position: relative;
    overflow: hidden;
}

.sub-vis::after {
    content: "";
    width: 100vw;
    height: 200px;
    border-radius: 30px 0 0 30px;
    background: rgba(21, 103, 161, 0.23);
    position: absolute;
    left: calc(50% - 135px);
    top: 70px;
    z-index: -1;
}

.sub-vis_img {
    width: 335px;
    height: 200px;
    margin: 0 auto;
    position: relative;
}

.sub-vis_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
}

.sub-vis_title {
    position: relative;
}


.sub-vis_title::before {
    content: "";
    width: 140px;
    height: 342px;
    background: url(/images/key/deco.png) no-repeat center / contain;
    position: absolute;
    top: -175px;
    left: -60px;
    z-index: -1;
}

.sub-vis_title .txt {
    display: inline-block;
    min-width: 335px;
    height: 60px;
    border-radius: 10px 10px 0 0;
    background-color: #fff;
    border-bottom: 1px solid #1567a1;
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.16em;
    line-height: 60px;
    text-align: center;
}

.sub-vis_title .txt::first-letter {
    color: #1567a1;
}

/* top
-------------------*/

.top-btn {
    width: 40px;
    height: 40px;
    position: fixed;
    right: 20px;
    bottom: 50px;
    z-index: 5;
}

.worries {
    width: 100%;
    margin-top: 150px;
    padding-bottom: 70px;
    background-color: #e0eff4;
    position: relative;
}

.worries::before {
    content: "";
    width: 150px;
    height: 196px;
    background: url(/images/top/illust_01.png) no-repeat bottom center / contain;
    position: absolute;
    top: -196px;
    right: calc(50% - 200px);
    z-index: -1;
}

.worries_wrapper {
    position: relative;
}

.worries_title {
    width: 100%;
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.16em;
    line-height: 1.6;
    text-align: center;
    position: absolute;
    top: -75px;
    left: 50%;
    transform: translateX(-50%);
}

.worries_title .color {
    color: #1567a1;
}

.worries_img {
    width: 230px;
    margin: 0 auto 20px;
    padding-top: 30px;
    text-align: center;
    transform: translateX(10px);
}

.worries_item:not(:last-child) {
    margin-bottom: 15px;
}

.worries_item a {
    width: 100%;
    border: 4px solid #fff;
    border-radius: 30px;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.worries_item_btn {
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: "Zen Maru Gothic";
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    position: absolute;
    bottom: 10px;
    right: 10px;
}

.worries_item_btn::after {
    content: "";
    display: inline-block;
    width: 28px;
    height: 28px;
}

.worries_item:nth-child(1) .worries_item_btn {
    color: #d87990;
}

.worries_item:nth-child(2) .worries_item_btn {
    color: #3b8b34;
}

.worries_item:nth-child(3) .worries_item_btn {
    color: #d98d34;
}

.worries_item:nth-child(4) .worries_item_btn {
    color: #4397c3;
}

.worries_item:nth-child(1) .worries_item_btn::after {
    background: url(/images/top/worries_btn_01.png) no-repeat center / contain;
}

.worries_item:nth-child(2) .worries_item_btn::after {
    background: url(/images/top/worries_btn_02.png) no-repeat center / contain;
}

.worries_item:nth-child(3) .worries_item_btn::after {
    background: url(/images/top/worries_btn_03.png) no-repeat center / contain;
}

.worries_item:nth-child(4) .worries_item_btn::after {
    background: url(/images/top/worries_btn_04.png) no-repeat center / contain;
}

.worries_item_title {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 10px 20px;
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: calc(37 / 22);
    text-align: center;
}

.worries_item:nth-child(1) .worries_item_title {
    background-color: #f1dae0;
    color: #d87990;
    -webkit-text-stroke: 6px #fff;
    paint-order: stroke;
}

.worries_item:nth-child(2) .worries_item_title {
    background-color: #c9e5c6;
    color: #3b8b34;
    -webkit-text-stroke: 6px #fff;
    paint-order: stroke;
}

.worries_item:nth-child(3) .worries_item_title {
    background-color: #efd4b6;
    color: #d98d34;
    -webkit-text-stroke: 6px #fff;
    paint-order: stroke;
}

.worries_item:nth-child(4) .worries_item_title {
    background-color: #b7cfe1;
    color: #1567a1;
    -webkit-text-stroke: 6px #fff;
    paint-order: stroke;
}

.worries_txt {
    padding: 10px 30px 40px;
    line-height: 1.6;
}

.about_wrapper {
    position: relative;
}

.about_wrap {
    width: 100%;
    padding-top: 50px;
    position: relative;
}

.about_wrap::before {
    content: "";
    width: 138px;
    height: 110px;
    background: url(/images/top/illust_02.png) no-repeat bottom center / contain;
    position: absolute;
    top: -30px;
    left: 250px;
}

.about_title {
    margin-bottom: 45px;
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: 0.16em;
}

.about_title .blue {
    color: #1567a1;
}

.about_title .pink {
    color: #d87990;
}


.about_title .pattern {
    position: relative;
}

.about_title .pattern::before {
    content: "";
    display: inline-block;
    width: 100%;
    height: 30px;
    background: url(/images/feature/pattern.jpg) repeat center;
    position: absolute;
    top: 3px;
    left: -1px;
    z-index: -1;
}

.about_txt {
    margin-bottom: 30px;
}

.about_img {
    width: 100%;
    margin-top: 50px;
    position: relative;
}

.about_img img {
    width: 90%;
    border-radius: 0 200px 200px 0;
    transform: translateX(-20px);
}

.about_img::after {
    content: "";
    display: block;
    width: 80vw;
    min-width: 300px;
    height: 50.666vw;
    min-height: 190px;
    margin-top: -30px;
    margin-left: auto;
    background: url(/images/top/about_02.png) no-repeat center right / contain;
    position: relative;
    z-index: -1;
}

.area {
    background: linear-gradient(180deg, #e0eff4 0%, rgba(255, 255, 255, 0%) 70%, rgba(255, 255, 255, 0%) 100%);
    position: relative;
}

.area::before {
    content: "";
    width: 100%;
    height: 146px;
    background: url(/images/top/bg_pattern.png) repeat;
    position: absolute;
    top: 0;
}

.area_title {
    margin-bottom: 30px;
    text-align: center;
}

.area_title .txt {
    display: inline-block;
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.16em;
    position: relative;
}

.area_title .txt::before,
.area_title .txt::after {
    content: "";
    width: 18px;
    height: 38px;
    background: url(/images/top/title_deco.png) no-repeat center / contain;
    position: absolute;
}

.area_title .txt::before {
    left: -28px;
    bottom: -8px;
}

.area_title .txt::after {
    right: -28px;
    bottom: -8px;
    transform: scale(-1, 1);
}

.area_img {
    width: 300px;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
}

.area_txt {
    margin-bottom: 30px;
    text-align: left;
}

.area_txt .marker {
    position: relative;
    background: linear-gradient(transparent 20%, #fff7bf 30%);
}

/* .area_txt .marker::before {
    content: "";
    width: calc(100% - 10px);
    height: 11px;
    background-color: #fff7bf;
    position: absolute;
    left: 0;
    bottom: 4px;
    z-index: -1;
} */

.area_txt .bold {
    font-weight: 600;
}

.area_btn {
    margin: 0 auto;
}

.top-recruit {
    background: linear-gradient(150deg, #216cab 0%, #266cb1 21%, #3c79b5 54%, #5fb0d1 86%, #77bedb 100%);
    position: relative;
}

.top-recruit::after {
    content: "";
    width: 230px;
    height: 243px;
    background: url(/images/top/illust_03.png) no-repeat bottom / contain;
    position: absolute;
    right: -10px;
    bottom: 0;
}

.top-recruit_wrap {
    width: 100%;
}

.top-recruit_title {
    margin-bottom: 30px;
    font-family: "Zen Maru Gothic", sans-serif;
}

.top-recruit_title .txt {
    display: inline-block;
    padding: 10px 15px 10px 15px;
    border-radius: 10px;
    background-color: #fff;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.16em;
    line-height: 1;
    color: #004b8b;
}

.top-recruit_title .txt:not(:last-child) {
    margin-bottom: 5px;
}

.top-recruit_txt {
    margin-bottom: 30px;
    color: #fff;
}

.top-recruit_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 250px;
    height: 50px;
    margin: 0 auto;
    border-radius: 35px;
    border: 2px solid #fff;
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #fff;
    position: relative;
}

.top-recruit_btn::after {
    content: "";
    width: 13px;
    height: 14px;
    background: url(/images/common/arw.png) no-repeat center / contain;
    position: absolute;
    top: 50%;
    right: 18px;
    transform: translateY(-50%);
}

.top-recruit_img {
    width: 335px;
    margin: 30px auto 0;
    position: relative;
}

.top-recruit_img img {
    border-radius: 30px;
}

.top-news_wrapper {
    position: relative;
}

.top-news_title {
    margin-bottom: 30px;
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.16em;
}

.top-news_title::after {
    content: "";
    display: block;
    width: 52px;
    height: 6px;
    margin-top: 15px;
    margin-left: 5px;
    background: url(/images/top/top-news_title_deco.png) no-repeat left / contain;
}

.top-news_wrap {
    width: 100%;
}

.top-news_btn {
    margin-top: 30px;
    position: relative;
}

/* feature
-------------------*/

.feature_item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.feature_item:not(:last-child) {
    margin-bottom: 60px;
}

.feature_item_img {
    max-width: 540px;
    max-height: 360px;
    position: relative;
}

.feature_item_img::before {
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 30px;
    background: rgba(21, 103, 161, 0.2);
    position: absolute;
    left: -10px;
    bottom: -10px;
    z-index: -1;
}

.feature_item_img img {
    border-radius: 30px;
}

.feature_item_wrap {
    width: 100%;
    margin-top: 30px;
}

.feature_item_title {
    margin-bottom: 20px;
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.16em;
    line-height: 1.6;
    position: relative;
}

.feature_item_title::before {
    content: "";
    width: 110px;
    height: 233px;
    background: url(/images/feature/deco.png) no-repeat center / contain;
    position: absolute;
    top: -70px;
    right: 0px;
}

.feature_item_title::after {
    content: "";
    display: block;
    width: 99%;
    height: 3px;
    margin-top: 10px;
    background: url(/images/common/dot.png) repeat left / contain;
}

.feature_item_title .pattern {
    position: relative;
}

.feature_item_title .pattern::before {
    content: "";
    display: inline-block;
    width: 100%;
    height: 27px;
    background: url(/images/feature/pattern.jpg) repeat center;
    position: absolute;
    top: 4px;
    left: -1px;
    z-index: -1;
}


/* service
-------------------*/

.service_link_wrapper {
    margin-top: 50px;
}

.service_link_list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.service_link_item a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 335px;
    padding: 12px 40px;
    border-radius: 35px;
    background: linear-gradient(90deg, #2f8cbd, #7cc1dd);
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #fff;
    position: relative;
}

.service_link_item a::after {
    content: "";
    width: 12px;
    height: 12px;
    background: url(/images/service/arw.png) no-repeat center / contain;
    position: absolute;
    top: 50%;
    right: 25px;
    transform: translateY(-50%);
}

.service {
    width: 100%;
    margin: 200px auto 0;
    padding-top: 50px;
    position: relative;
}

.service::before {
    content: "";
    width: 120px;
    height: 120px;
    position: absolute;
}

.service:last-of-type {
    margin-bottom: 80px;
}

.service:nth-of-type(1) {
    margin-top: 200px;
    background: rgba(239, 212, 182, 0.4);
}

.service:nth-of-type(2) {
    background: rgba(241, 218, 224, 0.4);
}

.service:nth-of-type(3) {
    background: rgba(201, 229, 198, 0.4);
}

.service:nth-of-type(4) {
    background: rgba(224, 239, 244, 0.4);
}

.service:nth-of-type(odd)::before {
    top: -150px;
    right: 5px;
}

.service:nth-of-type(even)::before {
    top: -150px;
    left: 5px;
}

.service:nth-of-type(1)::before {
    background: url(/images/service/illust_01.png) no-repeat center / contain;
}

.service:nth-of-type(2)::before {
    background: url(/images/service/illust_02.png) no-repeat center / contain;
}

.service:nth-of-type(3)::before {
    background: url(/images/service/illust_03.png) no-repeat center / contain;
}

.service:nth-of-type(4)::before {
    background: url(/images/service/illust_04.png) no-repeat center / contain;
}

.service_wrapper {
    position: relative;
}

.service_title {
    display: block;
    width: 100%;
    margin-bottom: 30px;
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-align: center;
    position: absolute;
    top: -70px;
}

#service_04 .service_title {
    top: -90px;
}

.service_title .txt {
    display: inline-block;
    position: relative;
}

.service_title .txt::before,
.service_title .txt::after {
    content: "";
    width: 22px;
    height: 38px;
    background: url(/images/service/title_deco.png) no-repeat center / contain;
}

.service_title .txt::before {
    position: absolute;
    bottom: -5px;
    left: -30px;
}

.service_title .txt::after {
    position: absolute;
    bottom: -5px;
    right: -30px;
    transform: scale(-1, 1);
}

.service:nth-of-type(1) .service_title {
    color: #d98d34;
}

.service:nth-of-type(2) .service_title {
    color: #d87990;
}

.service:nth-of-type(3) .service_title {
    color: #3b8b34;
}

.service:nth-of-type(4) .service_title {
    color: #1567a1;
}

.service_wrap:not(:last-of-type) {
    margin-bottom: 50px;
}

.service_wrap_title {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 40px;
    margin-bottom: 30px;
    border-radius: 10px;
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.16em;
    color: #fff;
    position: relative;
}

.service_wrap_title::after {
    content: "";
    width: 26px;
    height: 11px;
    clip-path: polygon(0 0, 50% 100%, 100% 0);
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
}

.service:nth-of-type(1) .service_wrap_title {
    background-color: #d98d34;
}

.service:nth-of-type(2) .service_wrap_title {
    background-color: #d87990;
}

.service:nth-of-type(3) .service_wrap_title {
    background-color: #3b8b34;
}

.service:nth-of-type(4) .service_wrap_title {
    background-color: #1567a1;
}

.service:nth-of-type(1) .service_wrap_title::after {
    background-color: #d98d34;
}

.service:nth-of-type(2) .service_wrap_title::after {
    background-color: #d87990;
}

.service:nth-of-type(3) .service_wrap_title::after {
    background-color: #3b8b34;
}

.service:nth-of-type(4) .service_wrap_title::after {
    background-color: #1567a1;
}

.service_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 15px;
}

.service_item {
    width: 100%;
    padding-left: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid;
    font-size: 16px;
    line-height: 1.6;
    position: relative;
}

.service_item::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #1567a1;
    position: absolute;
    top: 10px;
    left: 0;
}

.service_flow {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.service_flow_item {
    width: calc(50% - 5px);
    padding: 20px;
    border-radius: 30px;
    background-color: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: calc(36 / 18);
    letter-spacing: 0.05em;
    line-height: 1.6;
    position: relative;
    counter-increment: number;
}

.service_flow_item::before {
    content: counter(number, decimal-leading-zero)".";
    display: block;
    margin-bottom: 10px;
    font-size: 20px;
    line-height: 1;
    color: #1567a1;
}

.service_flow_item:not(:nth-child(2n))::after {
    content: "";
    width: 15px;
    height: 20px;
    background-color: #1567a1;
    clip-path: polygon(0 0, 0 100%, 100% 50%);
    position: absolute;
    top: 50%;
    right: -14px;
    transform: translateY(-50%);
    z-index: 1;
}

.service_flow_item:last-child::after {
    content: none;
}

.service_flow_item .small {
    font-size: 12px;
    font-weight: 500;
}

.service_voice_item {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service_voice_item:not(:last-child) {
    margin-bottom: 30px;
}

.service_voice_wrap {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}

.service_voice_img {
    width: 80px;
    height: 80px;
}

.service_voice_img img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.service_voice_info {
    font-size: 14px;
    letter-spacing: 0.05em;
    white-space: nowrap;
    color: #513f25;
}

.service_voice_txt {
    width: 100%;
    min-height: 70px;
    padding: 20px;
    border-radius: 30px;
    background-color: #fff;
    font-size: 14px;
    letter-spacing: 0.05em;
    line-height: calc(30 / 16);
    color: #513f25;
    position: relative;
}

/* .service_voice_txt::before {
    content: "";
    width: 18px;
    height: 22px;
    background-color: #1567a1;
    clip-path: polygon(100% 0, 0 50%, 100% 100%);
    position: absolute;
    top: -18px;
    left: -18px;
    transform: rotate(90deg);
} */


/* recruit
-------------------*/
.merit_wrapper {
    position: relative;
}

.merit_wrapper::before {
    content: "";
    width: 150px;
    height: 129px;
    background: url(/images/recruit/illust_01.png) no-repeat center / contain;
    position: absolute;
    top: 0px;
    right: calc(50% - 200px);
}

.merit_item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.merit_item:not(:last-child) {
    margin-bottom: 30px;
}

.merit_item_num {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(120deg, #216cab 0%, #266cb1 20%, #77bedb 100%);
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: 14px;
    letter-spacing: 0em;
    line-height: 1;
    color: #fff;
}

.merit_item_num .large {
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 0.1em;
    transform: translateX(1px);
}

.merit_item_wrap {
    width: 100%;
    margin-top: 15px;
}

.merit_item_title {
    margin-bottom: 30px;
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1.8;
    position: relative;
}

.merit_item_title::after {
    content: "";
    display: block;
    width: 100%;
    height: 3px;
    margin-top: 10px;
    background: url(/images/common/dot.png) repeat left / contain;
    position: absolute;
}

.merit_item_txt {
    line-height: calc(36 / 17);
}

.business {
    background-color: #e0eff4;
    position: relative;
}

.business::after {
    content: "";
    width: 247px;
    height: 156px;
    background: url(/images/recruit/illust_02.png) no-repeat bottom center / contain;
    position: absolute;
    right: calc(50% - 640px);
    bottom: 0;
}

.business_title {
    margin-bottom: 80px;
}

.business_wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 70px;
}

.business_item {
    width: 100%;
    padding: 35px 20px 30px 20px;
    background-color: #fff;
    border-radius: 30px;
    position: relative;
}

.business_item_title {
    display: inline-block;
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: calc(42 / 26);
    text-align: center;
    white-space: nowrap;
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
}

.business_item_title::before,
.business_item_title::after {
    content: "";
    width: 20px;
    height: 38px;
    background: url(/images/recruit/title_deco.png) no-repeat center / contain;
    position: absolute;
}

.business_item_title::before {
    left: -30px;
    bottom: -5px;
}

.business_item_title::after {
    right: -30px;
    bottom: -5px;
    transform: scale(-1, 1);
}

.business_item_img {
    width: 130px;
    height: 130px;
    margin: 0 auto 20px;
}

.business_item_txt {
    line-height: calc(36 / 17);
}

.flow_list {
    max-width: 395px;
    margin: 0 auto;
    position: relative;
}

.flow_list::before {
    content: "";
    width: 5px;
    height: calc(100% - 60px);
    background-color: #1567a1;
    position: absolute;
    top: 30px;
    left: 10px;
}

.flow_item {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 30px;
}

.flow_item:not(:last-child) {
    margin-bottom: 40px;
}

.flow_item::before {
    content: "";
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #1567a1;
    position: absolute;
    left: 3px;
}

.flow_wrap {
    flex: 1;
}

.flow_icon {
    width: 60px;
    margin-right: 10px;
}

.flow_time {
    margin-bottom: 5px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1;
    color: #1567a1;
}

.flow_txt {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1.5;
}

.recruit {
    background: linear-gradient(180deg, #e0eff4 0%, rgba(255, 255, 255, 0) 100%);
}

.recruit_list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 50px;
}

.recruit_list_item a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 335px;
    padding: 13px 40px;
    border-radius: 35px;
    background: linear-gradient(120deg, #2f8cbd 0%, #2f8cbd 5%, #5aabcd 55%, #7cc1dd 100%);
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1.5;
    color: #fff;
    position: relative;
}

.recruit_list_item a::after {
    content: "";
    width: 12px;
    height: 12px;
    background: url(/images/recruit/arw.png) no-repeat center / contain;
    position: absolute;
    top: 50%;
    right: 25px;
    transform: translateY(-50%);
}

.recruit_item:not(:last-child) {
    margin-bottom: 60px;
}

.recruit_item_title {
    margin-bottom: 30px;
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.16em;
}

.recruit_item_title::after {
    content: "";
    display: block;
    width: 100%;
    height: 3px;
    margin-top: 10px;
    background: url(/images/common/dot.png) repeat left / contain;
}

.recruit_item td {
    background-color: #e0eff4;
}


/* info
-------------------*/

.greeting_wrap {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 40px;
}

.greeting_img {
    max-width: 410px;
    margin: 0 auto;
    position: relative;
}

.greeting_img::before {
    content: "";
    width: 100%;
    max-width: 400px;
    height: 100%;
    max-height: 360px;
    border-radius: 50px;
    background: rgba(21, 103, 161, 0.2);
    position: absolute;
    left: -10px;
    bottom: -10px;
    z-index: -1;
}

.greeting_img img {
    border-radius: 50px;
    border: 5px solid #e0eff4;
}

.greeting_txt {
    width: 100%;
}

.greeting_txt .name {
    display: block;
    margin-top: 30px;
    text-align: right;
}

.info {
    margin-bottom: 80px;
    background-color: #e0eff4;
}

.info_item:not(:last-child) {
    margin-bottom: 60px;
}

.info_item_title {
    margin-bottom: 30px;
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.16em;
}

.info_item_title::after {
    content: "";
    display: block;
    width: 100%;
    height: 3px;
    margin-top: 10px;
    background: url(/images/common/dot.png) repeat left / contain;
}

.info_map {
    width: 100%;
    height: 280px;
    margin-top: 30px;
}

.info_map iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* footer
-------------------*/
.footer {
    overflow: hidden;
}

.f-box {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 50px 20px;
    background-color: #e0eff4;
    position: relative;
}

.f-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.f-logo {
    width: 150px;
    margin-bottom: 30px;
}

.f-cmn-tel {
    margin-bottom: 20px;
}

.f-nav {
    font-size: 16px;
    letter-spacing: 0.1em;
    line-height: 1;
    color: #0d0d0d;
}

.f-nav_list {
    display: flex;
    flex-direction: column;
    align-content: flex-start;
    flex-wrap: wrap;
    gap: 32px 45px;
    width: 400px;
    height: 190px;
    padding: 15px 0;
}

.f-nav_link {
    position: relative;
}

.f-nav_link::before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 9px;
    margin-right: 10px;
    transform: translateY(-1px);
    background: url(/images/common/f-arw.png) no-repeat center / contain;
}

.f-bottom {
    width: 100%;
}

.f-bottom::after {
    content: "";
    display: block;
    width: 100%;
    height: 14px;
    background: linear-gradient(90deg, #2f8cbd, #7cc1dd);
}

.f-bottom_wrapper {
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
    gap: 20px;
    height: 100px;
    font-size: 10px;
    letter-spacing: 0.05em;
    line-height: 1;
}

.f-sub-nav_list {
    display: flex;
    gap: 35px;
}

.f-sub-nav_link {
    position: relative;
}

.f-sub-nav_item:not(:last-child) .f-sub-nav_link::after {
    content: "|";
    position: absolute;
    top: -1px;
    right: -20px;
}



/*# sourceMappingURL=style_sp.css.map */