@charset "UTF-8";

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

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

hgroup {
    margin: 0;
}

a {
    cursor: pointer;
}

a:hover {
    opacity: 0.5;
    transition: 0.3s;
    cursor: pointer;
}

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

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

@media screen and (max-width: 1200px) {
    section {
        padding-top: 80px;
        padding-bottom: 120px;
    }
}

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

.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で黒丸が出るのを防止 */
}

details summary::-webkit-details-marker {
    display: none;
    /* Chrome / Safari用 */
}

details summary::marker {
    content: "";
    /* Firefox / 新Edge用 */
}

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

    100% {
        stroke-dashoffset: 0;
    }
}

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

/* 内側の青い点 */
.glow-circle::before {
    content: "";
    width: 8px;
    height: 8px;
    background-color: #0C6DFF;
    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: #E9F0FF;
    transform: translate(-50%, -50%);
    z-index: 0;
    /* 内側の点より後ろに */
    animation: pulse 2s ease-in-out infinite;
}

/* 内側の青い点（少し大きめ用） */
.glow-circle {
    width: 29px;
    height: 29px;
    border-radius: 50%;
    background: #E9F0FF;
    position: relative;
    z-index: 1;
    /* 内側の点より後ろに */
}

.glow-circle.big::before {
    content: "";
    width: 12px;
    height: 12px;
    background-color: #0C6DFF;
    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: #E9F0FF;
    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);
    }
}



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

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

.site-logo.sp_ham {
    display: none;
}

@media screen and (max-width: 1320px) {
    .site-logo.sp_ham {
        display: flex;
    }
}

.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;
    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: center;
    gap: 5px;
}

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

.h_recruit_btn {
    background-color: #0C6DFF;
    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_blue_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: 660px;
}

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

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

.fv_left h2 img {
    filter: drop-shadow(0 4px 10px rgba(255, 255, 255, 1));
}

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

.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;
}

/* fv_under */
.fv_under {
    background-color: #fff;
    overflow: hidden;
    padding-top: 0px;
    /* sectionスタイル打ち消し */
    padding-bottom: 70px;
}

.fv_under_loop {
    width: auto;
    display: flex;
    align-items: center;
    gap: 25px;
    animation: fv_under_loop 10s linear infinite;
    /* 永遠にループ */
}

.fv_under_01 {
    width: 1000px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.fv_under_02 {
    width: 1000px;
    display: flex;
    align-items: center;
    gap: 30px;
}


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

    100% {
        transform: translateX(-50%);
        /* 適宜調整 */
    }
}

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

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

.under_tag02 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    row-gap: 14px;
    width: 541px;
}

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

.under_tag a,
.under_tag01 a,
.under_tag02 a {
    background-color: #F2F2F2;
    /* 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;
}

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

.our_service_section h2 {
    color: #0C6DFF;
    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, 1.098rem + 0.14vw, 1.25rem);
    font-weight: bold;
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 20px;
}


.section_ttl.t_recruit 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 p {
    font-size: clamp(0.813rem, 0.799rem + 0.07vw, 0.875rem);
    line-height: 1.6;
}

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

.more_btn.t_recruit {
    background-color: #fff;
    color: #0C6DFF;
}

.section_ttl.side .more_btn {
    margin-top: 30px;
}

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

.our_service_box.sp {
    display: none;
}

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

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

.our_service_item .top p {
    color: #0C6DFF;
    font-size: 14px;
}

.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;
}

.service_icon {
    background-color: #F8F8F8;
    width: 116px;
    height: 116px;
    border-radius: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

    .our_service_box {
        display: none;
    }

    .our_service_box.sp {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .our_service_box.sp .service_icon {
        width: 90px;
        height: 90px;
    }

    .our_service_item .top.sp {
        display: flex;
        justify-content: space-between;
        margin-bottom: 20px;
    }

    .our_service_item .top.sp .item {
        width: 60%;
    }

    .our_service_item .top.sp .item h5 {
        margin: 16px 0 20px;
        font-weight: bold;
        font-size: 20px;
    }

    .our_service_item .top.sp .item .text {
        font-size: 16px;
        color: #252525;
    }
}


/* ベルト（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-color: #0C6DFF;
    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;
}

.belt_under_ttl {
    color: #fff;
    font-size: clamp(1.438rem, 1.235rem + 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: auto;
} */

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

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

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

.case_study_section h2 {
    color: #0C6DFF;
    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: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 35px;
    row-gap: 60px;
    margin-bottom: 100px;
}

.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 .t_case_thumbnail.tips img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

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

.top_case_box .t_case_tag {
    font-size: 16px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.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;
}

.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: #0C6DFF;
}

.top_case_box .middle_info {
    font-size: clamp(1rem, 0.973rem + 0.14vw, 1.125rem);
    font-weight: 500;
    /* line-height: 1.6; */
    line-height: 2.3;
    /* padding-bottom: 30px; */
    padding-bottom: 10px;
    border-bottom: solid 1px #C5C5C5;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

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

/* 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 {
    padding: 0.5em 1.1em;
    display: flex;
    align-items: center;
    gap: 7px;
    border: solid 1px #A9A9A9;
    border-radius: 3px;
    position: relative;
}

.industry-category .case_category_box li.js-filter.is-active {
    background: #0C6DFF;
    color: #fff;
    border: none;
}

.industry-category .case_category_box li::before {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50vh;
    background-color: #0C6DFF;
}

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

.issue-category .case_category_box li {
    background-color: #F2F2F2;
    padding: 0.5em 1.1em;
    display: flex;
    align-items: center;
    gap: 7px;
    border-radius: 50vh;
}

.issue-category .case_category_box li.js-filter.is-active {
    background: #0C6DFF;
    color: #fff;
}

.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;
}

.sale_tips_wrapper {
    display: flex;
    justify-content: space-between;
    gap: 11%;
    overflow: hidden;
}

.t_sale_left {
    padding-left: 16%;
}

.t_sale_right {
    overflow: hidden;
}

.sale_tips_section h2 {
    color: #0C6DFF;
    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;
    height: 400px;
}

.t_tips_thumbnail {
    /* display: block; */
    display: flex;
    width: 100%;
    min-height: 234px;
    border-radius: 5px;
    background-size: cover;
    background-repeat: no-repeat;
    justify-content: center;
    align-items: center;
}

.t_tips_info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
}

.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);
}

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

.t_tips_ttl {
    font-size: clamp(0.875rem, 0.821rem + 0.27vw, 1.125rem);
    font-weight: 500;
    margin-top: 20px;
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

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

.news_section h2 {
    color: #0C6DFF;
    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: 3em;
}

.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-flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 3rem 1rem;
}

.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);
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* bottom_card */
/* 1.会社概要カード */
.bottom_card_box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 7rem;
}

.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-image: url(../img/bottom_card/company_profile.png);
}

/* 2.代表メッセージカード */
.bottom_card_thumbnail.second {
    background-image: url(../img/bottom_card/ceo_message.png);
}

/* top_recruit_section */
.top_recruit_section {
    background-color: #0C6DFF;
    color: #fff;
    position: relative;
    overflow: hidden;
    padding-bottom: 176px;
}

.top_recruit_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;
}

.recruit_top {
    display: grid;
    grid-template-columns: 30% 50%;
    gap: 20%;
}

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

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

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

.top_recruit_image {
    width: 100%;
    height: 420px;
    border-radius: 10px;
    background-image: url(../img/t_recruit/recruit_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_recruit_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_recruit_line {
    width: 100%;
    position: absolute;
    bottom: -3%;
    left: 50%;
    transform: translateX(-50%);
}

.top_recruit_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-color: #22222C;
    color: #fff;
    padding: 3rem 3rem 5rem;
    border-radius: 15px;
}

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

.footer_contact_ttl span {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(2.75rem, 2.264rem + 2.43vw, 5rem);
    font-weight: 600;
    margin: 0 0.1em;
}

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

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

@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: 1.5em;
}

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

.f_download_btn {
    background-color: #fff;
    color: #22222C;
    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: 5%;
    padding: 0.9em 35px;
    border-radius: 4px;
}

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

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

.f_data_btn_box::before {
    width: 22px;
    height: 20px;
    content: "";
    background-image: url(../img/footer/download.svg);
    background-size: cover;
    background-repeat: no-repeat;
    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/white_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 .f_data_btn_box {
    background-color: #22222C;
}

.f_contact_btn:hover .f_con_btn_box {
    background-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/blue_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 {
    /* 少し小さい囲み用 */
    border: solid 1px #22222C;
    width: 20px;
    height: 20px;
    border-radius: 4px;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

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

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

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

.more_btn:hover .p_btn_box,
.f_recruit_btn:hover .p_btn_box {
    background-color: #fff;
    width: 22px;
    height: 22px;
    transition: 0.3s;
}

.more_btn:hover .p_btn_box::before,
.f_recruit_btn:hover .p_btn_box::before {
    background-image: url(../img/blue_arrow.svg);
}



.p_btn_box.other::before {
    width: 11px;
    height: 11px;
    background-image: url(../img/news/blue_arrow.svg);
}

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

.p_btn_box.blue_border {
    border: solid 1px #0C6DFF;
}

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

/* news_btn */

.news_btn_box {
    /* 少し小さい囲み用 */
    border: solid 1px #0C6DFF;
    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;
    margin-left: 10px;
}

.news_btn_box::before {
    width: 10px;
    height: 10px;
    content: "";
    background-image: url(../img/news/blue_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: #0C6DFF;
}

/* 変更点：ホバー時（とキーボードフォーカス時）だけ再生 */
a:hover .news_more_btn .news_btn_box::before,
.news_more_btn:focus-visible .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 #0C6DFF;
    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/blue_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_recruit:hover .rec_btn_box {
    background-color: #0C6DFF;
}

.more_btn.t_recruit:hover .rec_btn_box::before,
.more_btn.t_recruit: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: #0C6DFF;
    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: 5%;
    padding: 0.9em 35px;
    border-radius: 4px;
}

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

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

.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: grid;
    grid-template-columns: 30% 50%;
    gap: 20%;
    margin: 3.5em 0 6.4em;
}

.footer_middle_right {
    display: grid;
    grid-template-columns: 20% 80%;
    gap: 8%;
}

/* 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 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: #0C6DFF;
    z-index: -1;
    /* 文字の後ろに表示 */
}

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

.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: 3.3%;
    font-size: clamp(0.813rem, 0.799rem + 0.07vw, 0.875rem);
}

.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 .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;
    gap: 9%;
}

.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;
}

.f_recruit_btn {
    background-color: #0C6DFF;
    color: #fff;
    font-size: clamp(0.875rem, 0.848rem + 0.14vw, 1rem);
    font-weight: 500;
    min-width: 194px;
    min-height: 72px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 5%;
    padding: 0.9em 2em;
    border-radius: 4px;
}

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

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

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

.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;
}

.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: #0C6DFF;
}

.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 (min-width: 1921px) {

    /* --------------fv_under-------------- */
    .fv_under {
        padding-top: 4vw;
    }
}

@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: 1320px) {

    /* --------------全体用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;
    }

    .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 .bottom_txt {
        text-align: center;
    }

    .achieve_box {
        text-align: center;
    }

    /* --------------fv_under-------------- */
    .fv_under_loop {
        animation: fv_under_loop 5s linear infinite;
    }

    /* --------------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 {
        grid-template-columns: repeat(2, 1fr);
    }

    .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_section .swiper_btn_box {
        margin-top: 5px;
    }

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

    .t_sale_left {
        padding-left: 0;
    }

    /* --------------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: 880px) {
    .footer_bottom_wrapper {
        flex-direction: column;
        align-items: flex-start;
    }

}

@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 .more_btn {
        margin-top: 0px;
    }

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

    /* --------------fv----------- */
    .fv_left .middle_txt {
        line-height: 2;
        margin: 23px 0 45px;
    }

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

    .our_service_item .top p {
        font-size: 15px;
    }

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

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

    .belt_partner_item {
        width: auto;
        height: auto;
    }

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

    .belt_partner_box .row2 .belt_partner_item:nth-child(1) {
        padding: 0 1.5em;
    }

    .belt_partner_box .row2 .belt_partner_item:nth-child(1) img,
    .belt_partner_box .row2 .belt_partner_item:nth-child(2) img {
        width: 73%;
    }

    .belt_loop_txt {
        bottom: -14px;
    }

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

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

    .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;
    }

    /* --------------recruit----------- */
    .top_recruit_section {
        padding-bottom: 58px;
    }

    .top_recruit_image {
        height: 248px;
    }

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

    .top_r_loop_tzt {
        bottom: 2%;
    }

    .top_recruit_line {
        bottom: -1%;
    }

    .top_recruit_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; */
        padding: 0;
    }

    /* --------------bottom_card----------- */
    .bottom_card_box {
        grid-template-columns: repeat(1, 1fr);
        gap: 30px;
    }

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

    .footer_contact_wrapper {
        /* footer上部（黒）のwrapper */
        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%;
    }

    .f_recruit_btn {
        width: 75%;
    }

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

    .footer_middle_wrapper {
        grid-template-columns: 100%;
        gap: 65px;
    }

    .footer_middle_right {
        display: flex;
        /* justify-content: space-between; */
        justify-content: flex-start;
        gap: 18%;
    }


    .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;
    }

    .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: 100% !important;
    }
}


.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_sale_right .swiper-button-next,
    .t_sale_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 .page_title,
.privacy_policy_page_section .page_title {
    color: #0C6DFF;
    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 h1,
.privacy_policy_page_section h1 {
    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 h2 {
    font-weight: bold;
    font-size: 50px;
    padding-bottom: 20px;
    border-bottom: 1px solid #C5C5C5;
}

@media screen and (max-width: 768px) {
    .message_page_section .message_area h2 {
        font-size: 24px;
    }
}

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

.message_page_section .message_area .txt.author {
    text-align: right;
}

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

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

.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 h2 {
    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 .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 .page_title,
.faq_page_section .page_title {
    color: #0C6DFF;
    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 h1,
.faq_page_section h1 {
    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 #0C6DFF;
    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 #0C6DFF;
    }

    @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: #0C6DFF;
    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: #0C6DFF;
    cursor: pointer;
    position: relative;
}

.faq_area details summary::before {
    position: absolute;
    top: 46px;
    left: 40px;
    content: "Q.";
    display: inline-block;
    color: #0C6DFF;
    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: #0C6DFF;
    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: 48px 80px;
    font-size: 16px;
    font-weight: 500;
    color: #22222c;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.3s ease;
}

.faq_area details.open .answer {
    opacity: 1;
    /* padding: 48px 80px; */
}

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

.faq_area details .answer a {
    color: #0C6DFF;
    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: 24px 24px 24px 64px;
    }

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

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

@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.recruit_entry {
    padding: 64px 0 100px;
}

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

.contact_page_section .contact_page_wrapper {
    display: grid;
    grid-template-columns: 35% 60%;
    gap: 5%;
}

.contact_page_section .page_title {
    color: #0C6DFF;
    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 h1 {
    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.recruit {
    padding: 80px 0 80px 0;
}

.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: #0C6DFF;
    padding: 22px 26px;
    border-radius: 3px;
    color: #ffffff;
    margin: 60px auto 0;
}

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

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

.thanks_page_section .backBtn:hover .h_btn_box {
    border: solid 1px #fff;
    background-color: transparent;
}

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

.thanks_page_section .backBtn:hover .h_btn_box::before {
    animation: arrow-sweep 0.55s ease-in-out 1 both;
}

@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;
    }
}

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

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

.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 h1 {
    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: #0C6DFF;
    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;
}

.post_contents.tips .post_thumbnail {
    overflow: hidden;
}

.news-single .post_contents.tips img {
    margin-bottom: 0;
    object-fit: cover;
    display: block;
    width: 100%;
    height: 100%;
}

.entry-content.news p {
    /* padding-top: 2em; */
    padding: 0 0.5em;
}

.entry-content.news p:first-child {
    padding-top: 3em;
}

@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 a,
.pagination span {
    display: inline-block;
    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: #0C6DFF;
    color: #ffffff;
    border-radius: 50%;
}

/* 前後ページボタン（« 前へ, 次へ »） */
.pagination .prev,
.pagination .next {
    /* display: inline-block; */
    display: inline-flex;
    /* padding: 8px 12px;*/
    /* width: 44px; */
    /* height: 44px; */
    width: 54px;
    height: 54px;
    justify-content: center;
    align-items: center;
    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: #0C6DFF;
    color: #fff;
}

/* 数字リンクのホバー時の色 */
.pagination a:hover,
.pagination span:hover {
    background-color: #0C6DFF;
    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: #0C6DFF;
    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;
    }
}

/* ▲ 代表メッセージ(採用) ここまで ▲ */

/* ▼ 404ページ ここから ▼ */

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

.error404_section .inner {
    width: 800px;
    margin: 0 auto;
    text-align: center;
}

@media screen and (max-width: 799px) {
    .error404_section .inner {
        width: 90%;
    }
}

.error404_section .inner h1 {
    font-size: 36px;
    font-weight: 700;
}

.error404_section .inner .txt {
    padding-top: 16px;
    line-height: 1.6;
}

.error404_section .error404_video {
    padding-top: 32px;
}

.error404_section .error404_video video {
    width: 100%;
    height: auto;
    display: block;
}

.error404_section .error404_contents {
    text-align: left;
    padding-top: 32px;
}

@media screen and (max-width: 799px) {
    .error404_section .error404_contents {
        text-align: center;
    }
}


.error404_section .error404_contents .error404_box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #c5c5c5;
    padding: 32px 0;
    line-height: 1.3;
    letter-spacing: 0.04em;
}

@media screen and (max-width: 799px) {
    .error404_section .error404_contents .error404_box {
        flex-direction: column;
    }
}


.error404_section .error404_contents .error404_box h3 {
    font-weight: 900;
    font-size: 32px;
}

.error404_section .error404_contents .error404_box .text {
    font-weight: 500;
    line-height: 1.7;
    padding-top: 16px;
}

.error404_section .error404_contents .error404_box .colored {
    color: #0C6DFF;
}

.error404_section .error404_contents .error404_box img {
    width: 276px;
    height: auto;
    filter: drop-shadow(0 8px 8px rgba(0, 0, 0, 0.25));
}

@media screen and (max-width: 799px) {
    .error404_section .error404_contents .error404_box img {
        width: 70%;
        margin-top: 16px;
    }
}


.error404_section .error404_introduction {
    padding-top: 48px;
}

.error404_section .error404_introduction h2 {
    font-size: 34px;
    font-weight: 700;
    padding-bottom: 24px;
}

@media screen and (max-width: 480px) {
    .error404_section .error404_introduction h2 {
        font-size: 30px;
    }
}

.error404_section .swiper-container {
    position: relative;
}

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

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

.error404_section .t_tips_ttl {
    margin-top: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: left;
}

.error404_section .swiper_btn_box {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 50px;
}

.error404_section .swiper-button-prev,
.swiper-button-next {
    position: static;
    display: flex;
}

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

.error404_section .swiper-button-next {
    color: #fff;
    background-color: #0C6DFF;
}

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

.error404_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: 600px) {
    .error404_section .swiper-slide {
        width: 70% !important;
        text-align: left;
    }
}
@media screen and (max-width: 600px) {
    .error404_section .swiper-slide {
        width: 90% !important;
    }
}

/* ▲ 404ページ ここまで ▲ */

/* ▼ RTOC プラグイン 追加CSS ここから ▼ */

.rtoc-mokuji-content #rtoc-mokuji-title.rtoc_left {
    flex-direction: row !important;
}

/* ▲ RTOC プラグイン 追加CSS ここまで ▲ */

@media screen and (max-width: 1280px) {
    .sale_tips_section .swiper-button-next, .swiper-button-prev {
        display: flex !important;
    }
}

.wpcf7 .wpcf7-submit:disabled {
    cursor: pointer !important;
}