@charset "utf-8";

html {
    scroll-behavior: smooth;
    font-size: 62.5%;
}

body {
    font-family: "Noto Sans", "Noto Sans JP", sans-serif;
    font-size: 1.6rem;
    line-height: 1.5;
    letter-spacing: 0em;
    color: #1E1E1E;
    background: #EAEBEF;
    position: relative;
    z-index: 1;
    &::after {
        content: '';
        display: block;
        width: 100%;
        height: 100%;
        background: url('../img/dot_bg.svg') repeat center center;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
    }
}

/* -----------font-----------*/
.Akshar {
    font-family: "Akshar", serif;
    font-weight: bold;
    font-style: normal;
}

/* -----------icomoon-----------*/
/* @font-face {
    font-family: 'icomoon';
    src: url('../fonts/icomoon.eot?thhrnp');
    src: url('../fonts/icomoon.eot?thhrnp#iefix') format('embedded-opentype'), url('../fonts/icomoon.ttf?thhrnp') format('truetype'), url('../fonts/icomoon.woff?thhrnp') format('woff'), url('../fonts/icomoon.svg?thhrnp#icomoon') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: block
}

[class^="icon-"], [class*=" icon-"] {
    font-family: 'icomoon' !important;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
} */

img {
    width: 100%;
    height: auto;
}

.sp {
    display: block;
}

.pc {
    display: none;
}

/* -----------共通-----------*/
.sec_inner {
    max-width: 1080px;
    margin: 0 auto;
}

.scale_in_target {
    animation: scaleInBottom 0.4s ease-in-out forwards;
    transform-origin: 0% 100%;
    opacity: 1;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
}
@keyframes scaleInBottom {
    0% {
        -webkit-transform: scaleY(0);
        transform: scaleY(0);
        -webkit-transform-origin: 0% 100%;
        transform-origin: 0% 100%;
        opacity: 1;
    }
    100% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
        -webkit-transform-origin: 0% 100%;
        transform-origin: 0% 100%;
        opacity: 1;
    }
}
@keyframes slideInBottom {
    0% {
        transform: translateY(100%); /* 下に隠れた状態 */
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.slide_in_wrap {
    overflow: hidden;
}
.slide_in_target {
    opacity: 0;
    transform: translateY(40px);
}
.slide_in {
    animation: slideInBottom 0.4s 0.3s ease-out forwards;
}
@keyframes slideInBottom {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.left_in_target {
    opacity: 0;
}
.left_in {
    opacity: 1;
    animation: leftIn 1.5s cubic-bezier(.52,-0.01,.3,.99) forwards;
}
@keyframes leftIn {
    0% {
        transform: translateX(-100%);
        opacity: 0;
        filter: blur(5px);
    }
    60% {
        transform: translateX(0);
        opacity: 1;
    }
    100% {
        filter: blur(0);
        opacity: 1;
    }
}
.right_in_target {
    opacity: 0;
}
.right_in {
    animation: rightIn 1.5s cubic-bezier(.52,-0.01,.3,.99) forwards;
}
@keyframes rightIn {
    0% {
        transform: translateX(100%);
        opacity: 0;
        filter: blur(5px);
    }
    60% {
        transform: translateX(0);
        opacity: 1;
    }
    100% {
        filter: blur(0);
        opacity: 1;
    }
}

/* 矢印回転デザインのボタン */
.arrow_btn {
    width: fit-content;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    gap: 10px;
    color: #C80211;
    text-decoration: none;
    border: 1.5px solid #C80211;
    background: #fff;
    border-radius: 100px;
    padding: 7px 15px;
    box-sizing: border-box;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    transition: all 0.3s ease;
}
.arrow_btn_toggle {
    width: 22px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: #C80211;
    position: relative;
    overflow: hidden;
    &::after,
    &::before {
        content: '';
        display: block;
        width: 10px;
        height: 100%;
        background: url('../img/arrow_btn_white.svg') no-repeat center center/contain;
        position: absolute;
        top: 50%;
        left: 50%;
    }
    &::before {
        transform: translate(-300%, -50%);
        transition: all 0.3s ease;
    }
    &::after {
        transform: translate(-50%, -50%);
        transition: all 0.3s ease;
    }
}
@media (any-hover: hover) {
    .arrow_btn:hover {
        .arrow_btn_toggle {
            &::before {
                transform: translate(-50%, -50%);
            }
            &::after {
                transform: translate(200%, -50%);
            }
        }
    }
}

.lower_section_title_en {
    font-size: 19px;
    font-weight: 600;
    line-height: 1;
    color: #C80211;
}
.lower_section_title {
    font-size: 24px;
    font-weight: bold;
    line-height: 1.2;
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 4px 0 0;
    z-index: 1;
    &::before {
        content: '';
        display: block;
        width: 15px;
        aspect-ratio: 1;
        background: #C80211;
        border-radius: 50%;
    }
}

/* -----------cta_section-----------*/
.cta_section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 0;
    background: linear-gradient(to bottom, #EAEBEF 0%, #fff 50%, #EAEBEF 100%);
}
.cta_section_btn {
    width: 242px;
    height: 58px;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.4;
    box-sizing: border-box;
    border-radius: 5px;
    text-decoration: none;
    color: #fff;
    background: #C80211;
    border-radius: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 8px 10px 0px rgba(30, 30, 30, 1);
    transition: all 0.3s ease;
}
.cta_section_btn_en {
    font-size: 22px;
    line-height: 1;
    font-weight: 600;
    color: #fff;
}
@media (any-hover: hover) {
    .cta_section_btn:hover {
        transform: translate(8px, 10px);
        box-shadow: 0px 0px 0px rgba(30, 30, 30, 1);
    }
}

.sticky_wrap {
    display: none;
}

/* -----------SP header-----------*/
.header {
    height: 60px;
    background-color: #fff;
    padding: 10px 15px;
    position: fixed;
    box-sizing: border-box;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    box-shadow: 0 4px 10px rgba(30, 30, 30, 0.2);
}
.header_inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header_logo {
    width: auto;
    height: 40px;
}
.header_nav_wrap {
    position: relative;
}
.header_nav {
    display: flex;
    align-items: center;
    gap: 15px;
}
.header_nav_text {
    font-size: 20px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    display: none;
    padding: 10px;
    color: #1E1E1E;
    text-decoration: none;
}
.header_nav_toggle {
    width: 12px;
    transition: all 0.3s ease;
}
.header_nav_wrap.active .header_nav_toggle {
    transform: rotate(180deg);
}
.header_nav_inner {
    position: absolute;
    bottom: 0;
    left: 0;
    transform: translateY(100%);
    background-color: #fff;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
.header_nav_wrap.active .header_nav_inner {
    opacity: 1;
    visibility: visible;
}
.header_nav_text_sub {
    width: 280px;
    font-size: 20px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    padding: 15px 10px;
    text-decoration: none;
    color: #1E1E1E;
    border-top: 1px solid #C9C9C9;
    box-sizing: border-box;
    position: relative;
    transition: all 0.3s ease;
    &::after {
        content: '';
        display: block;
        width: 12px;
        height: 8px;
        background: url('../img/header_toggle.svg') no-repeat center center/contain;
        position: absolute;
        top: 50%;
        right: 10px;
        transform: translateY(-50%) rotate(-90deg);
    }
    &:hover {
        background: #C80211;
        color: #fff;
        &::after {
            filter: brightness(0) invert(1);
        }
    }
}
.header_nav_wrap:nth-of-type(3) .header_nav_text_sub {
    width: 316px;
}

.header_nav_text_sub:first-child {
    border-top: none;
}
.header_nav_entry {
    width: 80px;
    height: 30px;
    font-size: 20px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    border-radius: 5px;
    background-color: #C80211;
    color: #fff;
    padding: 2px 20px;
    text-decoration: none;
    box-shadow: 3px 4px 4px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
}
@media (any-hover: hover) {
    .header_nav_entry:hover {
        transform: translate(3px, 4px);
        box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.25);
    }
}
.header_hamburger {
    width: 30px;
    height: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}
.header.active .header_hamburger {
    justify-content: center;
}
.header_hamburger_line {
    width: 100%;
    height: 2px;
    border-radius: 100px;
    background: #1E1E1E;
    transition: all 0.3s ease;
}
.header.active .header_hamburger_line:nth-of-type(1) {
    transform: translateY(1px) rotate(45deg);
}
.header.active .header_hamburger_line:nth-of-type(2) {
    display: none;
}
.header.active .header_hamburger_line:nth-of-type(3) {
    transform: translateY(-1px) rotate(-45deg);
}
/* SP/タブレット時のメニュー */
.header_menu {
    height: calc(100vh - 60px - 134px);
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    color: #fff;
    box-sizing: border-box;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}
.header_menu_inner {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    background-color: #C80211;
    padding: 0 40px;
}
.header.active .header_menu {
    opacity: 1;
    pointer-events: auto;
}
.header_menu_group {
    display: flex;
    flex-direction: column;
}
.header_menu_text {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2;
    color: #fff;
    text-decoration: none;
    padding: 0 0 10px 0px;
    border-bottom: 0.75px solid #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    &::before {
        content: '';
        display: block;
        width: 15px;
        height: 15px;
        background: #fff;
        border-radius: 50%;
    }
    &::after {
        content: '';
        display: block;
        width: 6px;
        height: 12px;
        background: url('../img/header_menu_toggle.svg') no-repeat center center;
        position: absolute;
        top: 6px;
        right: 10px;
    }
}
.header_menu_text_sub {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
    color: #fff;
    text-decoration: none;
    padding: 7px 0 10px 30px;
    border-bottom: 0.75px solid #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    &::before {
        content: '';
        display: block;
        width: 9px;
        height: 9px;
        border: 2px solid #fff;
        border-radius: 50%;
    }
    &::after {
        content: '';
        display: block;
        width: 6px;
        height: 12px;
        background: url('../img/header_menu_toggle.svg') no-repeat center center;
        position: absolute;
        top: 10px;
        right: 10px;
    }
}
.header_menu_entry_wrap {
    background: #fff;
    padding: 30px;
}
.header_menu_entry {
    width: 305px;
    height: 74px;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.4;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    border-radius: 5px;
    text-decoration: none;
    color: #fff;
    background: #C80211;
    border-radius: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    box-shadow: 8px 10px 0px rgba(30, 30, 30, 1);
    transition: all 0.3s ease;
}
.header_menu_entry_en {
    font-size: 28px;
    line-height: 1;
    font-weight: bold;
    color: #fff;
}
@media (any-hover: hover) {
    .header_menu_entry:hover {
        transform: translate(8px, 10px);
        box-shadow: 0px 0px 0px rgba(30, 30, 30, 1);
    }
}

/* -----------footer-----------*/
.footer {
    background: #1E1E1E;
    padding: 50px 40px 0px 40px;
    box-sizing: border-box;
    color: #fff;
}
.footer_inner {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}
.footer_logo {
    width: 120px;
}
.footer_nav {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.footer_nav_text {
    font-size: 22px;
    font-weight: 600;
    line-height: 1;
    display: flex;
    flex-direction: column;
    color: #fff;
    text-decoration: none;
}
.footer_nav_text_span {
    font-size: 13px;
    font-weight: 500;
    line-height: 1;
    color: #fff;
    text-decoration: none;
    font-family: 'Noto Sans', sans-serif;
}
.footer_other {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.footer_other_wrap {
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 22px;
}
.footer_other_icon {
    width: 29px;
}
.footer_sns {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}
.footer_sns_text {
    font-size: 13px;
    font-weight: 500;
}
.footer_sns_line {
    width: 1px;
    height: 15px;
    border-radius: 100px;
    background-color: #fff;
}
.footer_sns_wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}
.footer_sns_icon {
    height: 30px;
}
.footer_copyright {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    margin: 55px 0 0;
}

/* -----------top-----------*/
.top_mv {
    height: calc(100dvh - 60px);
    margin: 60px 0 0;
    background-color: #fff;
    position: relative;
    background: url('../img/top_mv_image_sp.webp') no-repeat center center/cover;
    clip-path: path("M 20 0 H calc(100% - 20) A 20 20 0 0 1 100 20 V calc(100% - 20) A 20 20 0 0 1 calc(100% - 20) 100 H 20 A 20 20 0 0 1 0 calc(100% - 20) V 20 A 20 20 0 0 1 20 0 Z");
}
.top_mv_frame {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}
.top_mv_frame_top {
    display: block;
    width: 100%;
    height: 15px;
    background: #fff;
    position: absolute;
    top: 0;
    left: 0;
}
.top_mv_frame_right {
    display: block;
    width: 15px;
    height: 100%;
    background: #fff;
    position: absolute;
    top: 0;
    right: 0;
}
.top_mv_frame_bottom {
    display: block;
    width: 100%;
    height: 15px;
    background: #fff;
    position: absolute;
    bottom: 0;
    left: 0;
}
.top_mv_frame_left {
    display: block;
    width: 15px;
    height: 100%;
    background: #fff;
    position: absolute;
    top: 0;
    left: 0;
}
.top_mv_frame_corner {
    display: block;
    width: 20px;
    height: 20px;
    position: absolute;
    &:nth-of-type(1) {
        top: 15px;
        left: 15px;
        transform: rotate(-90deg);
    }
    &:nth-of-type(2) {
        top: 15px;
        right: 15px;
    }
    &:nth-of-type(3) {
        bottom: 15px;
        right: 15px;
        transform: rotate(90deg);
    }
    &:nth-of-type(4) {
        bottom: 15px;
        left: 15px;
        transform: rotate(180deg);
    }
}
.top_mv_frame_sns {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 10px 15px 15px 10px;
    border-radius: 20px 0 0 0;
    background: #fff;
    position: absolute;
    bottom: 0px;
    right: 0px;
}
.top_mv_frame_sns_link {
    width: 60px;
    transition: all 0.3s ease;
}
@media (any-hover: hover) {
    .top_mv_frame_sns_link:hover {
        opacity: 0.7;
    }
}
.top_mv_red {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    clip-path: polygon(60% 0%, 90% 0%, 40% 100%, 10% 100%);
    overflow: hidden;
    animation: topMvScale 0.4s 2.5s ease-in-out forwards;
    &::after {
        content: '';
        display: block;
        width: 100%;
        height: 100%;
        background: #C80211;
        position: absolute;
        top: 100%;
        left: 0;
        animation: topMvTranslate 0.4s ease-in-out forwards;
    }
}
@keyframes topMvTranslate {
    0% {
        top: -100%;
    }
    100% {
        top: 0%;
    }
}
@keyframes topMvScale {
    0% {
        clip-path: polygon(60% 0%, 90% 0%, 40% 100%, 10% 100%);
    }
    100% {
        clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    }
}
.top_mv_text {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
}
.top_mv_text_title {
    font-size: 30px;
    font-weight: bold;
    line-height: 1.22;
    text-align: center;
    &:nth-of-type(1) {
        animation-delay: 0.4s;
    }
    &:nth-of-type(2) {
        animation-delay: 0.6s;
    }
}
.top_mv_text_subtitle {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
    animation-delay: 0.8s;
    margin: 25px 0 0;
}
.top_mv_text_desc {
    height: 0;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.5;
    text-align: left;
    animation-delay: 3s;
    padding: 0 30px;
    margin: 45px 0 0;
    overflow: hidden;
    transition: all 0.3s ease;
    animation: topMvTextDesc 0.4s 3s ease-in-out forwards;
}
@keyframes topMvTextDesc {
    0% {
        height: 0;
        -webkit-transform: scaleY(0);
        transform: scaleY(0);
        -webkit-transform-origin: 0% 100%;
        transform-origin: 0% 100%;
        opacity: 1;
    }
    100% {
        height: 100%;
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
        -webkit-transform-origin: 0% 100%;
        transform-origin: 0% 100%;
        opacity: 1;
    }
}

/* -----------top_about-----------*/
.top_about {
    background: url('../img/top_about_bg.webp') no-repeat center center/cover;
    padding: 90px 30px 30px;
    box-sizing: border-box;
}
.top_about_wrap {
    display: flex;
    flex-direction: column;
}
.top_about_title {
    font-size: 24px;
    font-weight: bold;
    line-height: 1.2;
    color: #fff;
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1;
    &::before {
        content: '';
        display: block;
        width: 15px;
        aspect-ratio: 1;
        background: #C80211;
        border-radius: 50%;
    }
    &::after {
        content: 'ABOUT US';
        display: block;
        font-size: 65px;
        font-family: 'Akshar', serif;
        line-height: 1;
        font-weight: 600;
        color: #EAEBEF;
        opacity: 0.1;
        letter-spacing: 0.01px;
        position: absolute;
        top: 86%;
        left: 0;
        transform: translateY(-100%);
        z-index: -1;
    }
}
.top_about_text {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.5;
    margin: 30px 0;
    color: #fff;
}
.top_about_image {
    width: 50%;
    max-width: 220px;
    flex-grow: 1;
    position: relative;
    z-index: 1;
    margin: -38px 0 0 auto;
}
.top_about_image_after {
    display: block;
    width: 100%;
    height: 100%;
    background: #C80211;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 10px;
}
.top_about_image.rotate_in .top_about_image_after {
    animation: rotateImageAfter 1.4s ease-out forwards;
}
.top_about_image img {
    display: block;
    border-radius: 10px;
    opacity: 0;
}
.top_about_image.rotate_in img {
    animation: rotateImage 1.2s ease-out forwards;
}
@keyframes rotateImage {
    0% {
        transform: translateZ(-200px) rotate(60deg) scale(0.8);
        opacity: 0;
    }
    40% {
        transform: translateZ(0) rotate(-10deg) scale(1);
    }
    100% {
        transform: translateZ(0) rotate(0) scale(1);
        opacity: 1;
    }
}
@keyframes rotateImageAfter {
    0% {
        transform: translateZ(-200px) rotate(-60deg) scale(0.8);
        opacity: 0;
    }
    40% {
        transform: translateZ(0) rotate(12deg) scale(1);
    }
    100% {
        transform: translateZ(0) rotate(9.5deg) scale(1);
        opacity: 0.7;
    }
}
.top_about .top_about_text.right_in {
    animation-delay: 0.3s;
}
.top_about .arrow_btn.right_in {
    animation-delay: 0.6s;
}

/* -----------top_workplace-----------*/
.top_workplace {
    padding: 90px 30px 50px;
    position: relative;
    z-index: 1;
}
.top_workplace_bg {
    display: block;
    width: 100%;
    object-fit: cover;
    position: absolute;
    top: 26%;
    left: 0;
    z-index: -1;
}
.top_workplace_title {
    font-size: 24px;
    font-weight: bold;
    line-height: 1.2;
    color: #1E1E1E;
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1;
    &::before {
        content: '';
        display: block;
        width: 15px;
        aspect-ratio: 1;
        background: #C80211;
        border-radius: 50%;
    }
    &::after {
        content: 'WORKPLACE';
        display: block;
        font-size: 65px;
        font-family: 'Akshar', serif;
        line-height: 1;
        font-weight: 600;
        color: #514947;
        opacity: 0.1;
        letter-spacing: 0.01px;
        position: absolute;
        top: 86%;
        left: 0;
        transform: translateY(-100%);
        z-index: -1;
    }
}
.top_workplace_text {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.5;
    margin: 30px 0;
    color: #1E1E1E;
    opacity: 0;
    animation-delay: 0.3s;
}
.top_workplace_btns {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 50px 0 50px;
}
.top_workplace .top_workplace_btns .arrow_btn {
    background: #C80211;
    border-radius: 9px;
    color: #fff;
    padding: 11px 45px;
}
.top_workplace .top_workplace_wrap .arrow_btn {
    display: none;
    opacity: 0;
    animation-delay: 0.6s;
}
.top_workplace .top_workplace_btns .arrow_btn_toggle {
    width: 23px;
    border: 2px solid #fff;
}
.top_workplace .arrow_btn {
    font-size: 19px;
    padding: 7px 16px;
    border: 2px solid #C80211;
}
.top_workplace .arrow_btn_toggle {
    width: 30px;
}

/* -----------top_message-----------*/
.top_message {
    max-width: 980px;
    margin: 0 auto;
    padding: 50px 30px 50px;
    position: relative;
    z-index: 1;
}
.top_message_subtitle {
    font-size: 65px;
    line-height: 1;
    font-weight: 600;
    color: #C80211;
    letter-spacing: 0.01px;
    margin: 0 0 -10px 0;
}
.top_message_title {
    font-size: 24px;
    font-weight: bold;
    line-height: 1.2;
    color: #1E1E1E;
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1;
    &::before {
        content: '';
        display: block;
        width: 15px;
        aspect-ratio: 1;
        background: #C80211;
        border-radius: 50%;
    }
}
.top_message_content {
    display: flex;
    flex-direction: column;
}
.top_message_content_inner {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
    background: #ffffffcc;
    margin: -100px 0 0 50px;
}
.top_message_head {
    font-size: 22px;
    font-weight: 600;
    color: #C80211;
}
.top_message_text {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
}
.top_message .arrow_btn {
    margin: 20px 0 0 auto;
}

/* -----------top_workstyle-----------*/
.top_workstyle {
    padding: 0px 20px 50px;
    position: relative;
    z-index: 1;
}
.top_workstyle_group {
    display: none;
    margin: 0 calc(50% - 50vw) -25px;
    display: flex;
    white-space: nowrap;
    overflow: hidden;
}
.top_workstyle_group_item {
    padding: 0 15px;
    animation: marquee 10s linear infinite;
    font-size: 80px;
    font-weight: bold;
    color: #514947;
    opacity: 0.1;
    line-height: 0.9;
}
/* アニメーション */
@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}
.top_workstyle_wrap {
    display: flex;
    flex-direction: column;
    position: relative;
}
.top_workstyle_title {
    font-size: 24px;
    font-weight: bold;
    line-height: 1.2;
    color: #1E1E1E;
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1;
    /* margin: -25px 0 0; */
    &::before {
        content: '';
        display: block;
        width: 15px;
        aspect-ratio: 1;
        background: #C80211;
        border-radius: 50%;
    }
}
.top_workstyle_head {
    font-size: 24px;
    font-weight: bold;
    color: #C80211;
    margin: 33px 0 34px;
}
.top_workstyle_text {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
}
.top_workstyle_content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 38px 0 0;
}
.top_workstyle_content_item {
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    box-shadow: 2px 5px 10px #1E1E1E3f;
    border-radius: 10px;
}
.top_workstyle_content_item_head {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    background: #C80211;
    border-radius: 10px;
    padding: 20px;
    color: #fff;
    box-sizing: border-box;
    transition: all 0.3s ease;
}
.top_workstyle_content_item.active .top_workstyle_content_item_head {
    border-radius: 10px 10px 0 0;
}
.top_workstyle_item_index_text {
    font-size: 10px;
    font-weight: 500;
    color: #fff;
    line-height: 1;
}
.top_workstyle_item_index_num {
    font-size: 22px;
    font-weight: 500;
    line-height: 1;
    color: #fff;
    margin: 2px 0 0;
    text-align: center;
}
.top_workstyle_item_head_text {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.33;
    letter-spacing: 2px;
    flex-grow: 1;
}
.top_workstyle_item_head_toggle {
    width: 30px;
    aspect-ratio: 1;
    transition: all 0.3s ease;
}
.top_workstyle_content_item.active .top_workstyle_item_head_toggle {
    transform: rotate(180deg);
}
.top_workstyle_item_content {
    background: #fff;
    overflow: hidden;
    max-height: 0;
    border-radius: 0 0 10px 10px;
    transition: all 0.3s ease;
}
.top_workstyle_item_text {
    padding: 20px;
    font-size: 15px;
    letter-spacing: 1.2px;
}
.top_workstyle_list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 38px 0 42px;
}
.top_workstyle_list_item {
    width: calc((100% - 6px) / 2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border-radius: 10px;
    border: 5px solid #C80211;
    padding: 11px;
    box-sizing: border-box;
    background: #fff;
    position: relative;
}
.top_workstyle_list_item_index {
    font-size: 22px;
    font-weight: 600;
    line-height: 1;
    opacity: 0.5;
    color: #C80211;
    position: absolute;
    top: 7px;
    left: 6px;
}
.top_workstyle_list_item_image {
    width: 43px;
    aspect-ratio: 1;
}
.top_workstyle_list_item_title {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.2;
    color: #C80211;
}
.top_workstyle_list_item_text {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.27;
}
.top_workstyle_btn_wrap .arrow_btn {
    margin: 0 0 0 auto ;
}

/* -----------top_requirements-----------*/
.top_requirements {
    background: #C80211;
    padding: 50px 20px 50px;
    box-sizing: border-box;
}
.top_requirements_wrap {
    display: flex;
    flex-direction: column;
    position: relative;
    &::before {
        content: 'REQUIREMENTS';
        display: block;
        font-size: 54px;
        font-family: 'Akshar', serif;
        line-height: 1;
        font-weight: 600;
        color: #EAEBEF;
        opacity: 0.1;
        letter-spacing: 0.01px;
        position: relative;
        top: 0;
        left: 0;
        z-index: -1;
    }
}
.top_requirements_title {
    font-size: 24px;
    font-weight: bold;
    line-height: 1.2;
    color: #fff;
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1;
    margin: -25px 0 0;
    &::before {
        content: '';
        display: block;
        width: 15px;
        aspect-ratio: 1;
        background: #fff;
        border-radius: 50%;
    }
}
.top_requirements_text {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    margin: 49px 0;
    letter-spacing: 2px;
    color: #fff;
}
.top_requirements_list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.top_requirements_list_item {
    width: 100%;
    aspect-ratio: 2.3;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
    background: url('../img/top_requirements_image1.webp') no-repeat center center/cover;
    &::after {
        content: '';
        display: block;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.3);
        position: absolute;
        top: 0;
        left: 0;
        z-index: 0;
        opacity: 0;
        transition: all 0.3s ease;
    }
    &:nth-of-type(2) {
        background: url('../img/top_requirements_image2.webp') no-repeat center center/cover;
    }
    &:nth-of-type(3) {
        background: url('../img/top_requirements_image3.webp') no-repeat center center/cover;
    }
}
.top_requirements_item_text {
    width: 100%;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.2;
    color: #C80211;
    background: #ffffffe6;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    padding: 5px 14px;
    box-sizing: border-box;
}
.top_requirements_item_toggle {
    width: 22px;
    flex-shrink: 0;
    aspect-ratio: 1;
    border-radius: 50%;
    background: #C80211;
    position: relative;
    overflow: hidden;
    &::after,
    &::before {
        content: '';
        display: block;
        width: 10px;
        height: 100%;
        background: url('../img/arrow_btn_white.svg') no-repeat center center/contain;
        position: absolute;
        top: 50%;
        left: 50%;
    }
    &::before {
        transform: translate(-300%, -50%);
        transition: all 0.3s ease;
    }
    &::after {
        transform: translate(-50%, -50%);
        transition: all 0.3s ease;
    }
}
@media (any-hover: hover) {
    .top_requirements_list_item:hover {
        &::after {
            opacity: 1;
        }
        .top_requirements_item_toggle {
            &::before {
                transform: translate(-50%, -50%);
            }
            &::after {
                transform: translate(200%, -50%);
            }
        }
    }
}
.top_requirements .arrow_btn {
    margin: 49px 0 0 auto ;
    font-size: 19px;
    padding: 12px 13px 12px 30px;
}
.top_requirements .arrow_btn_toggle {
    width: 30px;
}

/* -----------about-----------*/
.about_message {
    padding: 120px 20px 70px;
    overflow: hidden;
}
.about_message .sec_inner{
    position: relative;
}
.about_message_title {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.24;
    letter-spacing: 1px;
    margin: 30px 0 46px;
}
.about_message_subtitle {
    font-size: 65px;
    line-height: 1;
    font-weight: 600;
    color: #C9C9C9;
    opacity: 0.6;
    letter-spacing: 0.01px;
}
.about_message_image {
    width: 210px;
    position: absolute;
    top: 0px;
    left: max(180px, 50vw);
}
.about_message_text {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.54;
    margin: 36px 0 0;
    padding: 0 7.5px;
    color: #1E1E1E;
}

/* -----------about_tour-----------*/
.about_tour {
    margin: 0 0 0 40px;
    padding: 36px 25px 56px;
    background: #C80211;
    border-radius: 40px 0 0 0;
    position: relative;
    overflow: visible;
}
.about_tour_inner {
    position: relative;
    overflow: hidden;
}
.about_tour_bg {
    font-size: 150px;
    font-weight: 600;
    line-height: 1;
    position: absolute;
    top: 123px;
    right: 13px;
    z-index: -1;
    letter-spacing: 0.01px;
    writing-mode: vertical-rl;
    color: #900000;
    opacity: 0.6;
    &:nth-of-type(2) {
        top: 45%;
        right: unset;
        left: -10px;
    }
}

.about_tour .lower_section_title_en {
    color: #fff;
}
.about_tour .lower_section_title {
    color: #fff;
    align-items: flex-start;
    letter-spacing: 1px;
    &::before {
        transform: translateY(50%);
        background: #fff;
    }
}
.about_tour_links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 29px 0 0;
}
.about_tour_links_item {
    display: block;
    width: 100%;
    aspect-ratio: 2.3;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    background: url('../img/about_tour_link1.webp') no-repeat center center/cover;
    &::after {
        content: '';
        display: block;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.3);
        position: absolute;
        top: 0;
        left: 0;
        z-index: 0;
        opacity: 0;
        transition: all 0.3s ease;
    }
    &:nth-of-type(2) {
        background: url('../img/about_tour_link2.webp') no-repeat center center/cover;
    }
}
.about_tour_links_item_text {
    width: 100%;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.2;
    color: #C80211;
    background: #ffffffe6;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 11px;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    padding: 5px 14px;
    box-sizing: border-box;
}
.about_tour_links_item_toggle {
    width: 27px;
    flex-shrink: 0;
    aspect-ratio: 1;
    border-radius: 50%;
    background: #C80211;
    position: relative;
    overflow: hidden;
    &::after,
    &::before {
        content: '';
        display: block;
        width: 12px;
        height: 100%;
        background: url('../img/arrow_btn_white.svg') no-repeat center center/contain;
        position: absolute;
        top: 51%;
        left: 49%;
    }
    &::before {
        transform: translate(-300%, -50%);
        transition: all 0.3s ease;
        display: none;
    }
    &::after {
        transform: translate(-50%, -50%) rotate(90deg);
        transition: all 0.3s ease;
    }
}
@media (any-hover: hover) {
    .about_tour_links_item:hover {
        &::after {
            opacity: 1;
        }
        /* .about_tour_links_item_toggle {
            &::before {
                transform: translate(-50%, -50%);
            }
            &::after {
                transform: translate(200%, -50%);
            }
        } */
    }
}
.about_tour .arrow_btn {
    margin: 49px 0 0 auto ;
    font-size: 19px;
    padding: 12px 13px 12px 30px;
}
.about_tour .arrow_btn_toggle {
    width: 30px;
}

.about_tour_worksite {
    margin: 40px 0 0;
}
.about_tour_worksite_title {
    font-size: 28px;
    font-weight: bold;
    line-height: 1.2;
    color: #fff;
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    &::before {
        content: '';
        display: block;
        width: 15px;
        aspect-ratio: 1;
        border: 2px solid #fff;
        border-radius: 50%;
    }
}
.about_tour_worksite_text {
    width: fit-content;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    background: #EAEBEF;
    padding: 6px 9px;
    margin: 10px 0 0;
    letter-spacing: 0.8px;
}
.about_tour_worksite_list {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin: 22px 0 16px;
}
.about_tour_worksite_item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 1px;
    color: #fff;
}
.about_tour_worksite_item_check {
    width: 18px;
    height: 12px;
    margin: 4px 0 0;
}
.about_tour_worksite_image {
    border-radius: 0 30px 0 0;
}

.about_tour_movie {
    margin: 40px 0 0;
}
.about_tour_movie_title {
    font-size: 28px;
    font-weight: bold;
    line-height: 1.2;
    color: #fff;
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    &::before {
        content: '';
        display: block;
        width: 15px;
        aspect-ratio: 1;
        border: 2px solid #fff;
        border-radius: 50%;
    }
}
.about_tour_movie_text {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    color: #fff;
    margin: 20px 0;
    letter-spacing: 1px;
}
.about_tour_movie_content {
    max-width: 732PX;
    margin: 0 auto;
}

.about_greeting {
    padding: 70px 25px 0;
    position: relative;
}
.lower_section_title_en_bg {
    display: block;
    font-size: 65px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.01px;
    margin: 0 0 -20px;
    color: #C9C9C9;
    opacity: 0.3;
    position: relative;
    z-index: -1;
}
.about_greeting_title {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.2;
    margin: 38px 0 31px;
}
.about_greeting_text {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.47;
    letter-spacing: 1px;
}
.about_greeting_name {
    font-size: 17px;
    font-weight: 600;
    line-height: 1.2;
    margin: 31px 0 38px;
}
.about_greeting_image {
    border-radius: 10px;
}

/* -----------workstyle_interview-----------*/
.workstyle_interview {
    padding: 120px 20px 0px;
    overflow: hidden;
}
.workstyle_interview_item {
    margin: 30px 0 0;
    padding: 0 0 40px;
    border-bottom: 0.75px solid #C9C9C9;
    position: relative;
}
.workstyle_interview_item_corner {
    display: block;
    width: 76px;
    aspect-ratio: 1;
    background: #C80211;
    clip-path: polygon(0 0, 100% 0, 0% 100%);
    position: relative;
    left: 7px;
}
.workstyle_interview_item_index {
    display: flex;
    align-items: baseline;
    gap: 10px;
    font-size: 57px;
    font-weight: bold;
    line-height: 1;
    color: #C80211;
    position: absolute;
    top: 0;
    right: 7px;
}
.workstyle_interview_item_index_num {
    font-size: 96px;
    line-height: 1;
}
.workstyle_interview_item_wrap {
    display: flex;
    align-items: flex-start;
    flex-shrink: 0;
    gap: 9.5px;
    margin: 19px 5px 0;
    position: relative;
}
.workstyle_interview_item_info {
    width: 40%;
    display: flex;
    flex-direction: column;
    gap: 9.6px;
    padding: 0 0 0 17px;
    border-left: 5px solid #C80211;
}
.workstyle_interview_item_info_name {
    font-size: 21px;
    font-weight: 600;
    line-height: 1.2;
    color: #000;
}
.workstyle_interview_item_info_position {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.2;
    color: #000;
}
.workstyle_interview_item_image_small {
    width: 40%;
    border-radius: 10px;
    position: absolute;
    bottom: 0;
    left: 0;
}
.workstyle_interview_item_image {
    width: calc(60% - 9.5px);
    border-radius: 20px 0 20px 0;
    object-fit: cover;
}
.workstyle_interview_item_title {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.3;
    color: #C80211;
    margin: 25px 0 30px;
    letter-spacing: 1px;
}
.workstyle_interview_item_text {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.45;
    letter-spacing: 2px;
}

/* -----------workstyle_environment-----------*/
.workstyle_environment {
    padding: 60px 20px 30px;
    overflow: hidden;
}
.workstyle_environment_head {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.workstyle_environment_head.first_head {
    margin: 20px 0 10px;
}
.workstyle_environment_head_item {
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 1px;
    padding: 9px 10px;
    background: #fff;
    text-decoration: none;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.25);
}
.workstyle_environment_head_item_index {
    font-size: 26px;
    font-weight: bold;
    line-height: 1;
    color: #C9C9C9;
}
.workstyle_environment_head_slash {
    width: 16px;
}
.workstyle_environment_head_item_title {
    font-size: 19px;
    font-weight: 600;
    line-height: 1.2;
    color: #C80211;
    white-space: nowrap;
}
.workstyle_environment_head_toggle {
    width: 27px;
    flex-shrink: 0;
    aspect-ratio: 1;
    border-radius: 50%;
    background: #C80211;
    position: relative;
    overflow: hidden;
    margin: 0 0 0 8px;
    &::after,
    &::before {
        content: '';
        display: block;
        width: 12px;
        height: 100%;
        background: url('../img/arrow_btn_white.svg') no-repeat center center/contain;
        position: absolute;
        top: 51%;
        left: 49%;
    }
    &::before {
        transform: translate(-50%, -300%) rotate(90deg);
        transition: all 0.3s ease;
    }
    &::after {
        transform: translate(-50%, -50%) rotate(90deg);
        transition: all 0.3s ease;
    }
}
@media (any-hover: hover) {
    .workstyle_environment_head_item:hover {
        &::after {
            opacity: 1;
        }
        .workstyle_environment_head_toggle {
            &::before {
                transform: translate(-50%, -50%) rotate(90deg);
            }
            &::after {
                transform: translate(-50%, 200%) rotate(90deg);
            }
        }
    }
}
.workstyle_environment_item_label {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #C80211;
    margin: 50px calc(50% - 50vw) 0 0;
    padding: 10px;
    box-sizing: border-box;
}
.workstyle_environment_item_index {
    font-size: 35px;
    font-weight: bold;
    line-height: 1;
    color: #EAEBEF;
}
.workstyle_environment_item_slash {
    width: 26px;
}
.workstyle_environment_item_title_sub {
    font-size: 11px;
    font-weight: 500;
    line-height: 1.4;
    color: #fff;
}
.workstyle_environment_item_title_main {
    font-size: 23px;
    font-weight: bold;
    line-height: 1.2;
    color: #fff;
    letter-spacing: 2px;
}
.workstyle_environment_item_inner {
    max-width: 1030px;
}
.workstyle_environment_content {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    padding: 20px 0 15px;
    border-bottom: 0.75px solid #C9C9C9;
}
.workstyle_environment_content_red {
    color: #C80211;
    font-weight: 600;
}
.workstyle_environment_content_wrap {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
    margin: 20px 0 0;
}
.workstyle_environment_content_tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}
.workstyle_environment_content_tags_item {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    background: #514947;
    color: #EAEBEF;
    border-radius: 100px;
    padding: 5px 10px;
}
.workstyle_environment_content_image {
    border-radius: 30px 0 0;
    display: block;
}
.workstyle_environment_second_list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 20px 0 0;
}
.workstyle_environment_second_item {
    min-height: 150px;
    display: flex;
    background: #fff;
    padding: 11px;
    border: 4px solid #C80211;
    border-radius: 15px;
    box-sizing: border-box;
}
.workstyle_environment_second_item_head {
    width: 105px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    gap: 5px;
}
.workstyle_environment_second_wrap_item_icon {
    width: 51px;
}
.workstyle_environment_second_item_head_title {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    color: #C80211;
    text-align: center;
}
.workstyle_environment_second_item_inner {
    border-left: 1px solid #C9C9C9;
    margin: 0 0 0 9px;
    padding: 0 0 0 9px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.workstyle_environment_second_item_text {
    font-size: 13px;
    font-weight: 500;
    line-height: 1.5;
}
.workstyle_environment_second_item_comment {
    font-size: 13px;
    font-weight: 500;
    line-height: 1.5;
    color: #C80211;
    padding: 0 0 0 12px;
}
.workstyle_environment_third_list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 23px 0 43px;
}
.workstyle_environment_third_list_item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}
.workstyle_environment_third_list_text {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.36;
    align-items: flex-start;
    text-decoration: underline;
    text-underline-offset: -8px;
    text-decoration-thickness: 14px;
    text-decoration-color: #fff;
    /* background: linear-gradient(to top, #fff 20%, transparent 20%); */
}
.workstyle_environment_third_list_text_red {
    color: #C80211;
    font-weight: bold;
}
.workstyle_environment_third_check {
    width: 20px;
    margin: 6px 0 0;
}
.workstyle_environment_third_image {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 20px 0 0;
}
.workstyle_environment_third_image img {
    display: block;
    border-radius: 5px;
    box-shadow: 2px 4px 10px rgba(30, 30, 30, 0.2);
}
.workstyle_environment_third_message {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.45;
    margin: 23px 0 0;
}
.workstyle_environment_third_message_red {
    color: #C80211;
    font-weight: 600;
}

.workstyle_environment_fourth_step {
    margin: 25px 0;
    display: flex;
    gap: 14px;
}
.workstyle_environment_fourth_flow_item_wrap {
    display: flex;
    gap: 10px;
    &:nth-of-type(2) {
        margin: -10px 0 0;
    }
    &:nth-of-type(3) {
        margin: -10px 0 0;
    }
}
.workstyle_environment_fourth_flow_item {
    width: 137px;
    height: 90px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('../img/workstyle_environment_flow2.webp') no-repeat center center/contain;
}
.workstyle_environment_fourth_flow_item_wrap:nth-of-type(1) .workstyle_environment_fourth_flow_item {
    height: 80px;
    background: url('../img/workstyle_environment_flow1.webp') no-repeat center center/contain;
}
.workstyle_environment_fourth_flow_item_text {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.2;
    color: #C80211;
    text-align: center;
    padding: 5px 0 0;
}
.workstyle_environment_fourth_flow_item_wrap:nth-of-type(1) .workstyle_environment_fourth_flow_item_text {
    font-size: 14px;
    padding: 0 0 8px;
}
.workstyle_environment_fourth_flow_item_wrap:nth-of-type(3) .workstyle_environment_fourth_flow_item_text {
    font-size: 14px;
}
.workstyle_environment_fourth_text_title {
    font-size: 12px;
    font-weight: 600;
    line-height: 1.5;
    margin: 8px 0 0;
}

.workstyle_environment_fourth_summary {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0 0 25px;
    border-bottom: 1px solid #C9C9C9;
}
.workstyle_environment_fourth_summary_item {
    box-sizing: border-box;
    min-height: 100px;
    display: flex;
    align-items: center;
    gap: 18px;
    background: #fff;
    border-radius: 200px;
    box-shadow: 2px 4px 10px rgba(30, 30, 30, 0.2);
}
.workstyle_environment_fourth_summary_item_inner {
    padding: 10px 10px 10px 0;
}
.workstyle_environment_fourth_summary_item_icon_wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: stretch;
    box-sizing: border-box;
    padding: 0 20px;
    border-radius: 200px 0 0 200px;
    flex-shrink: 0;
    background: #C80211;
}
.workstyle_environment_fourth_summary_item_icon {
    display: block;
    width: 28px;
}
.workstyle_environment_fourth_summary_item_title {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.4;
    color: #514947;
}
.workstyle_environment_fourth_summary_item_text {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
    color: #C80211;
    letter-spacing: 0.05em;
}
.workstyle_environment_fourth_message {
    max-width: 860px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 1px;
    margin: 25px auto 0;
}
.workstyle_environment_fourth_message_red {
    font-size: 15px;
    font-weight: 600;
    color: #C80211;
}

/* -----------requirements-----------*/
.requirements_content {
    padding: 120px 20px 30px;
}
.requirements_content_tabs {
    display: flex;
    gap: 8px;
}
.requirements_content_tabs_item {
    width: calc((100% - 16px) / 3);
    display: flex;
    flex-grow: 1;
    color: #fff;
    background: #A7A7A7;
    display: flex;
    justify-content: center;
    border-radius: 0 10px 0 0;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
    padding: 7.5px 0;
    margin: 30px 0 0;
    cursor: pointer;
    box-shadow: 2px 4px 2px rgba(0, 0, 0, 0.25);
}
.requirements_content_tabs_item.active {
    background: #C80211;
}
.requirements_content_main {
    position: relative;
    z-index: 1;
}
.requirements_content_main_inner {
    background: #fff;
    padding: 10px 20px;
    border-radius: 0 0 20px 20px;
    display: none;
    box-shadow: 2px 4px 2px rgba(0, 0, 0, 0.25);
}
.requirements_content_main_inner.active {
    display: block;
}
.requirements_content_item {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid #EAEBEF;
    &:last-of-type {
        border-bottom: none;
    }
}
.requirements_content_item_label {
    font-size: 15px;
    font-weight: 600;
    color: #C80211;
}
.requirements_content_item_inner {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.requirements_content_item_text {
    font-size: 13px;
    font-weight: 500;
}
.requirements_content_item_small {
    font-size: 11px;
    font-weight: 500;
    line-height: 1.5;
}
.requirements_content_item_medium {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.75;
}

/* -----------privacy-----------*/
.privacy_content {
    padding: 120px 20px 50px;
}
.privacy_content_inner {
    margin: 30px 0 0;
}
.privacy_intro {
    margin: 0 0 40px;
}
.privacy_intro_text {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.6;
    color: #1E1E1E;
}
.privacy_section {
    margin: 0 0 40px;
}
.privacy_section_title {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    color: #C80211;
    margin: 0 0 15px;
    position: relative;
    padding: 0 0 0 20px;
    &::before {
        content: '';
        display: block;
        width: 10px;
        aspect-ratio: 1;
        background: #C80211;
        border-radius: 50%;
        position: absolute;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
    }
}
.privacy_section_text {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.8;
    color: #1E1E1E;
    padding: 0 0 0 20px;
}
.privacy_contact {
    margin: 50px 0 0;
    padding: 30px 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.1);
}
.privacy_contact_title {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    color: #C80211;
    margin: 0 0 20px;
    position: relative;
    padding: 0 0 0 20px;
    &::before {
        content: '';
        display: block;
        width: 10px;
        aspect-ratio: 1;
        background: #C80211;
        border-radius: 50%;
        position: absolute;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
    }
}
.privacy_contact_info {
    padding: 0 0 0 20px;
}
.privacy_contact_company {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    color: #1E1E1E;
    margin: 0 0 10px;
}
.privacy_contact_address {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.6;
    color: #1E1E1E;
    margin: 0 0 10px;
}
.privacy_contact_tel {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.6;
    color: #1E1E1E;
    margin: 0;
}

/* -----------entry-----------*/
.entry_mv {
    width: 100%;
    background: #C9030F;
    padding: 60px 0 0;
}
.entry_mv_inner {
    max-width: 530px;
    margin: 0 auto;
    height: 191px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    padding: 0 0 0 10px;
    background: url('../img/entry_mv_bg_sp.webp') no-repeat right bottom/contain;
}
.entry_mv_text {
    width: fit-content;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.2;
    color: #C80211;
    background: #fff;
    padding: 5px 9px;
    text-align: center;
    box-shadow: 5px 5px 0 #000;
}

.entry_main {
    padding: 53px 20px 50px;
}
.entry_form_title_wrap {
    display: flex;
    flex-direction: column;
    position: relative;
    &::before {
        content: 'ENTRY';
        display: block;
        font-size: 54px;
        font-family: 'Akshar', serif;
        line-height: 1;
        font-weight: 600;
        color: #514947;
        opacity: 0.1;
        letter-spacing: 0.01px;
        position: relative;
        top: 0;
        left: 0;
        z-index: -1;
    }
}
.entry_form_title {
    font-size: 24px;
    font-weight: bold;
    line-height: 1.2;
    color: #C80211;
    position: relative;
    margin: -25px 0 0;
}
.entry_main_form {
    background: #fff;
    margin: 10px 0 0;
    padding: 22px 20px 46px;
    border-radius: 15px;
    box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.25);
}
.entry_main_form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.entry_main_form .form_item_label {
    font-size: 13px;
    font-weight: 600;
    line-height: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 5px;
    &::before {
        width: 27px;
        height: 15px;
        content: "必須";
        display: flex;
        justify-content: center;
        align-items: center;
        background: #C80211;
        color: #fff;
        padding: 2px 5.5px 0;
        font-size: 7.8px;
        font-weight: 500;
        line-height: 1;
        box-sizing: border-box;
    }
}
.entry_main_form .optional .form_item_label {
    &::before {
        content: "任意";
        background: #C9C9C9;
    }
}
.entry_main_form .wpcf7-list-item {
    margin: 0 0 0 5px;
}
.entry_main_form .form_item_radio {
    display: flex;
    flex-direction: column;
}
.entry_main_form .form_item_radio_inner {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.entry_main_form .form_item_radio label {
    display: flex;
    align-items: center;
    gap: 10px;
}
.entry_main_form .form_item_radio_inner label {
    gap: 6px;
}
.entry_main_form .form_item_radio .wpcf7-list-item-label {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.5;
}
.entry_main_form input,
.entry_main_form textarea {
    font-size: 13px;
    font-weight: 500;
    line-height: 1.5;
    border: 1px solid #C9C9C9;
    border-radius: 5px;
    padding: 10px;
    resize: none;
    margin: 0;
    box-sizing: border-box;
}
.entry_main_form textarea {
    height: 60px;
}
.entry_main_form input[type="text"],
.entry_main_form input[type="email"],
.entry_main_form input[type="tel"],
.entry_main_form textarea {
    width: 100%;
}
.entry_main_form input::placeholder,
.entry_main_form textarea::placeholder {
    color: #C9C9C9;
}
.wpcf7-list-item-label {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.5;
    margin: 1px 0 0;
}
.entry_main_form .privacy_link {
    display: inline-block;
    width: 13px;
    height: 13px;
    margin: 0 4.5px 2px;
    vertical-align: middle;
}
.entry_main_form .privacy_link .privacy_icon {
    width: 100%;
    height: 100%;
}
.wpcf7-acceptance label {
    display: flex;
    align-items: center;
    gap: 8px;
}
.entry_main_form .form__submit {
    width: 190px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #C80211;
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    border: none;
    border-radius: 100px;
    margin: 20px auto 0;
    box-shadow: 3px 4px 4px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
}
@media (any-hover: hover) {
    .entry_main_form .form__submit:hover {
        transform: translate(3px, 4px);
        box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.25);
    }
}
.entry_main_form .wpcf7-spinner {
    display: none;
}
.entry_main_form .form__submit {
    width: 210px;
    height: 50px;
    font-size: 20px;
}

/* -----------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;
    }

    /* -----------共通-----------*/
    .arrow_btn {
        font-size: 16px;
    }

    /* -----------SP header-----------*/
    .header {
        height: 90px;
        padding: 20px;
    }
    .header_logo {
        height: 50px;
    }
    .header_nav_entry {
        width: 134px;
        height: 44px;
        font-size: 26px;
        border-radius: 8px;
        margin: 0 0 0 30px;
        padding: 5px 20px;
    }

    .header_menu {
        height: calc(100vh - 90px - 134px);
        top: 90px;
    }

    /* -----------footer-----------*/
    .footer_nav {
        max-width: 765px;
        flex-direction: row;
        justify-content: space-between;
    }

    /* -----------top-----------*/
    .top_mv {
        height: calc(100dvh - 90px);
        margin: 90px 0 0;
    }
    .top_mv_red {
        clip-path: polygon(72% 0%, 86% 0%, 66% 100%, 52% 100%);
    }
    @keyframes topMvScale {
        0% {
            clip-path: polygon(70% 0%, 90% 0%, 70% 100%, 50% 100%);
        }
        100% {
            clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
        }
    }
    .top_mv_text_desc {
        text-align: center;
    }

    .top_about {
        padding: 80px 40px 80px;
    }
    .top_about .sec_inner {
        display: flex;
        align-items: center;
        flex-direction: row-reverse;
        gap: 40px;
    }
    .top_about_image {
        width: 100%;
        max-width: 35%;
        margin: 0;
    }

    .top_workplace {
        padding: 90px 20px 80px;
    }
    .top_workplace .sec_inner {
        display: flex;
        justify-content: space-between;
        flex-direction: row;
        gap: 20px;
    }
    .top_workplace_bg {
        width: 400px;
        top: 50%;
        right: 10%;
        transform: translateY(-50%);
        left: unset;
    }
    .top_workplace_title .sp{
        display: none;
    }
    .top_workplace .top_workplace_btns {
        flex-shrink: 0;
        gap: 20px;
        animation: unset;
    }
    .top_workplace .top_workplace_wrap .arrow_btn {
        display: flex;
    }
    .top_workplace .sp_btn {
        display: none;
    }

    .top_message_content {
        margin: -100px auto 0;
    }
    .top_message_content img {
        display: block;
        width: 80%;
        margin: 0 auto;
    }
    .top_message_content_inner {
        max-width: 500px;
        box-sizing: border-box;
        margin: -100px 0 0 auto;
        padding: 10px 20px;
    }
    .top_message_head {
        font-size: 26px;
        font-weight: bold;
    }
    .top_message_head .sp {
        display: none;
    }
    .top_message_text {
        font-size: 16px;
    }

    .top_workstyle_head {
        text-align: center;
        margin: 50px 0 20px;
    }
    .top_workstyle_head .sp {
        display: none;
    }
    .top_workstyle_text {
        text-align: center;
        font-size: 16px;
    }
    .top_workstyle_text .sp {
        display: none;
    }
    .top_workstyle_list_item {
        width: calc((100% - 18px) / 4);
    }

    .top_requirements_list {
        flex-direction: row;
        gap: 18px;
    }
    .top_requirements_list_item {
        aspect-ratio: 1.4;
        background: url('../img/top_requirements_image1_pc.webp') no-repeat center center/cover;
        &:nth-of-type(2) {
            background: url('../img/top_requirements_image2_pc.webp') no-repeat center center/cover;
        }
        &:nth-of-type(3) {
            background: url('../img/top_requirements_image3_pc.webp') no-repeat center center/cover;
        }
    }
    .top_requirements_item_text {
        font-size: 15px;
        white-space: nowrap;
        padding: 12px 7px;
    }

    /* -----------about-----------*/
    .about_message {
        padding: 160px 40px 70px;
    }
    .about_message_image {
        width: 290px;
    }
    .about_message_title {
        font-size: 26px;
        font-weight: bold;
        line-height: 1.24;
    }
    .about_message_subtitle {
        font-size: 110px;
    }

    .about_tour_bg_wrap {
        overflow: hidden;
        position: absolute;
        bottom: 0;
        left: 0;
        z-index: -1;
        width: 100%;
        height: 100%;
    }
    .about_tour_bg {
        font-size: 200px;
        top: 120px;
        right: 50px;
    }
    .about_tour .lower_section_title .sp {
        display: none;
    }
    .about_tour_links {
        flex-direction: row;
        gap: 50px;
    }
    .about_tour_links_item {
        aspect-ratio: 2.6;
    }
    .about_tour_links_item_text {
        font-size: 26px;
        font-weight: bold;
    }
    .about_tour_links_item_toggle {
        width: 31px;
        &::after,
        &::before {
            width: 14px;
        }
    }

    .about_tour_worksite {
        display: flex;
        align-items: flex-start;
        gap: 30px;
        &:nth-of-type(4) {
            flex-direction: row-reverse;
        }
    }
    .about_tour_worksite_wrap {
        width: 60%;
    }
    .about_tour_worksite_list {
        gap: 10px;
    }
    .about_tour_worksite_item .sp {
        display: none;
    }
    .about_tour_worksite_item .pc {
        display: block;
    }
    .about_tour_worksite_image {
        width: 40%;
        max-height: 300px;
        border-radius: 0 50px 0 0;
        flex-grow: 1;
    }

    .about_greeting {
        padding: 70px 40px 0;
    }
    .about_greeting_title {
        font-size: 26px;
        margin: 50px 0 20px;
    }
    .about_greeting_title .sp {
        display: none;
    }
    .about_greeting_text {
        font-size: 16px;
        line-height: 2;
        font-weight: 600;
    }
    .about_greeting_text .sp {
        display: none;
    }
    .about_greeting_name {
        font-size: 20px;
        margin: 20px 0 20px;
    }
    .about_greeting_image {
        display: block;
        max-width: 534px;
        margin: 0 0 0 auto;
    }

    /* -----------workstyle-----------*/
    .workstyle_interview {
        padding: 160px 40px 0px;
    }
    .workstyle_interview_item_corner {
        width: 100px;
        position: absolute;
        top: 0;
        left: 0;
    }
    .workstyle_interview_item_index {
        top: 50px;
        right: unset;
        left: 50px;
    }
    .workstyle_interview_item_info {
        margin: 150px 0 0 30px;
    }
    .workstyle_interview_item_image_small {
        width: 25%;
        max-width: 180px;
        aspect-ratio: 1;
        position: absolute;
        top: 20px;
        right: min(38%, 300px);
        left: unset;
        bottom: unset;
        border-radius: 20px;
    }
    .workstyle_interview_item_image {
        width: min(31%, 260px);
        max-height: 320px;
        position: absolute;
        top: 0;
        right: 0;
    }
    .workstyle_interview_item_title {
        margin: 25px 0 30px 30px;
    }
    .workstyle_interview_item_title .sp {
        display: none;
    }
    .workstyle_interview_item_title .pc {
        display: block;
    }
    .workstyle_interview_item_text {
        margin: 0 0 0 30px;
    }

    .workstyle_environment {
        padding: 60px 40px 40px;
    }
    .workstyle_environment_head {
        flex-direction: row;
    }
    .workstyle_environment_item_label {
        margin: 30px calc(50% - 50vw) 0 0;
    }
    .workstyle_environment_content_wrap {
        flex-direction: row;
    }
    .workstyle_environment_content_image {
        width: 41%;
    }
    .workstyle_environment_second_item_text .sp {
        display: none;
    }

    .workstyle_environment_fourth_flow {
        display: flex;
        gap: 10px;
    }
    .workstyle_environment_fourth_flow_item_wrap {
        width: calc((100% + 20px) / 3);
        gap: 10px;
        flex-direction: column;
        &:nth-of-type(2) {
            margin: 0 0 0 -10px;
        }
        &:nth-of-type(3) {
            margin: 0 0 0 -10px;
        }
    }
    .workstyle_environment_fourth_flow_item {
        width: calc(100% + 10px);
        height: auto;
        aspect-ratio: 5;
        background: url('../img/workstyle_environment_flow2_pc.webp') no-repeat center center/contain;
    }
    .workstyle_environment_fourth_flow_item_wrap:nth-of-type(1) .workstyle_environment_fourth_flow_item {
        height: auto;
        background: url('../img/workstyle_environment_flow1_pc.webp') no-repeat center center/contain;
    }
    .workstyle_environment_fourth_flow_item_text {
        font-size: 14px;
        padding: 0;
    }
    .workstyle_environment_fourth_flow_item_wrap:nth-of-type(1) .workstyle_environment_fourth_flow_item_text {
        font-size: 14px;
        padding: 0;
    }
    .workstyle_environment_fourth_flow_item_wrap:nth-of-type(3) .workstyle_environment_fourth_flow_item_text {
        font-size: 14px;
    }
    .workstyle_environment_fourth_text_title {
        padding: 0 10px 0 16px;
        position: relative;
        &::before {
            content: '・';
            display: block;
            font-size: 12px;
            font-weight: 600;
            position: absolute;
            top: 0;
            left: 0;
        }
    }
    .workstyle_environment_fourth_summary {
        gap: 20px;
        padding: 0 0 50px;
        border-bottom: none;
    }
    .workstyle_environment_fourth_summary_item {
        min-height: 80px;
        gap: 13px;
    }
    .workstyle_environment_fourth_summary_item_icon_wrap {
        border-radius: 50%;
        width: 80px;
        aspect-ratio: 1;
    }
    .workstyle_environment_fourth_summary_item_icon {
        width: 38px;
    }
    .workstyle_environment_fourth_summary_item_title {
        margin: 0 0 10px;
    }
    .workstyle_environment_fourth_summary_item_text {
        line-height: 1;
    }
    .workstyle_environment_fourth_summary_item_text .sp {
        display: none;
    }
    .workstyle_environment_fourth_message .sp {
        display: none;
    }
    .workstyle_environment_fourth_message .pc {
        display: block;
    }

    /* -----------requirements-----------*/
    .requirements_content {
        padding: 180px 40px 50px;
    }
    .requirements_content_tabs {
        gap: 20px;
    }
    .requirements_content_tabs_item {
        width: calc((100% - 40px) / 3);
        font-size: 18px;
        padding: 10px 0;
    }
    .requirements_content_main_inner {
        padding: 20px 40px;
    }

    /* -----------privacy-----------*/
    .privacy_content {
        padding: 180px 40px 50px;
    }
    .privacy_content_inner {
        margin: 50px 0 0;
    }
    .privacy_intro_text {
        font-size: 16px;
    }
    .privacy_section_title {
        font-size: 20px;
    }
    .privacy_section_text {
        font-size: 15px;
    }
    .privacy_contact {
        padding: 40px 30px;
    }
    .privacy_contact_title {
        font-size: 20px;
    }
    .privacy_contact_company {
        font-size: 18px;
    }
    .privacy_contact_address {
        font-size: 15px;
    }
    .privacy_contact_tel {
        font-size: 15px;
    }

    /* -----------entry-----------*/
    .entry_mv {
        padding: 90px 0 0;
    }
    .entry_mv_inner {
        max-width: 820px;
        height: 300px;
        gap: 15px;
        padding: 0 0 0 40px;
    }
    .entry_mv_text {
        font-size: 26px;
        font-weight: bold;
        padding: 7px 10px;
        box-shadow: 6px 7px 0 #000;
    }

    .entry_main {
        padding: 100px 40px 100px;
    }
    .entry_form_title {
        font-size: 32px;
        &::before {
            font-size: 100px;
        }
    }
    .entry_main_form {
        margin: 60px 0 0;
    }
    .entry_main_form form {
        gap: 30px;
    }
    .entry_main_form .form_item_label {
        font-size: 14px;
        margin: 0 0 10px;
        &::before {
            width: 45px;
            height: 25px;
            font-size: 14px;
            padding: 1px 5.5px 0;
        }
    }
    .entry_main_form .form_item_radio .wpcf7-list-item-label {
        font-size: 14px;
    }
    .entry_main_form input,
    .entry_main_form textarea {
        font-size: 14px;
    }
    .wpcf7-list-item-label {
        font-size: 14px;
        font-weight: 600;
    }
    .entry_main_form .form_item_radio_inner {
        flex-direction: row;
        gap: 30px;
    }
    .entry_main_form .wpcf7-list-item {
        margin: 0;
    }
    .entry_main_form .privacy_link {
        width: 15px;
        height: 15px;
        margin: 0 4.5px 4px;
    }

}


/* -----------PC-----------*/

@media screen and (min-width:960px) {


    body {
        font-size: 15px;
    }

    .sp {
        display: none;
    }

    .pc {
        display: block;
    }

    /* -----------共通-----------*/
    .arrow_btn {
        font-size: 20px;
        padding: 8px 20px;
    }
    .arrow_btn_toggle {
        width: 35px;
        &::after,
        &::before {
            width: 13px;
        }
    }

    .top_workstyle_title {
        font-size: 42px;
        &::before {
            width: 21px;
        }
    }

    .lower_section_title_en {
        font-size: 20px;
        margin: 0 0 16px;
    }
    .lower_section_title {
        font-size: 32px;
        &::before {
            width: 21px;
        }
    }

    .cta_section {
        padding: 80px 0;
    }
    .cta_section_btn {
        width: 416px;
        height: 91px;
        font-size: 16px;
        gap: 5px;
        font-weight: 600;
    }
    .cta_section_btn_en {
        font-size: 32px;
        font-weight: bold;
    }

    /* -----------PC header-----------*/
    .header_hamburger {
        display: none;
    }
    .header_nav_text {
        display: flex;
    }

    /* -----------footer-----------*/
    .footer_inner {
        gap: 50px;
    }
    .footer_nav_text {
        font-size: 24px;
    }
    .footer_nav_text_span {
        font-size: 14px;
    }
    .footer_sns {
        gap: 10px;
    }
    .footer_sns_text {
        font-size: 14px;
    }
    .footer_copyright {
        font-size: 14px;
        margin: 75px 0 0;
    }

    /* -----------top-----------*/
    .top_mv_text_title {
        display: inline-block;
        font-size: 42px;
        line-height: 1;
        &:nth-of-type(1) {
            animation-delay: 0.4s;
        }
        &:nth-of-type(2) {
            animation-delay: 0.4s;
        }
    }
    .top_mv_text_subtitle {
        font-size: 42px;
        line-height: 1;
        margin: 20px 0 0;
    }
    .top_mv_text_desc {
        font-size: 16px;
        text-align: center;
        margin: 30px 0 0;
    }

    .top_about {
        padding: 150px 40px 150px;
    }
    .top_about .sec_inner {
        gap: 90px;
    }
    .top_about_title {
        font-size: 42px;
        &::before {
            width: 21px;
        }
        &::after {
            font-size: 100px;
        }
    }
    .top_about_text {
        max-width: 590px;
        font-size: 16px;
    }

    .top_workplace {
        padding: 200px 40px 200px;
    }
    .top_workplace .sec_inner {
        flex-direction: row;
        position: relative;
    }
    .top_workplace_bg {
        width: 80%;
        max-width: 920px;
        top: 50%;
        left: unset;
        right: 0;
        transform: translateY(-50%);
    }
    .top_workplace_title .tb_none{
        display: block;
    }
    .top_workplace_title {
        font-size: 42px;
        &::before {
            width: 21px;
        }
        &::after {
            font-size: 100px;
        }
    }
    .top_workplace_text {
        font-size: 16px;
        margin: 63px 0 50px;
    }
    .top_workplace .top_workplace_btns .arrow_btn {
        font-size: 24px;
        gap: 20px;
        padding: 26px 71px;
        border-radius: 15px;
    }
    .top_workplace .top_workplace_btns .arrow_btn_toggle {
        width: 34px;
    }

    .top_message {
        padding: 50px 40px 70px;
    }
    .top_message_subtitle {
        font-size: 100px;
        margin: 0;
    }
    .top_message_title {
        font-size: 26px;
        &::before {
            width: 21px;
        }
    }
    .top_message_content {
        margin: -130px auto 0;
    }
    .top_message_content img {
        width: 85%;
    }
    .top_message_content_inner {
        margin: -100px -40px 0 auto;
    }

    .top_workstyle {
        padding: 30px 40px 70px;
    }
    .top_workstyle_group {
        margin: 0 calc(50% - 50vw) 30px;
        display: flex;
        white-space: nowrap;
        overflow: hidden;
    }
    .top_workstyle_group_item {
        padding: 0 30px;
        animation: marquee 10s linear infinite;
        font-size: 150px;
        font-weight: bold;
        color: #514947;
        opacity: 0.1;
        line-height: 0.9;
    }
    .top_workstyle_title {
        font-size: 42px;
        &::before {
            width: 21px;
        }
        &::after {
            display: none;
        }
    }
    .top_workstyle_content {
        max-width: 800px;
        margin: 60px auto 0;
    }
    .top_workstyle_head {
        font-size: 32px;
    }
    .top_workstyle_content_item_head {
        padding: 20px 30px;
    }
    .top_workstyle_item_index_num {
        font-size: 25px;
    }
    .top_workstyle_item_head_text {
        font-size: 20px;
        letter-spacing: 0;
    }
    .top_workstyle_item_head_toggle {
        width: 35px;
    }
    .top_workstyle_list {
        margin: 80px auto 60px;
        justify-content: center;
        gap: 20px;
    }
    .top_workstyle_list_item {
        width: calc((100% - 60px) / 4);
        max-width: 225px;
        padding: 8px 10px;
    }
    .top_workstyle_list_item_index {
        font-size: 25px;
    }
    .top_workstyle_list_item_image {
        width: 60px;
    }
    .top_workstyle_list_item_title {
        font-size: 24px;
        margin: 8px 0;
    }
    .top_workstyle_list_item_text {
        font-size: 16px;
        line-height: 1.5;
    }
    .top_workstyle_btn_wrap {
        max-width: 960px;
        margin: 0 0 0 auto;
    }

    .top_requirements {
        padding: 100px 40px 100px;
    }
    .top_requirements_wrap {
        &::before {
            font-size: 100px;
        }
    }
    .top_requirements_title {
        font-size: 42px;
        margin: -40px 0 0;
        &::before {
            width: 21px;
        }
    }
    .top_requirements_text {
        font-size: 15px;
        line-height: 1.5;
        margin: 30px 0;
    }
    .top_requirements_list {
        gap: 30px;
    }
    .top_requirements_list_item {
        border-radius: 20px;
    }
    .top_requirements_item_text {
        font-size: 20px;
        justify-content: flex-end;
        gap: 10px;
        font-weight: 600;
        padding: 20px 14px;
    }
    .top_requirements .arrow_btn {
        font-size: 20px;
    }

    /* -----------about-----------*/
    .about_tour {
        padding: 90px 52px;
    }
    .about_tour .sec_inner {
        margin: 0;
    }
    .about_tour_worksite_title {
        font-size: 32px;
        &::before {
            width: 21px;
        }
    }
    .about_tour_worksite {
        gap: 50px;
    }
    .about_tour_worksite_text {
        font-size: 20px;
        font-weight: 600;
        line-height: 1;
        padding: 15px 20px;
    }
    .about_tour_worksite_item {
        font-size: 20px;
        font-weight: 600;
        line-height: 1.3;
        letter-spacing: 0;
    }
    .about_tour_worksite_item_check {
        width: 20px;
        height: 13px;
    }
    .about_tour_movie_text {
        font-size: 16px;
    }
    .about_greeting_name {
        margin: 20px 0 0px;
    }

    /* -----------workstyle-----------*/
    .workstyle_environment_second_list {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 20px;
    }
    .workstyle_environment_second_item {
        width: calc((100% - 20px) / 2);
        min-height: 180px;
        border-radius: 20px;
        border: 5px solid #C80211;
        padding: 17px;
    }
    .workstyle_environment_second_item_head {
        width: min(180px, 42%);
    }
    .workstyle_environment_second_wrap_item_icon {
        width: 70px;
    }
    .workstyle_environment_second_item_head_title {
        font-size: 20px;
        line-height: 1;
    }
    .workstyle_environment_second_item_text {
        font-size: clamp(14px, 1.1vw, 16px);
        font-weight: bold;
    }
    .workstyle_environment_second_item_comment {
        font-size: 16px;
        font-weight: bold;
    }
    .workstyle_environment_third_message.sp {
        display: block;
    }
    .workstyle_environment_third_message.pc {
        display: none;
    }

    /* -----------requirements-----------*/
    .requirements_content {
        padding: 200px 40px 50px;
    }
    .requirements_content_tabs {
        gap: 40px;
        justify-content: space-between;
    }
    .requirements_content_tabs_item {
        width: calc((100% - 40px) / 3);
        max-width: 310px;
        font-size: 20px;
        padding: 20px 0;
    }
    .requirements_content_tabs_item .sp {
        display: none;
    }
    .requirements_content_main_inner {
        padding: 20px 40px;
    }
    .requirements_content_item {
        flex-direction: row;
        align-items: center;
        gap: min(14vw, 160px);
        padding: 20px 0;
    }
    .requirements_content_item_label {
        width: 150px;
        font-size: 16px;
        flex-shrink: 0;
        color: #1E1E1E;
    }
    .requirements_content_item_inner {
        gap: 0;
    }
    .requirements_content_item_text {
        font-size: 14px;
        font-weight: 600;
    }
    .requirements_content_item_small {
        font-size: 14px;
        font-weight: 600;
    }
    .requirements_content_item_medium {
        font-size: 14px;
        font-weight: 600;
    }

    /* -----------privacy-----------*/
    .privacy_content {
        padding: 200px 40px 50px;
    }
    .privacy_content_inner {
        max-width: 900px;
        margin: 50px auto 0;
    }
    .privacy_intro_text {
        font-size: 16px;
        line-height: 1.8;
    }
    .privacy_section {
        margin: 0 0 50px;
    }
    .privacy_section_title {
        font-size: 22px;
        margin: 0 0 20px;
        &::before {
            width: 12px;
        }
    }
    .privacy_section_text {
        font-size: 15px;
        line-height: 2;
        padding: 0 0 0 25px;
    }
    .privacy_contact {
        margin: 60px 0 0;
        padding: 40px 40px;
    }
    .privacy_contact_title {
        font-size: 22px;
        margin: 0 0 25px;
        &::before {
            width: 12px;
        }
    }
    .privacy_contact_info {
        padding: 0 0 0 25px;
    }
    .privacy_contact_company {
        font-size: 18px;
        margin: 0 0 12px;
    }
    .privacy_contact_address {
        font-size: 16px;
        margin: 0 0 12px;
    }
    .privacy_contact_tel {
        font-size: 16px;
    }

    /* -----------entry-----------*/
    .entry_form_title_wrap {
        &::before {
            font-size: 100px;
        }
    }
    .entry_form_title {
        font-size: 42px;
        margin: -40px 0 0;
        &::before {
            width: 21px;
        }
    }

}


@media screen and (min-width:1025px) {


    .sp {
        display: none;
    }

    .pc {
        display: block;
    }

    /* -----------共通-----------*/

    /* -----------PC header-----------*/


    /* -----------footer-----------*/


    /* -----------top-----------*/

    /* -----------about-----------*/
    .about_message {
        padding: 190px 30px 70px 52px;
    }
    .about_message .sec_inner {
        display: flex;
        flex-direction: column;
        position: relative;
        z-index: 1;
        margin: unset;
    }
    .about_message_title {
        order: 0;
        margin: 60px 0;
    }
    .about_message_subtitle {
        order: 2;
    }
    .about_message_image {
        width: 45%;
        position: absolute;
        top: 120px;
        left: unset;
        right: 0;
        z-index: -1;
    }
    .about_message_text {
        width: min(608px, 60%);
        font-size: 16px;
        font-weight: 600;
        line-height: 1.5;
        margin: 0 0 60px;
        padding: 0;
        order: 1;
    }

    .about_tour {
        padding: 90px 52px;
        margin: 0;
    }
    .about_tour_bg {
        font-size: clamp(200px, 20vw, 290px);
    }

    .about_greeting {
        padding: 80px 50px 0 52px;
    }
    .about_greeting .sec_inner {
        margin: unset;
    }
    .about_greeting .lower_section_title_en_bg {
        width: fit-content;
        font-size: 140px;
        font-weight: bold;
        margin: 0 0 -80px auto;
        letter-spacing: 0.05em;
    }

    /* -----------workstyle-----------*/
    .workstyle_interview {
        padding: 190px 30px 0px 52px;
    }
    .workstyle_interview .sec_inner {
        margin: unset;
    }
    .workstyle_interview_item_corner {
        width: 143px;
    }
    .workstyle_interview_item_index {
        font-size: 75px;
    }
    .workstyle_interview_item_index_num {
        font-size: 128px;
        left: 60px;
    }
    .workstyle_interview_item_index {
        left: 60px;
    }
    .workstyle_interview_item_info {
        margin: 208px 0 0 60px;
    }
    .workstyle_interview_item_info_name {
        font-size: 26px;
        font-weight: bold;
        line-height: 1.2;
    }
    .workstyle_interview_item_info_position {
        font-size: 20px;
        font-weight: 600;
        line-height: 1.5;
    }
    .workstyle_interview_item_image_small {
        width: 24%;
        top: 37px;
        right: min(36%, 360px);
    }
    .workstyle_interview_item_image {
        width: min(32%, 308px);
        max-height: unset;
    }
    .workstyle_interview_item_title {
        font-size: 26px;
        font-weight: bold;
        line-height: 1.2;
        letter-spacing: 0;
        margin: 40px 0 57px 60px;
    }
    .workstyle_interview_item_text {
        font-size: 16px;
        font-weight: 600;
        line-height: 2;
        letter-spacing: 0;
        margin: 0 0 0 60px;
    }

    .workstyle_environment {
        padding: 100px 30px 60px 52px;
    }
    .workstyle_environment .sec_inner {
        margin: unset;
    }
    .workstyle_environment_head_item {
        gap: 2px;
        padding: 12px 15px;
    }
    .workstyle_environment_head_item_index {
        width: 33px;
    }
    .workstyle_environment_head_item_title {
        font-size: clamp(18px, 2vw, 24px);
        line-height: 1;
    }
    .workstyle_environment_item_label {
        padding: 5px 20px;
    }
    .workstyle_environment_item_index {
        font-size: 70px;
        font-weight: 600;
        letter-spacing: 0.01px;
    }
    .workstyle_environment_item_slash {
        width: 40px; 
    }
    .workstyle_environment_item_title_sub {
        font-size: 16px;
        font-weight: 600;
        line-height: 1.5;
    }
    .workstyle_environment_item_title_main {
        font-size: 26px;
        margin: 4px 0 0;
    }
    .workstyle_environment_content {
        font-size: 16px;
        line-height: 1.5;
    }
    .workstyle_environment_content_tags {
        gap: 10px;
    }
    .workstyle_environment_content_tags_item {
        font-size: 16px;
        font-weight: 600;
        padding: 8px 15px;
    }
    .workstyle_environment_content_image {
        width: 47%;
        border-radius: 50px 0 0 0;
    }
    .workstyle_environment_third_wrap {
        display: flex;
        justify-content: space-between;
        gap: 10px;
    }
    .workstyle_environment_third_list {
        width: 63%;
        gap: 20px;
        flex-shrink: 0;
        margin: 40px 0 0;
    }
    .workstyle_environment_third_check {
        width: 25px;
        margin: 10px 0 0;
    }
    .workstyle_environment_third_list_text {
        font-size: clamp(22px, 1.5vw, 24px);
    }
    .workstyle_environment_third_list_item:nth-of-type(3) .workstyle_environment_third_list_text {
        line-height: 1.8;
        text-box-trim: trim-both;
    }
    .workstyle_environment_third_image {
        width: 44%;
        max-width: 353px;
    }
    .workstyle_environment_third_image img {
        border-radius: 0px;
    }
    .workstyle_environment_third_message {
        max-width: 620px;
        font-size: 20px;
        font-weight: bold;
        line-height: 1.5;
    }
    .workstyle_environment_third_message.sp {
        display: none;
    }
    .workstyle_environment_third_message.pc {
        display: block;
    }
    
    .workstyle_environment_fourth_step {
        margin: 40px 0 30px;
    }
    .workstyle_environment_fourth_flow_item_text {
        font-size: 20px;
    }
    .workstyle_environment_fourth_flow_item_wrap:nth-of-type(1) .workstyle_environment_fourth_flow_item_text {
        font-size: 20px;
    }
    .workstyle_environment_fourth_flow_item_wrap:nth-of-type(3) .workstyle_environment_fourth_flow_item_text {
        font-size: clamp(15px, 1.4vw, 20px);
        padding: 0 0 0 10px;
    }
    .workstyle_environment_fourth_text_title {
        font-size: 16px;
        margin: 14px 0 0;
        padding: 0 10px 0 20px;
        &::before {
            font-size: 16px;
        }
    }
    .workstyle_environment_fourth_summary_item_title {
        font-size: 16px;
        font-weight: 600;
        line-height: 1.5;
    }
    .workstyle_environment_fourth_summary_item_text {
        font-size: clamp(14px, 1.4vw, 20px);
        font-weight: 600;
        line-height: 1;
    }
    .workstyle_environment_fourth_message {
        font-size: clamp(16px, 1.5vw, 20px);
        margin: 0 auto;
    }
    .workstyle_environment_fourth_message_red {
        font-size: clamp(16px, 1.5vw, 20px);
    }

    /* -----------entry-----------*/
    .entry_mv {
        padding: 90px 0 0;
    }
    .entry_mv_inner {
        max-width: 1300px;
        height: 350px;
        gap: 21px;
        padding: 0 0 0 70px;
        background: url('../img/entry_mv_bg.webp') no-repeat right bottom/cover;
    }
    .entry_mv_text {
        font-size: 32px;
        font-weight: bold;
        box-shadow: 10px 11px 0 #000;
    }

    .entry_main {
        padding: 135px 60px 150px;
    }
}


/* 追従メニュー用 */
@media screen and (min-width:1025px) {
    .sticky_container {
        display: flex;
        gap: 32px;
    }
    .sticky_wrap {
        width: 226px;
        display: block;
        height: 100%;
        padding: 110px 0 40px 50px;
        position: sticky;
        top: 0;
        left: 0px;
        flex-shrink: 0;
    }
    .sticky_title {
        font-size: 14px;
        font-weight: 600;
        line-height: 1.5;
        color: #C80211;
        display: flex;
        align-items: center;
        gap: 20px;
    }
    .sticky_title_line {
        display: block;
        flex-grow: 1;
        height: 1px;
        background: #C80211;
    }
    .sticky_item {
        display: block;
        font-size: 14px;
        font-weight: 600;
        line-height: 1.5;
        color: #1E1E1E;
        text-decoration: none;
        position: relative;
        &::before {
            content: '●';
            display: block;
            font-size: 14px;
            line-height: 1;
            color: #C80211;
            position: absolute;
            top: 49%;
            left: 0;
            transform: translateY(-50%) scale(0);
            opacity: 0;
            transition: opacity 0.3s ease, transform 0.3s ease;
        }
    }
    .sticky_item.active::before {
        opacity: 1;
        transform: translateY(-50%) scale(1);
    }
    .sticky_item_section {
        margin: 25px 0 0;
        padding: 0 0 0 28px;
    }
    .sticky_item_content {
        margin: 20px 0 0 ;
        padding: 0 0 0 40px;
    }

    .content_wrap {
        flex-grow: 1;
    }

}
