@charset "UTF-8";
/* 
Theme Name: ◆◆◆site_name◆◆◆
Author: ◆◆◆site_name◆◆◆
Author URI: https://◆◆◆◆◆◆/
Version: 1.0
*/
/* CSS Document */
:root {
    --font-jp: "Noto Sans JP", sans-serif;
    --font-en: "Inter", sans-serif;
    --color-gray: #F2F2F2;
    --color-black: #101010;
    --color-blue: #132F7C;
}

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

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

html {
    font-size: 62.5%;
    scroll-padding-top: 100px;
    scroll-behavior: smooth;
    -moz-text-size-adjust: 100%;
         text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    font-feature-settings: "palt";
    -webkit-font-smoothing: antialiased;
}
html body {
    min-height: 100%;
    font-size: 1.6rem;
    line-height: 1.6;
    font-family: "Noto Sans JP", sans-serif;
    color: var(--color-black);
    background-color: #ffffff;
    font-weight: 500;
    font-family: var(--font-jp);
}
html body main {
    overflow: hidden;
}
@media (max-width: 1280px) {
    html {
        scroll-padding-top: 70px;
    }
}
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;
}

.m0a {
    margin: 0 auto;
}

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

.grecaptcha-badge {
    visibility: hidden;
}

/* ------------------------------------- /
/  header
/* ------------------------------------- */
header {
    box-shadow: 1px 1px 5px 0px rgba(128, 128, 128, 0.2392156863);
    position: fixed;
    top: 30px;
    left: 50px;
    right: 50px;
    z-index: 100;
    width: calc(100% - 100px);
    height: 80px;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    border-radius: 3px;
    color: var(--color-blue);
}
header .header__left {
    display: flex;
    align-items: center;
    gap: 20px;
}
@media (max-width: 1280px) {
    header .header__left .header__logo {
        width: 85px;
    }
}
@media (max-width: 768px) {
    header .header__left .header__logo {
        width: 65px;
    }
}
header .header__left .header__left__txt {
    font-weight: 700;
    line-height: 1.4;
}
header .header__left .header__left__txt .sm {
    font-size: 1.5rem;
}
header .header__left .header__left__txt .bg {
    font-size: 2.2rem;
}
@media (max-width: 1280px) {
    header .header__left {
        gap: 15px;
    }
    header .header__left .header__left__txt .sm {
        font-size: 1.4rem;
    }
    header .header__left .header__left__txt .bg {
        font-size: 2rem;
    }
}
@media (max-width: 768px) {
    header .header__left {
        gap: 5px;
    }
    header .header__left .header__left__txt .sm {
        font-size: 1.3rem;
    }
    header .header__left .header__left__txt .bg {
        font-size: 1.7rem;
    }
}
header .header__right {
    display: flex;
    align-items: center;
    gap: 40px;
    font-size: 1.8rem;
    font-weight: 500;
}
header .header__right .header__menu {
    display: flex;
    gap: 50px;
}
header .header__right .header__right__sns {
    display: flex;
    gap: 19px;
}
@media (max-width: 1280px) {
    header .header__right {
        display: none;
    }
}
@media (max-width: 1280px) {
    header {
        height: 70px;
    }
}
@media (max-width: 768px) {
    header {
        top: 20px;
        left: 20px;
        right: 20px;
        width: calc(100% - 40px);
        padding: 0 20px;
    }
}

/* ------------------------------------- /
/  スマホメニュー
/* ------------------------------------- */
.nav {
    display: none;
}
@media (max-width: 1280px) {
    .nav {
        display: flex;
        justify-content: center;
        width: min(100%, 400px);
        height: 100vh;
        background: #fff;
        color: #000;
        overflow: auto;
        position: fixed;
        top: 0;
        right: 0;
        transition-duration: 0.8s;
        transition-delay: 0.4s;
        transform: translateX(100%);
        z-index: 999;
        padding-top: 70px;
    }
    .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 .header__menu {
        margin-top: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        max-height: calc(100% - 40px - 20px);
    }
    .nav .wrapper .header__menu li {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        padding: 20px 0;
        border-bottom: 1px solid #000;
    }
    .nav .wrapper .nav__sp__tel {
        margin-top: 40px;
        font-family: var(--font-en);
        font-weight: 700;
        font-size: 2rem;
        text-align: center;
    }
}
.nav.active {
    transform: translateX(0);
    transition-delay: 0s;
}
.nav.active .wrapper {
    transition-delay: 0.8s;
    opacity: 1;
}

/* ------------------------------------- /
/   ハンバーガーメニュー
/* ------------------------------------- */
.menu-trigger {
    position: fixed;
    right: 70px;
    top: 53px;
    width: 40px;
    height: 24px;
    background: none;
    border: none;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    cursor: pointer;
    z-index: 100001;
    padding-block-end: 0;
    padding-block-start: 0;
    display: none;
}
.menu-trigger span {
    display: inline-block;
    width: 30px;
    height: 1px;
    background-color: var(--color-black);
    position: absolute;
    left: calc(50% - 15px);
    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 {
    background-color: #000;
}
.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: 1280px) {
    .menu-trigger {
        display: block;
    }
}
@media (max-width: 768px) {
    .menu-trigger {
        top: 43px;
        right: 40px;
    }
}
@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);
    }
}

/* ------------------------------------- /
/  footer
/* ------------------------------------- */
.footer__contact {
    background: url(../img/common/contact_bg.webp) center center no-repeat;
    color: #fff;
    font-size: 2.8rem;
    font-weight: 700;
}
@media (max-width: 1280px) {
    .footer__contact {
        font-size: 2.2rem;
    }
}
@media (max-width: 768px) {
    .footer__contact {
        font-size: 1.8rem;
    }
}
.footer__contact .inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.footer__contact .inner .ttl {
    font-size: 10rem;
    line-height: 1.2;
    font-weight: 600;
    font-family: var(--font-en);
}
@media (max-width: 1280px) {
    .footer__contact .inner .ttl {
        font-size: 6rem;
    }
}
@media (max-width: 768px) {
    .footer__contact .inner .ttl {
        font-size: 4rem;
    }
}
.footer__contact .inner .arrow__btn {
    display: block;
    width: 80px;
    aspect-ratio: 80/40;
    background: url(../img/common/arrow_bl.svg) center center/45% no-repeat, #fff;
    border-radius: 3px;
}
@media (max-width: 1280px) {
    .footer__contact .inner .arrow__btn {
        width: 60px;
    }
}
@media (max-width: 768px) {
    .footer__contact .inner .arrow__btn {
        width: 50px;
    }
}

footer {
    background: #08112C;
    color: #fff;
}
footer .inner {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}
@media (max-width: 1280px) {
    footer .inner {
        flex-direction: column;
    }
}
footer .inner .footer__left {
    background: #fff;
    border-radius: 3px;
    padding: 50px;
    color: var(--color-blue);
}
@media (max-width: 1280px) {
    footer .inner .footer__left {
        padding: 30px;
    }
}
@media (max-width: 768px) {
    footer .inner .footer__left {
        padding: 20px;
    }
}
footer .inner .footer__left .logo__ttl {
    display: flex;
    justify-content: center;
    gap: 15px;
    font-weight: 700;
}
footer .inner .footer__left .logo__ttl .logo {
    width: 24%;
    max-width: 110px;
}
footer .inner .footer__left .logo__ttl .ttl {
    text-align: center;
}
footer .inner .footer__left .logo__ttl .ttl .sm {
    font-size: 1.5rem;
}
footer .inner .footer__left .logo__ttl .ttl .bg {
    font-size: 2.2rem;
}
@media (max-width: 1280px) {
    footer .inner .footer__left .logo__ttl .ttl .bg {
        font-size: 2rem;
    }
}
@media (max-width: 768px) {
    footer .inner .footer__left .logo__ttl {
        gap: 10px;
    }
    footer .inner .footer__left .logo__ttl .ttl .sm {
        font-size: 1.4rem;
    }
    footer .inner .footer__left .logo__ttl .ttl .bg {
        font-size: 1.8rem;
    }
}
footer .inner .footer__left .txt {
    font-size: 1.7rem;
    font-weight: 500;
    text-align: center;
}
@media (max-width: 768px) {
    footer .inner .footer__left .txt {
        font-size: 1.6rem;
    }
}
footer .inner .footer__right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
}
@media (max-width: 1280px) {
    footer .inner .footer__right {
        align-items: center;
        row-gap: 30px;
    }
}
footer .inner .footer__right .footer__menu {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}
@media (max-width: 1280px) {
    footer .inner .footer__right .footer__menu {
        gap: 30px;
        justify-content: center;
    }
}
@media (max-width: 1280px) {
    footer .inner .footer__right .copyright {
        text-align: center;
    }
}
@media (max-width: 768px) {
    footer .inner .footer__right .copyright {
        font-size: 1.4rem;
    }
}

/* ------------------------------------- /
/  共通ブロック
/* ------------------------------------- */
.recruit__btn {
    display: flex;
    align-items: center;
    background: #254BB2;
    border-radius: 3px;
    color: #fff;
    padding: 10px 20px;
    gap: 50px;
}
.recruit__btn::after {
    content: "";
    display: block;
    background: url(../img/common/arrow_bl.svg) center center/33% no-repeat, #fff;
    border-radius: 3px;
    width: 45px;
    aspect-ratio: 45/22;
}

.detail__btn {
    background: #fff;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(100%, 340px);
    height: 80px;
    color: #254BB2;
    font-weight: 700;
    font-size: 1.9rem;
    white-space: nowrap;
    padding: 20px 30px;
    gap: 20px;
}
.detail__btn::after {
    content: "";
    display: block;
    background: url(../img/common/arrow_wh.svg) center center/33% no-repeat, #254BB2;
    border-radius: 3px;
    width: 60px;
    aspect-ratio: 60/30;
}
@media (max-width: 768px) {
    .detail__btn {
        width: min(100%, 240px);
        height: 60px;
        padding: 5px 15px;
        font-size: 1.7rem;
    }
    .detail__btn::after {
        width: 50px;
    }
}

.lower__header {
    padding-top: 260px;
    padding-bottom: 140px;
    color: #fff;
    background: #254BB2;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% calc(100% - 200px), 0 100%);
            clip-path: polygon(0 0, 100% 0, 100% calc(100% - 200px), 0 100%);
}
.lower__header .inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
}
.lower__header .inner .ttl h1 {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.4;
}
.lower__header .inner .ttl .bg {
    font-family: var(--font-en);
    font-size: 10rem;
    font-weight: 600;
    line-height: 1.2;
}
.lower__header .inner .breadcrumb {
    font-size: 1.9rem;
}
@media (max-width: 1280px) {
    .lower__header {
        -webkit-clip-path: polygon(0 0, 100% 0, 100% calc(100% - 150px), 0 100%);
                clip-path: polygon(0 0, 100% 0, 100% calc(100% - 150px), 0 100%);
        padding-top: 200px;
        padding-bottom: 100px;
    }
    .lower__header .inner .ttl h1 {
        font-size: 2.2rem;
    }
    .lower__header .inner .ttl .bg {
        font-size: 8rem;
    }
    .lower__header .inner .breadcrumb {
        font-size: 1.8rem;
    }
}
@media (max-width: 768px) {
    .lower__header {
        -webkit-clip-path: polygon(0 0, 100% 0, 100% calc(100% - 100px), 0 100%);
                clip-path: polygon(0 0, 100% 0, 100% calc(100% - 100px), 0 100%);
        padding-top: 140px;
        padding-bottom: 70px;
    }
    .lower__header .inner .ttl h1 {
        font-size: 1.8rem;
    }
    .lower__header .inner .ttl .bg {
        font-size: 6rem;
    }
    .lower__header .inner .breadcrumb {
        font-size: 1.6rem;
    }
}

.lower__ttl__box {
    color: var(--color-blue);
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.lower__ttl__box.wh {
    color: #fff;
}
.lower__ttl__box.right {
    align-items: flex-end;
}
.lower__ttl__box.center {
    align-items: center;
}
.lower__ttl__box .bg {
    font-family: var(--font-en);
    font-size: 8rem;
    font-weight: 600;
    line-height: 1.2;
}
.lower__ttl__box h2 {
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1.4;
}
@media (max-width: 1280px) {
    .lower__ttl__box {
        gap: 10px;
    }
    .lower__ttl__box .bg {
        font-size: 6rem;
    }
    .lower__ttl__box h2 {
        font-size: 2rem;
    }
}
@media (max-width: 768px) {
    .lower__ttl__box {
        gap: 5px;
    }
    .lower__ttl__box .bg {
        font-size: 4rem;
    }
    .lower__ttl__box h2 {
        font-size: 1.6rem;
    }
}

/* ------------------------------------- /
/  トップページ
/* ------------------------------------- */
.page-template-front-page .top__mv {
    position: relative;
}
.page-template-front-page .top__mv .mv__img {
    min-height: 500px;
    -o-object-fit: cover;
       object-fit: cover;
}
.page-template-front-page .top__mv .copy {
    position: absolute;
    bottom: 0;
    left: 5%;
    z-index: 2;
    color: #fff;
}
.page-template-front-page .top__mv .copy .sm {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.4;
}
.page-template-front-page .top__mv .copy .bg {
    font-size: 10rem;
    font-family: var(--font-en);
    font-weight: 600;
    line-height: 1.2;
}
@media (max-width: 1280px) {
    .page-template-front-page .top__mv .copy .sm {
        font-size: 2.2rem;
    }
    .page-template-front-page .top__mv .copy .bg {
        font-size: 8rem;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .top__mv .copy .sm {
        font-size: 1.8rem;
    }
    .page-template-front-page .top__mv .copy .bg {
        font-size: 4rem;
    }
}
.page-template-front-page .business {
    color: #fff;
    position: relative;
    z-index: 1;
}
.page-template-front-page .business::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background: #254BB2;
    z-index: -2;
    transform-origin: top right;
    transform: skew(8deg) rotate(8deg);
}
.page-template-front-page .business::after {
    content: "";
    position: absolute;
    top: -14%;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../img/top/top_japan.svg) center center/contain no-repeat;
    z-index: -1;
}
.page-template-front-page .business .inner {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}
@media (max-width: 768px) {
    .page-template-front-page .business .inner {
        flex-direction: column;
        row-gap: 30px;
    }
}
.page-template-front-page .business .inner .ttl__box .bg {
    font-size: 8rem;
    font-family: var(--font-en);
    font-weight: 600;
    line-height: 1.2;
}
.page-template-front-page .business .inner .ttl__box h2 {
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1.4;
}
@media (max-width: 1280px) {
    .page-template-front-page .business .inner .ttl__box .bg {
        font-size: 6rem;
    }
    .page-template-front-page .business .inner .ttl__box h2 {
        font-size: 2rem;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .business .inner .ttl__box .bg {
        font-size: 4rem;
    }
    .page-template-front-page .business .inner .ttl__box h2 {
        font-size: 1.6rem;
    }
}
.page-template-front-page .business .inner .right {
    width: 61%;
    line-height: 2;
    font-size: 1.9rem;
    font-weight: 500;
}
@media (max-width: 768px) {
    .page-template-front-page .business .inner .right {
        width: 100%;
        font-size: 1.7rem;
    }
}
.page-template-front-page .recruit {
    position: relative;
    z-index: 2;
    color: #fff;
}
.page-template-front-page .recruit::before {
    content: "";
    position: absolute;
    background: #132F7C;
    top: -5%;
    left: 0;
    width: 100%;
    height: 105%;
    transform: skew(10deg) rotate(10deg);
    z-index: -2;
}
.page-template-front-page .recruit::after {
    content: "";
    position: absolute;
    background: url(../img/top/top_recruit_bg.webp?3) center 14%/cover no-repeat;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.page-template-front-page .recruit .inner {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}
@media (max-width: 768px) {
    .page-template-front-page .recruit .inner {
        flex-direction: column;
        align-items: unset;
    }
    .page-template-front-page .recruit .inner .right .detail__btn {
        margin: 0 auto;
    }
}
.page-template-front-page .recruit .inner .left .ttl__box {
    display: flex;
    align-items: baseline;
    gap: 40px;
}
.page-template-front-page .recruit .inner .left .ttl__box .bg {
    font-family: var(--font-en);
    font-size: 8rem;
    font-weight: 600;
}
.page-template-front-page .recruit .inner .left .ttl__box h2 {
    font-size: 2.1rem;
    font-weight: 700;
}
@media (max-width: 1280px) {
    .page-template-front-page .recruit .inner .left .ttl__box {
        gap: 30px;
    }
    .page-template-front-page .recruit .inner .left .ttl__box .bg {
        font-size: 4.8rem;
    }
    .page-template-front-page .recruit .inner .left .ttl__box h2 {
        font-size: 1.7rem;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .recruit .inner .left .ttl__box {
        gap: 20px;
    }
    .page-template-front-page .recruit .inner .left .ttl__box .bg {
        font-size: 3.6rem;
    }
    .page-template-front-page .recruit .inner .left .ttl__box h2 {
        font-size: 1.6rem;
    }
}
.page-template-front-page .recruit .inner .left .txt {
    line-height: 2;
    font-size: 1.9rem;
    font-weight: 700;
}
@media (max-width: 768px) {
    .page-template-front-page .recruit .inner .left .txt {
        font-size: 1.7rem;
    }
}
.page-template-front-page .instagram {
    position: relative;
    z-index: 1;
}
.page-template-front-page .instagram .inner .ttl__box {
    color: var(--color-blue);
}
.page-template-front-page .instagram .inner .ttl__box .bg {
    font-size: 8rem;
    font-family: var(--font-en);
    font-weight: 600;
    line-height: 1.2;
}
.page-template-front-page .instagram .inner .ttl__box h2 {
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1.4;
}
@media (max-width: 1280px) {
    .page-template-front-page .instagram .inner .ttl__box .bg {
        font-size: 4.8rem;
    }
    .page-template-front-page .instagram .inner .ttl__box h2 {
        font-size: 2rem;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .instagram .inner .ttl__box .bg {
        font-size: 3.6rem;
    }
    .page-template-front-page .instagram .inner .ttl__box h2 {
        font-size: 1.6rem;
    }
}
.page-template-front-page .instagram .inner .instagram__container {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
}
.page-template-front-page .instagram .inner .instagram__container img {
    width: calc((100% - 140px) / 6);
}
@media (max-width: 1280px) {
    .page-template-front-page .instagram .inner .instagram__container {
        gap: 20px;
    }
    .page-template-front-page .instagram .inner .instagram__container img {
        width: calc((100% - 60px) / 4);
    }
}
@media (max-width: 768px) {
    .page-template-front-page .instagram .inner .instagram__container {
        gap: 15px;
    }
    .page-template-front-page .instagram .inner .instagram__container img {
        width: calc((100% - 15px) / 2);
    }
}
.page-template-front-page .access {
    color: #fff;
    position: relative;
}
.page-template-front-page .access::before {
    content: "";
    position: absolute;
    background: #254BB2;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform-origin: bottom right;
    transform: skew(10deg) rotate(10deg) translateY(-100px);
    z-index: -2;
}
.page-template-front-page .access .inner {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}
@media (max-width: 768px) {
    .page-template-front-page .access .inner {
        flex-direction: column;
        row-gap: 30px;
    }
}
.page-template-front-page .access .inner .left {
    width: 37%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
@media (max-width: 768px) {
    .page-template-front-page .access .inner .left {
        width: 100%;
    }
}
.page-template-front-page .access .inner .left .ttl__box .bg {
    font-size: 8rem;
    font-family: var(--font-en);
    font-weight: 600;
    line-height: 1.2;
}
.page-template-front-page .access .inner .left .ttl__box h2 {
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1.4;
}
@media (max-width: 1280px) {
    .page-template-front-page .access .inner .left .ttl__box .bg {
        font-size: 4.8rem;
    }
    .page-template-front-page .access .inner .left .ttl__box h2 {
        font-size: 2rem;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .access .inner .left .ttl__box .bg {
        font-size: 3.6rem;
    }
    .page-template-front-page .access .inner .left .ttl__box h2 {
        font-size: 1.6rem;
    }
}
.page-template-front-page .access .inner .left .txt {
    color: var(--color-blue);
    font-size: 1.9rem;
    font-weight: 500;
    line-height: 2;
}
.page-template-front-page .access .inner .left .txt h3 {
    font-size: 2.7rem;
    font-weight: inherit;
    position: relative;
}
.page-template-front-page .access .inner .left .txt h3::before {
    content: "";
    position: absolute;
    height: 1px;
    background: #254BB2;
    width: 100%;
    bottom: 0;
    left: 0;
}
@media (max-width: 1280px) {
    .page-template-front-page .access .inner .left .txt {
        font-size: 1.8rem;
    }
    .page-template-front-page .access .inner .left .txt h3 {
        font-size: 2.2rem;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .access .inner .left .txt {
        color: #fff;
        font-size: 1.6rem;
    }
    .page-template-front-page .access .inner .left .txt h3 {
        font-size: 1.8rem;
    }
}
.page-template-front-page .access .inner .right {
    width: 63%;
}
.page-template-front-page .access .inner .right iframe {
    width: 100%;
    aspect-ratio: 882/581;
    filter: grayscale(1);
}
@media (max-width: 768px) {
    .page-template-front-page .access .inner .right {
        width: 100%;
    }
}

/* ------------------------------------- /
/  会社概要ページ
/* ------------------------------------- */
.page-template-page-company {
    background: #F2F2F2;
    --policy-top: 200px;
}
.page-template-page-company .message {
    position: relative;
    margin-top: -40px;
}
.page-template-page-company .message .inner {
    display: flex;
    justify-content: space-between;
    gap: 90px;
}
.page-template-page-company .message .inner .left, .page-template-page-company .message .inner .right__text {
    width: calc((100% - 90px) / 2);
}
.page-template-page-company .message .inner .left img {
    border-radius: 3px;
}
.page-template-page-company .message .inner .right__text {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.page-template-page-company .message .inner .right__text .txt {
    font-size: 1.9rem;
    line-height: 2.1;
    color: #08112C;
}
@media (max-width: 1280px) {
    .page-template-page-company .message .inner {
        gap: 50px;
    }
    .page-template-page-company .message .inner .left, .page-template-page-company .message .inner .right__text {
        width: calc((100% - 50px) / 2);
    }
    .page-template-page-company .message .inner .right__text .txt {
        font-size: 1.7rem;
    }
}
@media (max-width: 768px) {
    .page-template-page-company .message .inner {
        flex-direction: column;
        gap: 0;
    }
    .page-template-page-company .message .inner .left, .page-template-page-company .message .inner .right__text {
        width: 100%;
    }
    .page-template-page-company .message .inner .right__text .txt {
        font-size: 1.6rem;
    }
}
.page-template-page-company .philosophy {
    --philosophy-top: 200px;
    --philosophy-bottom: 400px;
    -webkit-clip-path: polygon(0 0, 100% var(--philosophy-top), 100% 100%, 0 calc(100% - var(--philosophy-top)));
            clip-path: polygon(0 0, 100% var(--philosophy-top), 100% 100%, 0 calc(100% - var(--philosophy-top)));
    color: #fff;
    background: var(--color-blue);
    padding-bottom: calc(100px + var(--philosophy-bottom));
    margin-bottom: calc(-1 * var(--philosophy-bottom));
}
@media (max-width: 1280px) {
    .page-template-page-company .philosophy {
        --philosophy-top: 160px;
        --philosophy-bottom: 320px;
        padding-bottom: calc(60px + var(--philosophy-bottom));
    }
}
@media (max-width: 768px) {
    .page-template-page-company .philosophy {
        --philosophy-top: 80px;
        --philosophy-bottom: 160px;
        padding-bottom: calc(30px + var(--philosophy-bottom));
    }
}
.page-template-page-company .philosophy__box {
    padding: 0 20px;
    background: #fff;
    border-radius: 3px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 120px;
}
@media (max-width: 1280px) {
    .page-template-page-company .philosophy__box {
        gap: 90px;
    }
}
@media (max-width: 768px) {
    .page-template-page-company .philosophy__box {
        gap: 30px;
    }
}
.page-template-page-company .philosophy__box .content {
    position: relative;
    max-width: 750px;
    width: 100%;
}
.page-template-page-company .philosophy__box .content .num {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    font-family: var(--font-en);
    color: #7C95D8;
    font-size: 16rem;
    font-weight: 600;
    opacity: 0.2;
    line-height: 1.2;
}
.page-template-page-company .philosophy__box .content .num.right {
    left: unset;
    right: 0;
}
@media (max-width: 1280px) {
    .page-template-page-company .philosophy__box .content .num {
        font-size: 10rem;
    }
}
@media (max-width: 768px) {
    .page-template-page-company .philosophy__box .content .num {
        font-size: 6rem;
    }
}
.page-template-page-company .philosophy__box .content .txt {
    color: var(--color-blue);
    font-size: 2.4rem;
    font-weight: 700;
    text-align: center;
}
@media (max-width: 1280px) {
    .page-template-page-company .philosophy__box .content .txt {
        font-size: 1.9rem;
    }
}
@media (max-width: 768px) {
    .page-template-page-company .philosophy__box .content .txt {
        font-size: 1.7rem;
    }
}
@media (max-width: 1280px) {
    .page-template-page-company {
        --policy-top: 160px;
    }
}
@media (max-width: 768px) {
    .page-template-page-company {
        --policy-top: 80px;
    }
}
.page-template-page-company .philosophy__bg {
    padding-bottom: calc(var(--policy-top) - 100px);
    margin-bottom: calc(-1 * var(--policy-top));
    position: relative;
}
@media (max-width: 1280px) {
    .page-template-page-company .philosophy__bg {
        padding-bottom: calc(var(--policy-top) - 60px);
    }
}
@media (max-width: 768px) {
    .page-template-page-company .philosophy__bg {
        padding-bottom: calc(var(--policy-top) - 40px);
    }
}
.page-template-page-company .philosophy__bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../img/company/philosophy_bg.webp?2) center center/cover no-repeat;
    z-index: -1;
}
.page-template-page-company .policy {
    padding-top: var(--policy-top);
    -webkit-clip-path: polygon(0 var(--policy-top), 100% 0, 100% 100%, 0 100%);
            clip-path: polygon(0 var(--policy-top), 100% 0, 100% 100%, 0 100%);
    color: #fff;
    background: #254BB2;
    position: relative;
    z-index: -1;
}
.page-template-page-company .policy .inner .txt {
    font-size: 2.4rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.7;
}
@media (max-width: 1280px) {
    .page-template-page-company .policy .inner .txt {
        font-size: 2rem;
    }
}
@media (max-width: 768px) {
    .page-template-page-company .policy .inner .txt {
        font-size: 1.6rem;
    }
}
.page-template-page-company .sdgs{
    background-color: #fff;
}
.page-template-page-company .sdgs .txt{
    font-size: 1.9rem;
    line-height: 2.1;
    color: #08112C;
    text-align: center;
}

.page-template-page-company .profile .inner {
    display: flex;
    justify-content: space-between;
    gap: 50px;
}
@media (max-width: 1280px) {
    .page-template-page-company .profile .inner {
        gap: 30px;
    }
}
@media (max-width: 768px) {
    .page-template-page-company .profile .inner {
        flex-direction: column;
    }
}
.page-template-page-company .profile .inner .right {
    flex: 1 1;
    max-width: 800px;
}
.page-template-page-company .profile .inner .right > table {
    width: 100%;
    color: #000;
}
.page-template-page-company .profile .inner .right > table > tbody > tr {
    border-top: 1px solid #707070;
}
.page-template-page-company .profile .inner .right > table > tbody > tr > th, .page-template-page-company .profile .inner .right > table > tbody > tr > td {
    padding: 30px 0;
    line-height: 2.1;
}
@media (max-width: 1280px) {
    .page-template-page-company .profile .inner .right > table > tbody > tr > th, .page-template-page-company .profile .inner .right > table > tbody > tr > td {
        padding: 20px 0;
    }
}
.page-template-page-company .profile .inner .right > table > tbody > tr > th {
    font-size: 1.8rem;
    padding-right: 20px;
    white-space: nowrap;
}
@media (max-width: 1280px) {
    .page-template-page-company .profile .inner .right > table > tbody > tr > th {
        padding-right: 15px;
        font-size: 1.7rem;
    }
}
.page-template-page-company .profile .inner .right > table > tbody > tr.border__none {
    border-top: none;
}
.page-template-page-company .profile .inner .right > table > tbody > tr.border__none > th, .page-template-page-company .profile .inner .right > table > tbody > tr.border__none > td {
    padding-top: 0;
}
.page-template-page-company .profile .inner .right > table > tbody > tr table tr th {
    padding-right: 20px;
}
@media (max-width: 1280px) {
    .page-template-page-company .profile .inner .right > table > tbody > tr table tr th {
        padding-right: 15px;
    }
}
.page-template-page-company .profile .inner .right h3 {
    color: var(--color-blue);
    font-family: var(--font-en);
    font-size: 5rem;
    font-weight: 600;
    line-height: 1.2;
}
.page-template-page-company .profile .inner .right iframe {
    filter: grayscale(1);
    width: 100%;
    max-width: 800px;
    aspect-ratio: 800/600;
}
.page-template-page-company .profile .inner .right .bl__btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #254BB2;
    border-radius: 3px;
    height: 80px;
    width: 410px;
    color: #fff;
    font-size: 1.9rem;
    font-weight: 700;
    padding: 0 25px 0 30px;
    position: relative;
}
.page-template-page-company .profile .inner .right .bl__btn::after {
    content: "";
    display: block;
    width: 60px;
    aspect-ratio: 60/30;
    border-radius: 3px;
    background: url(../img/common/arrow_bl_skew.svg) center center/33% no-repeat, #fff;
}
@media (max-width: 1280px) {
    .page-template-page-company .profile .inner .right .bl__btn {
        font-size: 1.8rem;
        width: 380px;
    }
}
@media (max-width: 768px) {
    .page-template-page-company .profile .inner .right .bl__btn {
        margin: 0 auto;
        font-size: 1.7rem;
        width: 320px;
        height: 60px;
        padding: 0 15px 0 20px;
    }
    .page-template-page-company .profile .inner .right .bl__btn::after {
        width: 40px;
    }
}

/* ------------------------------------- /
/  業務内容ページ
/* ------------------------------------- */
.page-template-page-business {
    background: #F2F2F2;
}
.page-template-page-business .business__header__bg img {
    min-height: 500px;
    -o-object-fit: cover;
       object-fit: cover;
    margin-top: -200px;
}
@media (max-width: 1280px) {
    .page-template-page-business .business__header__bg img {
        margin-top: -150px;
    }
}
@media (max-width: 768px) {
    .page-template-page-business .business__header__bg img {
        margin-top: -100px;
    }
}
.page-template-page-business .transport {
    position: relative;
    margin-bottom: -100px;
}
@media (max-width: 1280px) {
    .page-template-page-business .transport {
        margin-bottom: -30px;
    }
}
.page-template-page-business .transport::before {
    content: "";
    position: absolute;
    top: -16%;
    left: 0;
    width: 100%;
    height: 130%;
    background: url(../img/business/transport_bg.svg) left 77% top/50% no-repeat;
}
@media (max-width: 1280px) {
    .page-template-page-business .transport::before {
        top: -8%;
    }
}
@media (max-width: 768px) {
    .page-template-page-business .transport::before {
        top: -30px;
        background: url(../img/business/transport_bg.svg) center top/74% no-repeat;
    }
}
.page-template-page-business .transport .inner {
    position: relative;
}
.page-template-page-business .transport .inner .lower__ttl__box {
    color: #254BB2;
}
.page-template-page-business .transport .inner .txt {
    color: #08112C;
    font-size: 1.9rem;
    max-width: 860px;
    line-height: 2.1;
}
@media (max-width: 768px) {
    .page-template-page-business .transport .inner .txt {
        font-size: 1.7rem;
    }
}
.page-template-page-business .dream {
    --dream-top: 200px;
    padding-top: var(--dream-top);
    position: relative;
}
@media (max-width: 1280px) {
    .page-template-page-business .dream {
        --dream-top: 150px ;
    }
}
@media (max-width: 768px) {
    .page-template-page-business .dream {
        --dream-top: 100px ;
    }
}
.page-template-page-business .dream::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #254BB2;
    -webkit-clip-path: polygon(0 var(--dream-top), 100% 0, 100% 100%, 0 100%);
            clip-path: polygon(0 var(--dream-top), 100% 0, 100% 100%, 0 100%);
}
.page-template-page-business .dream .inner {
    display: flex;
    gap: 8%;
}
@media (max-width: 1280px) {
    .page-template-page-business .dream .inner {
        gap: 4%;
    }
}
@media (max-width: 768px) {
    .page-template-page-business .dream .inner {
        padding-top: 60px;
        flex-direction: column;
        row-gap: 50px;
    }
}
.page-template-page-business .dream .inner .left, .page-template-page-business .dream .inner .right {
    width: 46%;
    position: relative;
}
@media (max-width: 1280px) {
    .page-template-page-business .dream .inner .left, .page-template-page-business .dream .inner .right {
        width: 48%;
    }
}
@media (max-width: 768px) {
    .page-template-page-business .dream .inner .left, .page-template-page-business .dream .inner .right {
        width: 100%;
    }
}
.page-template-page-business .dream .inner .left h3, .page-template-page-business .dream .inner .right h3 {
    position: absolute;
    top: 0;
    font-family: var(--font-en);
    font-size: 8rem;
    font-weight: 600;
    line-height: 1;
    transform: translateY(-50%);
    color: #132F7C;
}
@media (max-width: 1280px) {
    .page-template-page-business .dream .inner .left h3, .page-template-page-business .dream .inner .right h3 {
        font-size: 6rem;
    }
}
@media (max-width: 768px) {
    .page-template-page-business .dream .inner .left h3, .page-template-page-business .dream .inner .right h3 {
        font-size: 4rem;
    }
}
.page-template-page-business .dream .inner .left {
    position: relative;
    bottom: -150px;
}
@media (max-width: 1280px) {
    .page-template-page-business .dream .inner .left {
        bottom: -75px;
    }
}
@media (max-width: 768px) {
    .page-template-page-business .dream .inner .left {
        bottom: unset;
    }
}
.page-template-page-business .dream .inner .left h3 {
    left: -20px;
}
@media (max-width: 768px) {
    .page-template-page-business .dream .inner .left h3 {
        left: 0;
    }
}
.page-template-page-business .dream .inner .right {
    position: relative;
    bottom: -75px;
}
@media (max-width: 1280px) {
    .page-template-page-business .dream .inner .right {
        bottom: -37px;
    }
}
@media (max-width: 768px) {
    .page-template-page-business .dream .inner .right {
        bottom: unset;
    }
}
.page-template-page-business .dream .inner .right h3 {
    right: -30px;
}
@media (max-width: 768px) {
    .page-template-page-business .dream .inner .right h3 {
        right: 0;
    }
}
.page-template-page-business .recycle {
    padding-top: 280px;
}
@media (max-width: 1280px) {
    .page-template-page-business .recycle {
        padding-top: 150px;
    }
}
@media (max-width: 768px) {
    .page-template-page-business .recycle {
        padding-top: 60px;
    }
}
.page-template-page-business .recycle .lower__ttl__box {
    color: #254BB2;
}
.page-template-page-business .recycle h3 {
    color: var(--color-blue);
    font-size: 3rem;
    font-weight: 500;
}
@media (max-width: 1280px) {
    .page-template-page-business .recycle h3 {
        font-size: 2.4rem;
    }
}
@media (max-width: 768px) {
    .page-template-page-business .recycle h3 {
        font-size: 2rem;
    }
}
.page-template-page-business .recycle .h3__txt {
    color: #08112C;
    font-size: 1.9rem;
    line-height: 2.1;
}
@media (max-width: 768px) {
    .page-template-page-business .recycle .h3__txt {
        font-size: 1.7rem;
    }
}
.page-template-page-business .recycle .wh__box {
    background: #fff;
    border-radius: 3px;
    padding: 50px 100px;
    color: #08112C;
    font-size: 1.9rem;
    font-weight: 500;
    line-height: 2.1;
}
@media (max-width: 1280px) {
    .page-template-page-business .recycle .wh__box {
        font-size: 1.8rem;
        padding: 40px 60px;
    }
}
@media (max-width: 768px) {
    .page-template-page-business .recycle .wh__box {
        font-size: 1.6rem;
        padding: 20px 15px;
    }
}
.page-template-page-business .recycle .wh__box h4 {
    text-align: center;
    color: var(--color-blue);
    font-size: 2.4rem;
    font-weight: 500;
}
@media (max-width: 1280px) {
    .page-template-page-business .recycle .wh__box h4 {
        font-size: 2rem;
    }
}
@media (max-width: 768px) {
    .page-template-page-business .recycle .wh__box h4 {
        font-size: 1.8rem;
    }
}
.page-template-page-business .recycle .wh__box li {
    position: relative;
    padding-left: 25px;
}
.page-template-page-business .recycle .wh__box li::before {
    content: "";
    position: absolute;
    top: 12px;
    left: 0;
    width: 18px;
    aspect-ratio: 1;
    background: #254BB2;
}
@media (max-width: 768px) {
    .page-template-page-business .recycle .wh__box li {
        padding-left: 21px;
    }
    .page-template-page-business .recycle .wh__box li::before {
        top: 9px;
        width: 16px;
    }
}
.page-template-page-business .recycle .wh__box .link {
    color: #3A66EA;
    text-decoration: underline;
}
.page-template-page-business .recycle .wh__box .time {
    color: #254BB2;
    font-size: 3.6rem;
    font-family: var(--font-en);
    line-height: 1.1;
}
@media (max-width: 1280px) {
    .page-template-page-business .recycle .wh__box .time {
        font-size: 3rem;
    }
}
@media (max-width: 768px) {
    .page-template-page-business .recycle .wh__box .time {
        font-size: 2.2rem;
    }
}
.page-template-page-business .recycle .wh__box h5 {
    font-size: 2.4rem;
    font-weight: 500;
    color: var(--color-blue);
    text-align: center;
    line-height: 1.7;
}
@media (max-width: 1280px) {
    .page-template-page-business .recycle .wh__box h5 {
        font-size: 2rem;
    }
}
@media (max-width: 768px) {
    .page-template-page-business .recycle .wh__box h5 {
        font-size: 1.6rem;
    }
}
.page-template-page-business .recycle .wh__box .bl__btn {
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 400px;
    height: 80px;
    border-radius: 3px;
    background: #254BB2;
    color: #fff;
    font-size: 1.9rem;
    font-weight: 700;
    padding: 25px 30px;
    position: relative;
}
@media (max-width: 1280px) {
    .page-template-page-business .recycle .wh__box .bl__btn {
        width: 350px;
        font-size: 1.8rem;
        padding: 25px 20px;
    }
}
@media (max-width: 768px) {
    .page-template-page-business .recycle .wh__box .bl__btn {
        width: 300px;
        height: 60px;
        font-size: 1.7rem;
        padding: 15px 10px;
    }
}
.page-template-page-business .recycle .wh__box .bl__btn::after {
    content: "";
    display: block;
    width: 60px;
    aspect-ratio: 60/30;
    background: url(../img/common/arrow_bl.svg) center center/33% no-repeat, #fff;
    border-radius: 3px;
}
@media (max-width: 768px) {
    .page-template-page-business .recycle .wh__box .bl__btn::after {
        width: 40px;
    }
}

/* ------------------------------------- /
/  採用情報ページ
/* ------------------------------------- */
.page-template-page-recruit {
    background: #F2F2F2;
}
.page-template-page-recruit .lower__ttl__box h2 {
    font-size: 5rem;
}
@media (max-width: 1280px) {
    .page-template-page-recruit .lower__ttl__box h2 {
        font-size: 3.6rem;
    }
}
@media (max-width: 768px) {
    .page-template-page-recruit .lower__ttl__box h2 {
        font-size: 2.8rem;
    }
}
.page-template-page-recruit .lower__ttl__box .sm {
    font-family: var(--font-en);
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.2;
}
@media (max-width: 1280px) {
    .page-template-page-recruit .lower__ttl__box .sm {
        font-size: 1.8rem;
    }
}
@media (max-width: 768px) {
    .page-template-page-recruit .lower__ttl__box .sm {
        font-size: 1.6rem;
    }
}
.page-template-page-recruit .recruit__mv {
    position: relative;
}
.page-template-page-recruit .recruit__mv .recruit__mv__top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 25%;
    background: var(--color-blue);
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 20%, 0 100%);
            clip-path: polygon(0 0, 100% 0, 100% 20%, 0 100%);
}
.page-template-page-recruit .recruit__mv .recruit__mv__bottom {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 25%;
    background: #254BB2;
    -webkit-clip-path: polygon(0 0, 100% 80%, 100% 100%, 0 100%);
            clip-path: polygon(0 0, 100% 80%, 100% 100%, 0 100%);
}
@media (max-width: 768px) {
    .page-template-page-recruit .recruit__mv .recruit__mv__bottom {
        height: 15%;
    }
}
.page-template-page-recruit .recruit__mv .recruit__mv__img {
    -o-object-fit: cover;
       object-fit: cover;
    min-height: 1000px;
}
@media (max-width: 1280px) {
    .page-template-page-recruit .recruit__mv .recruit__mv__img {
        min-height: 800px;
    }
}
@media (max-width: 768px) {
    .page-template-page-recruit .recruit__mv .recruit__mv__img {
        min-height: 600px;
    }
}
.page-template-page-recruit .recruit__mv .wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
}
.page-template-page-recruit .recruit__mv .wrapper .inner {
    color: #fff;
    text-shadow: 0px 0px 20px rgba(0, 0, 0, 0.4);
}
.page-template-page-recruit .recruit__mv .wrapper .inner .txt__box {
    position: relative;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.5;
    padding: 15px 60px;
    --border-width: 3px;
}
.page-template-page-recruit .recruit__mv .wrapper .inner .txt__box::before, .page-template-page-recruit .recruit__mv .wrapper .inner .txt__box::after {
    content: "";
    position: absolute;
    width: 45px;
    aspect-ratio: 1;
}
.page-template-page-recruit .recruit__mv .wrapper .inner .txt__box::before {
    top: 0;
    left: 0;
    border-top: var(--border-width) solid #fff;
    border-left: var(--border-width) solid #fff;
}
.page-template-page-recruit .recruit__mv .wrapper .inner .txt__box::after {
    bottom: 0;
    right: 0;
    border-bottom: var(--border-width) solid #fff;
    border-right: var(--border-width) solid #fff;
}
@media (max-width: 1280px) {
    .page-template-page-recruit .recruit__mv .wrapper .inner .txt__box {
        --border-width: 2px;
        font-size: 2.4rem;
        padding: 10px 35px;
    }
    .page-template-page-recruit .recruit__mv .wrapper .inner .txt__box::before, .page-template-page-recruit .recruit__mv .wrapper .inner .txt__box::after {
        width: 30px;
    }
}
@media (max-width: 768px) {
    .page-template-page-recruit .recruit__mv .wrapper .inner .txt__box {
        --border-width: 1px;
        font-size: 1.9rem;
        padding: 5px 15px;
    }
    .page-template-page-recruit .recruit__mv .wrapper .inner .txt__box::before, .page-template-page-recruit .recruit__mv .wrapper .inner .txt__box::after {
        width: 15px;
    }
}
.page-template-page-recruit .recruit__mv .wrapper .inner .mv_s1, .page-template-page-recruit .recruit__mv .wrapper .inner .mv_s3 {
    margin-left: auto;
}
.page-template-page-recruit .recruit__mv .wrapper .inner h1 {
    font-family: "Noto Serif JP", serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    font-size: 7rem;
    line-height: 1.4;
    text-align: center;
    letter-spacing: 0.06em;
}
@media (max-width: 1280px) {
    .page-template-page-recruit .recruit__mv .wrapper .inner h1 {
        font-size: 4.5rem;
    }
}
@media (max-width: 768px) {
    .page-template-page-recruit .recruit__mv .wrapper .inner h1 {
        font-size: 2.6rem;
    }
}
.page-template-page-recruit .recruit__mv .wrapper .inner .mv__sm {
    font-size: 2rem;
    font-family: var(--font-en);
    font-weight: 600;
    letter-spacing: 0.04em;
    line-height: 1.2;
    text-align: center;
}
@media (max-width: 1280px) {
    .page-template-page-recruit .recruit__mv .wrapper .inner .mv__sm {
        font-size: 1.8rem;
    }
}
@media (max-width: 768px) {
    .page-template-page-recruit .recruit__mv .wrapper .inner .mv__sm {
        font-size: 1.6rem;
    }
}
.page-template-page-recruit .recruit__mv .wrapper .inner .recruit__mv__breadcrumb {
    margin-left: auto;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 1.9rem;
    font-weight: 500;
    text-shadow: unset;
    line-height: 2.1;
}
@media (max-width: 1280px) {
    .page-template-page-recruit .recruit__mv .wrapper .inner .recruit__mv__breadcrumb {
        font-size: 1.8rem;
    }
}
@media (max-width: 768px) {
    .page-template-page-recruit .recruit__mv .wrapper .inner .recruit__mv__breadcrumb {
        font-size: 1.6rem;
    }
}
.page-template-page-recruit .message {
    background: #254BB2;
    color: #fff;
}
.page-template-page-recruit .message .inner {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
}
.page-template-page-recruit .message .inner .left, .page-template-page-recruit .message .inner .right {
    width: 50%;
}
.page-template-page-recruit .message .inner .left {
    padding-right: 5%;
}
.page-template-page-recruit .message .inner .left .txt {
    font-size: 1.9rem;
    line-height: 2.1;
}
@media (max-width: 1280px) {
    .page-template-page-recruit .message .inner .left .txt {
        font-size: 1.8rem;
    }
}
@media (max-width: 768px) {
    .page-template-page-recruit .message .inner .left .txt {
        font-size: 1.6rem;
    }
}
.page-template-page-recruit .message .inner .lower__ttl__box {
    color: inherit;
}
@media (max-width: 768px) {
    .page-template-page-recruit .message .inner {
        flex-direction: column;
    }
    .page-template-page-recruit .message .inner .left, .page-template-page-recruit .message .inner .right {
        width: 100%;
    }
}
.page-template-page-recruit .what {
    color: #fff;
    position: relative;
    z-index: 1;
}
.page-template-page-recruit .what::before {
    content: "";
    position: absolute;
    left: 0;
    top: -10%;
    width: 100%;
    height: 120%;
    background: var(--color-blue);
    transform: skew(8deg) rotate(8deg);
    z-index: -2;
}
.page-template-page-recruit .what::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../img/recruit/what.webp) center center/cover no-repeat;
    z-index: -1;
}
.page-template-page-recruit .what .inner {
    position: relative;
    display: flex;
    justify-content: space-between;
    gap: 5%;
}
.page-template-page-recruit .what .inner .left .lower__ttl__box {
    color: inherit;
}
.page-template-page-recruit .what .inner .right {
    width: 55%;
}
.page-template-page-recruit .what .inner .right .txt {
    font-size: 1.9rem;
    line-height: 2.1;
}
@media (max-width: 768px) {
    .page-template-page-recruit .what .inner {
        flex-direction: column;
        row-gap: 30px;
    }
    .page-template-page-recruit .what .inner .right {
        width: 100%;
    }
}
.page-template-page-recruit .interview {
    position: relative;
}
.page-template-page-recruit .interview::before {
    content: "";
    position: absolute;
    width: 100%;
    bottom: -1px;
    height: 300px;
    background: var(--color-blue);
    -webkit-clip-path: polygon(0 0, 100% 100%, 0 100%);
            clip-path: polygon(0 0, 100% 100%, 0 100%);
    z-index: -1;
}
@media (max-width: 1280px) {
    .page-template-page-recruit .interview::before {
        height: 200px;
    }
}
@media (max-width: 768px) {
    .page-template-page-recruit .interview::before {
        height: 100px;
    }
}
.page-template-page-recruit .interview .lower__ttl__box {
    align-items: center;
}
.page-template-page-recruit .interview .interview__box {
    background: #fff;
    padding: 60px 80px;
    display: flex;
    align-items: flex-start;
    border-radius: 3px;
    gap: 4%;
}
.page-template-page-recruit .interview .interview__box.rev {
    justify-content: space-between;
}
@media (max-width: 1280px) {
    .page-template-page-recruit .interview .interview__box {
        padding: 30px 40px;
    }
}
@media (max-width: 768px) {
    .page-template-page-recruit .interview .interview__box {
        row-gap: 30px;
        flex-direction: column;
    }
    .page-template-page-recruit .interview .interview__box.rev {
        flex-direction: column-reverse;
    }
}
.page-template-page-recruit .interview .interview__box img {
    width: 33%;
}
@media (max-width: 768px) {
    .page-template-page-recruit .interview .interview__box img {
        width: 100%;
    }
}
.page-template-page-recruit .interview .interview__box .txt h3 {
    font-size: 3rem;
    font-weight: 500;
    color: var(--color-blue);
}
@media (max-width: 1280px) {
    .page-template-page-recruit .interview .interview__box .txt h3 {
        font-size: 2.4rem;
    }
}
@media (max-width: 768px) {
    .page-template-page-recruit .interview .interview__box .txt h3 {
        font-size: 1.9rem;
    }
}
.page-template-page-recruit .interview .interview__box .txt p {
    font-size: 1.9rem;
    line-height: 1.9;
}
@media (max-width: 1280px) {
    .page-template-page-recruit .interview .interview__box .txt p {
        font-size: 1.8rem;
    }
}
@media (max-width: 768px) {
    .page-template-page-recruit .interview .interview__box .txt p {
        font-size: 1.6rem;
    }
}
.page-template-page-recruit .support {
    background: var(--color-blue);
    color: #fff;
}
.page-template-page-recruit .support .lower__ttl__box {
    align-items: center;
    color: inherit;
}
.page-template-page-recruit .support .lower__ttl__box h2 {
    font-weight: 500;
}
.page-template-page-recruit .support .txt {
    font-size: 2.4rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.7;
}
@media (max-width: 1280px) {
    .page-template-page-recruit .support .txt {
        font-size: 2rem;
    }
}
@media (max-width: 768px) {
    .page-template-page-recruit .support .txt {
        font-size: 1.8rem;
    }
}
.page-template-page-recruit .support__bottom__bl {
    margin-top: -1px;
    width: 100%;
    height: 350px;
    background: var(--color-blue);
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%);
            clip-path: polygon(0 0, 100% 0, 100% 100%);
}
@media (max-width: 1280px) {
    .page-template-page-recruit .support__bottom__bl {
        height: 200px;
    }
}
@media (max-width: 768px) {
    .page-template-page-recruit .support__bottom__bl {
        height: 100px;
    }
}
.page-template-page-recruit .information {
    position: relative;
}
.page-template-page-recruit .information .inner .lower__ttl__box {
    align-items: center;
}
.page-template-page-recruit .information .inner .lower__ttl__box h2 {
    color: #08112C;
    font-weight: 500;
}
.page-template-page-recruit .information .inner .lower__ttl__box .sm {
    color: #254BB2;
}
.page-template-page-recruit .information .inner .job__box {
    background: #fff;
    border-radius: 3px;
    padding: 80px 70px 100px;
}
@media (max-width: 1280px) {
    .page-template-page-recruit .information .inner .job__box {
        padding: 50px 35px 70px;
    }
}
@media (max-width: 768px) {
    .page-template-page-recruit .information .inner .job__box {
        padding: 30px 20px;
    }
}
.page-template-page-recruit .information .inner .job__box h3 {
    font-size: 3rem;
    font-weight: 500;
    color: var(--color-blue);
    text-align: center;
}
@media (max-width: 1280px) {
    .page-template-page-recruit .information .inner .job__box h3 {
        font-size: 2.4rem;
    }
}
@media (max-width: 768px) {
    .page-template-page-recruit .information .inner .job__box h3 {
        font-size: 2rem;
    }
}
.page-template-page-recruit .information .inner .job__box .wrapper {
    display: flex;
    justify-content: space-between;
    gap: 50px;
}
.page-template-page-recruit .information .inner .job__box .wrapper .left, .page-template-page-recruit .information .inner .job__box .wrapper .right {
    width: calc((100% - 50px) / 2);
}
@media (max-width: 1280px) {
    .page-template-page-recruit .information .inner .job__box .wrapper {
        gap: 30px;
    }
    .page-template-page-recruit .information .inner .job__box .wrapper .left, .page-template-page-recruit .information .inner .job__box .wrapper .right {
        width: calc((100% - 30px) / 2);
    }
}
@media (max-width: 768px) {
    .page-template-page-recruit .information .inner .job__box .wrapper {
        gap: 0;
        flex-direction: column;
    }
    .page-template-page-recruit .information .inner .job__box .wrapper .left, .page-template-page-recruit .information .inner .job__box .wrapper .right {
        width: 100%;
    }
}
.page-template-page-recruit .information .inner .job__box .wrapper dl {
    border-top: 1px solid #707070;
    display: flex;
    align-items: baseline;
    padding: 30px 0;
}
.page-template-page-recruit .information .inner .job__box .wrapper dl:last-child {
    border-bottom: 1px solid #707070;
}
@media (max-width: 768px) {
    .page-template-page-recruit .information .inner .job__box .wrapper dl {
        padding: 15px 0;
    }
}
.page-template-page-recruit .information .inner .job__box .wrapper dl dt {
    width: 120px;
    font-size: 1.8rem;
    line-height: 1.9;
}
@media (max-width: 768px) {
    .page-template-page-recruit .information .inner .job__box .wrapper dl dt {
        font-size: 1.7rem;
        width: 90px;
    }
}
.page-template-page-recruit .information .inner .job__box .wrapper dl dd {
    line-height: 2.1;
    flex: 1 1;
}
@media (max-width: 768px) {
    .page-template-page-recruit .information .inner .job__box .wrapper .right dl:first-child {
        border-top: none;
    }
}
.page-template-page-recruit .information .information__bottom__bl {
    position: absolute;
    width: 100%;
    bottom: -1px;
    left: 0;
    height: 350px;
    background: #254BB2;
    z-index: -1;
    -webkit-clip-path: polygon(0 80%, 100% 0, 100% 100%, 0 100%);
            clip-path: polygon(0 80%, 100% 0, 100% 100%, 0 100%);
}
@media (max-width: 1280px) {
    .page-template-page-recruit .information .information__bottom__bl {
        height: 200px;
    }
}
@media (max-width: 768px) {
    .page-template-page-recruit .information .information__bottom__bl {
        height: 100px;
    }
}
.page-template-page-recruit .entry__btn__section {
    background: #254BB2;
    color: #fff;
}
.page-template-page-recruit .entry__btn__section .entry__btn {
    margin: 0 auto;
    border: 3px solid #fff;
    max-width: 1000px;
    border-radius: 3px;
    padding: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    position: relative;
}
.page-template-page-recruit .entry__btn__section .entry__btn::after {
    content: "";
    display: block;
    width: 80px;
    aspect-ratio: 80/40;
    border-radius: 3px;
    background: url(../img/common/arrow_bl.svg) center center/45% no-repeat, #fff;
}
@media (max-width: 1280px) {
    .page-template-page-recruit .entry__btn__section .entry__btn {
        border: 2px solid #fff;
        padding: 40px;
    }
}
@media (max-width: 768px) {
    .page-template-page-recruit .entry__btn__section .entry__btn {
        padding: 20px;
    }
    .page-template-page-recruit .entry__btn__section .entry__btn::after {
        width: 50px;
    }
}
.page-template-page-recruit .entry__btn__section .entry__btn .txt {
    flex: 1 1;
}
.page-template-page-recruit .entry__btn__section .entry__btn .txt .bg {
    font-family: var(--font-en);
    font-size: 7rem;
    font-weight: 600;
    line-height: 1.2;
}
@media (max-width: 1280px) {
    .page-template-page-recruit .entry__btn__section .entry__btn .txt .bg {
        font-size: 5rem;
    }
}
@media (max-width: 768px) {
    .page-template-page-recruit .entry__btn__section .entry__btn .txt .bg {
        font-size: 3.6rem;
    }
}
.page-template-page-recruit .entry__btn__section .entry__btn .txt .sm {
    font-size: 1.9rem;
    line-height: 2.1;
}
@media (max-width: 1280px) {
    .page-template-page-recruit .entry__btn__section .entry__btn .txt .sm {
        font-size: 1.8rem;
    }
}
@media (max-width: 768px) {
    .page-template-page-recruit .entry__btn__section .entry__btn .txt .sm {
        font-size: 1.7rem;
    }
}

/* ------------------------------------- /
/  お問い合わせページ
/* ------------------------------------- */
.page-template-page-contact,
.page-template-page-contact-confirm,
.page-template-page-contact-thanks {
    background: #F2F2F2;
    color: var(--color-blue);
}
.page-template-page-contact .contact__tel__box,
.page-template-page-contact-confirm .contact__tel__box,
.page-template-page-contact-thanks .contact__tel__box {
    position: relative;
    margin-top: -100px;
}
@media (max-width: 1280px) {
    .page-template-page-contact .contact__tel__box,
    .page-template-page-contact-confirm .contact__tel__box,
    .page-template-page-contact-thanks .contact__tel__box {
        margin-top: -80px;
    }
}
@media (max-width: 768px) {
    .page-template-page-contact .contact__tel__box,
    .page-template-page-contact-confirm .contact__tel__box,
    .page-template-page-contact-thanks .contact__tel__box {
        margin-top: -50px;
    }
}
.page-template-page-contact .contact__tel__box .inner .container,
.page-template-page-contact-confirm .contact__tel__box .inner .container,
.page-template-page-contact-thanks .contact__tel__box .inner .container {
    font-size: 2.4rem;
    line-height: 1.7;
    text-align: center;
    margin: 0 auto;
    max-width: 1200px;
    background: #fff;
    border-radius: 3px;
    padding: 100px 80px;
    display: flex;
    justify-content: center;
    gap: 90px;
}
@media (max-width: 1280px) {
    .page-template-page-contact .contact__tel__box .inner .container,
    .page-template-page-contact-confirm .contact__tel__box .inner .container,
    .page-template-page-contact-thanks .contact__tel__box .inner .container {
        font-size: 2rem;
        padding: 60px;
        gap: 50px;
    }
}
@media (max-width: 768px) {
    .page-template-page-contact .contact__tel__box .inner .container,
    .page-template-page-contact-confirm .contact__tel__box .inner .container,
    .page-template-page-contact-thanks .contact__tel__box .inner .container {
        flex-direction: column;
        font-size: 1.8rem;
        padding: 30px 20px;
        gap: 30px;
    }
}
.page-template-page-contact .contact__tel__box .inner .container .left .btn,
.page-template-page-contact-confirm .contact__tel__box .inner .container .left .btn,
.page-template-page-contact-thanks .contact__tel__box .inner .container .left .btn {
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #254BB2;
    border-radius: 3px;
    color: #fff;
    font-size: 1.9rem;
    font-weight: 700;
    line-height: 1.4;
    width: 430px;
    height: 80px;
    padding: 25px;
    position: relative;
}
@media (max-width: 1280px) {
    .page-template-page-contact .contact__tel__box .inner .container .left .btn,
    .page-template-page-contact-confirm .contact__tel__box .inner .container .left .btn,
    .page-template-page-contact-thanks .contact__tel__box .inner .container .left .btn {
        font-size: 1.8rem;
        width: 260px;
        padding: 10px 15px;
    }
}
@media (max-width: 768px) {
    .page-template-page-contact .contact__tel__box .inner .container .left .btn,
    .page-template-page-contact-confirm .contact__tel__box .inner .container .left .btn,
    .page-template-page-contact-thanks .contact__tel__box .inner .container .left .btn {
        font-size: 1.7rem;
        width: 220px;
        padding: 10px;
        height: 60px;
    }
}
.page-template-page-contact .contact__tel__box .inner .container .left .btn .ig,
.page-template-page-contact-confirm .contact__tel__box .inner .container .left .btn .ig,
.page-template-page-contact-thanks .contact__tel__box .inner .container .left .btn .ig {
    vertical-align: text-bottom;
    margin-right: 12px;
    display: inline-block;
    width: 25px;
    aspect-ratio: 1;
    background: url(../img/common/logo_ig_wh.svg) center center/100% 100% no-repeat;
}
.page-template-page-contact .contact__tel__box .inner .container .left .btn::after,
.page-template-page-contact-confirm .contact__tel__box .inner .container .left .btn::after,
.page-template-page-contact-thanks .contact__tel__box .inner .container .left .btn::after {
    content: "";
    display: block;
    width: 60px;
    aspect-ratio: 60/30;
    border-radius: 3px;
    background: url(../img/common/arrow_bl.svg) center center/45% no-repeat, #fff;
}
@media (max-width: 768px) {
    .page-template-page-contact .contact__tel__box .inner .container .left .btn::after,
    .page-template-page-contact-confirm .contact__tel__box .inner .container .left .btn::after,
    .page-template-page-contact-thanks .contact__tel__box .inner .container .left .btn::after {
        width: 40px;
    }
}
.page-template-page-contact .contact__tel__box .inner .container .right .tel,
.page-template-page-contact-confirm .contact__tel__box .inner .container .right .tel,
.page-template-page-contact-thanks .contact__tel__box .inner .container .right .tel {
    color: #254BB2;
    font-family: var(--font-en);
    font-weight: 600;
    line-height: 1.2;
    font-size: 3rem;
}
.page-template-page-contact .contact__tel__box .inner .container .right .tel a,
.page-template-page-contact-confirm .contact__tel__box .inner .container .right .tel a,
.page-template-page-contact-thanks .contact__tel__box .inner .container .right .tel a {
    font-size: 5rem;
}
@media (max-width: 1280px) {
    .page-template-page-contact .contact__tel__box .inner .container .right .tel,
    .page-template-page-contact-confirm .contact__tel__box .inner .container .right .tel,
    .page-template-page-contact-thanks .contact__tel__box .inner .container .right .tel {
        font-size: 2.4rem;
    }
    .page-template-page-contact .contact__tel__box .inner .container .right .tel a,
    .page-template-page-contact-confirm .contact__tel__box .inner .container .right .tel a,
    .page-template-page-contact-thanks .contact__tel__box .inner .container .right .tel a {
        font-size: 2.6rem;
    }
}
@media (max-width: 768px) {
    .page-template-page-contact .contact__tel__box .inner .container .right .tel,
    .page-template-page-contact-confirm .contact__tel__box .inner .container .right .tel,
    .page-template-page-contact-thanks .contact__tel__box .inner .container .right .tel {
        font-size: 2rem;
    }
    .page-template-page-contact .contact__tel__box .inner .container .right .tel a,
    .page-template-page-contact-confirm .contact__tel__box .inner .container .right .tel a,
    .page-template-page-contact-thanks .contact__tel__box .inner .container .right .tel a {
        font-size: 2.8rem;
    }
}
.page-template-page-contact .contact__tel__box .inner .container .right .sm,
.page-template-page-contact-confirm .contact__tel__box .inner .container .right .sm,
.page-template-page-contact-thanks .contact__tel__box .inner .container .right .sm {
    font-size: 1.9rem;
    line-height: 2.1;
}
@media (max-width: 1280px) {
    .page-template-page-contact .contact__tel__box .inner .container .right .sm,
    .page-template-page-contact-confirm .contact__tel__box .inner .container .right .sm,
    .page-template-page-contact-thanks .contact__tel__box .inner .container .right .sm {
        font-size: 1.8rem;
    }
}
@media (max-width: 768px) {
    .page-template-page-contact .contact__tel__box .inner .container .right .sm,
    .page-template-page-contact-confirm .contact__tel__box .inner .container .right .sm,
    .page-template-page-contact-thanks .contact__tel__box .inner .container .right .sm {
        font-size: 1.7rem;
    }
}
.page-template-page-contact .form__inner,
.page-template-page-contact-confirm .form__inner,
.page-template-page-contact-thanks .form__inner {
    max-width: 1100px;
    margin: 0 auto;
}
.page-template-page-contact .form__inner dl,
.page-template-page-contact-confirm .form__inner dl,
.page-template-page-contact-thanks .form__inner dl {
    display: flex;
    align-items: flex-start;
    gap: 40px;
}
@media (max-width: 1280px) {
    .page-template-page-contact .form__inner dl,
    .page-template-page-contact-confirm .form__inner dl,
    .page-template-page-contact-thanks .form__inner dl {
        gap: 20px;
    }
}
@media (max-width: 768px) {
    .page-template-page-contact .form__inner dl,
    .page-template-page-contact-confirm .form__inner dl,
    .page-template-page-contact-thanks .form__inner dl {
        flex-direction: column;
        gap: 5px;
    }
}
.page-template-page-contact .form__inner dl dt,
.page-template-page-contact-confirm .form__inner dl dt,
.page-template-page-contact-thanks .form__inner dl dt {
    width: 260px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #080808;
    min-height: 49px;
}
.page-template-page-contact .form__inner dl dt .required,
.page-template-page-contact-confirm .form__inner dl dt .required,
.page-template-page-contact-thanks .form__inner dl dt .required {
    color: #254BB2;
    font-size: 1.4rem;
}
@media (max-width: 1280px) {
    .page-template-page-contact .form__inner dl dt,
    .page-template-page-contact-confirm .form__inner dl dt,
    .page-template-page-contact-thanks .form__inner dl dt {
        width: 190px;
    }
}
@media (max-width: 768px) {
    .page-template-page-contact .form__inner dl dt,
    .page-template-page-contact-confirm .form__inner dl dt,
    .page-template-page-contact-thanks .form__inner dl dt {
        width: 100%;
        min-height: unset;
    }
}
.page-template-page-contact .form__inner dl dd,
.page-template-page-contact-confirm .form__inner dl dd,
.page-template-page-contact-thanks .form__inner dl dd {
    flex: 1 1;
    color: #080808;
}
@media (max-width: 768px) {
    .page-template-page-contact .form__inner dl dd,
    .page-template-page-contact-confirm .form__inner dl dd,
    .page-template-page-contact-thanks .form__inner dl dd {
        width: 100%;
    }
}
.page-template-page-contact .form__inner dl dd.checkbox,
.page-template-page-contact-confirm .form__inner dl dd.checkbox,
.page-template-page-contact-thanks .form__inner dl dd.checkbox {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.page-template-page-contact .form__inner dl dd input[type=text],
.page-template-page-contact .form__inner dl dd input[type=tel],
.page-template-page-contact .form__inner dl dd input[type=email],
.page-template-page-contact .form__inner dl dd textarea,
.page-template-page-contact-confirm .form__inner dl dd input[type=text],
.page-template-page-contact-confirm .form__inner dl dd input[type=tel],
.page-template-page-contact-confirm .form__inner dl dd input[type=email],
.page-template-page-contact-confirm .form__inner dl dd textarea,
.page-template-page-contact-thanks .form__inner dl dd input[type=text],
.page-template-page-contact-thanks .form__inner dl dd input[type=tel],
.page-template-page-contact-thanks .form__inner dl dd input[type=email],
.page-template-page-contact-thanks .form__inner dl dd textarea {
    width: 100%;
    border: none;
    font-size: inherit;
    font-family: inherit;
    font-weight: inherit;
    padding: 13px 10px;
}
.page-template-page-contact .form__inner dl dd input[type=text].zipcode,
.page-template-page-contact .form__inner dl dd input[type=tel].zipcode,
.page-template-page-contact .form__inner dl dd input[type=email].zipcode,
.page-template-page-contact .form__inner dl dd textarea.zipcode,
.page-template-page-contact-confirm .form__inner dl dd input[type=text].zipcode,
.page-template-page-contact-confirm .form__inner dl dd input[type=tel].zipcode,
.page-template-page-contact-confirm .form__inner dl dd input[type=email].zipcode,
.page-template-page-contact-confirm .form__inner dl dd textarea.zipcode,
.page-template-page-contact-thanks .form__inner dl dd input[type=text].zipcode,
.page-template-page-contact-thanks .form__inner dl dd input[type=tel].zipcode,
.page-template-page-contact-thanks .form__inner dl dd input[type=email].zipcode,
.page-template-page-contact-thanks .form__inner dl dd textarea.zipcode {
    width: min(100%, 300px);
}
.page-template-page-contact .form__inner dl dd input[type=text].tall,
.page-template-page-contact .form__inner dl dd input[type=tel].tall,
.page-template-page-contact .form__inner dl dd input[type=email].tall,
.page-template-page-contact .form__inner dl dd textarea.tall,
.page-template-page-contact-confirm .form__inner dl dd input[type=text].tall,
.page-template-page-contact-confirm .form__inner dl dd input[type=tel].tall,
.page-template-page-contact-confirm .form__inner dl dd input[type=email].tall,
.page-template-page-contact-confirm .form__inner dl dd textarea.tall,
.page-template-page-contact-thanks .form__inner dl dd input[type=text].tall,
.page-template-page-contact-thanks .form__inner dl dd input[type=tel].tall,
.page-template-page-contact-thanks .form__inner dl dd input[type=email].tall,
.page-template-page-contact-thanks .form__inner dl dd textarea.tall {
    min-height: 240px;
}
.page-template-page-contact .form__inner dl dd input[type=text].input_error,
.page-template-page-contact .form__inner dl dd input[type=tel].input_error,
.page-template-page-contact .form__inner dl dd input[type=email].input_error,
.page-template-page-contact .form__inner dl dd textarea.input_error,
.page-template-page-contact-confirm .form__inner dl dd input[type=text].input_error,
.page-template-page-contact-confirm .form__inner dl dd input[type=tel].input_error,
.page-template-page-contact-confirm .form__inner dl dd input[type=email].input_error,
.page-template-page-contact-confirm .form__inner dl dd textarea.input_error,
.page-template-page-contact-thanks .form__inner dl dd input[type=text].input_error,
.page-template-page-contact-thanks .form__inner dl dd input[type=tel].input_error,
.page-template-page-contact-thanks .form__inner dl dd input[type=email].input_error,
.page-template-page-contact-thanks .form__inner dl dd textarea.input_error {
    background: #fbefef;
    border: 2px solid #b42518;
}
.page-template-page-contact .form__inner dl dd input[type=radio],
.page-template-page-contact-confirm .form__inner dl dd input[type=radio],
.page-template-page-contact-thanks .form__inner dl dd input[type=radio] {
    position: relative;
    padding-left: 33px;
}
.page-template-page-contact .form__inner dl dd input[type=radio]::before,
.page-template-page-contact-confirm .form__inner dl dd input[type=radio]::before,
.page-template-page-contact-thanks .form__inner dl dd input[type=radio]::before {
    content: "";
    position: absolute;
    top: 3px;
    left: 0;
    width: 20px;
    aspect-ratio: 1;
    border-radius: 3px;
    background: #fff;
}
.page-template-page-contact .form__inner dl dd input[type=radio]:checked::after,
.page-template-page-contact-confirm .form__inner dl dd input[type=radio]:checked::after,
.page-template-page-contact-thanks .form__inner dl dd input[type=radio]:checked::after {
    content: "";
    position: absolute;
    top: 6px;
    left: 2px;
    width: 16px;
    height: 10px;
    border-left: 2px solid #000;
    border-bottom: 2px solid #000;
    transform: rotate(313deg);
}
.page-template-page-contact .form__inner .submit__btn,
.page-template-page-contact-confirm .form__inner .submit__btn,
.page-template-page-contact-thanks .form__inner .submit__btn {
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: min(100%, 340px);
    height: 80px;
    border-radius: 3px;
    background: #254BB2;
    color: #fff;
    font-size: 1.9rem;
    font-weight: 700;
    padding: 10px 25px;
    position: relative;
    cursor: pointer;
}
.page-template-page-contact .form__inner .submit__btn::after,
.page-template-page-contact-confirm .form__inner .submit__btn::after,
.page-template-page-contact-thanks .form__inner .submit__btn::after {
    content: "";
    display: block;
    width: 60px;
    aspect-ratio: 60/30;
    background: url(../img/common/arrow_bl.svg) center center/33% no-repeat, #fff;
    border-radius: 3px;
}
@media (max-width: 768px) {
    .page-template-page-contact .form__inner .submit__btn,
    .page-template-page-contact-confirm .form__inner .submit__btn,
    .page-template-page-contact-thanks .form__inner .submit__btn {
        width: min(100%, 280px);
        height: 60px;
        font-size: 1.7rem;
        padding: 10px 15px;
    }
    .page-template-page-contact .form__inner .submit__btn::after,
    .page-template-page-contact-confirm .form__inner .submit__btn::after,
    .page-template-page-contact-thanks .form__inner .submit__btn::after {
        width: 40px;
    }
}
.page-template-page-contact .error,
.page-template-page-contact-confirm .error,
.page-template-page-contact-thanks .error {
    color: #b42518;
}
.page-template-page-contact .error.false,
.page-template-page-contact-confirm .error.false,
.page-template-page-contact-thanks .error.false {
    display: none;
}
.page-template-page-contact .contact__thanks,
.page-template-page-contact-confirm .contact__thanks,
.page-template-page-contact-thanks .contact__thanks {
    color: #000;
    font-size: 2.4rem;
    font-weight: 700;
}
@media (max-width: 768px) {
    .page-template-page-contact .contact__thanks,
    .page-template-page-contact-confirm .contact__thanks,
    .page-template-page-contact-thanks .contact__thanks {
        font-size: 2rem;
    }
}/*# sourceMappingURL=style.css.map */