@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');


/* 全体css */
html {
    margin-top: 0 !important;
    scroll-behavior: smooth;
    /* アンカーリンクをスムーススクロールに */
}

body {
    /* background-color: #dedede; */
    color: #252525;
    font-family: YakuHanJPs, "Montserrat", "Noto Sans JP", sans-serif;
    line-height: 1.25;
    letter-spacing: 0.07em;
}

hgroup {
    margin: 0;
}

/* .noto-sans-jp {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
} */
/* .montserrat {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
} */
a {
    cursor: pointer;
    transition: 0.3s;
}

a:hover {
    opacity: 0.5;
    cursor: pointer;
}

.inner_1200 {
    max-width: 1200px;
    margin: 0 auto;
}

section {
    padding-top: 165px;
    padding-bottom: 120px;
}

.section_border {
    border-bottom: solid 1px #C5C5C5;
}

.center {
    text-align: center;
}

.white {
    color: white !important;
}

.pc_br {
    /* PC用の改行 */
    /* SPでは非表示 */
    display: block;
}

.sp_br {
    /* SP用の改行 */
    /* PCでは非表示 */
    display: none;
}

.pc_only {
    /* PC用の要素 */
    /* SPでは非表示 */
    display: block;
}

.sp_only {
    /* SP用の要素 */
    /* PCでは非表示 */
    display: none;
}

details summary {
    cursor: pointer;
    list-style: none;
    /* Firefoxで黒丸が出るのを防止 */
}

li {
    list-style: none !important;
}


/* svg用のアニメーション */
@keyframes drawLine {
    0% {
        stroke-dashoffset: 2200;
    }

    100% {
        stroke-dashoffset: 0;
    }
}

.glow-circle {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #f8f8f8;
    position: relative;
    z-index: 1;
    /* 内側の点より後ろに */
}

/* 内側の青い点 */
.glow-circle::before {
    content: "";
    width: 8px;
    height: 8px;
    background-color: #12CA57;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

/* 外側の光（アニメーション） */
.glow-circle::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #E9FFF5;
    transform: translate(-50%, -50%);
    z-index: 0;
    /* 内側の点より後ろに */
    animation: pulse 2s ease-in-out infinite;
}

.glow-circle.big::before {
    content: "";
    width: 12px;
    height: 12px;
    background-color: #12CA57;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.glow-circle.big::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 29px;
    height: 29px;
    border-radius: 50%;
    background: #E9FFF5;
    transform: translate(-50%, -50%);
    z-index: 0;
    /* 内側の点より後ろに */
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 0 10px #E9F0FF, 0 0 30px #E9F0FF, 0 0 60px #E9F0FF;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.3);
        box-shadow: 0 0 20px #E9F0FF, 0 0 60px #E9F0FF, 0 0 100px #E9F0FF;
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 0 10px #E9F0FF, 0 0 30px #E9F0FF, 0 0 60px #E9F0FF;
    }
}

/* 下から */

/* 1) 初期状態：静止（不透明度0・Y方向に100px下げる） */
.fadeUp01,
.fadeUp02 {
    opacity: 0;
    transform: translateY(100px);
}

/* 2) .active が付いたらアニメーション開始 */
.fadeUp01.active {
    /* duration: 1.4s, delay: 0s */
    /* animation: fadeUpAnime 1.4s forwards; */
    animation: fadeUpAnime 1.2s ease-in-out forwards;
}

.fadeUp02.active {
    /* duration: 1.4s, delay: 0.2s （← 0.5sにしたければ 0.5s に変更）*/
    /* animation: fadeUpAnime 1.4s 0.15s forwards; */
    animation: fadeUpAnime 1.2s ease-in-out forwards;
}

/* 共通のキーフレーム */
@keyframes fadeUpAnime {
    from {
        opacity: 0;
        transform: translateY(100px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* 見出し全体 */
.headLine {
    overflow: hidden;
}

/* 文字を1文字ずつ包むspan */
.headLine .char {
    display: inline-block;
    opacity: 0;
    transform: translateY(40px) scaleY(0.8) scaleX(1.05);
    transform-origin: center bottom;
    transition:
        transform 0.6s cubic-bezier(0.22, 1.4, 0.36, 1),
        opacity 0.3s ease;
    will-change: transform, opacity;
}

/* 親にactiveが付いたら表示 */
.active .headLine .char {
    opacity: 1;
    transform: translateY(0) scaleY(1) scaleX(1);
}

/* header */
header {
    background-color: #fff;
    display: flex;
    justify-content: space-between;
    padding: 2rem;
    box-shadow: 0px 3px 6px rgba(233, 238, 246, 0.8);
}

body:has(.openbtn.active) {
    overflow: hidden;
    position: relative;
}

body:before {
    position: absolute;
    content: "";
    background: #000;
    width: 0%;
    height: 0%;
    top: 0;
    left: 0;
    z-index: 100;
    opacity: 0;
    transition: width 0s, height 0s, opacity 0.3s;
}

body:has(.openbtn.active):before {
    width: 100%;
    height: 100%;
    opacity: 0.6;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 1em;
}

.site-logo img {
    width: 173px;
}

.h_meta {
    font-size: clamp(0.5rem, 0.409rem + 0.45vw, 0.75rem);
    font-weight: 500;
    line-height: 1.5;
}

.header_right {
    display: flex;
    align-items: center;
    gap: 1.5em;
}

.header_navi {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 1.3em;
}

.top_under_wrapper {
    display: flex;
    flex-direction: column-reverse;
    gap: 14px;
}

.top_navi {
    color: #868686;
    font-size: 13px;
    font-weight: 500;
    display: flex;
    justify-content: flex-end;
    gap: 1.5em;
}

.under_navi {
    font-weight: 500;
    display: flex;
    gap: 1.5em;
    justify-content: flex-end;
}

.under_navi li:nth-child(4) a {
    display: flex;
    align-items: flex-end;
}

.h_btn_box {
    display: flex;
    gap: 0.45em;
}

.h_recruit_btn {
    background-color: #12CA57;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    min-width: 160px;
    min-height: 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3em;
    padding: 1.4em 1.5em;
    border-radius: 4px;
}

.h_contact_btn {
    background-color: #22222C;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    min-width: 160px;
    min-height: 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5em;
    padding: 1.4em 1.5em;
    border-radius: 4px;
}

.h_contact_btn .h_btn_box,
.h_recruit_btn .h_btn_box {
    background-color: #fff;
    width: 20px;
    height: 20px;
    border-radius: 4px;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
    margin-top: 0px;
}

.h_contact_btn .h_btn_box::before {
    width: 11px;
    height: 10px;
    content: "";
    background-image: url(../img/header/h_paper_airplane.svg);
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.h_recruit_btn .h_btn_box::before {
    width: 11px;
    height: 10px;
    content: "";
    background-image: url(../img/header/h_green_arrow.svg);
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.h_contact_btn:hover .h_btn_box,
.h_recruit_btn:hover .h_btn_box {
    background-color: transparent;
    border: solid 1px #fff;
}

.h_contact_btn:hover .h_btn_box::before {
    background-image: url(../img/header/h_paper_airplane_w.svg);
}

.h_recruit_btn:hover .h_btn_box::before {
    background-image: url(../img/header/h_white_arrow.svg);
}

.h_recruit_btn:hover .h_btn_box::before {
    /* 右へ抜け → 左にワープ（不可視） → 左から中央へ戻る */
    animation: arrow-sweep 0.55s ease-in-out 1 both;
    /* 無限ループにしたい場合は ↑ の 1 を infinite に */
}

/* FV */
.FV_section {
    background-color: #fff;
    position: relative;
    min-height: calc(14vw + 400px);
    padding-bottom: 60px;
}

.fv_left {
    width: 88%;
    position: absolute;
    top: 9%;
    left: 5%;
    z-index: 2;
}

.fv_left h1 picture {
    width: 57%;
    height: 100%;
    display: inline-block;
    position: relative;
}

.fv_left h1 picture:before {
    position: absolute;
    content: "";
    width: 23%;
    height: 46%;
    background: white;
    right: 47%;
    bottom: 0;
    transition: 1.3s cubic-bezier(0.89, -0.01, 0.26, 1);
    transition-delay: 0.3s;
}

.fv_left h1 img {
    width: 100%;
    height: auto;
}

.fv_left .active h1 picture:before {
    width: 0px;
}

/* .fv_left h1 {
    font-size: clamp(3.25rem, 2.872rem + 1.89vw, 5rem);
    font-weight: bold;
}
.fv_left h1 span {
    position: relative;
    color: #fff;
    z-index: 1;
    display: inline-block;
    margin: 0 0.1em;
}
.fv_left h1 span::before {
    content: "";
    position: absolute;
    left: -5px;
    right: -5px;
    top: 6px;
    bottom: -3px;
    background-color: #12CA57;
    z-index: -1;
} */

.fv_left .middle_txt {
    font-size: clamp(0.875rem, 0.848rem + 0.14vw, 1rem);
    line-height: 2.1;
    margin: 40px 0 20px;
}

.top_fv_cta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 20px;
    margin-bottom: 35px;
}

.top_fv_cta a {
    border-radius: 100px;
    padding: 20px 40px;
    padding-right: 60px;
    font-size: 16.5px;
    width: 330px;
    text-align: center;
    background: #12CA57;
    border: 1px solid #12CA57;
    color: #fff;
    position: relative;
    transition: 0.3s;
}

.top_fv_cta a:nth-child(2) {
    border-color: #FE7A02;
    background: #FE7A02;
}

.top_fv_cta a span {
    background: #fff;
    position: absolute;
    top: 10px;
    right: 10px;
    height: calc(100% - 20px);
    aspect-ratio: 1;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
    padding-left: 1px;
}

.top_fv_cta a:nth-child(2) span {
    border-color: #FE7A02;
    padding: 0;
}

.top_fv_cta a:nth-child(2):before {
    border-color: #FE7A02;
}

.top_fv_cta a span img {
    height: 40%;
    transition: 0.3s;
    filter: brightness(1) invert(0);
}

.top_fv_cta a:hover {
    background: #fff;
    color: #12CA57;
}

.top_fv_cta a:nth-child(2):hover {
    color: #FE7A02;
}

.top_fv_cta a:hover span {
    background: #12CA57;
}

.top_fv_cta a:nth-child(2):hover span {
    background: #FE7A02;
}

.top_fv_cta a:hover span img {
    filter: brightness(0) invert(1);
}


.fv_left .achieve_box img {
    width: 592px;
    max-width: 100%;
}

.fv_left .bottom_txt {
    color: #9D9D9D;
    font-size: clamp(0.438rem, 0.41rem + 0.14vw, 0.563rem);
    font-weight: 500;
    margin-top: 20px;
}

.fv_right_swiper {
    text-align: right;
    padding-right: 0.5rem;
}

.fv_right_swiper .swiper-wrapper {
    position: absolute;
    top: 3%;
    right: 1.8%;
    z-index: 1;
}

.FV_section .swiper-slide img {
    width: 50% !important;
    max-height: 600px;
    object-fit: cover;
    object-position: top right;
    border-radius: 0 0 30px 30px;
}

/* fv_under */
.fv_under {
    overflow: hidden;
    padding: 0;
    margin: 40px 0;
}

.slick-track {
    display: flex!important;
}

.slick-track:before,
.slick-track:after {
    content: none;
}

.slick-slide {
    height: auto!important;
    margin: 0 1vw;
}

.fv_under_loop img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #fff;
    border-radius: 5px;
}


.under_page {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px 5%;
    padding: 0 40px;
    min-height: initial;
}

.under_page figure {
    width: 55vw;
}

.under_page figure img {
    width: 100%;
}

.under_page .fv_txt {
    display: inline-block;
}

.under_page .fv_txt ul {
    margin-top: 20px;
}

.under_page .fv_txt ul li {
    position: relative;
    padding-left: 30px;
}

.under_page .fv_txt ul li+li {
    margin-top: 10px;
}

.under_page .fv_txt ul li:before {
    position: absolute;
    content: "";
    width: 23px;
    height: 20px;
    background: url(../img/fv_list.png)no-repeat center center / contain;
    top: 0;
    left: 0;
}


.under_page h2 {
    font-size: clamp(14px, 0.88rem + 0.28vw, 1.3rem);
    margin-bottom: 16px;
}

.under_page h1 {
    font-size: clamp(35px, 2.20rem + 0.73vw, 3.25rem);
    color: #0ED884;
    margin-bottom: 7px;
    font-weight: 600;
}



.under_tag {
    /* display: grid;
    grid-template-columns: repeat(3, 1fr); */
    display: flex;
    align-items: center;
    column-gap: 12px;
    row-gap: 14px;
}

.under_tag01 {
    display: flex;
    align-items: center;
    row-gap: 14px;
    width: 493px;
}

.under_tag02 {
    display: flex;
    flex-direction: column;
    row-gap: 14px;
}

.under_tag01 .flx,
.under_tag02 .flx {
    display: flex;
    column-gap: 12px;
    align-items: center;
    white-space: nowrap;
}

.under_tag a,
.under_tag01 a,
.under_tag02 a {
    background-color: #F8F8F8;
    /* width: fit-content; */
    font-size: clamp(0.813rem, 0.718rem + 0.47vw, 1.25rem);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 35px;
    padding: 7px 20px;
}

.fv_under_loop a {
    transform: translateY(0);
}

.fv_under_loop a:hover {
    animation: poyon 0.6s;
    transform: translateY(-8px);
    color: #12CA57;
    opacity: 1;
}

@keyframes poyon {
    0% {
        transform: translateY(0px);
    }

    30% {
        transform: translateY(-12px);
    }

    50% {
        transform: translateY(-3px);
    }

    75% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(-8px);
    }
}

/* Our_service サービスの特長 */
.our_service_section {
    background-color: #F8F8F8;
}

.our_service_section h2 {
    color: #12CA57;
    display: inline-block;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(3.125rem, 2.72rem + 2.03vw, 5rem);
    font-weight: 500;
}

.section_ttl h3 {
    font-size: clamp(1.125rem, 0.895rem + 1.19vw, 2.1875rem);
    font-weight: bold;
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 20px;
}


.section_ttl.t_other h3::before {
    content: "";
    width: 20px;
    height: 20px;
    border-radius: 50%;
    /* 円形 */
    border: 5px solid #fff;
    /* 外枠の太さと色 */
    background-color: transparent;
    /* 中は透明 */
    box-sizing: border-box;
    /* border込みでサイズ調整 */
    margin-bottom: -1.5px;
}

.section_ttl {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 20px;
    margin-bottom: 40px;
}

.section_ttl.side {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 15px;
}

.section_ttl.side.news {
    margin-bottom: 5px;
}

.section_ttl.side p {
    margin-bottom: 40px;
}

.section_ttl p {
    font-size: clamp(0.813rem, 0.799rem + 0.07vw, 0.875rem);
    line-height: 1.6;
}

.more_btn {
    background: #12CA57;
    border: 1px solid #12CA57;
    color: #fff;
    font-size: clamp(0.875rem, 0.848rem + 0.14vw, 1rem);
    font-weight: 400;
    width: 294px;
    height: 72px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 5%;
    padding: 0.9em 2em;
    border-radius: 100px;
}


.more_btn:hover {
    opacity: 1;
    animation: poyoyon 0.8s ease-out;
    background: #fff;
    color: #12CA57;
}

.more_btn.t_other {
    background-color: #fff;
    color: #12CA57;
}

.section_ttl.side .accordion {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 20px;
}

.section_ttl.side .accordion label {
    border: 1px solid;
    border-radius: 100px;
    padding: 0.9em 2em;
    padding-right: 3em;
    position: relative;
}

.section_ttl.side .accordion label span {
    position: absolute;
    background: #fff;
    width: 20px;
    height: 20px;
    border-radius: 20px;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    transition: 0.3s;
}

.section_ttl.side .accordion label span:before {
    position: absolute;
    content: "";
    width: 10px;
    height: 1px;
    background: #12CA57;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.section_ttl.side .accordion label span::after {
    position: absolute;
    content: "";
    height: 10px;
    width: 1px;
    background: #12CA57;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.section_ttl.side .accordion_check:checked~label span {
    transform: translateY(-50%) rotate(135deg);
}

.p_btn_box {
    border: 1px solid #fff;
    width: 20px;
    aspect-ratio: 1;
    border-radius: 50px;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
    transform: scale(1);
    right: 0;
}

.p_btn_box::before {
    width: 10px;
    height: 10px;
    content: "";
    background: #fff;
    mask: url(../img/news/green_arrow.svg)no-repeat center / contain;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    transition: 0.5s;
}

.p_btn_box.other::before {
    width: 11px;
    height: 11px;
    background: #fff;
}

.more_btn:hover .p_btn_box {
    animation: poyoyon-right 0.6s ease-out;
    right: -13px;
    transform: scale(1.2);
    border-color: #12CA57;
}

.more_btn:hover .p_btn_box:before {
    background-color: #12CA57;
}

@keyframes poyoyon-right {
    0% {
        right: 0;
    }

    30% {
        right: -20px;
    }

    50% {
        right: -10px;
    }

    70% {
        right: -16px;
    }

    100% {
        right: -13px;
    }
}

.our_service_box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.our_service_item {
    background-color: #fff;
    padding: 3.5rem 2rem 3.5rem;
    border-radius: 10px;
    box-shadow: 5px 5px 4px rgba(228, 232, 238, 1);
    position: relative;
}

.our_service_item .top {
    display: flex;
    justify-content: space-between;
}

.our_service_item .top p {
    color: #12CA57;
    font-size: clamp(3.125rem, 2.72rem + 2.03vw, 5rem);
    font-weight: 500;
    position: absolute;
    top: 27px;
    left: 40px;
    line-height: 1;
}

.our_service_item .under {
    margin-top: 80px;
}

.our_service_item .under h5 {
    font-size: clamp(1.25rem, 1.223rem + 0.14vw, 1.375rem);
    font-weight: bold;
    letter-spacing: 0;
    line-height: 1.5;
    margin-bottom: 23px;
}

.our_service_item .under p {
    font-size: clamp(0.813rem, 0.799rem + 0.07vw, 0.875rem);
    line-height: 1.7;
    letter-spacing: 0px;
}

.service_icon {
    width: 116px;
    height: 116px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: auto;
}

.service_icon img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

/* ベルト（1個目） */
.belt_image {
    position: relative;
    overflow: hidden;
    letter-spacing: 0.08em;
}

.belt_image img {
    width: 100%;
    height: auto;
}

.belt_loop_txt {
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(3rem, 2.027rem + 4.86vw, 7.5rem);
    font-weight: 500;
    position: absolute;
    bottom: -32px;
    left: 0;
    white-space: nowrap;
    mix-blend-mode: overlay;
    /* animation: loop 180s -90s linear infinite; */
}

.belt_under {
    width: 100%;
    background: linear-gradient(to right, #16CB38, #07E2BF);
    padding: 4.7rem 0 3.5rem;
    position: relative;
    overflow: hidden;
    /* はみ出る場合の対策 */
}

.belt_under::before {
    content: "";
    position: absolute;
    /* 親を基準に絶対配置 */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* 親と同じ高さ */
    background-image: url(../img/belt/bert_01_back.png);
    background-size: cover;
    /* 必要に応じて contain / repeat も可 */
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.8;
    z-index: 1;
    mix-blend-mode: color-burn;
    pointer-events: none;
}

.belt_under_ttl {
    color: #fff;
    font-size: clamp(1.438rem, 1.2rem + 1.01vw, 2.375rem);
    font-weight: bold;
    text-align: center;
}

.belt_under_ttl span {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(2.313rem, 2.002rem + 1.55vw, 3.75rem);
    font-weight: 500;
    margin: 0 0.1em;
}

@keyframes loop {
    0% {
        transform: translateX(100%);
    }

    to {
        transform: translateX(-100%);
    }
}

.belt_partner_box {
    /* width: fit-content; */
    margin: 3rem auto 0;
    display: flex;
    justify-content: center;
    gap: 19px;
}

.belt_partner_box .row1 {
    display: flex;
    gap: 15px;
}

.belt_partner_box .row2 {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.belt_partner_item {
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 0.5em;
    border-radius: 4px;
    width: 160px;
    height: 80px;
}

.belt_partner_item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ベルト（2個目） */
.belt02 {
    overflow: hidden;
}

.belt02 img {
    width: 100%;
    height: auto;
}

/* case_study_section */
.case_study_section {
    background-color: #F8F8F8;
}

.case_study_section h2 {
    color: #12CA57;
    display: inline-block;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(3.125rem, 2.72rem + 2.03vw, 5rem);
    font-weight: 500;
}

/* top_case_box */
/* case_カードセクション */
.top_case_box {
    display: flex;
    flex-wrap: wrap;
    gap: 35px 60px;
    margin-bottom: 100px;
}

.top_case_box>li {
    width: calc(100% / 3 - 40px);
}

.top_case_box.archive>li {
    width: calc(50% - 30px);
}

.top_case_box>li>a {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.top_case_box .t_case_thumbnail {
    background-color: #fff;
    width: 100%;
    height: 234px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.top_case_box>li>a img {
    width: 70%;
}

.top_case_box .top_info {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 5px 0;
    margin-top: 14px;
    margin-bottom: 19px;
}

.top_case_box .t_case_tag {
    font-size: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 5px 10px;
    align-items: center;
    width: 100%;
}

.top_case_box .t_case_tag+.t_case_tag {
    margin-top: 5px;
}

.top_case_box .t_c_tag {
    color: #A9A9A9;
    font-size: clamp(0.813rem, 0.799rem + 0.07vw, 0.875rem);
}

.top_case_box .t_case_data {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(0.813rem, 0.799rem + 0.07vw, 0.875rem);
    color: #A9A9A9;
    margin-left: auto;
}

.top_case_box .t_c_category {
    font-size: clamp(0.875rem, 0.848rem + 0.14vw, 1rem);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0.5em 1em;
    border: solid 1px #A9A9A9;
    border-radius: 3px;
}

.top_case_box .t_c_category::before {
    content: "";
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50vh;
    background-color: #12CA57;
}

.top_case_box .middle_info {
    font-size: clamp(1rem, 0.973rem + 0.14vw, 1.125rem);
    font-weight: 500;
    line-height: 1.6;
    padding-bottom: 30px;
    border-bottom: solid 1px #C5C5C5;
    flex: 1;
}

.top_case_box .bottom_info {
    font-size: clamp(0.813rem, 0.799rem + 0.07vw, 0.875rem);
    font-weight: 500;
    margin-top: 25px;
}

/* case_下のカテゴリー */
.top_case_category {
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 5px 5px 4px #E4E8EE;
    padding: 3rem;
}

.industry-category,
.issue-category {
    display: grid;
    grid-template-columns: 15% 80%;
    gap: 5%;
}

.issue-category {
    margin-top: 30px;
}

.industry-category .case_category_box li {
    border: solid 1px #A9A9A9;
    border-radius: 3px;
    position: relative;
    transition: 0.3s;
}

.industry-category .case_category_box li:hover {
    border-color: #12CA57;
    color: #12CA57;
}

.industry-category .case_category_box li button {
    padding: 0.5em 1.1em;
    padding-left: 1.5em;
}

.industry-category .case_category_box li.js-filter.is-active {
    background: #12CA57;
    color: #fff;
    border-color: #12CA57;
}

.industry-category .case_category_box li::before {
    position: absolute;
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50vh;
    background-color: #12CA57;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
}

.industry-category .case_category_box li.is-active::before {
    background-color: #fff;
}

.issue-category .case_category_box li {
    display: flex;
    align-items: center;
    gap: 7px;
}

.issue-category .case_category_box li.js-filter {
    background-color: transparent;
    color: #A9A9A9;
    padding: 0.3em 0.1em;
    transition: 0.3s;
}

.issue-category .case_category_box li.js-filter:hover {
    color: #12CA57;
}

.issue-category .case_category_box li.js-filter.is-active {
    background-color: transparent;
    color: #22222C;
}

.industry-category h5,
.issue-category h5 {
    font-size: clamp(1rem, 0.946rem + 0.27vw, 1.25rem);
    font-weight: 500;
    border-right: dotted 1px #C5C5C5;
    padding: 1.8rem 2rem;
}

.case_category_box {
    font-size: clamp(1rem, 0.986rem + 0.07vw, 1.063rem);
    display: flex;
    align-items: center;
    gap: 10px;
}

/* sale_tips_section */
.sale_tips_section {
    background-color: #fff;
    overflow: hidden;
}

.sale_tips_wrapper {
    display: flex;
    justify-content: flex-end;
    gap: 50px;
}

.t_sale_right {
    width: calc(100% - 364px);
    max-width: 65vw;
}

.sale_tips_section h2 {
    color: #12CA57;
    display: inline-block;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(3.125rem, 2.72rem + 2.03vw, 5rem);
    font-weight: 500;
}

.top_tips_box {
    /* width: 120%;
    display: grid;
    grid-template-columns: repeat(3,1fr); */
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
}

.t_tips_thumbnail {
    display: block;
    width: 100%;
    aspect-ratio: 1.4 / 1;
    border-radius: 5px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.t_tips_info {
    display: flex;
    margin-top: 15px;
    flex-direction: column;
    gap: 10px;
}

.t_tips_tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.t_tips_tag {
    font-size: clamp(0.75rem, 0.696rem + 0.27vw, 1rem);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0.5em 1em;
    border: solid 1px #A9A9A9;
    border-radius: 3px;
}

.t_tips_data {
    color: #A9A9A9;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(0.75rem, 0.723rem + 0.14vw, 0.875rem);
    margin-left: auto;
}

.t_tips_tag::before {
    content: "";
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50vh;
    background-color: #12CA57;
}

.t_tips_ttl {
    font-size: clamp(0.875rem, 0.821rem + 0.27vw, 1.125rem);
    font-weight: 500;
    margin-top: 20px;
    line-height: 1.55;
}

/* news_section */
.news_section {
    background-color: #fff;
    padding-bottom: 75px;
}

.news_section h2 {
    color: #12CA57;
    display: inline-block;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(3.125rem, 2.72rem + 2.03vw, 5rem);
    font-weight: 500;
}

.f_news_grid {
    display: grid;
    grid-template-columns: 30% 65%;
    gap: 5%;
    margin-bottom: 4em;
}

.f_news_box li {
    display: flex;
    align-items: center;
    border-bottom: solid 1px #C5C5C5;
}

.f_news_box li:last-child {
    border: none;
}

.f_news_box li a {
    display: inline-block;
    width: 100%;
    box-sizing: border-box;
    padding: 3rem 1rem;
    display: flex;
    align-items: center;
    gap: 2.2em;
}

.f_news_info {
    display: flex;
    align-items: center;
    gap: 2.2em;
}

.f_news_date {
    color: #A9A9A9;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(0.813rem, 0.799rem + 0.07vw, 0.875rem);
}

.f_news_detail {
    font-size: clamp(0.875rem, 0.861rem + 0.07vw, 0.938rem);
}

/* bottom_card */
/* 1.会社概要カード */
.bottom_card_box {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 7rem;
}

.bottom_card_box li {
    border: 1px solid transparent;
    width: calc(50% - 10px);
    box-sizing: border-box;
    transition: 0.3s;
    border-radius: 10px;
}

.bottom_card_box li a {
    width: 100%;
    display: inline-block;
    padding: 20px 0;
}

.bottom_card_box li:hover {
    background: #f8f8f8;
}

.bottom_card_box li:hover a {
    padding: 20px 30px;
}

.bottom_card_box li a:hover {
    opacity: 1;
}

.bottom_card_top {
    padding: 0 1em;
}

.bottom_card_top h3 {
    font-size: clamp(1.125rem, 1.098rem + 0.14vw, 1.25rem);
    font-weight: bold;
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 20px;
}

.bottom_card_flx {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 40px;
}

.bottom_card_flx p {
    font-size: clamp(0.813rem, 0.799rem + 0.07vw, 0.875rem);
    line-height: 1.5;
}

.bottom_card_thumbnail {
    width: 100%;
    height: 220px;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 12px;
    margin-top: 2rem;
}

.bottom_card_thumbnail.first {
    background: url(../img/bottom_card/about_us.jpg) no-repeat center / cover;
}

/* 2.代表メッセージカード */
.bottom_card_thumbnail.second {
    background: url(../img/bottom_card/ceo_message.jpg) no-repeat center / cover;
}

/* top_other_section */
.top_other_section {
    background: linear-gradient(to right, #16CB38, #07E2BF);
    color: #fff;
    position: relative;
    overflow: hidden;
    padding-bottom: 176px;
}

.top_other_section::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 69%;
    min-height: 100%;
    background-image: url(../img/t_recruit/t_recruit_back.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.8;
    z-index: 1;
    mix-blend-mode: color-burn;
    pointer-events: none;
}

/* アコーディオン制御用のcheckboxは非表示 */
.accordion_check {
    display: none;
}

/* 初期状態ではボタンを非表示 */
.accordion_wrap {
    display: none;
}

/* more_btnをクリックしてcheckboxがONになったら表示 */
.accordion_check:checked~.accordion_wrap {
    display: block;
}

.accordion_wrap a+a {
    margin-top: 10px;
}

/* クリックできる見た目にする */
.more_btn {
    cursor: pointer;
}

.other_top {
    display: grid;
    grid-template-columns: 55% 40%;
    gap: 5%;
}

.other_top h2 {
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(3.125rem, 2.72rem + 2.03vw, 5rem);
    font-weight: 500;
}

.other_top_right h4 {
    font-size: clamp(2rem, 1.811rem + 0.95vw, 2.875rem);
    font-weight: bold;
    line-height: 1.4;
}

.other_top_right p {
    font-size: clamp(0.875rem, 0.848rem + 0.14vw, 1rem);
    margin-top: 2.6rem;
    line-height: 2.05;
}

.top_other_image {
    width: 100%;
    height: 420px;
    border-radius: 10px;
    background-image: url(../img/t_other/other_image.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    margin-top: 4rem;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.15);
    position: relative;
}

.top_other_image::before {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    border-radius: 10px;
    background: linear-gradient(to bottom, rgba(23, 39, 76, 0) 0%, #17274C 100%);
    opacity: 0.5;
    mix-blend-mode: multiply;
}

.top_r_loop_tzt {
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(4.875rem, 3.807rem + 5.34vw, 9.813rem);
    font-weight: 500;
    position: absolute;
    bottom: 7.5%;
    left: 0;
    white-space: nowrap;
    mix-blend-mode: overlay;
    animation: loop 180s -90s linear infinite;
}

.top_other_line {
    width: 100%;
    position: absolute;
    bottom: -3%;
    left: 50%;
    transform: translateX(-50%);
}

.top_other_line svg {
    width: 101%;
    height: auto;
}

/* アニメーションが開始されるクラス */
.start-draw {
    animation: drawLine 1.5s forwards ease-in-out;
}

@keyframes drawLine {
    from {
        stroke-dashoffset: 2200;
    }

    to {
        stroke-dashoffset: 0;
    }
}


/* footer */
footer {
    background-color: #fff;
    padding: 3rem 2rem 5rem;
}

.footer_contact_wrapper {
    background: url(../img/footer/footer_contact_bg.jpg)no-repeat top center / cover;
    padding: 4rem;
    border-radius: 15px;
    max-width: 1500px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    color: #fff;
    overflow: hidden;
}

.footer_contact_ttl {
    /* 業界・規模問わず実績 */
    font-size: clamp(1.625rem, 1.301rem + 1.62vw, 3.125rem);
    text-align: center;
    font-weight: 600;
    margin-bottom: 1em;
    line-height: 1.25;
}

.footer_contact_box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 1300px;
    margin: 0 auto;
    gap: 40px 0;
}

.footer_contact_box li {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 2.5rem;
    border-right: solid 1px #fff;
}

@media screen and (max-width: 435px) {
    .footer_contact_box li {
        padding: 0 0.5rem;
    }
}

.footer_contact_box li:last-child {
    border: none !important;
}

.footer_contact_box li h5 {
    font-size: clamp(1.125rem, 1.071rem + 0.27vw, 1.375rem);
    font-weight: 500;
    text-align: center;
    line-height: 1.5;
    margin-bottom: 20px;
}

.footer_contact_box li h5 span {
    font-size: clamp(0.938rem, 0.897rem + 0.2vw, 1.125rem);
}

.f_download_btn {
    background-color: #12CA57;
    color: #fff;
    font-size: clamp(1.063rem, 0.995rem + 0.34vw, 1.375rem);
    font-weight: 500;
    /* min-width: 415px; */
    width: 100%;
    min-height: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding: 0.9em 25px;
    border-radius: 4px;
}

.f_data_btn_box {
    border: solid 1px #12CA57;
    background: #fff;
    width: 50px;
    height: 50px;
    border-radius: 4px;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

.f_con_btn_box {
    border: solid 1px #22222c;
    background: #fff;
    width: 50px;
    height: 50px;
    border-radius: 4px;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

.f_data_btn_box::before {
    width: 22px;
    height: 31px;
    content: "";
    background-image: url(../img/footer/download.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.f_con_btn_box::before {
    width: 22px;
    height: 20px;
    content: "";
    background-image: url(../img/footer/blue_airport.svg);
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.f_download_btn:hover {
    background: #fff;
    color: #12CA57;
}

.f_download_btn:hover .f_data_btn_box {
    background-color: #12CA57;
}

.f_contact_btn:hover .f_con_btn_box {
    background-color: #22222c;
    border-color: #fff;
}

.f_download_btn:hover .f_data_btn_box::before {
    background-image: url(../img/footer/download_w.svg);
}

.f_contact_btn:hover .f_con_btn_box::before {
    background-image: url(../img/footer/white_airport.svg);
}


.f_btn_box.white {
    background-color: #fff;
    border: solid 1px #fff;
}

.f_btn_box.white_border {
    border: solid 1px #fff;
}

.p_btn_box.blue_border {
    border: solid 1px #12CA57;
}

.p_btn_box.f_news {
    margin-left: auto;
}

/* news_btn */
.news_more_btn {
    margin-left: auto;
    margin-top: auto;
}

.news_btn_box {
    /* 少し小さい囲み用 */
    border: solid 1px #12CA57;
    width: 20px;
    height: 20px;
    border-radius: 4px;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
    margin-left: auto;
    display: inline-flex;
    /* ← 重要：inline のままだと幅高が効かない */
    justify-content: center;
    align-items: center;
}

.news_btn_box::before {
    width: 10px;
    height: 10px;
    content: "";
    background-image: url(../img/news/green_arrow.svg);
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

a:hover .news_more_btn .news_btn_box {
    background-color: #12CA57;
}

/* 変更点：ホバー時（とキーボードフォーカス時）だけ再生 */
a:hover .news_more_btn .news_btn_box::before,
a:focus-visible .news_more_btn .news_btn_box::before {
    /* 右へ抜け → 左にワープ（不可視） → 左から中央へ戻る */
    background-image: url(../img/news/white_arrow.svg);
    animation: arrow-sweep 0.55s ease-in-out 1 both;
    /* 無限ループにしたい場合は ↑ の 1 を infinite に */
}

/* 採用情報ボタン */
.rec_btn_box {
    /* 少し小さい囲み用 */
    border: solid 1px #12CA57;
    width: 20px;
    height: 20px;
    border-radius: 4px;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
    margin-left: auto;
    display: inline-flex;
    /* ← 重要：inline のままだと幅高が効かない */
    justify-content: center;
    align-items: center;
}

.rec_btn_box::before {
    width: 10px;
    height: 10px;
    content: "";
    background-image: url(../img/news/green_arrow.svg);
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.more_btn.t_other:hover .rec_btn_box {
    background-color: #12CA57;
}

.more_btn.t_other:hover .rec_btn_box::before,
.more_btn.t_other:focus-visible .rec_btn_box::before {
    /* 右へ抜け → 左にワープ（不可視） → 左から中央へ戻る */
    background-image: url(../img/news/white_arrow.svg);
    animation: arrow-sweep 0.55s ease-in-out 1 both;
    /* 無限ループにしたい場合は ↑ の 1 を infinite に */
}

/* フッターボタン */
.f_contact_btn {
    background-color: #22222c;
    color: #fff;
    font-size: 22px;
    font-weight: 500;
    /* min-width: 415px; */
    width: 100%;
    min-height: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding: 0.9em 25px;
    border-radius: 4px;
}

.f_tell_btn {
    display: flex;
    gap: 2px;
    align-items: center;
}

.f_tell_btn img {
    width: 100%;
    max-width: 400px;
    height: auto;
    filter: brightness(200);
}

.f_tell_btn span {
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: clamp(2.313rem, 2.177rem + 0.68vw, 2.938rem);
    position: relative;
    /* ::before の位置基準に必要 */
}

.f_tell_btn span::before {
    content: "";
    position: absolute;
    left: 3px;
    bottom: 4.5px;
    width: 98%;
    height: 1px;
    background-color: #fff;
}

/* キーフレーム：translateのX成分を操作。Yは常に-50%で中央揃え */
@keyframes arrow-sweep {

    /* 中央から開始（可視） */
    0% {
        transform: translate(-50%, -50%);
        opacity: 1;
    }

    /* 右へ抜けていく（箱の外へ）。少しフェードアウト */
    45% {
        transform: translate(150%, -50%);
        /* 右の外まで */
        opacity: 0;
    }

    /* ここで左側のさらに外へ“ワープ”。不可視のまま */
    55% {
        transform: translate(-250%, -50%);
        /* 左の外へ一気に移す */
        opacity: 0;
    }

    /* 左から中央へ戻ってくる（可視） */
    100% {
        transform: translate(-50%, -50%);
        opacity: 1;
    }
}

/* キーフレーム：translateのX成分を操作。Yは常に-50%で中央揃え */
@keyframes arrow-sweep-left {

    /* 中央から開始（可視） */
    0% {
        transform: translate(-50%, -50%);
        opacity: 1;
    }

    /* 左へ抜けていく（箱の外へ）。少しフェードアウト */
    45% {
        transform: translate(-250%, -50%);
        /* 左の外まで */
        opacity: 0;
    }

    /* ここで右側のさらに外へ“ワープ”。不可視のまま */
    55% {
        transform: translate(150%, -50%);
        /* 右の外へ一気に移す */
        opacity: 0;
    }

    /* 右から中央へ戻ってくる（可視） */
    100% {
        transform: translate(-50%, -50%);
        opacity: 1;
    }
}

/* footer_middle */
.footer_middle_wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 50px;
    margin: 3.5em 0 6.4em;
}

.footer_logo img {
    width: 283px;
}

.footer_middle_right {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 56px;
}

.footer_middle_right li a:hover {
    opacity: 1;
    color: #12CA57;
}

/* footer_bottom */
.footer_bottom_wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.footer_bottom_ttl {
    font-size: clamp(3.25rem, 3.061rem + 0.95vw, 4.125rem);
    font-weight: bold;
}

.footer_bottom_ttl img {
    width: 683px;
    max-width: 100%;
}

.footer_bottom_ttl span {
    position: relative;
    color: #fff;
    z-index: 1;
    display: inline-block;
    /* 安定して重なり順を制御 */
    margin: 0 0.1em;
}

.footer_bottom_ttl span::before {
    content: "";
    position: absolute;
    left: -5px;
    right: -5px;
    top: 6px;
    bottom: -3px;
    background-color: #12CA57;
    z-index: -1;
    /* 文字の後ろに表示 */
}

.page_top_btn {
    width: 8rem;
    min-height: 8rem;
    border-radius: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #12CA57;
}

.page_top_btn:hover {
    opacity: 1;
    transform: translateY(-8px);
    animation: poyon 0.6s;
}

.footer_bottom_right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2.8em;
}

.footer_middle_right .first {
    display: flex;
    flex-direction: column;
    gap: 7.5%;
    font-size: clamp(1rem, 0.973rem + 0.14vw, 1.125rem);
    font-weight: 500;
}

.footer_middle_right .second,
.footer_middle_right .third {
    color: #606060;
    display: flex;
    flex-direction: column;
    gap: 14px 0;
    font-size: clamp(0.813rem, 0.799rem + 0.07vw, 0.875rem);
}

.footer_middle_right .third {
    margin-top: 18px;
}

.footer_middle_right .four {
    display: flex;
    flex-direction: column;
    gap: 4.4%;
    font-size: clamp(0.75rem, 0.723rem + 0.14vw, 0.875rem);
}

.footer_middle_right .four a {
    color: #868686;
}

.footer_middle_right .second li:first-child,
.footer_middle_right .third li:first-child {
    color: #252525;
    font-size: clamp(1rem, 0.973rem + 0.14vw, 1.125rem);
    font-weight: 500;
}

.footer_middle_right_sp {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 56px;
}

.footer_logo {
    display: block;
    margin-bottom: 3em;
}

.footer_left_link {
    font-size: 13px;
    font-weight: 300;
    color: #606060;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 35px;
}

.f_company_name {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px;
}

.f_company_address span,
.f_company_map,
.f_company_tell {
    font-family: "Montserrat", sans-serif;
}

.f_company_address p:nth-child(1) {
    margin-bottom: 0.6em;
}

.f_company_map a {
    display: flex;
    gap: 1%;
}

.f_map_txt {
    border-bottom: solid 1px #606060;
}

small {
    font-family: "Montserrat", sans-serif;
    font-size: 10px;
}

/* swiperのスタイル修正用のcss */

.sale_tips_section .swiper-container {
    position: relative;
    overflow: hidden;
}

.sale_tips_section .swiper-slide {
    width: 40% !important;
}

.sale_tips_section .swiper-slide img {
    width: fit-content !important;
}

.sale_tips_section .swiper_btn_box {
    display: flex;
    gap: 10px;
    margin-top: 50px;
}

.t_blog_right:has(.top_tips_box .swiper-slide:first-child:last-child) .swiper_btn_box {
    display: none;
}

.sale_tips_section .swiper-button-prev,
.swiper-button-next {
    position: static;
}

.sale_tips_section .swiper-button-prev {
    color: #A9A9A9;
    background-color: #fff;
    border: solid 1px #A9A9A9;
}

.sale_tips_section .swiper-button-next {
    color: #fff;
    background-color: #12CA57;
}

.sale_tips_section .swiper-button-prev:after {
    content: "";
    display: block;
    width: 7px;
    height: 16.7px;
    background-image: url(../img/t_tips/prev_btn.svg);
}

.sale_tips_section .swiper-button-next:after {
    content: "";
    display: block;
    width: 7px;
    height: 16.7px;
    background-image: url(../img/t_tips/next_btn.svg);
}

@media screen and (max-width: 1350px) {

    /* --------------footer-------------- */
    .footer_contact_box {
        grid-template-columns: repeat(1, 1fr);
    }

    .footer_contact_box li {
        border-right: none !important;
    }

    .f_download_btn,
    .f_contact_btn {
        width: auto;
        min-width: 415px !important;
    }
}

@media screen and (max-width: 1450px) {

    /* --------------全体用CSS-----------  */
    .inner_1200 {
        padding: 20px;
    }

    /* --------------ハンバーガー用----------- */
    .header_navi {
        display: block;
        flex-direction: column-reverse;
    }

    .top_under_wrapper {
        flex-direction: column;
        gap: 40px;
    }

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

    .under_navi {
        font-size: 18px;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .h_btn_box {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.42em;
        margin-top: 40px;
    }

    .h_recruit_btn {
        /* width: 62.5%; */
        width: 240px;
    }

    .h_contact_btn {
        /* width: 62.5%; */
        width: 240px;
    }
}

@media screen and (max-width: 840px) {

    /* --------------タブレット用----------- */
    /* --------------全体用----------- */
    section {
        padding: 60px 0;
    }

    /* --------------fv----------- */
    .FV_section {
        padding-top: 26px;
        padding-left: 20px;
        padding-right: 20px;
        padding-bottom: 40px;
    }

    .fv_right_swiper {
        text-align: center;
        padding-right: 0rem;
    }

    .fv_right_swiper .swiper-wrapper {
        position: static;
    }

    .FV_section .swiper-slide img {
        width: 100% !important;
    }

    .fv_left {
        position: static;
    }

    .fv_right img {
        width: 100%;
        height: auto;
        padding-bottom: 18px;
    }

    .fv_left {
        width: auto;
    }

    .fv_left h1 {
        margin-top: 35px;
    }

    .fv_left h1 picture {
        width: 100%;
    }

    .fv_left h1 picture:before {
        bottom: 32%;
        right: 23%;
        height: 31%;
        width: 32%;
    }

    .fv_left .active h1 picture:before {
        width: 0%;
    }

    .fv_left .bottom_txt {
        text-align: center;
    }

    .achieve_box {
        text-align: center;
        margin-top: 32px;
    }

    .fv_left .fv_cta {
        gap: 20px;
        order: 1;
        margin: 10px 0 0;
    }

    .fv_left .fv_cta a {
        width: calc(50% - 10px);
    }

    /* ---------------下層ページFV-------------- */

    .under_page {
        flex-wrap: wrap;
    }

    .under_page figure {
        width: 100%;
        order: -1;
    }

    .under_page .fv_txt {
        margin: 0 auto;
    }


    /* --------------our_service-------------- */
    .our_service_box {
        grid-template-columns: repeat(2, 1fr);
    }

    /* --------------belt01-------------- */
    .belt_partner_box {
        display: flex;
        flex-direction: column;
        row-gap: 15px;
    }

    .belt_partner_box .row1 {
        display: flex;
        gap: 15px;
        justify-content: center;
    }

    .belt_loop_txt {
        bottom: -14px;
    }

    /* --------------case_study-------------- */
    .top_case_box li {
        width: calc(50% - 30px);
    }

    .industry-category,
    .issue-category {
        grid-template-columns: 100%;
    }

    .industry-category h5,
    .issue-category h5 {
        border-right: none !important;
        border-bottom: dotted 1px #C5C5C5;
        padding: 1.8rem 0rem 1rem;
    }

    .case_category_box {
        flex-wrap: wrap;
        padding-top: 0.8rem;
    }

    /* --------------f_news-------------- */
    .f_news_grid {
        grid-template-columns: 100%;
    }

    /* --------------sale_tips----------- */
    .sale_tips_section {
        padding-left: 20px;
        padding-right: 20px;
    }

    .sale_tips_wrapper {
        /* スマホではフレックス解除 */
        display: block;
    }

    .sale_tips_wrapper p {
        margin-bottom: 0;
    }

    .t_sale_left {
        padding-left: 0;
    }

    .t_sale_right {
        width: 100%;
        max-width: initial;
    }

    /* --------------belt01-------------- */
    /* --------------recruit-------------- */
    .top_r_loop_tzt {
        bottom: 11.5%;
    }

    /* --------------footer-------------- */
    .footer_contact_box {
        grid-template-columns: repeat(1, 1fr);
    }

    .footer_contact_box li {
        border-right: none !important;
    }
}

@media screen and (max-width: 768px) {

    /* 一般的なスマホ用 */
    /* --------------全体用----------- */
    .inner_1200 {
        padding: 0 20px;
    }

    section {
        padding: 60px 0;
    }

    .section_ttl {
        flex-direction: column;
        gap: 34px;
        align-items: flex-start;
    }

    .pc_br {
        /* PC用の改行 */
        /* SPでは非表示 */
        display: none;
    }

    .sp_br {
        /* SP用の改行 */
        /* SPで表示 */
        display: block;
    }

    .pc_only {
        /* PC用の改行 */
        /* PCでは非表示 */
        display: none;
    }

    .sp_only {
        /* SP用の要素 */
        /* SPで表示 */
        display: block;
    }

    .section_ttl.side .accordion {
        margin-top: 0px;
    }

    /* --------------ヘッダー用-------------- */
    header {
        padding: 15px 12px;
    }

    .site-logo {
        gap: 0 10px;
    }

    .site-logo img {
        width: 120px;
    }

    /* --------------fv----------- */

    .fv_left .fv_about {
        display: flex;
        flex-direction: column;
    }

    .fv_left .middle_txt {
        line-height: 2;
        margin: 23px 0 0;
        order: 1;
    }

    .fv_left .middle_txt br {
        display: none;
    }

    /* --------------our_service----------- */
    .our_service_box {
        grid-template-columns: repeat(1, 1fr);
    }

    .our_service_item {
        padding: 40px 30px;
    }

    .our_service_item .top p {
        font-size: 40px;
        position: static;
    }

    .service_icon {
        position: absolute;
        top: 30px;
        right: 30px;
        width: 85px;
    }

    .our_service_item .under {
        margin-top: 12px;
    }

    .our_service_item .under p {
        letter-spacing: 1px;
    }

    /* --------------belt01----------- */
    .belt_under .belt_under_ttl {
        padding-left: 20px;
        padding-right: 20px;
    }

    .belt_partner_box {
        display: flex;
        flex-direction: column;
        row-gap: 15px;
    }

    .belt_partner_item {
        width: calc(100% / 3 - 10px);
        height: 51px;
    }

    .belt_loop_txt {
        bottom: -14px;
    }

    /* --------------case_study-------------- */
    .top_case_category {
        padding: 3rem 2rem;
    }

    /* --------------case_study----------- */
    .top_case_box li {
        width: 100%;
    }

    .top_case_box.archive li {
        width: 100%;
    }

    .industry-category,
    .issue-category {
        grid-template-columns: 100%;
    }

    .industry-category h5,
    .issue-category h5 {
        border-right: none !important;
        border-bottom: dotted 1px #C5C5C5;
        padding: 1.8rem 0rem 1rem;
    }

    .case_category_box {
        flex-wrap: wrap;
        padding-top: 0.8rem;
    }

    /* --------------other----------- */
    .top_other_section {
        padding-bottom: 58px;
    }

    .top_other_image {
        height: 248px;
    }

    .other_top {
        grid-template-columns: 100%;
        gap: 3%;
    }

    .top_r_loop_tzt {
        bottom: 2%;
    }

    .top_other_line {
        bottom: -1%;
    }

    .top_other_line svg {
        width: 100%;
        height: auto;
    }

    /* --------------news----------- */
    .f_news_grid {
        grid-template-columns: 100%;
    }

    .f_news_info {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .f_news_box li {
        padding: 2.6rem 0rem;
    }

    /* --------------bottom_card----------- */
    .bottom_card_box li {
        width: 100%;
    }

    .bottom_card_top {
        padding: 0;
    }

    /* --------------footer----------- */
    footer {
        padding: 3rem 20px 2rem;
    }

    .footer_contact_ttl {
        font-size: 19px;
        font-feature-settings: "halt";
        line-height: 1.42;
    }

    .footer_contact_ttl span {
        font-size: 29px;
        display: inline-block;
        margin-top: 5px;
    }

    .footer_contact_wrapper {
        background-image: url(../img/footer/footer_contact_bg_sp.jpg);
        padding: 3.5rem 15px 2rem;
    }

    .footer_contact_box {
        grid-template-columns: repeat(1, 1fr);
    }

    .footer_contact_box li {
        border-right: none !important;
    }

    .f_download_btn,
    .f_contact_btn {
        min-width: 0 !important;
        width: 100%;
        max-width: 400px;
        padding: 0.9em 20px;
    }

    /* footer_middle */
    .footer_sp.inner_1200 {
        padding-left: 0px;
        padding-right: 0px;
    }

    .footer_middle_wrapper {
        grid-template-columns: 100%;
        gap: 0px 65px;
        margin-bottom: 0;
        padding-bottom: 84px;
        border-bottom: 1px solid #C5C5C5;
    }

    .footer_middle_right {
        display: flex;
        justify-content: space-between;
        width: 100%;
        gap: 0;
    }

    .footer_middle_right .first {
        gap: 30px;
    }

    .footer_middle_right .second,
    .footer_middle_right .third {
        gap: 20px;
    }

    .footer_middle_right .four {
        gap: 20px;
    }

    .footer_middle_right_sp {
        flex-direction: column;
        gap: 35px;
    }

    /* footer_bottom */
    .footer_bottom_wrapper {
        flex-direction: column;
        align-items: flex-start;
        padding-top: 30px;
    }

    .footer_bottom_ttl {
        padding-bottom: 56px;
    }

    .footer_bottom_right {
        align-items: flex-start;
    }

    .page_top_btn {
        width: 68px;
        min-height: 0px;
        height: 68px;
    }

    .page_top_btn img {
        width: 31%;
    }

    /* swiper */
    .swiper-slide {
        width: 100% !important;
    }

    .top_tips_box {
        gap: 0px;
    }

    .sale_tips_section .swiper-slide {
        width: 80% !important;
    }

    .sale_tips_section .swiper-slide:first-child:last-child {
        width: 100% !important;
    }
}

@media screen and (max-width: 500px) {
    .fv_left .fv_cta a {
        width: 100%;
    }
}


.c-arrow-link {
    position: relative;
    padding-right: 40px;
}

.c-arrow-link--icon {
    overflow: hidden;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 30px;
    margin: auto 0;
    line-height: 1;
}

.c-arrow-link--icon:before,
.c-arrow-link--icon:after {
    content: "→";
    position: absolute;
    top: 0;
    right: 0;
    animation-fill-mode: both;
    animation-duration: 0.6s;
}

.c-arrow-link--icon:after {
    transform: translateX(-100%);
}

.c-arrow-link.is-hover .c-arrow-link--icon:before {
    animation-name: transformLeftRight;
    animation-delay: 0.2s;
}

.c-arrow-link.is-hover .c-arrow-link--icon:after {
    animation-name: transformRightLeft;
}

.c-arrow-link.is-hover:hover .c-arrow-link--icon:before {
    animation-name: transformRightLeft;
    animation-delay: 0s;
}

.c-arrow-link.is-hover:hover .c-arrow-link--icon:after {
    animation-name: transformLeftRight;
    animation-delay: 0.2s;
}

@keyframes transformLeftRight {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(0);
    }
}

@keyframes transformRightLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(100%);
    }
}

/* 1000px未満でもナビを出す */
@media (max-width: 1000px) {

    .t_blog_right .swiper-button-next,
    .t_blog_right .swiper-button-prev {
        display: flex !important;
    }
}

/* ▼ 代表挨拶 プライバシーポリシーページ 共通ここから ▼ */

.message_page_section,
.privacy_policy_page_section {
    padding-top: 0;
    padding-bottom: 60px;
}

.message_page_section .inner1200,
.privacy_policy_page_section .inner1200 {
    width: 1200px;
    margin: 0 auto;
}

.message_page_section h2,
.privacy_policy_page_section h2 {
    color: #12CA57;
    display: inline-block;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(3.125rem, 2.72rem + 2.03vw, 5rem);
    font-weight: 500;
    text-align: left;
    margin-top: 70px;
}

.message_page_section h3,
.privacy_policy_page_section h3 {
    display: flex;
    gap: 10px;
    justify-content: flex-start;
    align-items: center;
    font-size: clamp(1.125rem, 1.098rem + 0.14vw, 1.25rem);
    font-weight: bold;
    margin: 20px 0 60px;
}

/* ▲ 代表挨拶 プライバシーポリシーページ 共通ここから ここまで ▲ */

/* ▼ 代表挨拶ページ ここから ▼ */

.message_page_section .message_area {
    width: 96%;
    margin: 0 auto;
    background: #F8F8F8;
    box-sizing: border-box;
    border-radius: 30px;
    padding: 140px 0;
}

.message_page_section .message_area .inner1200 {
    width: 1200px;
}

.message_page_section .message_area h4 {
    font-weight: bold;
    font-size: 43px;
    padding-bottom: 20px;
    border-bottom: 1px solid #C5C5C5;
}

.message_page_section .message_area img {
    width: 40%;
    min-width: 350px;
    float: right;
    box-sizing: border-box;
    margin: 55px 0 0px 49px;
}

.message_page_section .message_area .txt {
    font-weight: 400;
    font-size: 20px;
    padding-top: 64px;
    line-height: 2.3;
    letter-spacing: 2%;
}

/* ▲ 代表挨拶ページ ここまで ▲ */

/* ▼ プライバシーポリシーページ ここから ▼ */

.privacy_policy_page_section {
    padding-bottom: 12px;
}

.privacy_policy_page_section .privacy_policy_area {
    width: 96%;
    margin: 0 auto;
    background: #F8F8F8;
    box-sizing: border-box;
    border-radius: 30px;
    padding: 120px 0;
}

.privacy_policy_page_section .privacy_policy_area .inner1200 {
    width: 1200px;
}

.privacy_policy_page_section .privacy_policy_area section {
    padding-top: 64px;
    padding-bottom: 0;
}

.privacy_policy_page_section .privacy_policy_area h4 {
    font-weight: bold;
    font-size: 26px;
    letter-spacing: 2%;
}

.privacy_policy_page_section .privacy_policy_area .txt,
.privacy_policy_page_section .privacy_policy_area ol {
    font-weight: 400;
    font-size: 20px;
    padding-top: 16px;
    line-height: 2.3;
    letter-spacing: 2%;
}

.privacy_policy_page_section .privacy_policy_area ol li {
    position: relative;
    padding-left: 1.25em;
}

.privacy_policy_page_section .privacy_policy_area ol li::before {
    position: absolute;
    content: "・";
    left: 0;
}

@media screen and (max-width: 1280px) {

    .privacy_policy_page_section .privacy_policy_area h4 {
        font-size: 22px;
    }

    .privacy_policy_page_section .privacy_policy_area section {
        padding-top: 48px;
    }


    .privacy_policy_page_section .privacy_policy_area .txt,
    .privacy_policy_page_section .privacy_policy_area ol {
        font-size: 16px;
    }
}

@media screen and (max-width: 480px) {

    .privacy_policy_page_section h2 {
        font-size: 12vw;
    }
}

/* ▲ プライバシーポリシーページ ここまで ▲ */

/* ▼ 代表挨拶 プライバシーポリシーページ レスポンシブ共通ここから ▼ */

@media screen and (max-width: 1280px) {

    .message_page_section,
    .privacy_policy_page_section {
        padding-bottom: 0;
    }

    .message_page_section h2,
    .privacy_policy_page_section h2 {
        margin-top: 60px;
    }

    .message_page_section .inner1200,
    .privacy_policy_page_section .inner1200 {
        width: 90%;
    }

    .message_page_section .message_area,
    .privacy_policy_page_section .privacy_policy_area {
        width: 94%;
        padding: 64px 0;
    }

    .message_page_section .message_area .inner1200,
    .privacy_policy_page_section .privacy_policy_area .inner1200 {
        width: 80%;
    }

    .message_page_section .message_area h4 {
        font-size: 28px;
        padding-bottom: 16px;
    }

    .message_page_section .message_area img {
        float: initial;
        width: 100%;
        min-width: initial;
        margin: 30px 0 0;
    }

    .message_page_section .message_area .txt {
        font-size: 16px;
        padding-top: 48px;
        line-height: 2.3;
        letter-spacing: 2%;
    }
}

/* ▲ 代表挨拶 プライバシーポリシーページ レスポンシブ共通ここから ここまで ▲ */

/* ▼ 会社概要 よくある質問ページ 共通ここから ▼ */

.company_page_section,
.faq_page_section {
    padding-top: 0;
    padding-bottom: 60px;
}

.company_page_section h2,
.faq_page_section h2 {
    color: #12CA57;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(3.125rem, 2.72rem + 2.03vw, 5rem);
    font-weight: 500;
    text-align: center;
    margin-top: 70px;
}

.company_page_section h3,
.faq_page_section h3 {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    font-size: clamp(1.125rem, 1.098rem + 0.14vw, 1.25rem);
    font-weight: bold;
    margin: 20px 0 50px;
}

.company_page_section .company_area,
.faq_page_section .faq-container {
    width: 96%;
    margin: 0 auto;
    padding: 120px 0;
    background: #F8F8F8;
    box-sizing: border-box;
    border-radius: 30px;
}

/* ▲ 会社概要 よくある質問ページ 共通ここから ここまで ▲ */

/* ▼ 会社概要ページ ここから ▼ */


.company_page_section dl {
    width: 1200px;
    display: grid;
    grid-template-columns: 15% 1fr;
    /* dtが15%、ddが残り */
    column-gap: 0;
    row-gap: 0;
    line-height: 2.0;
    margin: 0 auto;
}

/* 見出し（左列） */
.company_page_section dl dt {
    display: flex;
    align-items: center;
    font-weight: bold;
    font-size: 18px;
    padding: 25px 0;
    margin: 0;
    border-bottom: 2px solid #12CA57;
    word-break: break-word;
}

.company_page_section dl dd {
    padding: 25px 0 25px 15%;
    /* 左に見出し幅ぶんを視覚的に寄せたい場合は調整 */
    margin: 0;
    border-bottom: 1px solid #DDDDDD;
    color: #000;
    word-break: break-word;
}

.company_page_section dl dd br {
    line-height: 1.8;
}

.company_map {
    max-width: 1200px;
    width: 100%;
    margin: 40px auto 0;
}

.company_map iframe {
    display: block;
    width: 100%;
    height: 309px;
    border: 0;
}

@supports (aspect-ratio: 1) {

    /* 画面が1200px未満の時に比率維持で自動縮小（近代ブラウザ向け） */
    .company_map iframe {
        aspect-ratio: 1200 / 309;
        height: auto;
    }
}

@media (max-width: 1400px) {
    .company_page_section .area {
        padding: 80px 8%;
    }

    .company_page_section dl {
        width: 90%;
    }

    .company_map iframe {
        width: 90%;
        margin: 0 auto;
    }
}


@media (max-width: 767px) {
    .company_page_section {
        padding-bottom: 0;
    }

    .company_page_section .area {
        padding: 56px 6%;
    }

    .company_page_section dl {
        grid-template-columns: 1fr;
        /* 1列に */
    }

    .company_page_section dl dt,
    .company_page_section dl dd {
        border-bottom: none;
        padding: 0;
    }

    .company_page_section dl dt {
        font-size: 20px;
        padding-top: 40px;
    }

    .company_page_section dl dd {
        font-size: 15px;
        padding-top: 0;
        padding-bottom: 37px;
        border-bottom: 1px solid #EEEEEE;
        border-collapse: collapse;
        position: relative;
    }

    .company_page_section dl dd::before {
        position: absolute;
        content: '';
        width: 25%;
        height: 100%;
        border-bottom: 3px solid #12CA57;
    }

    @supports (aspect-ratio: 1) {
        .company_map iframe {
            aspect-ratio: 280 / 170;
            /* スマホ時は 1.647:1 の比率に変更 */
        }
    }

    .company_map iframe {
        /* aspect-ratio未対応ブラウザ用フォールバック */
        height: calc(100vw * (170 / 280));
        max-height: 170px;
    }
}

/* ▲ 会社概要ページ ここまで ▲ */

/* ▼ よくある質問ページ ここから ▼ */

.faq_page_section h3 {
    transform: translateX(-5px);
}

.faq_page_section .faq_area {
    width: 1200px;
    margin: 0 auto;
}

.faq-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0;
    width: 100%;
    margin: 20px auto 60px;
    justify-content: center;
}

.faq-tabs li {
    cursor: pointer;
    padding: 12px 15px;
    border-radius: 4px;
    background: #f8f8f8;
    transition: 0.3s;
}

.faq-tabs li:hover {
    opacity: 0.8;
}

.faq-tabs li.active {
    background: #12CA57;
    color: #fff;
}

.faq_area {
    display: none;
}

.faq_area.active {
    display: block;
}

.faq_area h4 {
    text-align: center;
    font-weight: bold;
    font-size: 36px;
    padding: 80px 0 48px;
}

.faq_area details {
    line-height: 1.8;
    margin-bottom: 40px;
}

.faq_area details:last-child {
    margin-bottom: 0;
}

.faq_area details summary {
    width: 100%;
    background: #fff;
    padding: 48px 80px;
    font-size: 18px;
    font-weight: 700;
    color: #12CA57;
    cursor: pointer;
    position: relative;
}

.faq_area details summary::before {
    position: absolute;
    top: 46px;
    left: 40px;
    content: "Q.";
    display: inline-block;
    color: #12CA57;
    font-weight: 600;
    font-size: 20px;
    font-family: "Montserrat", sans-serif;
}

.faq_area details summary::after {
    content: "+";
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 40px;
    color: #12CA57;
    transition: transform 0.3s, color 0.3s;
}

.faq_area details.open summary::after {
    content: "−";
    transform: translateY(-50%) rotate(180deg);
}

.faq_area details .answer {
    position: relative;
    background: #f8f8f8;
    padding: 0 80px;
    font-size: 16px;
    font-weight: 500;
    color: #22222c;
    block-size: 0;
    opacity: 0;
    transition: 0.3s;
}

.faq_area details.open .answer {
    padding: 48px 80px;
    block-size: auto;
    block-size: calc-size(auto, size);
    opacity: 1;
}

.faq_area details .answer::before {
    position: absolute;
    top: 0;
    left: 40px;
    content: "A.";
    display: inline-block;
    color: #202020;
    font-weight: 600;
    font-size: 20px;
    font-family: "Montserrat", sans-serif;
    transition: 0.3s;
}

.faq_area details.open .answer::before {
    top: 48px;
}

.faq_area details .answer a {
    color: #12CA57;
    text-decoration: underline;
}

@media screen and (max-width: 1280px) {

    .faq_page_section .faq_area {
        width: 90%;
    }
}

@media screen and (max-width: 768px) {

    .faq_area h4 {
        padding: 0 0 40px 0;
    }

    .faq_area details summary {
        padding: 24px 64px;
    }

    .faq_area details summary::before {
        top: 24px;
        left: 24px;
    }

    .faq_area details summary::after {
        right: 24px;
        font-size: 32px;
    }

    .faq_area details .answer {
        padding: 0px 24px 0px 64px;
    }

    .faq_area details.open .answer {
        padding: 24px 24px 24px 64px;
    }

    .faq_area details .answer::before {
        top: 0px;
        left: 24px;
    }

    .faq_area details.open .answer::before {
        top: 22px;
    }
}

@media screen and (max-width: 480px) {

    .faq-tabs {
        width: 90%;
        gap: 12px;
        justify-content: flex-start;
        margin-bottom: 80px;
    }

    .faq_area details {
        margin-bottom: 24px;
    }
}

/* ▲ よくある質問ページ ここまで ▲ */

/* ▼ 会社概要 よくある質問ページ レスポンシブ共通ここから ▼ */

.company_page_section,
.faq_page_section {
    padding-bottom: 0;
}

.company_page_section .company_area,
.faq_page_section .faq-container {
    padding: 64px 0;
}

/* ▲ 会社概要 よくある質問ページ レスポンシブ共通ここから ここまで ▲ */

/* ▼ お問い合わせページここから ▼ */

.contact_page_section {
    padding: 64px 0 30px;
}

.contact_page_section .inner {
    width: 1200px;
    margin: 0 auto;
}

.contact_page_section .contact_page_wrapper {
    display: grid;
    grid-template-columns: 36% 60%;
    gap: 4%;
}

.contact_page_section h2 {
    color: #12CA57;
    display: inline-block;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(3.125rem, 2.72rem + 2.03vw, 5rem);
    font-weight: 500;
    text-align: left;
    line-height: 1;
}

.contact_page_section h3 {
    display: flex;
    gap: 10px;
    justify-content: flex-start;
    align-items: center;
    font-size: clamp(1.125rem, 1.098rem + 0.14vw, 1.25rem);
    font-weight: bold;
    margin: 20px 0 48px;
}

.contact_page_area .txt_area .txt {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 2%;
}

.contact_page_area .txt_area .txt.notes {
    padding-top: 32px;
}

.contact_page_area .txt_area .txt.notes .colored {
    color: #CA4732;
    font-weight: bold;
}

@media screen and (max-width: 1200px) {

    .contact_page_section .inner {
        width: 90%;
    }
}

@media screen and (max-width: 768px) {
    .contact_page_section .contact_page_wrapper {
        display: flex;
        flex-direction: column;
    }
}

@media screen and (max-width: 480px) {
    .contact_page_section .inner {
        width: 100%;
    }

    .contact_page_area .txt_area {
        width: 90%;
        margin: 0 auto;
    }
}

/* ▲ お問い合わせページ ここまで ▲ */

/* ▼ サンクスページここから ▼ */

.thanks_page_section {
    padding: 80px 0 0 0;
    color: #222222;
    letter-spacing: 0.02em;
}

.thanks_page_section .inner {
    width: 90%;
    margin: 0 auto;
}

.thanks_page_section .thanks_page_wrapper {
    text-align: center;
}

.thanks_page_section .thanks_page_wrapper h3 {
    font-size: 36px;
    font-weight: 700;
}

.thanks_page_section .thanks_page_wrapper .txt {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.6;
    padding-top: 32px;
}

.thanks_page_section .backBtn {
    display: flex;
    justify-content: space-between;
    max-width: 245px;
    align-items: center;
    gap: 3em;
    font-size: 14px;
    font-weight: 500;
    background: #12CA57;
    padding: 22px 26px;
    border-radius: 3px;
    color: #ffffff;
    margin: 60px auto 0;
}

.thanks_page_section .backBtn .h_btn_box {
    background: url(../img/submit_btn.svg)no-repeat center center / contain;
    width: 20px;
    height: 20px;
    border-radius: 4px;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
    margin-top: 0px;
}

@media screen and (max-width: 480px) {
    .thanks_page_section {
        padding-top: 60px 0 0 0;
    }

    .thanks_page_section .inner {
        width: 80%;
    }

    .thanks_page_section .thanks_page_wrapper h3 {
        font-size: 30px;
        position: relative;
    }

    .thanks_page_section .thanks_page_wrapper .txt {
        padding-top: 24px;
        text-align: left;
    }

    .thanks_page_section .backBtn {
        max-width: 100%;
        margin-top: 40px;
    }

    /* .thanks_page_section .fadeUp01 .belt_loop_txt {
        color: #12CA57;
        font-family: "Montserrat", sans-serif;
        font-size: clamp(3rem, 2.027rem + 4.86vw, 7.5rem);
        font-weight: 500;
        position: absolute;
        bottom: -32px;
        left: 0;
        white-space: nowrap;
        mix-blend-mode: overlay;
        animation: loop 180s -90s linear infinite;
    } */
}

/* ▲ サンクスページ ここまで ▲ */

/* ▼ お知らせページここから ▼ */

.news_page_section {
    padding-top: 0;
    padding-bottom: 60px;
}

.news_page_section .fadeUp01 {
    overflow: hidden;
    position: relative;
}

.news_page_section .inner1200 {
    width: 1200px;
    margin: 0 auto;
}

.news_page_section h3 {
    display: flex;
    gap: 10px;
    justify-content: flex-start;
    align-items: center;
    /* font-size: clamp(1.125rem, 1.098rem + 0.14vw, 1.25rem); */
    font-size: 34px;
    font-weight: bold;
    margin: 20px 0 80px;
    padding-top: 112px;
}

.news_page_section .f_news_box li:first-child {
    border-top: solid 1px #C5C5C5;
}

.news_page_section .fadeUp01 .belt_loop_txt {
    color: #12CA57;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(3rem, 2.027rem + 4.86vw, 7.5rem);
    font-size: 120px;
    font-weight: 500;
    position: absolute;
    bottom: 64px;
    left: 0;
    white-space: nowrap;
    mix-blend-mode: overlay;
    animation: loop 180s -90s linear infinite;
    opacity: 0.05;
}

.news-single .post_contents img {
    margin-bottom: 0;
}

.entry-content.news p {
    margin-top: 20px;
}

.entry-content.news p:first-child {
    margin-top: 30px;
}

@media screen and (max-width: 1200px) {
    .news_page_section .inner1200 {
        width: 90%;
    }
}

@media screen and (max-width: 768px) {
    .news_page_section {
        padding-bottom: 0px;
    }
}

/* ▲ お知らせページ ここまで ▲ */

/* ▼ ページネーション ここから ▼ */
.pagination {
    text-align: center;
    margin: 30px 0;
}

.pagination ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
}

/* 各ページ番号のスタイル */
.pagination a,
.pagination span {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 12px 8px;
    width: 44px;
    height: 44px;
    margin: 0 5px;
    background-color: #F8F8F8;
    color: #22222c;
    border-radius: 50%;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    font-family: "Montserrat", sans-serif;
}

/* 現在のページのスタイル */
.pagination .current {
    background-color: #12CA57;
    color: #ffffff;
    border-radius: 50%;
}

/* 前後ページボタン（« 前へ, 次へ »） */
.pagination .prev,
.pagination .next {
    /* padding: 8px 12px;*/
    width: 44px;
    height: 44px;
    background-color: #ffffff;
    color: #22222c;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    border-radius: 100vmax;
}

/* 前後ページボタンのホバー時の色 */
.pagination .prev:hover,
.pagination .next:hover {
    background-color: #12CA57;
    color: #fff;
}

/* 数字リンクのホバー時の色 */
.pagination a:hover,
.pagination span:hover {
    background-color: #12CA57;
    color: #fff;
}

/* 最初と最後のボタン */
.pagination .first,
.pagination .last {
    display: inline-block;
    /* padding: 8px 12px; */
    width: 44px;
    height: 44px;
    background-color: #f0f0f0;
    color: #333;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    border-radius: 100vmax;
}

/* 最初と最後のボタンのホバー時 */
.pagination .first:hover,
.pagination .last:hover {
    background-color: #12CA57;
    color: #fff;
}

/* ▲ ページネーション ここまで ▲ */

/* ▼ 代表メッセージ(採用) ここから ▼ */

.message_page_section .message_area.recruit h4 br {
    display: none;
}

@media screen and (max-width: 767px) {
    .message_page_section .message_area.recruit h4 br {
        display: block;
    }
}


/* -------------- ▼ サービス ここから ▼ ------------ */

.service_page_section,
.sec_problem {
    width: 100%;
    padding: 0;
}

.service_page_section img {
    width: 100%;
}

.service_page_section .fv_area {
    width: 100%;
    padding: 100px 0 65px;
}

.service_page_section .fv_inner {
    width: 1325px;
    margin: 0 auto;
}


.service_page_section .fv_wrapper {
    display: flex;
}

.service_page_section .fv_wrapper .fv_item {
    width: 50%;
}

.service_page_section .fv_wrapper .fv_item.motif {
    padding-left: 120px;
}

.service_page_section .fv_cta_wrapper {
    display: flex;
    gap: 10px;
    padding: 36px 0 56px;
}

.service_page_section .fv_cta_wrapper a {
    display: inline-block;
    width: 254px;
    padding: 24px;
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    letter-spacing: 0.04em;
    background: #000;
    border-radius: 100vmax;
    position: relative;
}

.service_page_section .fv_cta_wrapper a::before {
    content: "";
    position: absolute;
    width: 32px;
    height: 32px;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    background-size: contain;
    background-repeat: no-repeat;
}

.service_page_section .fv_cta_wrapper a.contact01::before {
    background-image: url(../img/page_service/cta_icon01.png);
}

.service_page_section .fv_cta_wrapper a.contact02::before {
    background-image: url(../img/page_service/cta_icon02.png);
}

.service_page_section .fv_cta_wrapper a.contact01 {
    background-color: #FF7070;
}

.service_page_section .fv_cta_wrapper a.contact02 {
    background-color: #1362F6;
}

.service_page_section .c_box {
    text-align: center;
    padding-top: 80px;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 0.021em;
}

.service_page_section .c_box img {
    padding-top: 20px;
}

@media screen and (max-width: 1325px) {
    .service_page_section .fv_inner {
        width: 90%;
    }
}

@media screen and (max-width: 1000px) {

    .service_page_section .fv_area {
        padding-top: 50px;
    }

    .service_page_section .fv_wrapper {
        flex-direction: column-reverse;
    }

    .service_page_section .fv_wrapper .fv_item {
        width: 100%;
    }

    .service_page_section .fv_wrapper .fv_item.motif {
        padding-left: 0;
        margin-bottom: 16px;
    }
}

@media screen and (max-width: 480px) {
    .service_page_section .fv_cta_wrapper {
        flex-direction: column;
    }

    .service_page_section .fv_cta_wrapper {
        padding: 36px 0;
    }

    .service_page_section .fv_cta_wrapper a {
        width: 100%;
    }

    .service_page_section .c_box {
        padding-top: 30px;
    }
}


.service_page_section h2 {
    display: inline-block;
    font-size: 24px;
    font-weight: bold;
    color: #12CA57;
    border-bottom: 1px solid #12CA57;
    padding-bottom: 0.5em;
}

.service_page_section h3 {
    font-size: 32px;
    font-weight: 900;
    line-height: 1.4;
    letter-spacing: 0.021em;
    padding-top: 30px;
}

.service_page_section h3 .h3--large {
    font-size: 1.3em;
}

.service_page_section .md--note {
    color: #12CA57;
}


.service_page_section .sec_problem {
    text-align: center;
}

.service_page_section .sec_problem .sec_problem_inner {
    width: 1200px;
    margin: 0 auto;
    padding-top: 120px;
}

.service_page_section .sec_problem .img_area_worries {
    padding-top: 60px;
}

.service_page_section .sec_problem .text {
    font-size: 32px;
    font-weight: 900;
    padding-top: 50px;
}

.service_page_section .sec_problem .demerit_wrapper {
    display: flex;
    gap: 24px;
    padding-top: 40px;
}

.service_page_section .sec_problem .demerit_item {
    filter: drop-shadow(5px 5px 7px rgba(198, 206, 225, 0.6));
}

@media screen and (max-width: 1200px) {
    .service_page_section .sec_problem .sec_problem_inner {
        width: 90%;
        margin: 0 auto;
        padding-top: 120px;
    }
}

@media screen and (max-width: 768px) {
    .service_page_section .sec_problem .demerit_wrapper {
        flex-direction: column;
    }
}

.service_page_section .sec_solution {
    padding-bottom: 0;
}

.service_page_section .sec_structure {
    text-align: center;
    background: #F0F7FF;
    padding: 0;
    border-radius: 50px;
}

.service_page_section .sec_structure .sec_structure_inner {
    width: 1200px;
    margin: 0 auto;
    padding: 120px 0 90px;
}

.service_page_section .sec_structure h3 img {
    width: 625px;
}

.service_page_section .sec_structure .img_area {
    padding-top: 60px;
}

.service_page_section .sec_structure .img_area.arrow {
    width: 100px;
    margin: 0 auto;
}

.service_page_section .sec_structure .img_area.add {
    width: 145px;
    margin: 0 auto;
}

@media screen and (max-width: 1200px) {
    .service_page_section .sec_structure .sec_structure_inner {
        width: 90%;
        margin: 0 auto;
        padding-top: 120px;
    }
}

@media screen and (max-width: 768px) {

    .service_page_section .sec_structure .sec_structure_inner {
        padding-top: 60px;
    }

    .service_page_section .sec_structure h3 img {
        width: 65vw;
    }

    .service_page_section .sec_structure .img_area {
        padding-top: 30px;
    }
}

.service_page_section .sec_number {
    text-align: center;
    padding: 0;
}

.service_page_section .sec_number .sec_number_inner {
    width: 1200px;
    margin: 0 auto;
    padding: 120px 0;
}

.service_page_section .sec_number h3 img {
    width: 440px;
    margin: 0 auto;
}

.service_page_section .sec_number .img_area {
    padding-top: 60px;
}

@media screen and (max-width: 1200px) {
    .service_page_section .sec_number .sec_number_inner {
        width: 90%;
        margin: 0 auto;
        padding: 60px 0;
    }
}

@media screen and (max-width: 768px) {

    .service_page_section .sec_number .img_area {
        padding-top: 30px;

    }

    .service_page_section .sec_number h3 img {
        width: 80vw;
    }
}


.service_page_section .sec_reason {
    text-align: center;
    padding: 0;
    background: #F0F7FF;
}

.service_page_section .sec_reason .sec_reason_inner {
    width: 1200px;
    margin: 0 auto;
    padding: 120px 0;
}

.service_page_section .sec_reason h3 img {
    width: 553px;
    margin: 0 auto;
}

.service_page_section .sec_reason .img_area {
    padding-top: 60px;
}

@media screen and (max-width: 1200px) {
    .service_page_section .sec_reason .sec_reason_inner {
        width: 90%;
        margin: 0 auto;
        padding: 120px 0;
    }
}

@media screen and (max-width: 768px) {

    .service_page_section .sec_reason .sec_reason_inner {
        padding: 60px 0;
    }

    .service_page_section .sec_reason h3 img {
        width: 80vw;
        margin: 0 auto;
    }
}


.service_page_section .sec_support {
    padding: 0;
}

.service_page_section .sec_support .sec_support_inner {
    width: 1200px;
    margin: 0 auto;
    padding: 120px 0;
    display: flex;
}

.service_page_section .sec_support .text_area {
    /* width: 480px; */
    width: 80%;
}

.service_page_section .sec_support h4 {
    padding-top: 16px;
}

.service_page_section .sec_support .cta_wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 60px;
}

.service_page_section .sec_support .cta_wrapper.sp {
    display: none;
}

.service_page_section .sec_support .cta_wrapper a {
    display: inline-block;
    width: 254px;
    padding: 24px;
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    letter-spacing: 0.04em;
    background: #000;
    border-radius: 100vmax;
    position: relative;
}

.service_page_section .sec_support .cta_wrapper a:before {
    content: "";
    position: absolute;
    width: 32px;
    height: 32px;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    background-size: contain;
    background-repeat: no-repeat;
}

.service_page_section .sec_support .cta_wrapper a.contact01:before {
    background-image: url(../img/page_service/cta_icon01.png);
}

.service_page_section .sec_support .cta_wrapper a.contact02:before {
    background-image: url(../img/page_service/cta_icon02.png);
}

.service_page_section .sec_support .cta_wrapper a.contact01 {
    background-color: #FF7070;
}

.service_page_section .sec_support .cta_wrapper a.contact02 {
    background-color: #1362F6;
}

@media screen and (max-width: 1200px) {
    .service_page_section .sec_support .sec_support_inner {
        width: 90%;
    }
}

@media screen and (max-width: 1000px) {
    .service_page_section .sec_support .sec_support_inner {
        flex-direction: column;
    }
}

@media screen and (max-width: 480px) {
    .service_page_section .sec_support .cta_wrapper {
        display: none;
        padding-top: 30px;
    }

    .service_page_section .sec_support .cta_wrapper.sp {
        display: flex
    }

    .service_page_section .sec_support .cta_wrapper.sp a {
        width: 100%;
    }
}

.service_page_section .sec_flow {
    text-align: center;
    padding: 0;
    background: #F0F7FF;
}

.service_page_section .sec_flow .sec_flow_inner {
    width: 1200px;
    margin: 0 auto;
    padding: 120px 0;
}

.service_page_section .sec_flow .img_area {
    padding-top: 60px;
}

@media screen and (max-width: 1200px) {
    .service_page_section .sec_flow .sec_flow_inner {
        width: 90%;
    }
}

@media screen and (max-width: 480px) {
    .service_page_section .sec_flow .sec_flow_inner {
        padding: 60px 0;
    }
}


.service_page_section .sec_faq {
    text-align: center;
    padding: 0;
}

.service_page_section .sec_faq .sec_faq_inner {
    width: 1200px;
    margin: 0 auto;
    padding: 120px 0;
}

.service_page_section .sec_faq .accordion-area li {
    border-bottom: 1px solid #eaeaea;
}

.service_page_section .sec_faq .accordion-area h3 {
    font-size: 20px;
    font-weight: bold;
}

@media screen and (max-width: 1200px) {

    .service_page_section .sec_faq .sec_faq_inner {
        width: 90%;
    }
}

@media screen and (max-width: 768px) {
    .service_page_section .sec_faq .accordion-area h3 {
        font-size: 16px;
        font-weight: bold;
        padding: 20px 0;
    }
}



.service_page_section .sec_cta {
    text-align: center;
    padding: 0;
    margin-bottom: 60px;
}

.service_page_section .sec_cta .sec_cta_inner {
    width: 1840px;
    margin: 0 auto;
    padding: 80px 0;
    background-color: #12CA57;
    border-radius: 40px;
    background-size: 100%;
}

.service_page_section .sec_cta .sec_cta_inner h2 {
    font-size: 42px;
    font-weight: 800;
    color: #ffffff;
}

.service_page_section .sec_cta .sec_cta_inner h2 br.sp {
    display: none;
}

.service_page_section .sec_cta .sec_cta_inner h3 {
    font-size: 18px;
    font-weight: 500;
    color: #ffffff;
    padding-top: 15px;
}

.service_page_section .sec_cta .sec_cta_inner h3 br.sp {
    display: none;
}

.service_page_section .sec_cta .btn_area {
    width: 800px;
    display: flex;
    gap: 20px;
    margin: 0 auto;
    padding: 50px 35px;
    border-bottom: 1px solid #A5C5FF;
}

.service_page_section .sec_cta .phone_area {
    color: #ffffff;
    width: 800px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 0 auto;
    padding-top: 32px;
    justify-content: center;
}

.service_page_section .sec_cta .phone_area .text {
    color: #12CA57;
    font-size: 14px;
    font-weight: bold;
    background-color: #ffffff;
    border-radius: 100vmax;
    padding: 4px 8px;
}

.service_page_section .sec_cta .phone_area .phone_number {
    font-size: 40px;
    font-weight: bold;
}

.service_page_section .sec_cta .phone_area .phone_number img {
    width: 300px;
}

@media screen and (max-width: 1840px) {
    .service_page_section .sec_cta .sec_cta_inner {
        width: 90%;
        padding: 80px 40px;
    }
}

@media screen and (max-width: 1000px) {

    .service_page_section .sec_cta .sec_cta_inner {
        padding: 40px 20px;
    }

    .service_page_section .sec_cta .sec_cta_inner h2 br.sp {
        display: block;
    }

    .service_page_section .sec_cta .sec_cta_inner h3 br.sp {
        display: block;
    }


    .service_page_section .sec_cta .btn_area {
        width: 100%;
        display: flex;
        gap: 20px;
        margin: 0 auto;
        padding: 50px 35px;
        border-bottom: 1px solid #A5C5FF;
    }

    .service_page_section .sec_cta .phone_area {
        width: 100%;
        display: flex;
        align-items: center;
        gap: 20px;
        margin: 0 auto;
        padding-top: 32px;
        justify-content: center;
    }
}

@media screen and (max-width: 768px) {

    .service_page_section .sec_cta {
        padding: 0;

    }

    .service_page_section .sec_cta .btn_area {
        width: 100%;
        flex-direction: column;
        display: flex;
        gap: 20px;
        margin: 0 auto;
        padding: 24px 0;
    }

    .service_page_section .sec_cta .phone_area {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        margin: 0 auto;
        padding-top: 32px;
        justify-content: center;
    }
}

@media screen and (max-width: 480px) {


    .service_page_section .sec_cta .sec_cta_inner h2 {
        font-size: 24px;
    }

    .service_page_section .sec_cta .sec_cta_inner h3 {
        font-size: 14px;
    }
}


/* サービスページ アコーディオン */

.faq_ttl_box {
    padding-top: 0px;
    padding-bottom: 60px;
}

.faq_ttl_box .ttl_img {
    width: 18%;
}

/*アコーディオン全体*/
.accordion-area {
    list-style: none;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    /* gap: 25px; */
    margin-top: 1.6em;
}

/*アコーディオンタイトル*/
.title {
    position: relative;
    /*+マークの位置基準とするためrelative指定*/
    cursor: pointer;
    font-size: clamp(1.125rem, 1.098rem + 0.14vw, 1.25rem);
    font-weight: 600;
    line-height: 1.6;
    padding: 2.5% 3%;
    transition: all .5s ease;
    color: #12CA57;
    border-radius: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq_arrow {
    background-color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.faq_arrow::before {
    content: url('../img/recruit_page/faq/faq_arrow_down.svg');
    /* 閉じているときの矢印 */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%);
    /* 中央揃え */
}

.title.close .faq_arrow::before {
    content: url('../img/recruit_page/faq/faq_arrow_up.svg');
    /* 開いたときの矢印 */
}

/*アコーディオンで現れるエリア*/
.box {
    align-items: center;
    background: #fff;
    font-size: clamp(1rem, 0.973rem + 0.14vw, 1.125rem);
    line-height: 1.8;
    gap: 22px;
    padding: 0 5% 0 3%;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease, padding 0.4s ease;
    display: flex;
    align-items: center;
    text-align: left;
}

.box.is-open {
    max-height: 500px;
    padding: 3% 5% 3% 3%;
}

.ques_flx {
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
}

.q_mark {
    font-family: "Montserrat", sans-serif;
    font-weight: normal;
    font-size: 24px;
    color: #12CA57;
}

.a_mark {
    font-family: "Montserrat", sans-serif;
    font-size: 24px;
    float: left;
}

.answer {
    font-size: clamp(0.875rem, 0.848rem + 0.14vw, 1rem);
    width: 95.5%;
    margin-left: auto;
}

.answer a {
    color: #3163F9;
    text-decoration-line: underline;
    text-decoration-color: #3163F9;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}


/* -------------- ▲ サービス ここまで ▲ ------------ */

.subHead {
    font-size: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px 0;
    text-align: center;
    font-weight: 500;
}

.subHead span {
    font-size: 24px;
    font-weight: bold;
    font-family: Montserrat, serif;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #0ED884;
}

@media screen and (max-width: 768px) {
    .subHead {
        font-size: 22px;
    }

    .subHead span {
        font-size: 18px;
    }
}



/* 採用公式LINE構築 */

.cta-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 40px 70px;
    justify-content: center;
}

.cta-flex a {
    width: calc(50% - 35px);
    font-size: 17px;
}

.use {
    margin-top: 60px;
    padding: 0;
}

.use_inner {
    width: 890px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.use p {
    text-align: center;
    margin-top: 40px;
}

.use .use_wrap {
    margin-bottom: 50px;
}

.use .use_wrap .use_width {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
    margin-top: 40px;
    margin-bottom: 20px;
    width: 850px;
}

.use .use_wrap img {
    width: 150px;
    object-fit: contain;
    border: 1px solid gray;
    border-radius: 5px;
    padding: 0 10px;
}

.worry {
    padding: 100px;
    margin-top: 30px;
    background: #F8F8F8;
}

.worry .worry_inner {
    background: #fff;
    border-radius: 10px;
    padding: 90px 40px;
    position: relative;
    box-shadow: 5px 5px 4px #E4E8EE;
}

.worry .worry_inner:before {
    position: absolute;
    content: "";
    width: 10%;
    max-width: 101px;
    aspect-ratio: 101 / 305;
    background: url('../img/official-line/worry01.png')no-repeat center / cover;
    bottom: -36px;
    left: 51px;
}

.worry .worry_inner:after {
    position: absolute;
    content: "";
    width: 15%;
    max-width: 143px;
    aspect-ratio: 143 / 316;
    background: url('../img/official-line/worry02.png')no-repeat center / cover;
    bottom: -58px;
    right: 7px;
}

.worry p {
    margin-top: 10px;
}

.worry ul {
    margin: 40px auto 0;
    width: fit-content;
}

.worry ul li {
    position: relative;
    padding-left: 24px;
    font-size: clamp(1.1275rem, 0.99rem + 0.33vw, 1.43rem);
}

.worry ul li:before {
    position: absolute;
    content: "";
    width: 8px;
    aspect-ratio: 1;
    background: #0ED884;
    border-radius: 10px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.worry ul li+li {
    margin-top: 40px;
}

.reason {
    padding: 93px 0 106px;
    background: linear-gradient(to right, #16CB38, #07E2BF);
}

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

.reason .reason_wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 30px 40px;
    margin-top: 30px;
}

.reason .reason_wrap div {
    width: calc(50% - 20px);
    background: #fff;
    border-radius: 20px;
    padding: 54px 45px 30px;
    display: flex;
    flex-direction: column;
}

.reason .reason_wrap div h4 {
    color: #06C755;
    font-size: clamp(1.5375rem, 1.35rem + 0.45vw, 1.95rem);
    margin-bottom: 10px;
    position: relative;
    width: fit-content;
    z-index: 1;
    font-weight: 600;
}

.reason .reason_wrap div h4:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 10px;
    background: #FBFF79;
    left: 0;
    bottom: 0;
    z-index: -1;
}

.reason .reason_wrap div p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.reason .reason_wrap div img {
    margin-right: -10px;
    object-fit: contain;
    margin-left: auto;
    max-width: 80px;
    display: block;
    margin-left: auto;
    margin-top: auto;
}

.plan {
    padding: 100px 20px;
}

.plan .plan_inner {
    max-width: 780px;
    margin: 0 auto;
}

.plan .plan_wrap {
    margin-top: 30px;
}

.plan .plan_wrap .plan_box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px 40px;
    background: #F8F8F8;
    border-radius: 20px;
    box-shadow: 5px 5px 4px #E4E8EE;
    padding: 58px 45px;
}

.plan .plan_wrap .plan_box+.plan_box {
    margin-top: 80px;
    position: relative;
}

.plan .plan_wrap .plan_box+.plan_box:before {
    position: absolute;
    content: "+";
    font-size: 25px;
    font-weight: 300;
    width: 29px;
    aspect-ratio: 1;
    border-radius: 50%;
    text-align: center;
    line-height: 29px;
    color: #fff;
    background: #06C755;
    top: -40px;
    left: 50%;
    transform: translate(-50%, -50%);
}

.plan .plan_wrap .plan_box .plan_left {
    width: calc(50% - 20px);
    text-align: center;
}

.plan .plan_wrap .plan_box .plan_right {
    width: calc(50% - 20px);
    text-align: center;
}

.plan .plan_wrap .plan_box div h4 {
    font-size: clamp(1.025rem, 0.9rem + 0.30vw, 1.3rem);
    margin-bottom: 10px;
}

.plan .plan_wrap .plan_box div span {
    width: 250px;
    display: inline-block;
    background: #06C755;
    color: #fff;
    padding: 5px 37px;
    border-radius: 50px;
}

.plan .plan_wrap .plan_box div .fee {
    font-size: clamp(2.05rem, 1.8rem + 0.60vw, 2.6rem);
    color: #06C755;
    font-weight: 600;
    margin-top: 20px;
    line-height: 1;
    letter-spacing: 3px;
}

.plan .caution {
    color: #868686;
    font-size: 13px;
    margin-top: 60px;
    margin-bottom: 40px;
}

.banner {
    padding-top: 80px;
    padding-bottom: 0;
}

.banner.marutto {
    padding-top: 0;
    padding-bottom: 80px;
}

.banner a {
    display: inline-block;
    width: 100%;
    height: auto;
}

.banner a img {
    width: 100%;
}

@media screen and (max-width: 840px) {
    .cta a {
        width: 100%;
        max-width: 400px;
        font-size: 15px;
    }

    .use {
        margin-top: 0;
    }

    .use p {
        font-size: 9px;
    }

    .use .use_wrap {
        overflow: scroll;
        flex-wrap: nowrap;
        margin-right: -20px;
        margin-left: -20px;
    }

    .worry {
        padding: 40px 20px 55px;
    }

    .worry .worry_inner:before {
        width: 90px;
        bottom: 0;
        transform: translateY(70%) translateX(-20%);
        left: 50%;
    }

    .worry .worry_inner:after {
        width: 129px;
        bottom: 0;
        transform: translateY(70%) translateX(20%);
        right: 50%;
    }

    .worry ul {
        margin-top: 20px;
    }

    .worry ul li,
    .worry p {
        font-size: 12px;
    }

    .worry .worry_inner {
        padding: 30px 24px 95px;
    }

    .worry ul li {
        padding-left: 10px;
    }

    .worry ul li:before {
        width: 4px;
    }

    .worry ul li+li {
        margin-top: 20px;
    }

    .reason {
        position: relative;
        z-index: 1;
        padding: 50px 0 60px;
    }

    .reason .subHead {
        text-align: left;
        align-items: flex-start;
    }

    .reason h3+p {
        text-align: left;
    }

    .reason .reason_wrap div {
        padding: 62px 28px 40px;
        position: relative;
    }

    .reason .reason_wrap div img {
        position: absolute;
        top: 28px;
        right: 40px;
        max-width: 70px;
    }

    .reason .reason_wrap div h4 {
        font-size: 22px;
        width: 65%;
        font-weight: 600;
    }

    .reason .reason_wrap div p {
        font-size: 12px;
    }

    .plan {
        padding: 50px 20px 55px;
    }

    .plan .plan_wrap .plan_box {
        padding: 37px 20px;
    }

    .plan .plan_wrap .plan_box .plan_left {
        width: 100%;
    }

    .plan .plan_wrap .plan_box .plan_right {
        width: 100%;
    }

    .plan .plan_wrap .plan_box div span {
        width: 180px;
    }

    .plan .plan_wrap .plan_box div h4 {
        font-size: 22px;
        font-weight: 600;
        margin-bottom: 18px;
    }

    .plan .plan_wrap .plan_box .plan_left p {
        font-size: 10px;
    }

    .plan .plan_wrap .plan_box+.plan_box:before {
        width: 33px;
        font-size: 33px;
        line-height: 33px;
        top: -30px;
    }

    .plan .plan_wrap .plan_box+.plan_box {
        margin-top: 60px;
    }

    .plan .caution {
        font-size: 10px;
        margin: 30px 0 55px;
    }
}

@media screen and (max-width: 650px) {
    .reason .reason_wrap div {
        width: 100%;
    }
}

/* お役立ちブログ */

.blog_box .top_case_box.archive {
    padding: 0;
    background: none;
}

.blog_box .top_case_box>li>a img {
    width: 100%;
}

.blog_box .top_case_box .middle_info {
    border-bottom: 0;
}


.archive_popular {
    background: #F8F8F8;
    padding: 120px 0 30px;
}

.archive_popular .top_case_box {
    margin-top: 50px;
}

.archive_popular .top_case_box .middle_info {
    border-bottom: none;
}



/* まるっと採用担当さん */

