@charset "UTF-8";
/* 
Theme Name: ◆◆◆site_name◆◆◆
Author: ◆◆◆site_name◆◆◆
Author URI: https://◆◆◆◆◆◆/
Version: 1.0
*/
/* CSS Document */
:root {
    --font-jp: "Zen Kaku Gothic Antique", sans-serif;
    --font-en: "Inter", sans-serif;
    --color-white: #ffffff;
    --color-black: #1C1C1C;
    --inner-width: 1480px;
    --inner-outer-width: calc(min(50vw, 1920px / 2) - min(var(--inner-width) / 0.88, min(100vw, 1920px)) * 0.44);
    --header-height: 100px;
    --mv-header-height: var(--header-height);
}
@media (max-width: 1500px) {
    :root {
        --header-height: 80px;
    }
}
@media (max-width: 1280px) {
    :root {
        --header-height: 70px;
    }
}
@media (max-width: 768px) {
    :root {
        --inner-outer-width: calc(50vw - min(var(--inner-width) / 0.88, 100vw) * 0.46);
        --header-height: 70px;
    }
}

.font-jp {
    font-family: var(--font-jp);
}

html {
    font-size: 62.5%;
    scroll-padding-top: var(--header-height);
    scroll-behavior: smooth;
    -moz-text-size-adjust: 100%;
         text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
}
html body {
    background: gray;
    min-height: 100%;
    font-size: 1.6rem;
    line-height: 2.25;
    background-color: var(--color-white);
    font-weight: 500;
    font-family: var(--font-jp);
}
@media (max-width: 1440px) {
    html body {
        font-size: 1.6rem;
    }
}
@media (max-width: 1000px) {
    html body {
        font-size: 1.5rem;
    }
}

a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.2s ease-in;
}
a:hover {
    text-decoration: none;
    opacity: 0.7;
}

*,
*:before,
*:after {
    box-sizing: border-box;
}

/* ------------------------------------- /
/   共通
/* ------------------------------------- */
.taC {
    text-align: center;
}

.taR {
    text-align: right;
}

.iB {
    display: inline-block;
}

.inner {
    width: min(100%, var(--inner-width) / 0.88);
    margin: 0 auto;
    padding: 0 min(6%, (var(--inner-width) / 0.88 - var(--inner-width)) / 2);
}
@media (max-width: 768px) {
    .inner {
        padding: 0 4%;
    }
}

.grecaptcha-badge {
    visibility: hidden;
}

.lower__main {
    margin-top: var(--header-height);
}

/* ------------------------------------- /
/   menu-trigger
/* ------------------------------------- */
.menu-trigger {
    visibility: hidden;
    display: block;
    width: 40px;
    height: 24px;
    background: none;
    border: none;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    cursor: pointer;
    position: fixed;
    right: 20px;
    top: 23px;
    z-index: 200;
    padding-block-end: 0;
    padding-block-start: 0;
}
.menu-trigger.mv {
    position: absolute;
    z-index: 300;
}
.menu-trigger.mv span {
    background: var(--color-white);
}
.menu-trigger.mv.active span {
    background: var(--color-black);
}
.menu-trigger span {
    display: inline-block;
    width: 30px;
    height: 1px;
    background: var(--color-black);
    position: absolute;
    left: calc(50% - 15px);
    transition-property: top, left, transform, background-color;
    transition-duration: 0.6s;
}
.menu-trigger span:nth-of-type(1) {
    top: calc(50% - 8px);
}
.menu-trigger span:nth-of-type(2) {
    top: calc(50% + 8px);
}
.menu-trigger span:nth-of-type(3) {
    top: 50%;
}
.menu-trigger.opened span {
    animation-duration: 0.6s;
    animation-timing-function: ease-out;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}
.menu-trigger.opened span:nth-of-type(1) {
    animation-name: menu-close_01;
}
.menu-trigger.opened span:nth-of-type(2) {
    animation-name: menu-close_02;
}
.menu-trigger.opened span:nth-of-type(3) {
    animation-name: menu-close_03;
}
.menu-trigger.active span:nth-of-type(1) {
    animation-name: menu-open_01;
}
.menu-trigger.active span:nth-of-type(2) {
    animation-name: menu-open_02;
}
.menu-trigger.active span:nth-of-type(3) {
    animation-name: menu-open_03;
}
@media (max-width: 768px) {
    .menu-trigger {
        visibility: visible;
    }
}
@keyframes menu-open_01 {
    0% {
        top: calc(50% - 8px);
        transform: rotate(0deg);
    }
    33.3333% {
        top: calc(50% - 0px);
        transform: rotate(0deg);
    }
    66.6666% {
        top: calc(50% - 0px);
        transform: rotate(0deg);
    }
    100% {
        top: calc(50% - 0px);
        transform: rotate(45deg);
    }
}
@keyframes menu-close_01 {
    0% {
        top: calc(50% - 0px);
        transform: rotate(45deg);
    }
    33.3333% {
        top: calc(50% - 0px);
        transform: rotate(0deg);
    }
    66.6666% {
        top: calc(50% - 0px);
        transform: rotate(0deg);
    }
    100% {
        top: calc(50% - 8px);
        transform: rotate(0deg);
    }
}
@keyframes menu-open_03 {
    0% {
        width: 30px;
        left: calc(50% - 15px);
    }
    66.6666% {
        width: 30px;
        left: calc(50% - 15px);
    }
    70% {
        width: 0;
        left: calc(50% - 0px);
    }
    100% {
        width: 0;
        left: calc(50% - 0px);
    }
}
@keyframes menu-close_03 {
    0% {
        width: 0;
        left: calc(50% - 0px);
    }
    66.6666% {
        width: 30px;
        left: calc(50% - 15px);
    }
    70% {
        width: 30px;
        left: calc(50% - 15px);
    }
    100% {
        width: 30px;
        left: calc(50% - 15px);
    }
}
@keyframes menu-open_02 {
    0% {
        top: calc(50% + 8px);
        transform: rotate(0deg);
    }
    33.3333% {
        top: calc(50% + 0px);
        transform: rotate(0deg);
    }
    66.6666% {
        top: calc(50% + 0px);
        transform: rotate(0deg);
    }
    100% {
        top: calc(50% + 0px);
        transform: rotate(-45deg);
    }
}
@keyframes menu-close_02 {
    0% {
        top: calc(50% + 0px);
        transform: rotate(-45deg);
    }
    33.3333% {
        top: calc(50% + 0px);
        transform: rotate(0deg);
    }
    66.6666% {
        top: calc(50% + 0px);
        transform: rotate(0deg);
    }
    100% {
        top: calc(50% + 8px);
        transform: rotate(0deg);
    }
}

/* ------------------------------------- /
/  header
/* ------------------------------------- */
header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    height: var(--header-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
}

.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    font-size: 2rem;
    font-weight: 700;
}
@media (max-width: 1500px) {
    .header__inner {
        font-size: 1.8rem;
    }
}
@media (max-width: 1280px) {
    .header__inner {
        font-size: 1.5rem;
    }
}
.header__inner .header__logo {
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 250/57;
    width: 250px;
}
@media (max-width: 1500px) {
    .header__inner .header__logo {
        width: 200px;
    }
}
@media (max-width: 1280px) {
    .header__inner .header__logo {
        width: 150px;
    }
}
.header__inner .header__menu {
    display: flex;
    align-items: center;
    gap: 60px;
}
@media (max-width: 1500px) {
    .header__inner .header__menu {
        gap: 30px;
    }
}
@media (max-width: 1280px) {
    .header__inner .header__menu {
        gap: 15px;
    }
}
@media (max-width: 768px) {
    .header__inner .header__menu {
        display: none;
    }
}
.header__inner .header__menu .header__recruit__contact {
    display: flex;
    gap: 20px;
    color: var(--color-white);
}
@media (max-width: 1280px) {
    .header__inner .header__menu .header__recruit__contact {
        gap: 5px;
    }
}
.header__inner .header__menu .header__recruit__contact .header__recruit {
    background: #004BB1;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    width: 165px;
    gap: 18px;
}
@media (max-width: 1500px) {
    .header__inner .header__menu .header__recruit__contact .header__recruit {
        height: 40px;
        width: 125px;
        gap: 10px;
    }
}
@media (max-width: 1280px) {
    .header__inner .header__menu .header__recruit__contact .header__recruit {
        width: 95px;
        gap: 7px;
    }
}
.header__inner .header__menu .header__recruit__contact .header__recruit::before {
    content: "";
    display: block;
    width: 15px;
    aspect-ratio: 15/19;
    background: url(../img/common/recruit.svg) center/contain no-repeat;
}
@media (max-width: 1280px) {
    .header__inner .header__menu .header__recruit__contact .header__recruit::before {
        width: 12px;
    }
}
.header__inner .header__menu .header__recruit__contact .header__contact {
    background: #FC9924;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    width: 205px;
    gap: 14px;
}
@media (max-width: 1500px) {
    .header__inner .header__menu .header__recruit__contact .header__contact {
        height: 40px;
        width: 160px;
        gap: 10px;
    }
}
@media (max-width: 1280px) {
    .header__inner .header__menu .header__recruit__contact .header__contact {
        width: 125px;
        gap: 7px;
    }
}
.header__inner .header__menu .header__recruit__contact .header__contact::before {
    content: "";
    display: block;
    width: 19px;
    aspect-ratio: 19/15;
    background: url(../img/common/contact.svg) center/contain no-repeat;
}
@media (max-width: 1280px) {
    .header__inner .header__menu .header__recruit__contact .header__contact::before {
        width: 15px;
    }
}

.nav {
    display: none;
}
@media (max-width: 768px) {
    .nav {
        display: flex;
        justify-content: center;
        width: min(100%, 400px);
        height: 100vh;
        color: var(--color-black);
        background: var(--color-white);
        overflow: auto;
        position: fixed;
        top: 0;
        right: 0;
        transform: translateX(100%);
        z-index: 140;
        padding-top: 70px;
    }
    .nav.loaded {
        transition-duration: 0.8s;
        transition-delay: 0.4s;
    }
    .nav .wrapper .btn__wrapper {
        width: 100%;
        height: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .nav .wrapper .btn__wrapper .nav__sp__logo {
        display: block;
        width: min(100%, 200px);
    }
    .nav .wrapper .nav__menu {
        margin-top: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        max-height: calc(100% - 40px - 20px);
    }
    .nav .wrapper .nav__menu > a {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        padding: 20px 0;
        border-bottom: 1px solid var(--color-black);
    }
}
.nav.active {
    transform: translateX(0);
    transition-delay: 0s;
}
.nav.active .wrapper {
    transition-delay: 0.8s;
    opacity: 1;
}

/* ------------------------------------- /
/  footer
/* ------------------------------------- */
footer {
    background: #3B3B3B;
    color: var(--color-white);
    font-size: 1.6rem;
    font-weight: 700;
}
@media (max-width: 768px) {
    footer {
        font-size: 1.5rem;
    }
}
footer .font20 {
    font-size: 2rem;
}
@media (max-width: 1440px) {
    footer .font20 {
        font-size: 1.8rem;
    }
}
@media (max-width: 768px) {
    footer .font20 {
        font-size: 1.6rem;
    }
}
footer .footer__container {
    display: flex;
    justify-content: space-between;
}
@media (max-width: 1000px) {
    footer .footer__container {
        flex-direction: column;
        row-gap: 20px;
    }
}
footer .footer__logo {
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 427/98;
    width: 427px;
    color: var(--color-black);
}
@media (max-width: 1440px) {
    footer .footer__logo {
        width: 300px;
    }
}
@media (max-width: 768px) {
    footer .footer__logo {
        width: 180px;
    }
}
footer .footer__right {
    display: flex;
    gap: 50px;
}
@media (max-width: 1440px) {
    footer .footer__right {
        gap: 30px;
    }
}
@media (max-width: 768px) {
    footer .footer__right {
        flex-direction: column;
        gap: 0;
    }
}
footer .footer__right .col ul {
    font-size: 1.6rem;
}
footer .footer__right .col ul li {
    padding-left: 12px;
    position: relative;
}
footer .footer__right .col ul li::before {
    content: "";
    position: absolute;
    width: 5px;
    aspect-ratio: 1;
    border-radius: 50%;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: var(--color-white);
}
footer .footer__right .col a {
    display: block;
    width: -moz-fit-content;
    width: fit-content;
}
footer .footer__right .col .col__works {
    margin-left: 40px;
}
@media (max-width: 768px) {
    footer .footer__right .col .col__works {
        margin-left: unset;
    }
}
footer .footer__right .col .footer__cta {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 205px;
    height: 50px;
    border-radius: 5px;
    border: 1px solid var(--color-white);
    padding-left: 40px;
    position: relative;
}
@media (max-width: 1440px) {
    footer .footer__right .col .footer__cta {
        width: 185px;
    }
}
footer .footer__right .col .footer__cta.footer__recruit::before {
    position: absolute;
    left: 26px;
    top: 50%;
    transform: translateY(-50%);
    content: "";
    display: block;
    width: 15px;
    aspect-ratio: 15/19;
    background: url(../img/common/recruit.svg) center/contain no-repeat;
}
footer .footer__right .col .footer__cta.footer__contact::before {
    position: absolute;
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
    content: "";
    display: block;
    width: 19px;
    aspect-ratio: 19/15;
    background: url(../img/common/contact.svg) center/contain no-repeat;
}
footer .footer__copyright {
    border-top: 1px solid #747474;
    text-align: center;
    font-family: var(--font-en);
    color: #747474;
}

/* ------------------------------------- /
/  共通ブロック
/* ------------------------------------- */
.h2__25 {
    color: #004BB1;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.44;
    letter-spacing: 0.04em;
}
@media (max-width: 768px) {
    .h2__25 {
        font-size: 1.6rem;
    }
}

.h2__en__80 {
    color: #004BB1;
    font-family: var(--font-en);
    font-size: 8rem;
    font-weight: 700;
    line-height: 1.2;
}
@media (max-width: 768px) {
    .h2__en__80 {
        font-size: 5rem;
    }
}

.h3__30 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 2;
}
@media (max-width: 768px) {
    .h3__30 {
        font-size: 2rem;
    }
}

.detail__btn {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-white);
    display: flex;
    justify-content: center;
    align-items: center;
    background: #004BB1;
    border-radius: 5px;
    width: 290px;
    height: 70px;
    position: relative;
}
@media (max-width: 768px) {
    .detail__btn {
        font-size: 1.5rem;
        width: 200px;
        height: 50px;
    }
}
.detail__btn::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 25px;
    width: 8px;
    aspect-ratio: 8/9;
    background: var(--color-white);
    -webkit-mask: url(../img/common/triangle.svg) center/contain no-repeat;
            mask: url(../img/common/triangle.svg) center/contain no-repeat;
}

.lower__top {
    padding-top: 70px;
    background: linear-gradient(0deg, #fff 0%, #eff6ff 100%);
}

.lower__h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #004BB1;
    line-height: 1.44;
}
@media (max-width: 1440px) {
    .lower__h1 {
        font-size: 2rem;
    }
}
@media (max-width: 768px) {
    .lower__h1 {
        font-size: 1.6rem;
    }
}

.lower__h1__en {
    font-size: 11rem;
    font-family: var(--font-en);
    color: #004BB1;
    font-weight: 700;
    line-height: 1.22;
}
@media (max-width: 1440px) {
    .lower__h1__en {
        font-size: 8rem;
    }
}
@media (max-width: 768px) {
    .lower__h1__en {
        font-size: 6rem;
    }
}

.breadcrumb {
    margin-top: 50px;
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    gap: 10px;
}
@media (max-width: 1440px) {
    .breadcrumb {
        margin-top: 35px;
    }
}
@media (max-width: 768px) {
    .breadcrumb {
        margin-top: 20px;
        font-size: 1.4rem;
    }
}
.breadcrumb .dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #004BB1;
}
.breadcrumb .current {
    color: #A0A0A0;
}

.check__container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 60px;
    font-size: 1.8rem;
}
@media (max-width: 1440px) {
    .check__container {
        gap: 5px 30px;
        font-size: 1.6rem;
    }
}
@media (max-width: 768px) {
    .check__container {
        font-size: 1.5rem;
        gap: 5px 15px;
    }
}

/* ------------------------------------- /
/  トップページ
/* ------------------------------------- */
.top__mv {
    position: relative;
    z-index: 120;
}
.top__mv .top__mv__header {
    position: absolute;
    top: 0;
    height: var(--mv-header-height);
    left: 0;
    right: 0;
    color: var(--color-white);
}
.top__mv .top__mv__txt {
    position: absolute;
    top: var(--mv-header-height);
    bottom: 0;
    left: 0;
    right: 0;
    color: var(--color-white);
    display: flex;
    align-items: center;
}
@media (max-width: 768px) {
    .top__mv .top__mv__txt {
        padding-bottom: 30px;
    }
}
.top__mv .top__mv__txt .top__mv__txt__en {
    font-family: var(--font-en);
    font-size: clamp(10rem, 4rem + 4.167vw, 12rem);
    font-weight: 700;
    line-height: 1.17;
}
@media (max-width: 1440px) {
    .top__mv .top__mv__txt .top__mv__txt__en {
        font-size: clamp(5rem, -0.714rem + 7.44vw, 10rem);
    }
}
@media (max-width: 768px) {
    .top__mv .top__mv__txt .top__mv__txt__en {
        font-size: 3.5rem;
    }
}
.top__mv .top__mv__txt .top__mv__txt__ja {
    margin-top: 30px;
    font-size: 6rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    line-height: 1.47;
}
@media (max-width: 1440px) {
    .top__mv .top__mv__txt .top__mv__txt__ja {
        margin-top: 20px;
        font-size: 4rem;
    }
}
@media (max-width: 768px) {
    .top__mv .top__mv__txt .top__mv__txt__ja {
        font-size: 2rem;
        margin-top: 5px;
    }
}

.top__bg__grad {
    background: linear-gradient(#fff 0%, #eff6ff 100%);
}

.top__about .inner {
    display: flex;
    flex-wrap: wrap;
    row-gap: 30px;
}
.top__about .inner .txt, .top__about .inner .img {
    width: 50%;
}
@media (max-width: 768px) {
    .top__about .inner .txt, .top__about .inner .img {
        width: 100%;
    }
}
.top__about .inner .txt {
    padding-right: 7%;
}
.top__about .inner .img img {
    border-radius: 20px;
}

.top__service {
    position: relative;
}
.top__service .bg__1 {
    position: absolute;
    top: 5%;
    right: 3%;
    width: 16%;
    aspect-ratio: 303/401;
    background: url(../img/top/service_bg_1.webp) center/contain no-repeat;
}
.top__service .bg__2 {
    position: absolute;
    top: 41%;
    left: 5%;
    width: 11%;
    aspect-ratio: 1;
    background: url(../img/top/service_bg_2.webp) center/contain no-repeat;
}
.top__service .bg__3 {
    position: absolute;
    top: 49%;
    right: 4%;
    width: 24%;
    aspect-ratio: 1;
    background: url(../img/top/service_bg_3.webp) center/contain no-repeat;
}
.top__service .bg__4 {
    position: absolute;
    bottom: 5%;
    left: 4%;
    width: 16%;
    aspect-ratio: 1;
    background: url(../img/top/service_bg_4.webp) center/contain no-repeat;
}

.top__service__box {
    padding: 90px 100px;
    display: flex;
    flex-wrap: wrap;
    border-radius: 20px;
    background: transparent;
    box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.06);
    -webkit-backdrop-filter: blur(36.3573989868px);
            backdrop-filter: blur(36.3573989868px);
    --webkit-backdrop-filter: blur(36.357398986816406px);
    position: relative;
    row-gap: 30px;
}
@media (max-width: 1440px) {
    .top__service__box {
        padding: 50px;
    }
}
@media (max-width: 768px) {
    .top__service__box {
        border-radius: 10px;
        padding: 20px;
    }
}
.top__service__box::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: inherit;
    background: #fff;
    opacity: 40%;
}
.top__service__box .txt, .top__service__box .img {
    width: 50%;
}
@media (max-width: 768px) {
    .top__service__box .txt, .top__service__box .img {
        width: 100%;
    }
}
.top__service__box .img {
    padding-left: 100px;
}
@media (max-width: 1440px) {
    .top__service__box .img {
        padding-left: 50px;
    }
}
@media (max-width: 768px) {
    .top__service__box .img {
        padding-left: unset;
    }
}
.top__service__box .img img {
    max-height: 380px;
    max-width: 100%;
    width: auto;
    margin: 0 auto;
}
.top__service__box .top__service__box__en {
    font-size: 2rem;
    font-weight: 700;
    font-family: var(--font-en);
    color: #004BB1;
    line-height: 1.2;
    padding-left: 18px;
    position: relative;
}
@media (max-width: 768px) {
    .top__service__box .top__service__box__en {
        font-size: 1.6rem;
    }
}
.top__service__box .top__service__box__en::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: #004BB1;
}
.top__service__box h3 {
    margin-top: 10px;
    margin-bottom: 30px;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.46;
}
@media (max-width: 768px) {
    .top__service__box h3 {
        margin-bottom: 15px;
        font-size: 2.4rem;
    }
}

.top__works {
    background: url(../img/top/works_bg.webp) center/cover no-repeat;
}
.top__works .h2__25, .top__works .h2__en__80 {
    color: var(--color-white);
}

.works__container {
    display: flex;
    flex-wrap: wrap;
    gap: 60px 80px;
}
@media (max-width: 1440px) {
    .works__container {
        gap: 40px;
    }
}
@media (max-width: 768px) {
    .works__container {
        gap: 30px;
    }
}
.works__container > * {
    width: calc((100% - 80px) / 2);
    background: var(--color-white);
    border-radius: 20px;
    padding: 30px;
}
@media (max-width: 1440px) {
    .works__container > * {
        padding: 20px;
        width: calc((100% - 40px) / 2);
    }
}
@media (max-width: 768px) {
    .works__container > * {
        border-radius: 10px;
        padding: 15px;
        width: 100%;
    }
}
.works__container > * img {
    border-radius: 15px;
}
@media (max-width: 768px) {
    .works__container > * img {
        border-radius: 5px;
    }
}
.works__container > * .date {
    margin-top: 30px;
    color: #FFAB47;
    font-family: var(--font-en);
    line-height: 1.25;
}
@media (max-width: 768px) {
    .works__container > * .date {
        margin-top: 15px;
    }
}
.works__container > * h3 {
    margin-top: 10px;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.45;
    border-bottom: 1px solid #FC9924;
    padding-bottom: 15px;
    margin-bottom: 25px;
}
@media (max-width: 768px) {
    .works__container > * h3 {
        font-size: 1.7rem;
        margin-top: 5px;
        padding-bottom: 5px;
        margin-bottom: 15px;
    }
}
.works__container > * h3 .bold {
    font-weight: 700;
}

.top__bg__bl {
    background: linear-gradient(0deg, #fff 0%, #eff6ff 100%);
}

.recruit__wrapper {
    padding: 90px;
    background: url(../img/common/recruit_bg.webp) center/cover no-repeat;
    border-radius: 20px;
    color: var(--color-white);
    display: flex;
    flex-wrap: wrap;
    row-gap: 30px;
}
@media (max-width: 1440px) {
    .recruit__wrapper {
        padding: 50px;
    }
}
@media (max-width: 768px) {
    .recruit__wrapper {
        padding: 20px;
        border-radius: 10px;
    }
}
.recruit__wrapper .h2__25, .recruit__wrapper .h2__en__80 {
    color: var(--color-white);
}
.recruit__wrapper > * {
    width: 50%;
}
@media (max-width: 768px) {
    .recruit__wrapper > * {
        width: 100%;
    }
}
.recruit__wrapper .txt {
    font-size: 1.8rem;
    font-weight: 700;
}
.recruit__wrapper .txt .detail__btn {
    background: var(--color-white);
    color: #004BB1;
}
.recruit__wrapper .txt .detail__btn::before {
    background: #004BB1;
}
.recruit__wrapper .img {
    padding-left: 100px;
}
@media (max-width: 1440px) {
    .recruit__wrapper .img {
        padding-left: 50px;
    }
}
@media (max-width: 768px) {
    .recruit__wrapper .img {
        padding-left: unset;
    }
}

.top__access__container {
    display: flex;
    flex-wrap: wrap;
    row-gap: 20px;
}
.top__access__container > * {
    width: 50%;
}
@media (max-width: 1000px) {
    .top__access__container > * {
        width: 100%;
    }
}
.top__access__container .map iframe {
    width: 100%;
    border-radius: 20px;
}
@media (max-width: 1000px) {
    .top__access__container .map iframe {
        border-radius: 10px;
    }
}
.top__access__container .txt {
    padding-left: 100px;
}
@media (max-width: 1440px) {
    .top__access__container .txt {
        padding-left: 50px;
    }
}
@media (max-width: 1000px) {
    .top__access__container .txt {
        padding-left: unset;
    }
}
.top__access__container .txt table {
    width: 100%;
    font-size: 2rem;
    font-weight: 700;
}
@media (max-width: 1000px) {
    .top__access__container .txt table {
        font-size: 1.7rem;
    }
}
.top__access__container .txt table tr {
    border-bottom: 1px solid #004BB1;
}
.top__access__container .txt table th, .top__access__container .txt table td {
    padding: 20px 0;
}
@media (max-width: 1000px) {
    .top__access__container .txt table th, .top__access__container .txt table td {
        padding: 15px 0;
    }
}
.top__access__container .txt table th {
    color: #004BB1;
    font-weight: inherit;
    width: 114px;
}
@media (max-width: 1440px) {
    .top__access__container .txt table th {
        width: 100px;
    }
}
@media (max-width: 1000px) {
    .top__access__container .txt table th {
        width: 70px;
    }
}

.contact {
    max-width: 1920px;
    margin: 0 auto;
    padding-right: var(--inner-outer-width);
}
@media (max-width: 1000px) {
    .contact {
        padding-right: unset;
    }
}
.contact .contact__bg {
    background: #FC9925;
    padding: 90px;
    border-radius: 20px;
    padding-left: var(--inner-outer-width);
    color: var(--color-white);
    font-size: 1.8rem;
    font-weight: 700;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
    z-index: 0;
    overflow: hidden;
    row-gap: 20px;
}
@media (max-width: 1920px) {
    .contact .contact__bg {
        border-radius: 0 20px 20px 0;
    }
}
@media (max-width: 1440px) {
    .contact .contact__bg {
        padding: 50px 50px 50px var(--inner-outer-width);
    }
}
@media (max-width: 1000px) {
    .contact .contact__bg {
        padding: 50px min(6%, (var(--inner-width) / 0.88 - var(--inner-width)) / 2);
        font-size: 1.6rem;
        border-radius: 0;
    }
}
@media (max-width: 768px) {
    .contact .contact__bg {
        padding: 30px 4%;
    }
}
.contact .contact__bg::before {
    content: "NIKKO DENKI";
    position: absolute;
    color: #FF8A00;
    font-family: var(--font-en);
    font-size: clamp(21rem, 3rem + 12.5vw, 27rem);
    font-weight: 700;
    line-height: 1;
    width: 100%;
    left: 0;
    bottom: 0;
    z-index: -1;
    transform: translateY(35%);
    white-space: nowrap;
}
@media (max-width: 1440px) {
    .contact .contact__bg::before {
        font-size: clamp(12rem, 1.714rem + 13.393vw, 21rem);
    }
}
@media (max-width: 768px) {
    .contact .contact__bg::before {
        font-size: 6rem;
    }
}
.contact .contact__bg > * {
    width: 50%;
}
@media (max-width: 768px) {
    .contact .contact__bg > * {
        width: 100%;
    }
}
.contact .contact__bg .h2__25, .contact .contact__bg .h2__en__80 {
    color: var(--color-white);
}
.contact .contact__bg .btn .detail__btn {
    margin: 0 auto;
    background: var(--color-white);
    color: #FC9924;
    width: 445px;
    height: 95px;
    font-size: 2rem;
    padding: 40px;
    justify-content: flex-start;
}
@media (max-width: 1440px) {
    .contact .contact__bg .btn .detail__btn {
        width: 340px;
        height: 80px;
        font-size: 1.8rem;
        padding: 20px;
    }
}
@media (max-width: 1000px) {
    .contact .contact__bg .btn .detail__btn {
        width: 270px;
        height: 70px;
        font-size: 1.7rem;
        padding: 15px;
    }
}
.contact .contact__bg .btn .detail__btn::before {
    background: #FC9924;
    width: 14px;
    right: 40px;
}
@media (max-width: 1440px) {
    .contact .contact__bg .btn .detail__btn::before {
        width: 12px;
        right: 20px;
    }
}
@media (max-width: 1000px) {
    .contact .contact__bg .btn .detail__btn::before {
        width: 10px;
        right: 15px;
    }
}
.contact .contact__bg .btn .detail__btn .icon {
    display: inline-block;
    width: 24px;
    aspect-ratio: 24/18;
    background: #FC9924;
    -webkit-mask: url(../img/common/contact.svg) center/contain no-repeat;
            mask: url(../img/common/contact.svg) center/contain no-repeat;
    margin-right: 15px;
}
@media (max-width: 1440px) {
    .contact .contact__bg .btn .detail__btn .icon {
        width: 22px;
        margin-right: 10px;
    }
}

/* ------------------------------------- /
/  会社概要ページ
/* ------------------------------------- */
.company__greeting .box {
    background: #EDF5FF;
    border-radius: 20px;
    padding: 60px 100px;
}
@media (max-width: 1440px) {
    .company__greeting .box {
        padding: 40px 60px;
    }
}
@media (max-width: 768px) {
    .company__greeting .box {
        border-radius: 10px;
        padding: 20px;
    }
}
.company__greeting .box h2 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #004BB1;
    position: relative;
    padding-left: 20px;
}
@media (max-width: 1440px) {
    .company__greeting .box h2 {
        font-size: 2.8rem;
        padding-left: 15px;
    }
}
@media (max-width: 768px) {
    .company__greeting .box h2 {
        font-size: 2.2rem;
        padding-left: 10px;
    }
}
.company__greeting .box h2::before {
    content: "";
    position: absolute;
    width: 26px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: #004BB1;
    top: 50%;
    left: 0;
    transform: translate(-100%, -50%);
}
@media (max-width: 1440px) {
    .company__greeting .box h2::before {
        width: 20px;
    }
}
@media (max-width: 768px) {
    .company__greeting .box h2::before {
        width: 16px;
        transform: translate(-60%, -50%);
    }
}
.company__greeting .box p {
    line-height: 2.8;
}
@media (max-width: 768px) {
    .company__greeting .box p {
        line-height: 2;
    }
}

.company__detail .container {
    border-bottom: 1px solid #D1D1D1;
    display: flex;
    gap: 180px;
}
@media (max-width: 1440px) {
    .company__detail .container {
        gap: 60px;
    }
}
@media (max-width: 768px) {
    .company__detail .container {
        flex-direction: column;
        row-gap: 30px;
    }
}
.company__detail .container .ttl h2 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #004BB1;
    padding-left: 46px;
    position: relative;
    line-height: 1.2;
}
@media (max-width: 1440px) {
    .company__detail .container .ttl h2 {
        font-size: 2.8rem;
        padding-left: 35px;
    }
}
@media (max-width: 768px) {
    .company__detail .container .ttl h2 {
        font-size: 1.8rem;
        padding-left: 25px;
    }
}
.company__detail .container .ttl h2::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 26px;
    aspect-ratio: 1;
    border-radius: 50%;
    transform: translateY(-50%);
    background: #004BB1;
}
@media (max-width: 1440px) {
    .company__detail .container .ttl h2::before {
        width: 20px;
    }
}
@media (max-width: 768px) {
    .company__detail .container .ttl h2::before {
        width: 15px;
    }
}
.company__detail .container .content {
    flex: 1 1;
}
.company__detail .container .content h3 {
    font-size: 2.4rem;
    font-weight: 700;
}
@media (max-width: 1440px) {
    .company__detail .container .content h3 {
        font-size: 2rem;
    }
}
@media (max-width: 768px) {
    .company__detail .container .content h3 {
        font-size: 1.7rem;
    }
}
.company__detail .container .content .table__1 {
    width: 100%;
}
.company__detail .container .content .table__1 tr {
    border-bottom: 1px solid #004BB1;
}
.company__detail .container .content .table__1 tr:first-child {
    border-top: 1px solid #004BB1;
}
.company__detail .container .content .table__1 tr th, .company__detail .container .content .table__1 tr td {
    padding: 35px 0;
    font-weight: 700;
    font-size: 2rem;
    line-height: 1.8;
}
@media (max-width: 1440px) {
    .company__detail .container .content .table__1 tr th, .company__detail .container .content .table__1 tr td {
        padding: 20px 0;
        font-size: 1.8rem;
    }
}
@media (max-width: 768px) {
    .company__detail .container .content .table__1 tr th, .company__detail .container .content .table__1 tr td {
        padding: 15px 0;
        font-size: 1.6rem;
    }
}
.company__detail .container .content .table__1 tr th {
    color: #004BB1;
    white-space: nowrap;
    padding-right: 10px;
}
@media (max-width: 768px) {
    .company__detail .container .content .table__1 tr th {
        padding-right: 5px;
    }
}
.company__detail .container .content .table__2 tr th {
    color: #004BB1;
    font-weight: 700;
    padding: 10px 40px 10px 0;
    white-space: nowrap;
}
.company__detail .container .content .table__3 tr th {
    font-size: 2.2rem;
    font-weight: 700;
    color: #004BB1;
    white-space: nowrap;
    line-height: 1.45;
}
@media (max-width: 1440px) {
    .company__detail .container .content .table__3 tr th {
        font-size: 1.9rem;
    }
}
@media (max-width: 768px) {
    .company__detail .container .content .table__3 tr th {
        font-size: 1.7rem;
    }
}
.company__detail .container .content .table__3 tr td:first-of-type {
    width: 52px;
}
@media (max-width: 1440px) {
    .company__detail .container .content .table__3 tr td:first-of-type {
        width: 45px;
    }
}
@media (max-width: 768px) {
    .company__detail .container .content .table__3 tr td:first-of-type {
        width: 36px;
    }
}
.company__detail .container .content .table__3 tr td {
    line-height: 1.5;
    padding-bottom: 40px;
}
.company__detail .container .content .table__3 tr .circle {
    position: relative;
}
.company__detail .container .content .table__3 tr .circle::before {
    content: "";
    position: absolute;
    top: 16px;
    left: 50%;
    width: 12px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: linear-gradient(#1477ff 0%, #006cba 100%);
    transform: translate(-50%, -50%);
}
@media (max-width: 768px) {
    .company__detail .container .content .table__3 tr .circle::before {
        width: 10px;
        top: 14px;
    }
}
.company__detail .container .content .table__3 tr .circle::after {
    content: "";
    position: absolute;
    top: 30px;
    left: 50%;
    width: 1px;
    bottom: 0;
    background: #004BB1;
    transform: translateX(-50%);
}
@media (max-width: 768px) {
    .company__detail .container .content .table__3 tr .circle::after {
        top: 28px;
    }
}
.company__detail .container .content .table__3 tr .circle.border__none::after {
    display: none;
}
.company__detail .container .content .container__1 {
    display: flex;
    flex-wrap: wrap;
    gap: 35px 90px;
}
@media (max-width: 1440px) {
    .company__detail .container .content .container__1 {
        gap: 25px 40px;
    }
}
@media (max-width: 768px) {
    .company__detail .container .content .container__1 {
        gap: 10px;
    }
}
.company__detail .container .content .container__1 .qualification {
    width: calc((100% - 90px) / 2);
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding: 15px 0;
    border-bottom: 1px solid #004BB1;
}
@media (max-width: 768px) {
    .company__detail .container .content .container__1 .qualification {
        width: 100%;
        padding: 10px 0;
    }
}

/* ------------------------------------- /
/  事業内容ページ
/* ------------------------------------- */
.service__sec h2 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #004BB1;
}
@media (max-width: 1440px) {
    .service__sec h2 {
        font-size: 2.8rem;
    }
}
@media (max-width: 768px) {
    .service__sec h2 {
        font-size: 2rem;
    }
}
.service__sec .container {
    display: flex;
    flex-wrap: wrap;
    row-gap: 30px;
    border-bottom: 1px solid #D1D1D1;
}
.service__sec .container.border__none {
    border-bottom: none;
}
.service__sec .container .txt, .service__sec .container .img {
    width: 50%;
}
@media (max-width: 768px) {
    .service__sec .container .txt, .service__sec .container .img {
        width: 100%;
    }
}
.service__sec .container .txt {
    padding-right: 70px;
}
@media (max-width: 1440px) {
    .service__sec .container .txt {
        padding-right: 30px;
    }
}
@media (max-width: 768px) {
    .service__sec .container .txt {
        padding-right: unset;
    }
}
.service__sec .container .txt .bl__bg {
    background: #ECF5FF;
    border-radius: 20px;
    padding: 40px;
}
@media (max-width: 1440px) {
    .service__sec .container .txt .bl__bg {
        padding: 20px;
    }
}
@media (max-width: 768px) {
    .service__sec .container .txt .bl__bg {
        padding: 15px;
        border-radius: 10px;
    }
}
@media (max-width: 1440px) {
    .service__sec .container .txt .bl__bg tbody {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
}
@media (max-width: 1440px) {
    .service__sec .container .txt .bl__bg tr {
        display: flex;
        flex-direction: column;
    }
}
.service__sec .container .txt .bl__bg th {
    color: #004BB1;
    font-size: 2rem;
    font-weight: 700;
    padding-right: 30px;
    white-space: nowrap;
    line-height: 1.6;
}
@media (max-width: 1440px) {
    .service__sec .container .txt .bl__bg th {
        font-size: 1.8rem;
        padding-right: unset;
    }
}
@media (max-width: 768px) {
    .service__sec .container .txt .bl__bg th {
        font-size: 1.7rem;
    }
}
.service__sec .container .txt .bl__bg td {
    font-size: 1.8rem;
    padding: 20px 0;
    line-height: 1.44;
}
@media (max-width: 1440px) {
    .service__sec .container .txt .bl__bg td {
        font-size: 1.7rem;
        padding: 5px 0 0;
    }
}
@media (max-width: 768px) {
    .service__sec .container .txt .bl__bg td {
        font-size: 1.6rem;
    }
}
.service__sec .container .img img {
    max-height: 480px;
    margin: 0 auto;
    -o-object-fit: contain;
       object-fit: contain;
    max-width: 78%;
}
@media (max-width: 768px) {
    .service__sec .container .img img {
        max-width: min(78%, 400px);
    }
}

/* ------------------------------------- /
/  採用情報ページ
/* ------------------------------------- */
.h2__35 {
    font-size: 3.5rem;
    color: #004BB1;
    font-weight: 700;
    line-height: 1.46;
    padding-left: 46px;
    position: relative;
}
@media (max-width: 1440px) {
    .h2__35 {
        font-size: 2.8rem;
        padding-left: 38px;
    }
}
@media (max-width: 768px) {
    .h2__35 {
        font-size: 2rem;
        padding-left: 32px;
    }
}
.h2__35::before {
    content: "";
    position: absolute;
    width: 26px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: #004BB1;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}
@media (max-width: 1440px) {
    .h2__35::before {
        width: 22px;
    }
}
@media (max-width: 768px) {
    .h2__35::before {
        width: 18px;
    }
}

.lower__top.recruit {
    background: url(../img/recruit/header__bg.webp) center/cover no-repeat;
}
.lower__top.recruit .lower__h1, .lower__top.recruit .lower__h1__en {
    color: var(--color-white);
}
.lower__top.recruit .breadcrumb {
    color: var(--color-white);
}
.lower__top.recruit .breadcrumb .dot {
    background: var(--color-white);
}
.lower__top.recruit .breadcrumb .current {
    color: #95C0FA;
}

.recruit__about {
    background: url(../img/recruit/about_bg.webp) center/cover no-repeat;
}
.recruit__about .container {
    display: flex;
    flex-wrap: wrap;
    row-gap: 30px;
}
.recruit__about .container .txt, .recruit__about .container .img {
    width: 50%;
}
@media (max-width: 768px) {
    .recruit__about .container .txt, .recruit__about .container .img {
        width: 100%;
    }
}
.recruit__about .container .txt {
    padding-right: 100px;
}
@media (max-width: 1440px) {
    .recruit__about .container .txt {
        padding-right: 50px;
    }
}
.recruit__about .container .txt h3 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 2;
}
@media (max-width: 1440px) {
    .recruit__about .container .txt h3 {
        font-size: 2.2rem;
    }
}
@media (max-width: 768px) {
    .recruit__about .container .txt h3 {
        font-size: 1.8rem;
    }
}
.recruit__about .container .img img {
    border-radius: 5px;
}

.recruit__career {
    background: url(../img/recruit/career__bg.webp) center/cover no-repeat;
}
.recruit__career .h2__35 {
    color: var(--color-white);
}
.recruit__career .h2__35::before {
    background: var(--color-white);
}
.recruit__career .container {
    display: flex;
    flex-wrap: wrap;
    margin-inline: auto;
    gap: 0 20px;
}
@media (max-width: 768px) {
    .recruit__career .container {
        gap: 0 10px;
    }
}
.recruit__career .container input {
    display: none;
}
.recruit__career .container label {
    width: calc((100% - 20px) / 2);
    padding: 10px;
    background: #FFAB47;
    cursor: pointer;
    order: -1;
    text-align: center;
    color: var(--color-white);
    border-radius: 5px 5px 0 0;
    font-size: 2.5rem;
    font-weight: 700;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}
@media (max-width: 1440px) {
    .recruit__career .container label {
        font-size: 2rem;
        height: 80px;
    }
}
@media (max-width: 768px) {
    .recruit__career .container label {
        width: calc((100% - 10px) / 2);
        font-size: 1.8rem;
        height: 60px;
    }
}
.recruit__career .container .tab__content {
    display: none;
    width: 100%;
    padding: 70px 100px;
    border-radius: 0 0 5px 5px;
    background: var(--color-white);
}
@media (max-width: 1440px) {
    .recruit__career .container .tab__content {
        padding: 50px 40px 20px;
    }
}
@media (max-width: 768px) {
    .recruit__career .container .tab__content {
        padding: 30px 20px 10px;
    }
}
.recruit__career .container input:checked + label {
    background: var(--color-white);
    color: #FF7F00;
}
.recruit__career .container input:checked + label + .tab__content {
    display: block;
}
@media (max-width: 768px) {
    .recruit__career table tr {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}
.recruit__career table tr th {
    padding-bottom: 41px;
}
@media (max-width: 1440px) {
    .recruit__career table tr th {
        padding-bottom: 31px;
    }
}
@media (max-width: 768px) {
    .recruit__career table tr th {
        padding-bottom: 15px;
    }
}
.recruit__career table tr th .popup {
    background: #FFAB47;
    width: 260px;
    height: 60px;
    border-radius: 5px;
    color: var(--color-white);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    font-weight: 500;
    position: relative;
}
@media (max-width: 1440px) {
    .recruit__career table tr th .popup {
        width: 200px;
        height: 50px;
        font-size: 1.8rem;
    }
}
@media (max-width: 768px) {
    .recruit__career table tr th .popup {
        width: 160px;
        height: 40px;
        font-size: 1.7rem;
    }
}
.recruit__career table tr th .popup.orange__2 {
    background: #FD951A;
}
.recruit__career table tr th .popup.oragne__3 {
    background: #FF7F00;
}
.recruit__career table tr th .popup.triangle__none::before {
    display: none;
}
.recruit__career table tr th .popup::before {
    content: "";
    position: absolute;
    width: 29px;
    aspect-ratio: 29/15;
    background: inherit;
    clip-path: polygon(0 0, 100% 0%, 50% 100%);
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 70%);
}
@media (max-width: 1440px) {
    .recruit__career table tr th .popup::before {
        width: 24px;
    }
}
.recruit__career table tr td {
    padding-left: 44px;
    vertical-align: top;
    padding-bottom: 20px;
}
@media (max-width: 1440px) {
    .recruit__career table tr td {
        padding-left: 20px;
        padding-bottom: 15px;
    }
}
@media (max-width: 768px) {
    .recruit__career table tr td {
        padding-left: unset;
        padding-bottom: 10px;
    }
}

.recruit__number .container {
    display: flex;
    flex-wrap: wrap;
    gap: 65px;
}
@media (max-width: 1440px) {
    .recruit__number .container {
        gap: 30px;
    }
}
@media (max-width: 768px) {
    .recruit__number .container {
        gap: 15px;
    }
}
.recruit__number .container .box {
    width: calc((100% - 130px) / 3);
    background: #ECF5FF;
    border-radius: 5px;
    padding: 40px;
    color: #004BB1;
}
@media (max-width: 1440px) {
    .recruit__number .container .box {
        width: calc((100% - 30px) / 2);
        padding: 30px 20px;
    }
}
@media (max-width: 768px) {
    .recruit__number .container .box {
        width: 100%;
        padding: 0 15px 20px;
    }
}
.recruit__number .container .box img {
    max-width: 210px;
    margin: 0 auto;
}
.recruit__number .container .box .bg__bl {
    background: #004BB1;
    color: var(--color-white);
    font-size: 2rem;
    font-weight: 700;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
    padding: 0 15px;
    line-height: 1.45;
}
@media (max-width: 1440px) {
    .recruit__number .container .box .bg__bl {
        font-size: 1.8rem;
        padding: 0 10px;
    }
}
@media (max-width: 768px) {
    .recruit__number .container .box .bg__bl {
        font-size: 1.7rem;
        padding: 0 6px;
    }
}
.recruit__number .container .box .bottom {
    display: flex;
    justify-content: center;
    align-items: baseline;
    font-size: 3.5rem;
    font-weight: 700;
}
@media (max-width: 1440px) {
    .recruit__number .container .box .bottom {
        font-size: 2.8rem;
    }
}
@media (max-width: 768px) {
    .recruit__number .container .box .bottom {
        font-size: 2.2rem;
    }
}
.recruit__number .container .box .bottom .num {
    font-family: var(--font-en);
    font-size: 11rem;
    line-height: 1;
}
@media (max-width: 1440px) {
    .recruit__number .container .box .bottom .num {
        font-size: 8rem;
    }
}
@media (max-width: 768px) {
    .recruit__number .container .box .bottom .num {
        font-size: 5rem;
    }
}

.recruit__wrapper__1 {
    background: linear-gradient(0deg, #fff 0%, #eff6ff 100%);
}

.recruit__environment {
    background: url(../img/recruit/env__bg.webp) center/cover no-repeat;
}
.recruit__environment .container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}
@media (max-width: 1440px) {
    .recruit__environment .container {
        gap: 20px;
    }
}
.recruit__environment .container .box {
    box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.06);
    /* Note: currently only Safari supports backdrop-filter */
    -webkit-backdrop-filter: blur(36.3573989868px);
            backdrop-filter: blur(36.3573989868px);
    --webkit-backdrop-filter: blur(36.357398986816406px);
    background-color: rgba(255, 255, 255, 0.72);
    /* (plus shape's fill blended on top as a separate layer with 28.43% opacity) */
    width: calc((100% - 30px) / 2);
    border-radius: 20px;
    padding: 25px 30px;
    display: flex;
    gap: 30px;
}
@media (max-width: 1440px) {
    .recruit__environment .container .box {
        width: calc((100% - 20px) / 2);
        padding: 20px;
        gap: 20px;
    }
}
@media (max-width: 768px) {
    .recruit__environment .container .box {
        width: 100%;
        padding: 15px;
        border-radius: 10px;
    }
}
.recruit__environment .container .box .img {
    max-width: 113px;
}
@media (max-width: 1440px) {
    .recruit__environment .container .box .img {
        max-width: 90px;
    }
}
@media (max-width: 768px) {
    .recruit__environment .container .box .img {
        max-width: 75px;
    }
}
.recruit__environment .container .box .txt {
    flex: 1 1;
}
.recruit__environment .container .box .txt h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #004BB1;
    line-height: 1.45;
    margin-bottom: 15px;
}
@media (max-width: 1440px) {
    .recruit__environment .container .box .txt h3 {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
}
@media (max-width: 768px) {
    .recruit__environment .container .box .txt h3 {
        font-size: 1.7rem;
        margin-bottom: 5px;
    }
}
.recruit__environment .container .box .txt p {
    font-size: 1.8rem;
    line-height: 1.67;
}
@media (max-width: 1440px) {
    .recruit__environment .container .box .txt p {
        font-size: 1.6rem;
    }
}
@media (max-width: 768px) {
    .recruit__environment .container .box .txt p {
        font-size: 1.5rem;
    }
}

.recruit__simulation .simulation__box {
    margin: 0 auto;
    background: #ECF5FF;
    border-radius: 5px;
    padding: 90px;
}
@media (max-width: 1440px) {
    .recruit__simulation .simulation__box {
        padding: 50px 40px;
    }
}
@media (max-width: 768px) {
    .recruit__simulation .simulation__box {
        padding: 30px 20px;
    }
}
.recruit__simulation .simulation__box .simulation__inner {
    max-width: 1000px;
    margin: 0 auto;
}
.recruit__simulation .simulation__box .simulation__inner .bg__bl {
    padding: 0 25px;
    display: flex;
    align-items: center;
    color: var(--color-white);
    font-size: 2rem;
    font-weight: 700;
    height: 55px;
    background: linear-gradient(90deg, #004bb1 0%, rgba(0, 75, 177, 0) 100%);
}
@media (max-width: 1440px) {
    .recruit__simulation .simulation__box .simulation__inner .bg__bl {
        font-size: 1.8rem;
        height: 45px;
        padding: 0 15px;
    }
}
@media (max-width: 768px) {
    .recruit__simulation .simulation__box .simulation__inner .bg__bl {
        font-size: 1.7rem;
        height: 40px;
        padding: 0 10px;
    }
}
.recruit__simulation .simulation__box .simulation__inner input[type=radio],
.recruit__simulation .simulation__box .simulation__inner input[type=checkbox] {
    display: none;
}
.recruit__simulation .simulation__box .simulation__inner input[type=radio] + label,
.recruit__simulation .simulation__box .simulation__inner input[type=checkbox] + label {
    padding-left: 31px;
    position: relative;
    cursor: pointer;
}
.recruit__simulation .simulation__box .simulation__inner input[type=radio] + label::before,
.recruit__simulation .simulation__box .simulation__inner input[type=checkbox] + label::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 21px;
    aspect-ratio: 1;
    border-radius: 5px;
    border: 1px solid #004BB1;
    background: var(--color-white);
}
.recruit__simulation .simulation__box .simulation__inner input[type=radio] + label.orange::before,
.recruit__simulation .simulation__box .simulation__inner input[type=checkbox] + label.orange::before {
    border-color: #FC9924;
}
.recruit__simulation .simulation__box .simulation__inner input[type=radio]:checked + label::after,
.recruit__simulation .simulation__box .simulation__inner input[type=checkbox]:checked + label::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%) rotate(315deg);
    left: 4px;
    width: 14px;
    height: 7px;
    border-left: 2px solid #004BB1;
    border-bottom: 2px solid #004BB1;
}
.recruit__simulation .simulation__box .simulation__inner input[type=radio]:checked + label.orange::after,
.recruit__simulation .simulation__box .simulation__inner input[type=checkbox]:checked + label.orange::after {
    border-color: #FC9924;
}
.recruit__simulation .simulation__box .simulation__inner #answer {
    border: 1px solid #004BB1;
    border-radius: 5px;
    font-size: 4rem;
    font-weight: 700;
    padding: 10px;
    width: 367px;
    text-align: center;
    background: #fff;
}
@media (max-width: 1440px) {
    .recruit__simulation .simulation__box .simulation__inner #answer {
        font-size: 3.2rem;
        width: 300px;
    }
}
@media (max-width: 768px) {
    .recruit__simulation .simulation__box .simulation__inner #answer {
        font-size: 2.5rem;
        width: 170px;
    }
}
.recruit__simulation .simulation__box .simulation__inner .salary__box {
    text-align: center;
    margin: 0 auto;
    font-size: 2rem;
    color: #004BB1;
    line-height: 1.45;
    font-weight: 700;
}
@media (max-width: 1440px) {
    .recruit__simulation .simulation__box .simulation__inner .salary__box {
        font-size: 1.8rem;
    }
}
@media (max-width: 768px) {
    .recruit__simulation .simulation__box .simulation__inner .salary__box {
        font-size: 1.6rem;
    }
}
.recruit__simulation .simulation__box .simulation__inner .salary__box .answer__wrapper {
    margin: 0 auto;
    position: relative;
    width: -moz-fit-content;
    width: fit-content;
}
.recruit__simulation .simulation__box .simulation__inner .salary__box .answer__wrapper .yen {
    position: absolute;
    bottom: 0;
    right: 0;
    transform: translateX(100%);
    padding-left: 20px;
}
@media (max-width: 1440px) {
    .recruit__simulation .simulation__box .simulation__inner .salary__box .answer__wrapper .yen {
        padding-left: 15px;
    }
}

.recruit__offering .or__bg {
    background: #FFAB47;
    padding: 0 20px;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
    z-index: 0;
}
.recruit__offering .or__bg .bg__txt {
    position: absolute;
    color: #FF8A00;
    font-family: var(--font-en);
    font-size: clamp(20rem, 9.5rem + 7.292vw, 23.5rem);
    font-weight: 700;
    left: 0;
    bottom: 0;
    line-height: 1.21;
    z-index: -1;
    transform: translateY(40%);
    width: 100%;
    white-space: nowrap;
}
@media (max-width: 1440px) {
    .recruit__offering .or__bg .bg__txt {
        font-size: clamp(10rem, -1.429rem + 14.881vw, 20rem);
    }
}
@media (max-width: 768px) {
    .recruit__offering .or__bg .bg__txt {
        font-size: 5rem;
    }
}
.recruit__offering .or__bg h2 {
    color: var(--color-white);
    text-align: center;
    font-weight: 700;
    font-size: 3.5rem;
    line-height: 1.46;
}
@media (max-width: 1440px) {
    .recruit__offering .or__bg h2 {
        font-size: 2.8rem;
    }
}
@media (max-width: 768px) {
    .recruit__offering .or__bg h2 {
        font-size: 2rem;
    }
}
.recruit__offering .or__bg .wh__box {
    padding: 60px 20px 80px;
    background: var(--color-white);
    max-width: 1020px;
    margin: 0 auto;
    border-radius: 5px;
}
@media (max-width: 1440px) {
    .recruit__offering .or__bg .wh__box {
        padding: 40px 20px 60px;
    }
}
@media (max-width: 768px) {
    .recruit__offering .or__bg .wh__box {
        padding: 20px 20px 40px;
    }
}
.recruit__offering .or__bg .wh__box table {
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}
.recruit__offering .or__bg .wh__box table tr {
    border-bottom: 1px solid #FF7F00;
}
.recruit__offering .or__bg .wh__box table tr th, .recruit__offering .or__bg .wh__box table tr td {
    font-size: 2rem;
    padding: 20px 0;
}
@media (max-width: 1440px) {
    .recruit__offering .or__bg .wh__box table tr th, .recruit__offering .or__bg .wh__box table tr td {
        font-size: 1.8rem;
        padding: 15px 0;
    }
}
@media (max-width: 768px) {
    .recruit__offering .or__bg .wh__box table tr th, .recruit__offering .or__bg .wh__box table tr td {
        font-size: 1.6rem;
        padding: 10px 0;
    }
}
.recruit__offering .or__bg .wh__box table tr th {
    color: #FF7F00;
    font-weight: 700;
    white-space: nowrap;
    padding-right: 100px;
}
@media (max-width: 1440px) {
    .recruit__offering .or__bg .wh__box table tr th {
        padding-right: 40px;
    }
}
@media (max-width: 768px) {
    .recruit__offering .or__bg .wh__box table tr th {
        padding-right: 15px;
    }
}
.recruit__offering .or__bg .offering__btn {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    width: 445px;
    height: 95px;
    margin: 0 auto;
    background: var(--color-white);
    color: #FC9924;
    font-size: 2rem;
    font-weight: 700;
    border-radius: 5px;
    padding: 0 40px;
    position: relative;
}
@media (max-width: 768px) {
    .recruit__offering .or__bg .offering__btn {
        width: min(100%, 300px);
        height: 70px;
        font-size: 1.7rem;
        padding: 0 15px;
        gap: 12px;
    }
}
.recruit__offering .or__bg .offering__btn::before {
    content: "";
    display: block;
    width: 24px;
    aspect-ratio: 24/18;
    background: #FC9924;
    -webkit-mask: url(../img/common/contact.svg) center/contain no-repeat;
            mask: url(../img/common/contact.svg) center/contain no-repeat;
}
@media (max-width: 768px) {
    .recruit__offering .or__bg .offering__btn::before {
        width: 20px;
    }
}
.recruit__offering .or__bg .offering__btn::after {
    content: "";
    position: absolute;
    width: 14px;
    aspect-ratio: 16/14;
    background: #FC9924;
    -webkit-mask: url(../img/common/triangle.svg) center/contain no-repeat;
            mask: url(../img/common/triangle.svg) center/contain no-repeat;
    top: 50%;
    right: 40px;
    transform: translateY(-50%);
}
@media (max-width: 768px) {
    .recruit__offering .or__bg .offering__btn::after {
        right: 15px;
        width: 12px;
    }
}

/* ------------------------------------- /
/  お問い合わせページ
/* ------------------------------------- */
.lower__top.contact {
    background: linear-gradient(0deg, #fff 0%, #ffe5cb 100%);
}
.lower__top.contact .lower__h1, .lower__top.contact .lower__h1__en {
    color: #FF7F00;
}
.lower__top.contact .breadcrumb .dot {
    background: #FF7F00;
}

#form1 {
    max-width: 980px;
    margin: 0 auto;
}
#form1 .error {
    color: red;
}
#form1 .error.false {
    display: none;
}
#form1 .form__column dt {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 700;
    font-size: 2rem;
}
@media (max-width: 1440px) {
    #form1 .form__column dt {
        gap: 10px;
        font-size: 1.8rem;
    }
}
@media (max-width: 768px) {
    #form1 .form__column dt {
        gap: 6px;
        font-size: 1.6rem;
    }
}
#form1 .form__column dt .required {
    background: #FC9924;
    color: var(--color-white);
    width: 52px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    font-size: 1.6rem;
}
@media (max-width: 1440px) {
    #form1 .form__column dt .required {
        font-size: 1.5rem;
        height: 28px;
        width: 46px;
    }
}
@media (max-width: 768px) {
    #form1 .form__column dt .required {
        font-size: 1.4rem;
        height: 24px;
        width: 40px;
    }
}
#form1 .form__column dd {
    margin-top: 10px;
}
@media (max-width: 768px) {
    #form1 .form__column dd {
        margin-top: 5px;
    }
}
#form1 .submit__wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    align-items: center;
}
#form1 .submit__wrapper .submit__btn {
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 290px;
    height: 70px;
    background: #FC9924;
    border: 1px solid #FC9924;
    color: var(--color-white);
    border-radius: 5px;
    font-size: 1.8rem;
    font-family: inherit;
    font-weight: 700;
    position: relative;
}
@media (max-width: 768px) {
    #form1 .submit__wrapper .submit__btn {
        width: 200px;
        height: 50px;
        font-size: 1.6rem;
    }
}
#form1 .submit__wrapper .submit__btn.return {
    background: var(--color-white);
    color: #FC9924;
}
#form1 .submit__wrapper .submit__btn.return::before {
    background: #FC9924;
}
#form1 .submit__wrapper .submit__btn::before {
    content: "";
    position: absolute;
    width: 8px;
    aspect-ratio: 8/9;
    background: var(--color-white);
    -webkit-mask: url(../img/common/triangle.svg) center/contain no-repeat;
            mask: url(../img/common/triangle.svg) center/contain no-repeat;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
}
@media (max-width: 768px) {
    #form1 .submit__wrapper .submit__btn::before {
        right: 15px;
        width: 6px;
    }
}
#form1 input[type=text],
#form1 input[type=email],
#form1 input[type=tel],
#form1 textarea {
    width: 100%;
    background: #EDEDED;
    border: none;
    border-radius: 5px;
    font-family: inherit;
    font-size: 2rem;
    font-weight: 700;
    padding: 20px 30px;
    line-height: 1.45;
}
@media (max-width: 1440px) {
    #form1 input[type=text],
    #form1 input[type=email],
    #form1 input[type=tel],
    #form1 textarea {
        font-size: 1.8rem;
        padding: 15px 20px;
    }
}
@media (max-width: 768px) {
    #form1 input[type=text],
    #form1 input[type=email],
    #form1 input[type=tel],
    #form1 textarea {
        font-size: 1.6rem;
        padding: 10px;
    }
}
#form1 input[type=text]::-moz-placeholder, #form1 input[type=email]::-moz-placeholder, #form1 input[type=tel]::-moz-placeholder, #form1 textarea::-moz-placeholder {
    color: #B2B2B2;
}
#form1 input[type=text]::placeholder,
#form1 input[type=email]::placeholder,
#form1 input[type=tel]::placeholder,
#form1 textarea::placeholder {
    color: #B2B2B2;
}
#form1 input[type=radio],
#form1 input[type=checkbox] {
    display: none;
}
#form1 input[type=radio] + label,
#form1 input[type=checkbox] + label {
    padding-left: 31px;
    position: relative;
    cursor: pointer;
}
#form1 input[type=radio] + label::before,
#form1 input[type=checkbox] + label::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 21px;
    aspect-ratio: 1;
    border-radius: 5px;
    border: 1px solid #004BB1;
    background: var(--color-white);
}
#form1 input[type=radio] + label.orange::before,
#form1 input[type=checkbox] + label.orange::before {
    border-color: #FC9924;
}
#form1 input[type=radio]:checked + label::after,
#form1 input[type=checkbox]:checked + label::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%) rotate(315deg);
    left: 4px;
    width: 14px;
    height: 7px;
    border-left: 2px solid #004BB1;
    border-bottom: 2px solid #004BB1;
}
#form1 input[type=radio]:checked + label.orange::after,
#form1 input[type=checkbox]:checked + label.orange::after {
    border-color: #FC9924;
}

.policy__area {
    width: 100%;
    border: 1px solid #000;
    padding: 10px;
}
.policy__area .box {
    height: 270px;
    padding: 35px;
    overflow-y: scroll;
}
@media (max-width: 1000px) {
    .policy__area .box {
        padding: 10px;
    }
}
.policy__area .box::-webkit-scrollbar {
    width: 10px;
}
.policy__area .box::-webkit-scrollbar-track {
    background-color: #E8E8E8;
    border-radius: 10px;
}
.policy__area .box::-webkit-scrollbar-thumb {
    background-color: #000;
    border-radius: 10px;
}
.policy__area .box h2 {
    font-weight: 700;
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
}
@media (max-width: 1000px) {
    .policy__area .box h2 {
        font-size: 1.8rem;
    }
}
.policy__area .box h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}
@media (max-width: 1000px) {
    .policy__area .box h3 {
        font-size: 1.6rem;
    }
}
.policy__area .box p {
    margin-bottom: 20px;
}

.agreement__container {
    justify-content: center;
}

.top__return {
    text-decoration: underline;
}/*# sourceMappingURL=style.css.map */