@charset "utf-8";

html {
    scroll-behavior: smooth;
    font-size: 62.5%;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.6rem;
    line-height: 1.5;
    letter-spacing: 0em;
    color: #333333;
    background-color: #EDEBE7;
}

:root {
    --mv-font: "Zen Kaku Gothic New", sans-serif;
    --en-font: "Roboto", sans-serif;;
}

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

.sp {
    display: block;
}

.pc {
    display: none;
}

/* -----------共通-----------*/
.header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    left: 0;
    background-color: #FFFFFF;
    padding-left: 8px;
    z-index: 100;
}

.header_left {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header_logo {
    display: flex;
    width: 47px;
}

.header_logo img {
    width: 47px;
}

.header_logo_link {
    display: flex;
}

.header_logo_text {
    display: none;
    text-wrap: nowrap;
}

.header_nav {
    position: fixed;
    inset: 0;
    background: #FFFFFF;
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.header_nav_list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.header_nav_item {
    font-weight: 500;
    line-height: 1.5;
}

.header_nav_link {
    transition: color 0.2s ease-in;
}

@media (any-hover: hover) {
    .header_nav_link:hover {
        color: #B70112;
    }    
}

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

.header_button_link_list {
    display: flex;
}

.header_button_link {
    color: #FFFFFF;
    font-size: 1rem;
    font-weight: 500;
    width: 87px;
    height: 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 4px;
    position: relative;
    z-index: 100;
}

.header_button_link_item:nth-child(1) .header_button_link {
    background-color: #434343;
}

.header_button_link_item:nth-child(2) .header_button_link {
    background-color: #B70112;
}

.header_button_link_item:nth-child(1) .header_button_link img {
    width: 23px;
}

.header_button_link_item:nth-child(2) .header_button_link img{
    width: 29px;
}

.hamburger {
    width: 56px;
    height: 56px;
    position: relative;
    z-index: 100;
}

.hamburger_bar {
    width: 26px;
    height: 1px;
    position: absolute;
    left: 50%;
    translate: -50% 0;
    background-color: #B70112;
    border-radius: 100vmax;
    transition:  top 0.3s ease-in, translate 0.3s ease-in , rotate 0.3s ease-in, opacity 0.3s ease-in;
}

.hamburger_bar:nth-child(1) {
    top: calc(50% - 7px);
}

.hamburger_bar:nth-child(2) {
    top: 50%;
}

.hamburger_bar:nth-child(3) {
    top: calc(50% + 7px);
}

.gtranslate_wrapper {
    position: absolute;
    right: 1.6rem;
    top: calc(100% + 1rem);
    background-color: #CAC8C4;
    font-size: 1.4rem;
    color: #fff;
    border-radius: 0.4rem;
}

.glink {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    color: #444444;
}

.gt-current-lang {
    background-color: #fff;
    color: #B70112;
    border-radius: 0.4rem;
}

.floating_cta {
    position: fixed;
    z-index: 100;
    bottom: 105px;
    right: 8px;
}

.floating_cta_link {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    background-color: #B70112;
    border-radius: 100vmax;
    font-size: 8px;
    color: #FFFFFF;
    font-weight: bold;
    box-shadow: 0 4px 4px color-mix(in srgb, #000000 25%, transparent);
    transition: translate 0.1s ease-in, box-shadow 0.1s ease-in;
}

.floating_cta_link:focus-visible {
    translate: 0 2px;
    box-shadow: 0 0 transparent;
}

@media (any-hover: hover) {
    .floating_cta_link:hover {
        translate: 0 2px;
        box-shadow: 0 0 transparent;
    }
}


.floating_cta_link img {
    width: 24px;
}

.top_link_wrapper {
    margin-top: 4rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.top_link {
    display: inline-block;
    width: 20rem;
    padding: 1.7rem 3rem;
    background-color: #434343;
    color: #FFFFFF;
    font-weight: 500;
    position: relative;
    text-align: left;
    box-shadow: 2px 2px 4px color-mix(in srgb, #000000 20%, transparent);
    transition: translate 0.1s ease-in, box-shadow 0.1s ease-in;
}

.top_link:focus-visible {
    translate: 0 2px;
    box-shadow: 0 0 transparent;
}

@media (any-hover: hover) {
    .top_link:hover {
        translate: 0 2px;
        box-shadow: 0 0 transparent;
    }
}

.top_link::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 2rem;
    translate: 0 -50%;
    width: 2.3rem;
    height: 2.3rem;
    background-image: url(../img/icon_arrow.svg);
    background-size: contain;
    background-repeat: no-repeat;
}

/* ----- youtube ----- */

.youtube {
    padding: 36px 16px 56px;
    overflow: hidden;
}

.youtube_head {
    font-size: 20px;
    font-weight: 500;
    text-align: center;
}

.youtube_banner_upper {
    margin-top: 16px;
    width: max(280px, 77vw);
    margin-inline: auto;
    overflow: hidden;
}

.youtube_link img {
    transition: scale 0.1s ease-in, filter 0.1s ease-in;
}

.youtube_link:focus-visible.youtube_link img{
    scale: 1.01;
    filter: brightness(1.1);
}


@media (any-hover: hover) {
    .youtube_link img:hover {
        scale: 1.01;
        filter: brightness(1.1);
    }    
}

.youtube_banner_swiper {
    margin-top: 28px;
    width: 100vw;
    margin-left: calc(50% - 50vw);
}

/* -----------下層ページページタイトル-----------*/
.subpage_text-wrapper {
    display: flex;
    gap: 8rem;
    align-items: flex-end;
    max-width: 1200px;
    margin-inline: auto;
    margin-bottom: 1rem;
}

.subpage_headgroup {
    position: relative;
    z-index: 1;
    padding: 0 3.2rem;
}

.subpage_subtitle {
    font-size: 5.8rem;
    color: #FFFFFF;
    font-weight: 600;
    font-family: var(--en-font);
    text-transform: uppercase;
    line-height: 0.9;
    position: relative;
    z-index: 2;
}

.subpage_title {
    margin-top: 1.3rem;
    font-size: 2rem;
    position: relative;
    z-index: 1;
}

.subpage_title::before {
    content: "";
    position: absolute;
    bottom: -4rem;
    left: -3.2rem;
    display: inline-block;
    width: 127px;
    height: 121px;
    background-color: #B70112;
    z-index: -1;
}

/* -----------下層ページコンテナ-----------*/
.subpage_container {
    max-width: 1200px;
    margin: 0 auto;
}

/* ------施設実績＆ブログページネーション ------*/
.list_pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.4rem;
    margin: 8rem 0 0 0;
}

.list_pagination_link {
    width: 5rem;
    aspect-ratio: 1;
    font-size: 2rem;
    font-weight: 500;
    border-radius: 50%;
    color: #fff;
    background: #444444;
    display: flex;
    align-items: center;
    justify-content: center;
}
.page-numbers:not(.next):not(.prev) {
    width: 5rem;
    aspect-ratio: 1;
    font-size: 2rem;
    font-weight: 500;
    border-radius: 50%;
    color: #fff;
    background: #444444;
    display: flex;
    align-items: center;
    justify-content: center;
}

.list_pagination_link.to_list {
    width: fit-content;
    aspect-ratio: unset;
    border-radius: 50px;
    padding: 1rem 3.2rem;
    font-size: 1.6rem;
    transition: translate 0.1s ease-in, box-shadow 0.1s ease-in;
}

@media (any-hover: hover) {
    .list_pagination_link.to_list:hover {
        translate: 0 2px;
    }
}

.list_pagination_link.active {
    background: #B70112;
}

.list_pagination_prev {
    display: block;
    width: 1.2rem;
    aspect-ratio: 1;
    border-left: 1px solid #000000;
    border-top: 1px solid #000000;
    transform: rotate(-45deg);
}
.list_pagination_next {
    display: block;
    width: 1.2rem;
    aspect-ratio: 1;
    border-right: 1px solid #000000;
    border-bottom: 1px solid #000000;
    transform: rotate(-45deg);
}

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


/* -----------footer-----------*/
.footer_cta {
    display: flex;
    flex-direction: column;
}

.footer_cta_link {
    position: relative;
    transition: filter 0.1s ease-in;
}

.footer_cta_link::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.footer_cta_link:before {
    background-color: color-mix(in srgb, #202020 50%, transparent);
}

.footer_cta_link:before {
    background-color: none;
    transition: background-color 0.1s ease-in;
}

.footer_cta_link:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    transition: opacity 0.1s ease-in;
    opacity: 0;
}

.footer_cta_link:focus-visible::after {
    background-image: linear-gradient(to bottom, #FFFFFF, #B70112 );
    opacity: 62%;
}

@media (any-hover: hover) {
    .footer_cta_link:hover::after {
        background-image: linear-gradient(to bottom, #FFFFFF, #B70112 );
        opacity: 62%;
    }
}


.footer_cta_link_text {
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    font-size: 2rem;
    font-weight: 500;
    color: #FFFFFF;
    z-index: 2;
}

.footer_cta_link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer_company_info {
    padding: 5.2rem 3.2rem 6.8rem;
    max-width: 126.4rem;
    margin-inline: auto;
}

.footer_company_info_upper {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 0;
    align-items: center;
    justify-content: space-between;
}

.footer_company_name {
    font-weight: bold;
}

.footer_company_name_lg {
    font-size: 3rem;
}

.footer_company_sns {
    display: flex;
    flex-wrap: wrap;
}

.footer_company_sns_item {
    width: 25px;
}

.footer_company_info_lower {
    margin-top: 54px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.footer_company_info_item_wrapper {
    display: flex;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 8px 34px;
}

.footer_company_info_item {
    min-width: 178px;
}

.fotter_company_info_place {
    display: flex;
    justify-content: space-between;
    width: 140px;
}

.fotter_company_info_office {
    font-size: 1.2rem;
}

.fotter_company_info_map {
    text-decoration: underline;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 1.1rem;
}

.fotter_company_info_map::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url(../img/icon_map-pin.svg);
    background-repeat: no-repeat;
    background-size: contain;
}

.fotter_company_info_address {
    font-size: 1.2rem;
}

.footer_company_info_numbers {
    font-size: 1.4rem;
}

.footer_nav_wrapper {
    padding: 40px 32px 24px;
    background-color: #434343;
}

.footer_nav {
    max-width: 1080px;
    margin-inline: auto;
    color: #FFFFFF;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2.4rem 0;
}

.footer_nav_page {
    display: flex;
    flex-direction: column;
}

.footer_nav_page_title {
    font-weight: bold;
}

.footer_nav_section_title:nth-child(2) {
    margin-top: 9px;
}

.footer_nav_section_title:not(:nth-child(2)) {
    margin-top: 5px;
}

.footer_nav_section_title {
    font-size: 1.2rem;
}

.footer_nav_page_last {
    margin-top: 20px;
    display: flex;
    flex-wrap: nowrap;
    gap: 72px;
}

.footer_copyright {
    padding: 0 3rem 2.6rem;
    background-color: #434343;
}

.footer_copyright::before {
    content: "";
    display: block;
    width: 100%;
    max-width: 120rem;
    margin-inline: auto;
    height: 1px;
    background-color: #FFFFFF;
}

.footer_copyright_inner {
    max-width: 120rem;
    margin-inline: auto;
}

.footer_privacy_policy_text {
    margin-top: 1.2rem;
    font-size: 1.2rem;
    color: #FFFFFF;
    text-align: center;
}

/* -----------top-----------*/
.top_mv {
    width: 100%;
    position: relative;
}
.top_mv_swiper {
    width: 100%;
    height: calc(100svh - 56px);
    position: relative;
    overflow: hidden;
}

.top_mv_slide {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: 80% 50%;
    position: relative;
}

.top_mv_slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 80% 50%;
}

/* コピー部分（テキスト）はオーバーレイより上に表示されるように設定 */
.top_mv_copy_wrapper {
    position: absolute;
    z-index: 2; /* オーバーレイより上に */
}

.swiper-slide {
    width: 100%;
    height: 100%;
}

.swiper-slide:nth-child(3) .top_mv_slide::before,
.swiper-slide:nth-child(4) .top_mv_slide::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.top_mv_copy_wrapper {
    position: absolute;
    bottom: 52px;
    left: 32px;
    z-index: 2;
}

.top_mv_main_copy {
    font-size: clamp(44px, 12vw, 80px);
    line-height: 1.28;
    color: #FFFFFF;
    font-weight: bold;
    font-family: var(--mv-font);
}

.top_mv_sub_copy {
    color: #FFFFFF;
    font-weight: bold;
    font-size: clamp(10px, 3.33vw, 30px);
}

/* ----- about ----- */
.top_about {
    padding: 10.6rem 0 4.8rem;
    object-fit: hidden;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.top_about::before {
    content: "";
    position: absolute;
    top: 7.5rem;
    left: 0;
    width: 91.8vw;
    height: 65%;
    background-color: #FFFFFF;
    z-index: -2;
}


.top_about_texts {
    padding: 0 4.4rem;
    position: relative;
    z-index: 1;
}

.top_about_subtitle {
    position: absolute;
    text-transform: uppercase;
    top: -9.3rem;
    right: 4%;
    font-size: 5.8rem;
    font-weight: 500;
    font-family: var(--en-font);
    color: #FFFFFF;
}

.top_about_title {
    font-size: 2rem;
    text-align: center;
}

.top_about_desc {
    max-width: 55rem;
    margin-inline: auto;
    margin-top: 3rem;
    font-size: 1.4rem;
    line-height: 2.2;
}


.top_about_image {
    width: 82%;
    max-width: 55rem;
    margin-top: 8.8rem;
    margin-left: 6vw;
    position: relative;
    z-index: 1;
}

.top_about_image::before {
    content: "";
    position: absolute;
    width: calc(100% + 3.2rem);
    height: 100%;
    top: -3.5rem;
    left: 3.87vw;
    background-color: #B70112;
    z-index: -1;
}

.top_about_image img{
    width: 100%;
    height: 100%;
}

/* ----- service ----- */
.top_service {
    padding: 2.3rem 0 3.6rem;
    overflow: hidden;
}

.top_service_headgroup {
    position: relative;
    z-index: 1;
    padding: 0 3.2rem;
}

.top_service_subtitle {
    font-size: 5.8rem;
    color: #FFFFFF;
    font-weight: 600;
    font-family: var(--en-font);
    text-transform: uppercase;
    line-height: 0.9;
    position: relative;
    z-index: 2;
}

.top_service_title {
    margin-top: 1.3rem;
    font-size: 2rem;
    position: relative;
    z-index: 1;
}

.top_service_title::before {
    content: "";
    position: absolute;
    bottom: -4rem;
    left: -3.2rem;
    display: inline-block;
    width: 127px;
    height: 121px;
    background-color: #B70112;
    z-index: -1;
}

.top_service_desc {
    margin-top: 5.6rem;
    line-height: 2.2;
    padding: 0 3.2rem;
}

.top_service_swiper {
    margin-top: 3.6rem;
    overflow: visible;
}


.top_service_slide {
    aspect-ratio: 1 /1;
    position: relative;
}

.top_service_slide::before {
    content: "";
    display: inline-block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: color-mix(in srgb, #000000 20%, transparent);
    z-index: 1;
}

.top_service_slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 40% 50%;
    position: relative;
    z-index: 0;
}

.top_service_slide_texts {
    position: absolute;
    bottom: 0;
    z-index: 2;
    color: #FFFFFF;
    width: 100%;
}

.top_service_slide_title {
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    padding: 0 3.2rem;
}

.top_service_slide_desc {
    margin-top: 1.2rem;
    font-size: 1.4rem;
    padding: 0 3.2rem;
}

.top_service_slide_link {
    display: block;
    margin-top: 3.2rem;
    padding: 1.1rem 1.6rem;
    background-color: #434343;
    text-align: center;
    font-weight: bold;
    font-size: 1.8rem;
    position: relative;
    box-shadow: 0 4px 4px color-mix(in srgb, #000000 20%, transparent);
    transition: translate 0.1s ease-in, box-shadow 0.1s ease-in;
}

@media (any-hover: hover) {
    .top_service_slide_link:hover {
        translate: 0 2px;
        box-shadow: 0 0 transparent;
    }
}

.top_service_slide_link img {
    position: absolute;
    width: 2.4rem;
    height: 2.4rem;
    top: 50%;
    right: 1.1rem;
    translate: 0 -50%;
}

.top_service_swiper-pagination {
    top: -3rem;
    height: fit-content;
}

.swiper-pagination-bullet {
    background-color: #E0D9DA;
    opacity: 1;
    width: 5px;
    height: 5px;
}

.swiper-pagination-bullet-active {
    background-color: #B70112;
}

.top_service_swiper-button-prev, .top_service_swiper-button-next {
    display: none;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    display: none;
}

/* ----- recruit ----- */
.top_recruit {
    padding: 12rem 3.8rem 5.4rem;
    position: relative;
    z-index: 1;
}

.top_recruit::before {
    content: "";
    position: absolute;
    top: 9.5rem;
    left: 50%;
    translate: -50% 0;
    width: calc(100% - 4rem);
    height: 76%;
    background-color: #FFFFFF;
    z-index: -1;

}

.top_recruit_subtitle {
    position: absolute;
    top: 4.6rem;
    left: 12.8%;
    font-size: 5.8rem;
    font-family: var(--en-font);
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1;
    color: #FFFFFF;
}

.top_recruit_title {
    font-size: 2rem;
}

.top_recruit_desc {
    margin-top: 1.6rem;
    font-size: 1.4rem;
    line-height: 1.9;
    max-width: 48rem;
}

.top_recruit_list {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.6rem;
}

.top_recruit_item {
    background-color: #B70112;
    padding: 2rem 1.6rem;
    max-width: 34.2rem;
    margin-inline: auto;
}

.top_recruit_dicvision {
    color: #FFFFFF;
    font-size: 1.8rem;
    text-align: center;
}

.top_recruit_image {
    margin-top: 2rem;
}

/* ---------- case ---------- */
.subpage_mv_image_wrapper {
    width: 100%;
    height: 20rem;
    position: relative;
    z-index: 1;
}

.subpage_mv_image_wrapper::after {
    content: "";
    width: 100%;
    height: 100%;
    background-color: color-mix(in srgb, #000000 20%, transparent);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

.subpage_mv_image_wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ----------- case_works -----------*/
.case_works {
    padding: 5rem 2rem;
}

.case_works_container {
    background: #F8F7F5;
    padding: 9rem 2rem 6.5rem;
}

.case_works_list_selector {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin: 0 0 4.5rem auto;
    position: relative;
}

.case_works_list_selector form {
    width: 100%;
}

.case_works_list_selector_select {
    width: 100%;
    max-width: 100%;
    font-size: 1.6rem;
    padding: 0.9rem 0rem 0.9rem 0rem;
    background: #B70112;
    color: #fff;
    font-weight: 500;
    position: relative;
    border-radius: 5px;
    text-align: center;
    text-align-last: center;
    margin: 0 auto;
}

.case_works_list_selector_icon {
    position: absolute;
    top: 50%;
    right: 1.2rem;
    translate: 0 -50%;
    font-size: 1.6rem;
    color: #fff;
    font-weight: 500;
    pointer-events: none;
    transition: transform 0.3s ease;
}

.case_works .case_works_list {
    display: flex;
    gap: 1.2rem;
    row-gap: 2.5rem;
    flex-wrap: wrap;
}

.case_works_list_item {
    width: 100%;
    display: block;
    border-radius: 5px;
    overflow: hidden;
    line-height: 1.2;
    background: #fff;
}

.case_works .works_item_image {
    width: 100%;
    aspect-ratio: 1.8;
    object-fit: cover;
    display: block;
}

.case_works .works_item_text {
    background: #fff;
    padding: 2rem 2rem 3.2rem;
}

.case_works .works_item_category {
    width: fit-content;
    font-size: 1.8rem;
    line-height: 1;
    font-weight: 600;
    color: #fff;
    background: #B70112;
    border-radius: 2rem;
    padding: 0.9rem 1.2rem;
    margin-bottom: 1.6rem;
}

.case_works .works_item_title {
    font-size: 2rem;
    font-weight: 500;
    border-bottom: 1px solid #AAAAAA;
    padding: 0.8rem;
}

.case_works .works_item_area_wrapper {
    font-size: 1.4rem;
    border-bottom: 1px solid #AAAAAA;
    padding: 0.8rem;
    display: flex;
}

.case_works .works_item_area_title {
    width: max(28%, 70px);
    flex-shrink: 0;
    font-size: 1.2rem;
}

.case_works .works_item_content_wrapper {
    font-size: 1.4rem;
    line-height: 1.2;
    padding: 0.8rem;
    display: flex;
}

.case_works .works_item_content_title {
    width: max(28%, 70px);
    flex-shrink: 0;
    font-size: 1.2rem;
}

/* ----------- single_case -----------*/
.single_case {
    padding: 10rem 2rem 8.6rem;
}

.single_case .single_case_title {
    font-size: 2rem;
    font-weight: 500;
    margin: 0 0 7.5rem;
    text-align: center;
}

.single_case .single_case_content_heading {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
    margin: 0 0 2.4rem;
    padding: 0 2rem;
}

.single_case .single_case_content_heading_title {
    font-size: 2rem;
    font-weight: 600;
}

.single_case .single_case_content_heading_text {
    font-size: 1.2rem;
}

.single_case .single_case_content_main {
    font-size: 1.2rem;
    line-height: 2.2em;
    margin: 0 0 4rem;
    padding: 0 1.2rem;
}

.single_case .single_case_content_images {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
}

/* --------- company --------- */
.company_about {
    padding: 7rem 2rem 3rem 2rem;
    max-width: 1300px;
    margin: 0 auto 16rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.company_about .company_about_subtitle {
    font-size: 5.8rem;
    font-weight: 600;
    font-family: var(--en-font);
    text-transform: uppercase;
    line-height: 0.9;
    position: relative;
    top: 6px;
    color: #fff;
}

.company_about .company_about_texts {
    flex-grow: 1;
}

.company_about .company_about_title {
    font-size: 2rem;
    margin: 0 0 3rem;
    line-height: 1.2;
    text-align: center;
}

.company_about .company_about_desc {
    font-size: 1.4rem;
    line-height: 2.2;
}

.company_about .company_about_texts_wrapper {
    padding: 5rem 3rem 6rem 3rem;
    position: relative;
    z-index: 1;
}

.company_about .company_about_texts_wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 130%;
    background: #fff;
    z-index: -1;
}

.company_about .company_about_image {
    width: 90%;
    height: 41.3rem;
    flex-shrink: 0;
    position: relative;
    z-index: 10;
}

.company_about .company_about_image::after {
    width: 100%;
    height: 100%;
    content: "";
    position: absolute;
    top: -2.4rem;
    left: 2rem;
    z-index: 0;
    background: #B70112;
}

.company_about .company_about_image img {
    object-fit: cover;
    height: 100%;
    position: relative;
    z-index: 1;
}

/* --------- company business --------- */
.company_business {
    padding: 0 3.4rem;
    background: #fff;
    position: relative;
}

.company_business .company_business_wrapper {
    padding: 5rem 0rem 7rem 0rem;
    position: relative;
    z-index: 1;
}

.company_business .company_business_subtitle {
    font-size: 5.8rem;
    font-weight: 600;
    font-family: var(--en-font);
    text-transform: uppercase;
    line-height: 0.9;
    color: #fff;
    position: absolute;
    top: 6px;
    left: 0;
    transform: translateY(-100%);
}

.company_business .company_business_heading {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    flex-direction: column;
    gap: 1.6rem;
    margin: 0 0 10rem;
}

.company_business .company_business_title {
    flex-shrink: 0;
    font-size: 2rem;
}

.company_business .company_business_desc {
    font-size: 1.6rem;
    line-height: 2.2;
    order: 3;
}

.company_business .company_business_list {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 4rem auto 5rem;
    order: 2;
}

.company_business .company_business_list_type {
    font-size: 1.6rem;
    line-height: 2;
}

.company_business .company_business_list_type_slash {
    color: #B70112;
}

.company_business .company_business_cards {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    gap: 3rem;
}

.company_business .cards_item {
    border-radius: 10px;
    padding: 3.6rem 2rem 4rem;
    color: #fff;
    font-size: 1.6rem;
    line-height: 2.2;
    position: relative;
    z-index: 2;
    overflow: hidden;
}
.company_business .cards_item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.35;
    z-index: -1;
}
.company_business .cards_item:nth-of-type(1) {
    background: url(../img/company_business01.webp) no-repeat center center / cover;
}
.company_business .cards_item:nth-of-type(2) {
    background: url(../img/company_business02.webp) no-repeat center center / cover;
}
.company_business .cards_item:nth-of-type(3) {
    background: url(../img/company_business03.webp) no-repeat center center / cover;
}
.company_business .cards_item:nth-of-type(4) {
    background: url(../img/company_business04.webp) no-repeat center center / cover;
}
.company_business .cards_item:nth-of-type(5) {
    background: url(../img/company_business05.webp) no-repeat center center / cover;
}

.company_business .cards_item_title {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 2.2;
    margin: 0 0 1.8rem;
}

.company_business .cards_item_desc {
    font-size: 1.6rem;
    line-height: 1.5;
}

/* --------- company initiatives --------- */
.company_initiatives {
    padding: 0 2rem;
    margin: 8rem auto 7rem;
}

.company_initiatives .company_initiatives_title {
    font-size: 2.5rem;
    line-height: 2.2;
    font-weight: 600;
    padding: 0 3rem;
    background: #B70112;
    color: #fff;
}

.company_initiatives .company_initiatives_text {
    font-size: 1.6rem;
    line-height: 2.2;
    margin: 0 0 4rem;
    padding: 3rem 0.5rem 2rem;
}

/* --------- company info --------- */
.company_info {
    margin: 8rem auto 0rem;
    padding: 10rem 3.6rem 8rem;
    background: #fff;
    position: relative;
}

.company_info .company_info_subtitle {
    font-size: 5.8rem;
    font-weight: 600;
    line-height: 0.8;
    position: absolute;
    top: 1.4rem;
    left: 0;
    writing-mode: vertical-rl;
    color: #EDEBE7;
}

.company_info .company_info_title {
    font-size: 3rem;
    line-height: 1.2;
    font-weight: 400;
    margin: 0 0 8rem;
    text-align: center;
}

.company_info .company_info_item {
    border-bottom: 1px solid #E1DED8;
    display: flex;
    align-items: center;
    padding: 3rem 1rem 3rem 1rem;
}

.company_info .company_info_item_title {
    width: 10rem;
    flex-shrink: 0;
    font-size: 1.2rem;
    line-height: 1.2;
    font-weight: bold;
}

.company_info .company_info_item_content {
    flex-grow: 1;
    display: flex;
    row-gap: 3.5rem;
    flex-direction: column;
}

.company_info .company_info_item_content_text {
    font-size: 1.6rem;
    line-height: 1.2;
    flex-grow: 1;
}

/* --------- recruit about --------- */
.recruit_about {
    padding: 0 2rem;
    margin: 8rem auto 0;
}

.recruit_about .recruit_about_container {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 4rem;
    margin: 2rem auto 13rem;
}

.recruit_about .recruit_about_image {
    width: 100%;
    aspect-ratio: 1.6;
    object-fit: cover;
}

.recruit_about .recruit_about_text {
    width: 100%;
    font-size: 1.6rem;
    line-height: 2.2;
}

/* --------- recruit message --------- */
.recruit_message {
    padding: 0 0rem;
    margin: 8rem auto 0;
}

.recruit_message .recruit_message_container {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 4rem;
    margin: 2rem auto 5rem;
}

.recruit_message .recruit_message_texts {
    flex-grow: 1;
    padding: 0 2rem;
}

.recruit_message .recruit_message_title {
    font-size: 2rem;
    margin: 0 0 3rem;
    line-height: 1.2;
    text-align: center;
}

.recruit_message .recruit_message_desc {
    font-size: 1.6rem;
    line-height: 2.2;
}

.recruit_message .recruit_message_name {
    font-size: 1.8rem;
    line-height: 1.2;
    margin: 8.4rem 0 0;
    text-align: right;
}

.recruit_message .recruit_message_texts_wrapper {
    padding: 5rem 3rem 6rem 3rem;
    position: relative;
    z-index: 1;
}

.recruit_message .recruit_message_texts_wrapper::before {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 130%;
    background: #fff;
    z-index: -1;
}

.recruit_message .recruit_message_image_wrapper {
    width: 90%;
    flex-shrink: 0;
    position: relative;
    z-index: 10;
}

.recruit_message .recruit_message_subtitle {
    font-size: 5.8rem;
    position: absolute;
    line-height: 0.89;
    font-weight: 600;
    color: #fff;
    left: 2.4rem;
    transform: translateY(-100%);
}

.recruit_message .recruit_message_image {
    width: 100%;
    position: relative;
}

.recruit_message .recruit_message_image::after {
    width: calc(100% + 2.2rem);
    height: 100%;
    content: "";
    position: absolute;
    top: 2.4rem;
    left: 0;
    z-index: 0;
    background: #B70112;
}

.recruit_message .recruit_message_image img {
    object-fit: cover;
    height: auto;
    position: relative;
    z-index: 1;
}


/* --------- recruit routine --------- */
.recruit_routine {
    padding: 14.6rem 2rem 10rem;
    background: #F8F7F5;
    position: relative;
}

.recruit_routine .recruit_routine_subtitle {
    font-size: 5.8rem;
    font-weight: 600;
    line-height: 1;
    color: #EDEBE7;
    text-align: left;
    position: absolute;
    top: -12px;
}

.recruit_routine .recruit_routine_content {
    width: 100%;
    height: 685px;
    margin: 0 auto;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.recruit_routine .recruit_routine_content_item {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 2.8rem 2.8rem 2.8rem 3rem;
    position: absolute;
    z-index: 10;
}
.recruit_routine .recruit_routine_content_item::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.25);
    z-index: -1;
}
.recruit_routine .recruit_routine_content_item::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 8rem;
    height: 8rem;
    background: #B70112;
}
.recruit_routine .spacer::after {
    display: none;
}
.recruit_routine .spacer::before {
    display: none;
}
.recruit_routine .recruit_routine_content_item.sales {
    top: 0;
    z-index: 6;
    background: url(../img/recruit_routine01.webp) no-repeat center center / cover;
}
.recruit_routine .recruit_routine_content_item.construction {
    top: 480px;
    z-index: 8;
    background: url(../img/recruit_routine02.webp) no-repeat center center / cover;
}
.recruit_routine .recruit_routine_content_item.general_affairs {
    top: 575px;
    z-index: 10;
    background: url(../img/recruit_routine03.webp) no-repeat center center / cover;
}


.recruit_routine .item_schedule {
    padding: 7rem 0 0 0;
    display: flex;
    flex-direction: column;
}

.recruit_routine .item_schedule_text {
    font-size: 1.8rem;
    line-height: 3.24rem;
    font-weight: 600;
    color: #fff;
    position: relative;
    display: flex;
    align-items: center;
    gap: 1.8rem;
}
.recruit_routine .item_schedule_text::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 3px;
    width: 2px;
    height: 100%;
    background: #fff;
}
.recruit_routine .item_schedule_text:last-of-type::before {
    display: none;
}


.recruit_routine .item_schedule_text_dot {
    width: 0.8rem;
    aspect-ratio: 1;
    background: #fff;
    border-radius: 50%;
    display: block;
    position: relative;
}

.recruit_routine .item_title {
    font-size: 2.8rem;
    line-height: 1.2;
    letter-spacing: 0.1em;
    font-weight: 600;
    color: #fff;
    writing-mode: vertical-rl;
    text-orientation: upright;
    position: absolute;
    top: 3rem;
    right: 2rem;
    z-index: 10;
}



/* --------- recruit staff --------- */
.recruit_staff {
    padding: 6.2rem 2rem 12rem;
    background: #F8F7F5;
}

.recruit_staff .recruit_staff_subtitle {
    font-size: 5.8rem;
    font-weight: 600;
    line-height: 0.89;
    color: #EDEBE7;
    text-align: left;
}

.recruit_staff .recruit_staff_title {
    font-size: 2rem;
    line-height: 1.2;
    margin: 0 0 4.5rem;
    padding: 3.5rem 1.8rem;
    background: #EDEBE7;
}

.recruit_staff .recruit_staff_cards {
    display: flex;
    flex-direction: column;
    gap: 7rem;
}

.recruit_staff .recruit_staff_card_heading {
    display: flex;
    flex-direction: column-reverse;
    gap: 3rem;
    padding: 6rem 0 0;
}
.recruit_staff .recruit_staff_card:nth-of-type(even) .recruit_staff_card_heading {
    flex-direction: row-reverse;
}

.recruit_staff .card_info_number_wrapper {
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}
.recruit_staff .recruit_staff_card:nth-of-type(even) .card_info_number_wrapper {
    flex-direction: row;
}

.recruit_staff .card_info_name_wrapper {
    width: 50%;
}

.recruit_staff .card_pc_image {
    display: none;
    width: 58%;
    border-radius: 8px;
    object-fit: cover;
}
.recruit_staff .card_sp_image {
    display: block;
    width: 100%;
    margin: 2rem 0 3rem ;
}

.recruit_staff .card_info {
    flex-grow: 1;
    position: relative;
}

.recruit_staff .card_info_number {
    width: 13rem;
    aspect-ratio: 1;
    font-size: 10rem;
    line-height: 0.55;
    font-weight: 400;
    color: #F8F7F5;
    z-index: 10;
    position: relative;
    font-family: var(--en-font);
    bottom: -70px;
}
.recruit_staff .recruit_staff_card:nth-of-type(even) .card_info_number {
    left: 1rem;
}

.recruit_staff .card_info_number::before {
    content: "";
    position: absolute;
    bottom: 70px;
    left: calc(50% - 1rem);
    z-index: -1;
    width: 15rem;
    aspect-ratio: 1;
    background: #B70112;
    transform: translateX(-50%);
}

.recruit_staff .recruit_staff_card:nth-of-type(even) .card_info_number::before {
    left: calc(50% + 0rem);
}

.recruit_staff .card_info_department {
    font-size: 1.6rem;
    line-height: 2.2;
    font-weight: 600;
}

.recruit_staff .card_info_position {
    font-size: 1.2rem;
    line-height: 2.2;
}

.recruit_staff .card_info_name {
    font-size: 1.8rem;
    line-height: 2.2;
    margin: 1.2rem 0 2.5rem;
}

.recruit_staff .card_info_comment {
    font-size: 1.8rem;
    line-height: 2.2;
    margin: 0 0 4rem;
}

.recruit_staff .card_info_more {
    width: 14rem;
    font-size: 1.6rem;
    line-height: 2.2;
    padding: 0 1rem 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #000;
    margin: 0 auto;
    
}

.recruit_staff .card_info_arrow {
    width: 1.2rem;
    height: 1.2rem;
    border-top: 2px solid #B70112;
    border-right: 2px solid #B70112;
    transform: rotate(135deg);
}

.recruit_staff .recruit_staff_card_body {
    padding: 3rem 0 0;
}

.recruit_staff .recruit_staff_card_body_text {
    font-size: 1.2rem;
    line-height: 2.2;
    color: #AAAAAA;
    position: relative;
    padding: 0 0 0 4.4rem;
}

.recruit_staff .recruit_staff_card_body_text::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 3.2rem;
    height: 1px;
    background: #AAAAAA;
    transform: translateY(-50%);
}

.recruit_staff .recruit_staff_card_body_answer {
    font-size: 1.4rem;
    line-height: 2.2;
    margin: 0 0 1rem;
}


/* --------- recruit requirements --------- */
.recruit_requirements {
    padding: 6.2rem 2rem 6rem;
}

.recruit_requirements .recruit_requirements_title {
    font-size: 2rem;
    line-height: 1.2;
    text-align: center;
}

.recruit_requirements .recruit_requirements_content {
    display: flex;
    flex-direction: column;
    margin: 4.5rem auto 9rem;
}

.recruit_requirements .recruit_requirements_content_item {
    display: flex;
    border: 1px solid #AAAAAA;
    border-bottom: none;
}
.recruit_requirements .recruit_requirements_content_item:last-of-type {
    border-bottom: 1px solid #AAAAAA;
}

.recruit_requirements .recruit_requirements_content_item_label {
    width: 9.4rem;
    flex-shrink: 0;
    border-right: 1px solid #AAAAAA;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #CAC8C4;
}

.recruit_requirements .recruit_requirements_content_item_label_text {
    font-size: 1.2rem;
    line-height: 1.2;
    font-weight: 600;
}

.recruit_requirements .recruit_requirements_content_item_body {
    flex-grow: 1;
    padding: 1.5rem 1.2rem;
}

.recruit_requirements .recruit_requirements_content_item_body_text {
    font-size: 1.2rem;
    line-height: 1.6;
}

.recruit_requirements .recruit_requirements_department {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    flex-direction: column;
    padding: 0 2.4rem;
}

.recruit_requirements .recruit_requirements_department_item {
    aspect-ratio: 1;
    border-radius: 12px;
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 3rem;
    font-weight: bold;
    line-height: 1.2;
    position: relative;
    z-index: 10;
    overflow: hidden;
}
.recruit_requirements .recruit_requirements_department_item::after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
}
.recruit_requirements .recruit_requirements_department_item:nth-of-type(1) {
    background: url(../img/recruit_requirements01.webp) no-repeat center center / cover;
}
.recruit_requirements .recruit_requirements_department_item:nth-of-type(2) {
    background: url(../img/recruit_requirements02.webp) no-repeat center center / cover;
}
.recruit_requirements .recruit_requirements_department_item:nth-of-type(3) {
    background: url(../img/recruit_requirements03.webp) no-repeat center center / cover;
}


/* --------- blog --------- */
.blog_list {
    padding: 10rem 0 8.6rem;
}

.blog_list .blog_list_container {
    max-width: 1300px;
    display: flex;
    flex-direction: column;
    gap: 5rem;
    padding: 0 2rem;
}

.blog_list .subpage_text-wrapper {
    margin-bottom: 8rem;
}

.blog_list .blog_list_item {
    display: flex;
    flex-direction: column;
    background: #fff;
    padding: 2.4rem 2.4rem;
    gap: 2.4rem;
}

.blog_list .blog_list_item_image {
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.blog_list .blog_list_item_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog_list .blog_list_item_text_date_wrapper {
    display: flex;
    align-items: center;
    gap: 2.3rem;
}

.blog_list .blog_list_item_text_date {
    font-size: 1.6rem;
    line-height: 1.2;
    font-weight: 500;
}

.blog_list .blog_list_item_text_title {
    margin: 2rem 0;
    font-size: 1.6rem;
    line-height: 1.2;
    font-weight: 600;
}

.blog_list .blog_list_item_text_desc {
    font-size: 1.4rem;
    line-height: 2.2;
}

/* ----------- single blog -----------*/
.single_blog {
    padding: 10rem 2rem 8.6rem;
}

.single_blog .single_blog_title {
    font-size: 2rem;
    font-weight: 500;
    margin: 0 0 7.5rem;
    text-align: center;
}

.single_blog .single_blog_content_heading {
    margin: 0 0 2.4rem;
    padding: 0 2rem;
}

.single_blog .single_blog_content_heading_date_wrapper {
    display: flex;
    align-items: center;
    gap: 2.3rem;
}

.single_blog .single_blog_content_heading_title {
    font-size: 2rem;
    font-weight: 600;
    margin: 3rem 0 0;
}

.single_blog .single_blog_content_heading_text {
    font-size: 1.2rem;
}

.single_blog .single_blog_content_main {
    font-size: 1.2rem;
    line-height: 2.2em;
    margin: 0 0 4rem;
    padding: 0 1.2rem;
}

.single_blog .single_blog_content_images {
    max-width: 78rem;
    margin: 0 0 4.7rem;
}


/* ----------- privacy policy -----------*/
.privacy_policy {
    padding: 7rem 3rem 6rem;
    position: relative;
}

.privacy_policy .privacy_policy_subtitle {
    font-size: 5.8rem;
    font-weight: 600;
    line-height: 0.85;
    position: absolute;
    writing-mode: vertical-rl;
    top: 5rem;
    left: 0;
    color: #F8F7F5;
}

.privacy_policy .privacy_policy_container {
    flex-direction: column;
    gap: 5rem;
    padding: 0 2rem;
}

.privacy_policy .privacy_policy_title {
    font-size: 2rem;
    margin: 0 0 4.5rem;
}

.privacy_policy .privacy_policy_desc {
    font-size: 1.6rem;
    line-height: 2;
    margin: 4.5rem 0 0;
}

.privacy_policy .privacy_policy_content {
    margin: 5rem 0 0;
}

.privacy_policy .privacy_policy_content_title {
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.2;
    margin: 0 0 2.5rem;
    padding: 0 0.2rem 2rem;
    border-bottom: 1px solid #000000;
}

.privacy_policy .privacy_policy_content_desc {
    font-size: 1.6rem;
    line-height: 2.2;
    margin: 0 0 5rem 0;
}

.privacy_policy .privacy_policy_content_desc_company {
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.5;
    margin: 2.7rem 0 1.4rem 0;
    display: block;
}

.privacy_policy .privacy_policy_content_desc_address {
    display: block;
    line-height: 1.5;
    margin: 0 0 1.4rem;
}

.privacy_policy .privacy_policy_content_desc_tel {
    display: block;
    line-height: 1.5;
}

/* ----------- contact form -----------*/
.contact_form {
    padding: 7rem 3rem 13.6rem;
    position: relative;
}

.contact_form .contact_form_container {
    background: #ffffff99;
    padding: 6rem 1.3rem;
}

.contact_form .contact_form_content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact_form .contact_form_content_item {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    position: relative;
}

.contact_form .contact_form_content_item_label {
    width: fit-content;
    font-size: 1.4rem;
    line-height: 1.2;
    font-weight: 500;
    position: relative;
}

.contact_form .contact_form_content_item_label.required::after {
    content: "＊";
    color: #FF0000;
    font-size: 1.2rem;
    font-weight: 900;
    position: absolute;
    top: 0;
    right: -16px;
}

.contact_form .contact_form_content_item_input {
    width: 100%;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.2;
    background: #fff;
    border: 1px solid #AAAAAA;
    border-radius: 6px;
    padding: 1.4rem 2rem;
}

.contact_form .contact_form_content_item_select {
    width: 100%;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.2;
    background: #fff;
    border: 1px solid #AAAAAA;
    border-radius: 6px;
    padding: 1.4rem 2rem;
}

.contact_form .contact_form_content_item_select_wrapper {
    width: 100%;
    position: relative;
}

.contact_form .contact_form_content_item_select_icon {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-size: 1.2rem;
    color: #000;
    font-weight: 500;
    pointer-events: none;
    transition: transform 0.3s ease;
}

.contact_form .contact_form_content_item_textarea {
    width: 100%;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.2;
    border-radius: 6px;
    border: 1px solid #AAAAAA;
    background: #fff;
    padding: 1.4rem 2rem;
    resize: none;
}

.contact_form .contact_form_content_item_privacy_policy_wrapper {
    flex-direction: row;
    align-items: center;
}

.contact_form .contact_form_content_item_privacy_policy_required {
    font-size: 1.2rem;
    line-height: 1.2;
    font-weight: 500;
    background: #666666;
    color: #fff;
    padding: 0.3rem 0.7rem;
    border-radius: 3px;
}

.contact_form .contact_form_content_item_privacy_policy {
    font-size: 1.2rem;
    line-height: 1.2;
    font-weight: 500;
}

.contact_form .contact_form_content_item_privacy_policy_link {
    text-decoration: underline;
    text-underline-offset: 0.2em;
    text-decoration-thickness: 1px;
}

.contact_form .contact_form_content_item_privacy_policy_checkbox {
    width: 1.55rem;
    height: 1.55rem;
    border-radius: 3px;
    border: 1px solid #666666;
    appearance: auto;
    -webkit-appearance: auto;
}

.contact_form .contact_form_content_item_submit {
    width: 12rem;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.2;
    background: #666666;
    color: #fff;
    padding: 1.1rem 0;
    border-radius: 50px;
    margin: 7.4rem auto 0;
    transition: translate 0.1s ease-in, box-shadow 0.1s ease-in;
}

@media (any-hover: hover) {
    .contact_form .contact_form_content_item_submit:hover {
        translate: 0 2px;
    }
}


/* ----- 404 ----- */
.section404 {
    padding: 8rem 1.6rem;
}

/* -----------iphon5/se-----------*/

@media screen and (min-width:270px) {}

/* -----------iphon6~-----------*/

@media screen and (min-width:330px) {}

/* -----------ipad-----------*/

@media screen and (min-width:640px) {

    .sp {
        display: block;
    }

    .pc {
        display: none;
    }

    /* -----------共通-----------*/
    .header {
        width: calc(100% - 64px);
        margin-top: 32px;
        margin-inline: 32px;
        border-radius: 8px;
        gap: 16px;
        background-color: transparent;
        position: fixed
    }

    .header_left {
        height: 60px;
        width: calc(100% - 182px);
        background-color: #FFFFFF;
        padding-right: 50px;
        border-radius: 8px;
        box-shadow: 0 4px 4px color-mix(in srgb, #000000 10%, transparent);
    }
    
    .header_nav {
        position: static;
        background: transparent;
        width: auto;
        opacity: 1;
        pointer-events: inherit;
        justify-content: space-between;
        border-radius: 8px;
    }

    .header_nav_list {
        flex-direction: row;
    }

    .hamburger {
        display: none;
    }


    .header_button_link_list {
        gap: 8px;
    }

    .header_button_link {
        height: 60px;
        border-radius: 8px;
        box-shadow: 0 4px 4px color-mix(in srgb, #000000 10%, transparent);
        transition: translate 0.1s ease-in, box-shadow 0.1s ease-in;
    }

    .header_button_link:focus-visible {
        translate: 0 2px;
        box-shadow: 0 0 transparent;
    }

    @media (any-hover: hover) {
        .header_button_link:hover {
            translate: 0 2px;
            box-shadow: 0 0 transparent;
        }
    }

    .gtranslate_wrapper {
        right: 0;
    }

    .top_link {
        width: 22rem;
    }

    .top_recruit::before  {
        height: 70%;
    }

    /* ----- youtube ----- */
    .youtube_head {
        font-size: 3rem;
    }

    .subpage_mv_image_wrapper {
        height: auto;
        aspect-ratio: 1440 / 400;
    }

    /* ------施設実績＆ブログページネーション ------*/
    .list_pagination {
        margin: 14.5rem 0 0 0;
    }

    .list_pagination_link.to_list {
        font-size: 2rem;
    }


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


    /* -----------footer-----------*/
    .footer_cta {
        flex-direction: row;
        gap: 1.4rem;
        padding-top: 5.4rem;
    }
    .footer_cta_link {
        width: 50%;
    }
    .footer_company_name {
        font-size: 2rem;
    }

    .footer_company_name_lg {
        font-size: 4.8rem;
    }

    .footer_company_sns {
        gap: 2rem;
    }

    .footer_company_sns_item {
        width: 4rem;
    }


    .footer_company_info_lower {
        flex-direction: row;
        align-items: flex-start;
        gap: 109px;
    }

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

    .footer_company_info_item {
        min-width: 240px;
    }

    .fotter_company_info_place {
        min-width: 180px;
    }

    .fotter_company_info_office {
        font-size: 1.6rem;
    }

    .fotter_company_info_address {
        font-size: 1.6rem;
    }

    .fotter_company_info_map {
        font-size: 1.4rem;
    }

    .fotter_company_info_map_link {
        font-size: 1.4rem;
    }

    .footer_company_info_tel {
        font-size: 2.3rem;
    }

    .footer_nav_page_last {
        margin-top: 0;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        gap: 2rem;
    }

    /* -----------top-----------*/
    .top_mv_swiper{
        height: 100svh;
    }

    .floating_cta {
        bottom: 2.6rem;
    }

    .floating_cta_link {
        width: 80px;
        height: 80px;
        font-size: 10px;
    }

    .floating_cta_link img {
        width: 32px;
    }

    .top_about_title {
        font-size: 3rem;
    }

    .top_about_desc {
        font-size: 1.6rem;
    }

    .top_service_slide {
        aspect-ratio: 1448 /664;
    }

    .top_service_slide_texts {
        width: 42rem;
        right: 0;
    }

    .top_service_slide_title {
        padding: 0;
    }

    .top_service_slide_desc {
        padding: 0;
    }

    .top_service_swiper-button-prev, .top_service_swiper-button-next {
        display: block;
        width: 3rem;
        height: 3rem;
    }

    .top_service_swiper-button-next img {
        border-radius: 100vmax;
        box-shadow: 0 4px color-mix(in srgb, #000000 20%, transparent);
    }

    .top_service_swiper-button-prev img {
        width: 100%;
        height: 100%;
        rotate: 180deg;
        border-radius: 100vmax;
        box-shadow: 0 -4px color-mix(in srgb, #000000 20%, transparent);
    }

    .top_service_swiper-button-next, .top_service_swiper-button-prev {
        transition: translate 0.1s ease-in;
    }

    .top_service_swiper-button-next:focus-visible, .top_service_swiper-button-prev:focus-visible {
        translate: 0 2px;
    }

    @media (any-hover: hover) {
        .top_service_swiper-button-next:hover, .top_service_swiper-button-prev:hover {
            translate: 0 2px;
        }
    }


    .top_recruit_subtitle {
        left: 6.1%;
    }

    .top_recruit_list {
        margin-top: 2rem;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.6rem;
    }

    /* -----------case_works-----------*/
    .case_works {
        padding: 12rem 2rem;
    }

    .case_works_list_item {
        width: calc((100% - 12px) / 2);
    }

    .case_works_list {
        row-gap: 8rem;
    }

    .case_works_list_selector {
        margin: 0 0 6.7rem auto;
    }

    .case_works_list_selector form {
        width: fit-content;
    }

    .case_works_list_selector_select {
        width: 44.2rem;
        font-size: 1.8rem;
        padding: 1.7rem 0rem 1.7rem 0rem;
        margin: 0 0 0 auto;
    }

    .works_item_area_title, .works_item_content_title, .works_item_area_wrapper, .works_item_content_wrapper {
        font-size: 1.6rem;
    }

    /* ----------- single case -----------*/
    .single_case {
        padding: 30rem 2rem 16rem;
    }

    .single_case .single_case_title {
        font-size: 4rem;
        text-align: unset;
    }

    .single_case .single_case_content_heading {
        flex-direction: row;
        gap: 5rem;
        padding: 0;
    }

    .single_case .single_case_content_heading_text {
        font-size: 2rem;
    }
    
    .single_case .single_case_content_main {
        font-size: 2rem;
        margin: 0 0 5rem;
        padding: 0;
    }

    .single_case .single_case_content_images {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

    
    /* ----------- single blog -----------*/
    .single_blog {
        padding: 30rem 2rem 16rem;
    }

    .single_blog .single_blog_title {
        font-size: 4rem;
        text-align: unset;
    }

    .single_blog .single_blog_content_heading {
        padding: 0;
    }

    .single_blog .single_blog_content_heading_text {
        font-size: 2rem;
    }
    
    .single_blog .single_blog_content_main {
        font-size: 2rem;
        margin: 0 0 5rem;
        padding: 0;
    }

    /* ----------- privacy policy -----------*/
    .privacy_policy {
        padding: 22rem 7rem 8rem;
    }

    .privacy_policy .privacy_policy_subtitle {
        font-size: 9rem;
        top: 26.3rem;
    }

    .privacy_policy .privacy_policy_title {
        font-size: 4rem;
        margin: 0 0 7.5rem;
    }

    .privacy_policy .privacy_policy_desc {
        margin: 6.7rem 0 0;
    }

    .privacy_policy .privacy_policy_content {
        margin: 8.4rem 0 0;
    }

    .privacy_policy .privacy_policy_content_title {
        padding: 0 0.7rem 2rem;
    }

    .privacy_policy .privacy_policy_content_desc {
        margin: 0 0 5rem 0;
    }

    /* ----------- contact form -----------*/
    .contact_form {
        padding: 14rem 7rem 8rem;
    }
}

/* -----------PC-----------*/

@media screen and (min-width:960px) {
    body {
        font-size: 1.6rem;
    }

    .sp {
        display: none;
    }

    .pc {
        display: block;
    }

    /* -----------共通-----------*/
    .header_logo_link {
        display: flex;
        align-items: center;
    }
    .header_logo_text {
        display: block;
    }

    .header_logo_text {
        font-size: 1.2rem;
        line-height: 1.5;
        letter-spacing: 5%;
    }

    .header_logo_text_lg {
        font-size: 2rem;
    }

    /* ----- youtube ----- */
    .youtube_banner_upper {
        width: min(100%, 1200px);
    }
    .youtube {
        padding-bottom: 12rem;
    }
    .youtube_head {
        font-size: 4rem;
    }
    .youtube_banner_swiper {
        width: 100%;
        max-width: 120rem;
        margin-inline: auto;
    }

    /* -----------下層ページページタイトル-----------*/
    .subpage_subtitle {
        font-size: 9rem;
    }

    .subpage_title {
        font-size: 4rem;
        margin-top: 2rem;
    }
    .subpage_title::before {
        width: 20rem;
        height: 20rem;
        left: -8rem;
        bottom: -7rem;
    }


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


    /* -----------footer-----------*/
    .footer_cta {
        max-width: 1194px;
        margin-inline: auto;
        padding-top: 8rem;
    }

    .footer_company_name {
        font-size: 2.4rem;
    }

    .footer_company_name_lg {
        font-size: 5.6rem;
    }

    .footer_company_sns {
        gap: 2.8rem;
    }

    .footer_company_sns_item {
        width: 5rem;
    }

    .footer_nav_section_title {
        font-size: 1.4rem;
    }

    .footer_cta_link_text {
        font-size: 3.5rem;
    }

    /* -----------top-----------*/
    .top_about::before {
        left: 50%;
        translate: -50% 0;
    }
    .top_service_slide_texts {
        bottom: 4rem;
        right: 7.5%;
    }

    .top_service_text-wrapper {
        display: flex;
        gap: 8rem;
        align-items: flex-end;
        max-width: 1200px;
        margin-inline: auto;
    }

    .top_service_subtitle {
        font-size: 9rem;
    }

    .top_service_title {
        font-size: 4rem;
        margin-top: 2rem;
    }

    .top_service_title::before {
        width: 20rem;
        height: 20rem;
        left: -6rem;
        bottom: -7rem;
    }

    .top_service_desc {
        margin-bottom: -2.4rem;
        padding: 0;
    }

    .top_service_slide {
        margin-top: 3.4rem;
    }

    .top_service_slide_title {
        font-size: 2.4rem;
    }

    .top_service_slide_desc {
        font-size: 1.8rem;
    }

    .top_service_swiper-pagination {
        top: 4rem;
        padding-right: 2rem;
        text-align: right;
    }

    /* ----------- contact form -----------*/

    .contact_form {
        padding: 22rem 7rem 8rem;
    }

    .contact_form .contact_form_container {
        padding: 20rem 12rem 10rem;
    }

    .contact_form .contact_form_content {
        gap: 5rem;
    }

    .contact_form .contact_form_content_item_label {
        font-size: 2rem;
    }

    .contact_form .contact_form_content_item_input {
        font-size: 2rem;
        padding: 2.2rem 3rem;
    }

    .contact_form .contact_form_content_item_select_wrapper {
        width: fit-content;
    }

    .contact_form .contact_form_content_item_select {
        width: 45rem;
        font-size: 2rem;
        padding: 2.2rem 3rem;
    }

    .contact_form .contact_form_content_item_select_icon {
        top: 2.4rem;
        right: 2.4rem;
        font-size: 1.6rem;
    }

    .contact_form .contact_form_content_item_textarea {
        font-size: 2rem;
        padding: 2.2rem 3rem;
    }

    .contact_form .contact_form_content_item_privacy_policy_required {
        font-size: 1.8rem;
    }

    .contact_form .contact_form_content_item_privacy_policy {
        font-size: 2rem;
    }

    .contact_form .contact_form_content_item_privacy_policy_checkbox {
        width: 2rem;
        height: 2rem;
    }

    .contact_form .contact_form_content_item_submit {
        width: 20rem;
        font-size: 2rem;
        padding: 2rem 0;
        border-radius: 50px;
        margin: 3.2rem auto 0;
    }

}


@media screen and (min-width:1025px) {
    .sp {
        display: none;
    }

    .pc {
        display: block;
    }

    /* -----------共通-----------*/
    .header_left {
        width: calc(100% - 328px);
    }

    .header_button_link {
        width: 160px;
        font-size: 1.6rem;
    }
    
    .top_link_wrapper {
        margin-top: 5rem;
        text-align: right;
    }

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


    /* -----------footer-----------*/


    /* -----------top-----------*/
    .top_mv_copy_wrapper {
        left: 62px;
        bottom: 40px;
    }

    .top_mv_main_copy {
        font-size: clamp(80px, 5.55vw, 110px);
    }

    .top_mv_sub_copy {
        font-size: clamp(30px, 2.08vw, 50px);
    }

    .top_about {
        display: flex;
        flex-direction: row-reverse;
        align-items: center;
        gap: 4rem;
        padding-inline: 4rem;
        padding: 22rem 3.2rem 13rem;
        max-width: calc(116rem + 6.4rem);
        margin-inline: auto;
    }

    .top_about::before {
        width: 54.6%;
        height: 73%;
        top: 13rem;
        right: -1.6rem;
        left: unset;
        translate: unset;
    }

    .top_about_texts {
        padding: 0;
    }

    .top_about_subtitle {
        text-wrap: nowrap;
        font-size: 9rem;
        top: -18.8rem;
        right: -5%;
    }

    .top_about_title {
        text-align: left;
    }

    .top_about_desc {
        margin-top: 6.2rem;
        font-size: 1.8rem;
    }


    .top_about_image {
        width: 100%;
        margin: 0;
    }

    .top_about_image::before {
        width: 100%;
        top: -8rem;
        left: unset;
        right: 3.1rem;
    }

    .top_service_swiper-button-prev, .top_service_swiper-button-next {
        display: block;
        width: 7rem;
        height: 7rem;
    }

    .top_recruit {
        padding-top: 16rem;
        padding-bottom: 14rem;
        display: flex;
        align-items: flex-start;
        gap: 1rem;
        flex-wrap: wrap;
        max-width: 1400px;
        margin-inline: auto;
        min-height: 58rem;
    }

    .top_recruit::before {
        top: 12.8rem;
        height: 65%;
    }

    .top_recruit_subtitle{
        font-size: 9rem;
        top: 5.3rem;
        left: 3%;
    }

    .top_recruit_title {
        text-align: center;
        font-size: 4rem;
    }

    .top_recruit_desc {
        width: 23.2rem;
        font-size: 1.6rem;
    }

    .top_recruit_list {
        width: calc(100% - 23.2rem - 1rem);
        margin-top: 0;
    }

    .top_recruit_item {
        max-width: none;
    }

    .top_link_wrapper__recruit {
        margin-top: -1%;
    }

    /* ----- youtube ----- */
    .youtube_head {
        font-size: 5rem;
    }

    /* -----------case_works-----------*/
    .case_works_list_item {
        width: calc((100% - 24px) / 3);
    }

    .case_works_container {
        padding: 7rem 4.5rem 12rem;
    }

    .case_works_list_selector_icon {
        right: 2rem;
    }

    /*----------company-----------*/
    .company_about {
        padding: 12rem 6rem 10rem 2rem;
        flex-direction: row;
        align-items: flex-start;
        margin: 0 auto 7rem;
    }

    .company_about .company_about_subtitle {
        font-size: 9rem;
        top: 10px;
    }

    .company_about .company_about_texts_wrapper {
        padding: 7rem 5rem 22rem 7.4rem;
    }

    .company_about .company_about_texts_wrapper::before {
        width: 120%;
        height: 100%;
    }

    .company_about .company_about_title {
        font-size: 4rem;
        margin: 0 0 5rem;
        text-align: left;
    }

    .company_about .company_about_image {
        width: min(30%, 38rem);
        height: unset;
    }

    .company_about .company_about_image::after {
        top: -2.8rem;
        left: 6rem;
    }

    /* --------- company business --------- */
    .company_business .company_business_subtitle {
        font-size: 9rem;
        top: 10px;
        left: unset;
        right: 0;
    }

    .company_business .company_business_wrapper {
        padding: 7.5rem 0rem 8rem 0rem;
    }

    .company_business .company_business_heading {
        flex-direction: row;
        gap: 0;
        margin: 0 0 5rem;
    }
    
    .company_business .company_business_title {
        width: 30%;
        font-size: 4rem;
        order: 0;
    }

    .company_business .company_business_desc {
        width: 70%;
        order: 1;
    }

    .company_business .company_business_list {
        order: 3;
        margin: 8rem auto 0rem;
        gap: 2rem;
    }

    .company_business .company_business_list_type {
        font-size: 2.2rem;
        line-height: 2.2;
    }

    .company_business .company_business_cards {
        grid-template-columns: 1fr 0.5fr 0.5fr 1fr;
        grid-template-rows: 1fr 1fr;
        gap: 3rem;
    }

    .company_business .cards_item {
        padding: 3.6rem 5rem 5rem;
    }
    .company_business .cards_item:nth-of-type(1) {
        grid-column: 1 / 2;
    }
    .company_business .cards_item:nth-of-type(2) {
        grid-column: 2 / 4;
    }
    .company_business .cards_item:nth-of-type(3) {
        grid-column: 4 / 5;
    }
    .company_business .cards_item:nth-of-type(4) {
        grid-column: 1 / 3;
    }
    .company_business .cards_item:nth-of-type(5) {
        grid-column: 3 / 5;
    }
    
    .company_business .cards_item_title {
        margin: 0 0 3.6rem;
    }

    /* --------- company initiatives --------- */
    .company_initiatives {
        margin: 10rem auto 15rem;
    }

    .company_initiatives .company_initiatives_title {
        font-size: 3.5rem;
        padding: 0 4rem;
    }

    .company_initiatives .company_initiatives_text {
        padding: 2.5rem 3rem;
    }

    
    /* --------- company info --------- */
    .company_info {
        padding: 15rem 8rem 20rem;
    }

    .company_info .company_info_container {
        flex-direction: row;
    }

    .company_info .company_info_subtitle {
        font-size: 9rem;
        top: 3.6rem;
    }

    .company_info .company_info_wrapper {
        padding: 0 4rem;
    }

    .company_info .company_info_title {
        font-size: 4rem;
        text-align: left;
        margin: 0 0 9.6rem;
    }

    .company_info .company_info_item_content {
        flex-direction: row;
    }

    .company_info .company_info_item {
        padding: 3rem 5rem 3rem 1.5rem;
    }

    .company_info .company_info_item_title {
        width: 16rem;
        font-size: 2rem;
    }

    .company_info .company_info_item_content_text {
        width: 50%;
        padding: 0 4rem 0 0;
    }

    /* --------- recruit about --------- */
    .recruit_about .recruit_about_container {
        flex-direction: row;
    }

    .recruit_about .recruit_about_image {
        width: 55%;
    }

    .recruit_about .recruit_about_text {
        width: 45%;
    }

    /* --------- recruit message --------- */
    .recruit_message {
        padding: 12rem 8.5rem 10rem 0rem;
        flex-direction: row;
        align-items: flex-start;
        margin: 0 auto 7rem;
    }

    .recruit_message .recruit_message_container {
        margin: 2rem auto 0rem;
        flex-direction: row;
    }

    .recruit_message .recruit_message_subtitle {
        font-size: clamp(6rem, 7vw, 9rem);
        left: unset;
        right: 12%;
    }

    .recruit_message .recruit_message_texts {
        padding: 0;
    }

    .recruit_message .recruit_message_texts_wrapper {
        padding: 0rem 6rem 3.5rem 4rem;
    }

    .recruit_message .recruit_message_texts_wrapper::before {
        width: calc(100% + 8vw);
        height: calc(100% + 10rem);
        bottom: unset;
        top: -10rem;
    }

    .recruit_message .recruit_message_title {
        font-size: 4rem;
        margin: 0 0 5rem;
        text-align: left;
    }

    .recruit_message .recruit_message_name {
        margin: 3rem 0 0;
        font-size: 2.5rem;
    }

    .recruit_message .recruit_message_image_wrapper {
        width: 52%;
        height: unset;
    }

    .recruit_message .recruit_message_image::after {
        width: 100%;
        top: 7rem;
        left: 4rem;
    }

    /* --------- recruit routine --------- */
    .recruit_routine {
        padding: 14.6rem 2rem 20rem;
    }

    .recruit_routine .recruit_routine_subtitle {
        font-size: 9rem;
        line-height: 0.6;
        top: 0;
    }

    .recruit_routine .recruit_routine_content {
        height: 600px;
    }
    
    .recruit_routine .recruit_routine_content_item {
        width: 75%;
        padding: 2.8rem 2.8rem 2.8rem 6rem;
    }
    .recruit_routine .recruit_routine_content_item::before {
        width: 10rem;
        height: 10rem;
    }
    .recruit_routine .recruit_routine_content_item.sales {
        left: 0;
        top: unset;
        z-index: 10;
    }

    .recruit_routine .recruit_routine_content_item.construction {
        left: 12%;
        top: unset;
        z-index: 8;
    }
    .recruit_routine .recruit_routine_content_item.general_affairs {
        left: 24%;
        top: unset;
        z-index: 6;
    }

    .recruit_routine .item_schedule {
        padding: 0;
    }

    .recruit_routine .item_schedule_text {
        font-size: 2.3rem;
        line-height: 4.1rem;
        gap: 3rem;
        transition: font-size 0.3s ease;
    }
    @media (any-hover: hover) {
        .recruit_routine .item_schedule_text:hover {
            font-size: 2.7rem;
        }
        .recruit_routine .item_schedule_text:hover .item_schedule_text_dot::after {
            content: "";
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 26px;
            height: 26px;
            border: 2px solid #B70112;
            border-radius: 50%;
        }
    }

    .recruit_routine .item_title {
        font-size: 4rem;
        position: relative;
    }

    /* --------- recruit staff --------- */
    .recruit_staff {
        padding: 4.2rem 2rem 7rem;
        background: #F8F7F5;
    }

    .recruit_staff .recruit_staff_subtitle {
        font-size: 9rem;
        text-align: right;
    }

    .recruit_staff .recruit_staff_title {
        font-size: 4rem;
        margin: 0 0 7.2rem;
        padding: 4.7rem 6.7rem;
    }

    .recruit_staff .recruit_staff_cards {
        gap: 10rem;
    }

    .recruit_staff .card_pc_image {
        display: block;
    }
    .recruit_staff .card_sp_image {
        display: none;
    }

    .recruit_staff .card_info_number {
        width: unset;
        aspect-ratio: unset;
    }

    .recruit_staff .recruit_staff_card_heading {
        flex-direction: row;
    }

    .recruit_staff .card_info_number {
        font-weight: 600;
        line-height: 0.6;
        bottom: 0;
    }

    .recruit_staff .card_info_number::before {
        width: 13rem;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
    }

    .recruit_staff .card_info_department {
        font-size: 2rem;
    }

    .recruit_staff .card_info_more {
        margin: 0;
    }

    .recruit_staff .card_info_position {
        font-size: 1.6rem;
    }

    .recruit_staff .card_info_name {
        font-size: 3rem;
    }

    .recruit_staff .recruit_staff_card_body_text {
        font-size: 2.2rem;
        padding: 0 0 0 7rem;
    }

    .recruit_staff .recruit_staff_card_body_answer {
        font-size: 1.8rem;
    }

    .recruit_staff .recruit_staff_card_body_text::before {
        width: 6.5rem;
    }

    /* --------- recruit requirements --------- */
    .recruit_requirements {
        padding: 8.4rem 2rem 12rem;
    }

    .recruit_requirements .recruit_requirements_title {
        font-size: 4rem;
        text-align: left;
    }

    .recruit_requirements .recruit_requirements_content {
        margin: 6rem auto 12rem;
    }

    .recruit_requirements .recruit_requirements_content_item_label {
        width: 24rem;
    }

    .recruit_requirements .recruit_requirements_content_item_label_text {
        font-size: 1.8rem;
    }

    .recruit_requirements .recruit_requirements_content_item_body {
        padding: 2.2rem 5rem;
    }

    .recruit_requirements .recruit_requirements_content_item_body_text {
        font-size: 2rem;
    }

    .recruit_requirements .recruit_requirements_department {
        flex-direction: row;
        gap: 3.2rem;
        padding: 0;
    }

    /* --------- blog --------- */
    .blog_list {
        padding: 20rem 0 10rem;
    }

    .blog_list .subpage_text-wrapper {
        margin-bottom: 16rem;
    }

    .blog_list .blog_list_item {
        flex-direction: row;
        gap: 6.2rem;
        padding: 5rem;
    }

    .blog_list .blog_list_item_image {
        width: 35%;
    }

    .blog_list .blog_list_item_text_title {
        font-size: 2rem;
        margin: 4.5rem 0;
    }

    .blog_list .blog_list_item_text_desc {
        font-size: 1.8rem;
        line-height: 2.2;
    }
}

@media screen and (min-width: 1200px) {
    .top_recruit_desc {
        font-size: 1.8rem;
    }
    .top_link_wrapper__recruit {
        margin-top: -2.5%;
    }
}

@media screen and (min-width: 1400px) {
    .top_link_wrapper__recruit {
        margin-top: -5.2%;
    }
}



/* ---------- js ----------- */
.js_body.is-active {
    overflow: hidden;
}

.js_navigation {
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s;
}

@media screen and (min-width: 640px) {
    .js_navigation {
        pointer-events: auto;
        opacity: 1;
    }
}

.js_navigation.is-active {
    opacity: 1;
    pointer-events: inherit;
}

.js_hamburger.is-active .hamburger_bar:first-child {
    top: 50%;
    translate: -50%, 0;
    rotate: 45deg;
}

.js_hamburger.is-active .hamburger_bar:nth-child(2) {
    opacity: 0;
}

.js_hamburger.is-active .hamburger_bar:last-child {
    top: 50%;
    translate: -50%, 0;
    rotate: -45deg;
}