@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: "Roboto", sans-serif;
    --font-lato: "Lato", sans-serif;
    --color-gray: #F2F2F2;
    --color-black: #171414;
    --color-orange: #F5A200;
    --header-height: 112px;
}
@media (max-width: 1700px) {
    :root {
        --header-height: 100px;
    }
}
@media (max-width: 1280px) {
    :root {
        --header-height: 90px;
    }
}
@media (max-width: 768px) {
    :root {
        --header-height: 57px;
    }
}

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

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

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;
    line-height: 1.9;
}
html body {
    min-height: 100%;
    font-size: 1.6rem;
    color: var(--color-black);
    background-color: #ffffff;
    font-weight: 500;
    font-family: var(--font-jp);
}
@media (max-width: 768px) {
    html body {
        font-size: 1.4rem;
    }
}
html body main {
    margin-top: var(--header-height);
}

a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.2s ease-in, color 0.2s ease-in, background-color 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%, 1818px);
    margin: 0 auto;
    padding: 0 min(6%, 109px);
}
@media (max-width: 768px) {
    .inner {
        padding: 0 4%;
    }
}

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

.grecaptcha-badge {
    visibility: hidden;
}

@media (max-width: 768px) {
    .pc {
        display: none !important;
    }
}

.sp {
    display: none;
}
@media (max-width: 768px) {
    .sp {
        display: block;
    }
}

/* ------------------------------------- /
/   menu-trigger
/* ------------------------------------- */
.menu-trigger {
    display: none;
    width: var(--box-width);
    aspect-ratio: 1;
    background: #F5A202;
    border-radius: 50%;
    border: none;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    cursor: pointer;
    padding-block-end: 0;
    padding-block-start: 0;
    position: absolute;
    z-index: 100001;
    right: 30px;
    top: 25px;
    --box-width: 40px;
    --bar-between: 8px;
    --bar-width: 20px;
}
@media (max-width: 768px) {
    .menu-trigger {
        right: 20px;
        top: 11px;
        padding-block-end: 0;
        padding-block-start: 0;
        --box-width: 34px;
        --bar-between: 5px;
        --bar-width: 15px;
    }
}
.menu-trigger span {
    display: inline-block;
    width: var(--bar-width);
    height: 1px;
    background-color: #fff;
    position: absolute;
    left: calc(50% - var(--bar-width) / 2);
    transition-duration: 0.6s;
}
.menu-trigger span:nth-of-type(1) {
    top: calc(50% - var(--bar-between) / 2);
}
.menu-trigger span:nth-of-type(2) {
    top: calc(50% + var(--bar-between) / 2);
}
.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: #fff;
}
.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;
    }
}
@keyframes menu-open_01 {
    0% {
        top: calc(50% - var(--bar-between) / 2);
        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% - var(--bar-between) / 2);
        transform: rotate(0deg);
    }
}
@keyframes menu-open_03 {
    0% {
        width: var(--bar-width);
        left: calc(50% - var(--bar-width) / 2);
    }
    66.6666% {
        width: var(--bar-width);
        left: calc(50% - var(--bar-width) / 2);
    }
    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: var(--bar-width);
        left: calc(50% - var(--bar-width) / 2);
    }
    70% {
        width: var(--bar-width);
        left: calc(50% - var(--bar-width) / 2);
    }
    100% {
        width: var(--bar-width);
        left: calc(50% - var(--bar-width) / 2);
    }
}
@keyframes menu-open_02 {
    0% {
        top: calc(50% + var(--bar-between) / 2);
        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% + var(--bar-between) / 2);
        transform: rotate(0deg);
    }
}

/* ------------------------------------- /
/  header
/* ------------------------------------- */
header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    height: var(--header-height);
    padding: 0 80px 0 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-black);
    background: #fff;
    transition: opacity 0.5s;
}
@media (max-width: 1700px) {
    header {
        padding: 0 40px 0 35px;
        font-size: 1.6rem;
    }
}
@media (max-width: 1280px) {
    header {
        padding: 0 35px;
    }
}
@media (max-width: 768px) {
    header {
        padding: 0 20px;
    }
}
header::before {
    content: "";
    position: absolute;
    bottom: 0;
    height: 1px;
    left: 0;
    width: calc(100% - 80px);
    background: #fff;
}
@media (max-width: 768px) {
    header::before {
        left: 20px;
        width: calc(100% - 40px);
    }
}
header.hide {
    visibility: hidden;
    opacity: 0;
}
@media (max-width: 1280px) {
    header.hide {
        visibility: unset;
        opacity: unset;
    }
}
@media (max-width: 1700px) {
    header .header__logo {
        width: 320px;
    }
}
@media (max-width: 768px) {
    header .header__logo {
        width: 257px;
    }
}
header .header__menu {
    height: 100%;
    display: flex;
    align-items: center;
}
header .header__menu li {
    height: 100%;
    display: flex;
    align-items: center;
}
header .header__menu li > a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 0 20px;
}
@media (max-width: 1700px) {
    header .header__menu li > a {
        padding: 0 10px;
    }
}
header .header__menu li.has__sub__menu .sub__menu {
    display: none;
}
header .header__menu li.has__sub__menu:hover {
    color: #fff;
    background: var(--color-orange);
}
header .header__menu li.has__sub__menu:hover .sub__menu {
    display: block;
    position: absolute;
    bottom: 0;
    transform: translateY(calc(100% - 1px));
    left: 0;
    height: 220px;
    width: 100%;
    background: var(--color-orange);
}
header .header__menu li.has__sub__menu:hover .sub__menu .inner1200 {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
header .header__menu li.has__sub__menu:hover .sub__menu .inner1200 .sub__menu__ttl {
    font-size: 2.6rem;
    font-weight: 700;
}
header .header__menu li.has__sub__menu:hover .sub__menu .inner1200 .link__container {
    max-width: 600px;
    display: flex;
    flex-wrap: wrap;
    row-gap: 50px;
}
header .header__menu li.has__sub__menu:hover .sub__menu .inner1200 .link__container div {
    width: 33.3333333333%;
}
header .header__menu li.has__sub__menu:hover .sub__menu .inner1200 .link__container div a {
    position: relative;
    padding-right: 33px;
    width: -moz-fit-content;
    width: fit-content;
}
header .header__menu li.has__sub__menu:hover .sub__menu .inner1200 .link__container div a::before {
    content: "";
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    position: absolute;
    width: 8px;
    aspect-ratio: 8/13;
    background: url(../img/common/arrow_wh_right.svg) center/contain no-repeat;
}
header .header__menu li.has__sub__menu:hover a {
    opacity: unset;
}
@media (max-width: 1280px) {
    header .header__menu {
        display: none;
    }
}
header .header__menu .btn {
    width: 190px;
    background: var(--color-orange);
    font-size: 1.6rem;
    color: #fff;
    height: 56px;
    border-radius: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--color-orange);
}
header .header__menu .btn:hover {
    color: var(--color-orange);
    background: #fff;
}
@media (max-width: 1700px) {
    header .header__menu .btn {
        width: 130px;
        font-size: 1.5rem;
        height: 48px;
        border-radius: 24px;
    }
}

.nav {
    display: none;
}
@media (max-width: 1280px) {
    .nav {
        --nav-top-padding: 29px;
        display: block;
        font-weight: 500;
        width: min(100%, 400px);
        height: 100vh;
        background: #F4F5F6;
        overflow: auto;
        color: var(--color-black);
        position: fixed;
        top: 0;
        right: 0;
        transition-duration: 0.8s;
        transition-delay: 0.4s;
        transform: translateX(100%);
        z-index: 999;
        padding: var(--nav-top-padding) 20px 0;
    }
}
@media (max-width: 1280px) and (max-width: 768px) {
    .nav {
        --nav-top-padding: 15px;
    }
}
@media (max-width: 1280px) {
    .nav.active {
        transform: translateX(0);
        transition-delay: 0s;
    }
    .nav.active .wrapper {
        transition-delay: 0.8s;
        opacity: 1;
    }
    .nav .wrapper {
        opacity: 0;
        transition-duration: 0.4s;
    }
    .nav .wrapper .nav__logo {
        display: inline-block;
        width: 257px;
    }
    .nav .wrapper .nav__menu {
        display: flex;
        flex-direction: column;
        font-weight: 700;
    }
    .nav .wrapper .nav__menu > li {
        width: 100%;
        padding: 30px 0 20px;
        border-bottom: 1px solid #D8D8D8;
    }
    .nav .wrapper .nav__menu > li .sub__menu {
        font-size: 1.4rem;
        display: flex;
        flex-wrap: wrap;
        gap: 10px 20px;
    }
    .nav .wrapper .btn {
        margin: 0 auto;
        display: flex;
        justify-content: center;
        align-items: center;
        color: #fff;
        background: #F5A202;
        width: 220px;
        height: 50px;
        border-radius: 25px;
    }
    .nav .wrapper .address {
        font-size: 1.4rem;
    }
}

/* ------------------------------------- /
/  footer
/* ------------------------------------- */
footer {
    position: relative;
    z-index: 0;
}
footer::before {
    content: "";
    position: absolute;
    z-index: -2;
    background: #F8F8F8;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
footer::after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../img/top/business_bg.webp) center/cover no-repeat;
}
footer .inner {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}
@media (max-width: 1280px) {
    footer .inner {
        justify-content: center;
        flex-direction: column;
        align-items: flex-start;
        row-gap: 30px;
        width: 100%;
        padding: 0 35px;
    }
}
@media (max-width: 768px) {
    footer .inner {
        align-items: unset;
        padding: 0 20px;
    }
}
footer .inner .footer__left {
    line-height: 1.4;
}
@media (max-width: 1700px) {
    footer .inner .footer__left .footer__logo {
        width: 340px;
    }
}
@media (max-width: 1280px) {
    footer .inner .footer__left .footer__logo {
        width: 360px;
    }
}
@media (max-width: 768px) {
    footer .inner .footer__left .footer__logo {
        width: 257px;
    }
}
footer .inner .footer__left .company__name {
    font-size: 1.8rem;
    margin-top: 50px;
}
@media (max-width: 1280px) {
    footer .inner .footer__left .company__name {
        font-size: 1.6rem;
        margin-top: 30px;
    }
}
@media (max-width: 768px) {
    footer .inner .footer__left .company__name {
        margin-top: 20px;
    }
}
footer .inner .footer__right {
    display: flex;
    justify-content: flex-end;
    gap: 3.6vw;
}
@media (max-width: 1600px) {
    footer .inner .footer__right {
        gap: 2vw;
    }
}
@media (max-width: 1280px) {
    footer .inner .footer__right {
        flex-direction: column;
        align-items: flex-start;
        row-gap: 30px;
    }
}
footer .inner .footer__right .footer__menu .pc1280 {
    display: flex;
    font-size: 1.8rem;
    font-weight: 700;
    gap: 50px;
}
@media (max-width: 1700px) {
    footer .inner .footer__right .footer__menu .pc1280 {
        font-size: 1.7rem;
        gap: 15px;
    }
}
@media (max-width: 1280px) {
    footer .inner .footer__right .footer__menu .pc1280 {
        display: none;
    }
}
footer .inner .footer__right .footer__menu .sp1280 {
    display: none;
    font-size: 1.4rem;
}
@media (max-width: 1280px) {
    footer .inner .footer__right .footer__menu .sp1280 {
        display: flex;
        gap: 30px;
    }
}
@media (max-width: 768px) {
    footer .inner .footer__right .footer__menu .sp1280 {
        gap: 10px;
    }
}
footer .inner .footer__right .footer__menu .column {
    display: flex;
    flex-direction: column;
}
footer .inner .footer__right .footer__menu .column .privacy {
    width: 70px;
}
@media (max-width: 768px) {
    footer .inner .footer__right .footer__menu .column .privacy {
        width: 37px;
    }
}
footer .inner .footer__right .btn__copyright__container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    gap: 50px;
}
@media (max-width: 1280px) {
    footer .inner .footer__right .btn__copyright__container {
        align-items: center;
        margin: 0 auto;
    }
}
footer .inner .footer__right .btn__copyright__container .btn {
    width: 190px;
    background: var(--color-orange);
    color: #fff;
    height: 56px;
    border-radius: 27px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    border: 1px solid var(--color-orange);
}
footer .inner .footer__right .btn__copyright__container .btn:hover {
    color: var(--color-orange);
    background: #fff;
    opacity: unset;
}
@media (max-width: 768px) {
    footer .inner .footer__right .btn__copyright__container .btn {
        height: 50px;
        border-radius: 25px;
        width: 220px;
    }
}
footer .inner .footer__right .btn__copyright__container .copyright {
    white-space: nowrap;
}

/* ------------------------------------- /
/  共通ブロック
/* ------------------------------------- */
.lower__header .inner .h1__box {
    display: flex;
    align-items: baseline;
    gap: 17px;
    position: relative;
}
@media (max-width: 1280px) {
    .lower__header .inner .h1__box {
        gap: 14px;
    }
}
.lower__header .inner .h1__box::before {
    content: "";
    position: absolute;
    top: -15px;
    left: 0;
    width: 37px;
    aspect-ratio: 37/31;
    background: url(../img/common/h2.svg) center/contain no-repeat;
}
@media (max-width: 1280px) {
    .lower__header .inner .h1__box::before {
        width: 30px;
        top: -12px;
    }
}
.lower__header .inner .h1__box .h1__en {
    font-family: var(--font-lato);
    font-size: 10rem;
    font-weight: 500;
    line-height: 1.4;
}
@media (max-width: 1280px) {
    .lower__header .inner .h1__box .h1__en {
        font-size: 7rem;
    }
}
@media (max-width: 768px) {
    .lower__header .inner .h1__box .h1__en {
        font-size: 4.5rem;
    }
}
.lower__header .inner .h1__box h1 {
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1.4;
}
@media (max-width: 1280px) {
    .lower__header .inner .h1__box h1 {
        font-size: 2.2rem;
    }
}
@media (max-width: 768px) {
    .lower__header .inner .h1__box h1 {
        font-size: 1.8rem;
    }
}
.lower__header .inner .breadcrumb {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
    font-weight: 700;
}
@media (max-width: 768px) {
    .lower__header .inner .breadcrumb {
        gap: 6px;
    }
}
.lower__header .inner .breadcrumb li {
    display: flex;
    align-items: baseline;
    gap: 10px;
}
.lower__header .inner .breadcrumb li:not(:last-child)::after {
    content: "＞";
    display: block;
}
.lower__header .inner .breadcrumb .this {
    color: #B2B2B2;
}

.pagination .inner .pagination-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    font-size: 2.5rem;
    font-weight: 600;
}
@media (max-width: 768px) {
    .pagination .inner .pagination-list {
        gap: 15px;
        font-size: 2rem;
    }
}
.pagination .inner .pagination-list .next a {
    position: relative;
    display: block;
    width: 8px;
    aspect-ratio: 8/14;
    background: url(../img/common/next.svg) center/contain no-repeat;
}
.pagination .inner .pagination-list .previous a {
    position: relative;
    display: block;
    width: 8px;
    aspect-ratio: 8/14;
    background: url(../img/common/previous.svg) center/contain no-repeat;
}
.pagination .inner .pagination-list .last a {
    position: relative;
    display: block;
    width: 19px;
    aspect-ratio: 19/14;
    background: url(../img/common/last.svg) center/contain no-repeat;
}
.pagination .inner .pagination-list .first a {
    position: relative;
    display: block;
    width: 19px;
    aspect-ratio: 19/14;
    background: url(../img/common/first.svg) center/contain no-repeat;
}
.pagination .inner .pagination-list .current {
    height: 56px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: #F5A200;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}
@media (max-width: 768px) {
    .pagination .inner .pagination-list .current {
        height: 45px;
    }
}
.pagination .inner .pagination-list .num a {
    height: 56px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: #F4F5F6;
    display: flex;
    justify-content: center;
    align-items: center;
}
@media (max-width: 768px) {
    .pagination .inner .pagination-list .num a {
        height: 45px;
    }
}

.tag__container .inner ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 1.8rem;
    border-radius: 2px;
}
@media (max-width: 768px) {
    .tag__container .inner ul {
        gap: 5px;
        font-size: 1.6rem;
    }
}
.tag__container .inner ul li {
    background: #F4F5F6;
    border-radius: 2px;
    height: 28px;
    padding: 0 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}
@media (max-width: 768px) {
    .tag__container .inner ul li {
        height: 24px;
    }
}
.tag__container .inner ul li.current {
    color: #fff;
    background: #F5A200;
    pointer-events: none;
}

.about__container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}
@media (max-width: 1280px) {
    .about__container {
        gap: 20px;
    }
}
@media (max-width: 768px) {
    .about__container {
        gap: 10px;
    }
}
.about__container a {
    width: calc((100% - 60px) / 3);
    border: 1px solid var(--color-orange);
    border-radius: 8px;
    padding: 40px;
}
@media (max-width: 1280px) {
    .about__container a {
        width: calc((100% - 20px) / 2);
        padding: 25px 15px;
    }
}
@media (max-width: 768px) {
    .about__container a {
        width: calc((100% - 10px) / 2);
        padding: 15px 10px;
    }
}
.about__container a h2 {
    font-size: 2.6rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
@media (max-width: 1280px) {
    .about__container a h2 {
        font-size: 2rem;
    }
}
@media (max-width: 768px) {
    .about__container a h2 {
        font-size: 1.5rem;
    }
}
.about__container a h2::after {
    content: "";
    display: block;
    width: 45px;
    aspect-ratio: 1;
    background: url(../img/common/arrow_circle.svg) center/contain no-repeat;
}
@media (max-width: 1280px) {
    .about__container a h2::after {
        width: 36px;
    }
}
@media (max-width: 768px) {
    .about__container a h2::after {
        width: 24px;
    }
}

.bottom__about h2 {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.4;
}
@media (max-width: 1280px) {
    .bottom__about h2 {
        font-size: 2.4rem;
    }
}
@media (max-width: 768px) {
    .bottom__about h2 {
        font-size: 1.8rem;
    }
}

/* ------------------------------------- /
/  トップページ
/* ------------------------------------- */
.page-template-front-page header {
    color: var(--color-black);
    background: #fff;
}
.page-template-front-page header.change-color {
    color: #fff;
    background: transparent;
}
.page-template-front-page main {
    margin-top: unset;
}
.page-template-front-page .h2__box {
    display: flex;
    align-items: baseline;
    gap: 14px;
    position: relative;
}
.page-template-front-page .h2__box::before {
    content: "";
    position: absolute;
    top: -15px;
    left: 0;
    width: 37px;
    aspect-ratio: 37/31;
    background: url(../img/common/h2.svg) center/contain no-repeat;
}
@media (max-width: 1280px) {
    .page-template-front-page .h2__box::before {
        top: -12px;
        width: 30px;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .h2__box::before {
        top: -10px;
        width: 22px;
    }
}
.page-template-front-page .h2__box .h2__en {
    font-family: var(--font-lato);
    font-size: 10rem;
    font-weight: 500;
    line-height: 1.4;
}
@media (max-width: 1280px) {
    .page-template-front-page .h2__box .h2__en {
        font-size: 6rem;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .h2__box .h2__en {
        font-size: 4.2rem;
    }
}
.page-template-front-page .h2__box h2 {
    font-size: 1.8rem;
    font-weight: 700;
}
@media (max-width: 1280px) {
    .page-template-front-page .h2__box h2 {
        font-size: 1.6rem;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .h2__box h2 {
        font-size: 1.4rem;
    }
}
.page-template-front-page .h3__circle {
    position: relative;
    padding-left: 38px;
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
}
@media (max-width: 1280px) {
    .page-template-front-page .h3__circle {
        padding-left: 30px;
        font-size: 2.8rem;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .h3__circle {
        font-size: 2rem;
        padding-left: 24px;
    }
}
.page-template-front-page .h3__circle::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 18px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: var(--color-orange);
}
@media (max-width: 1280px) {
    .page-template-front-page .h3__circle::before {
        width: 14px;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .h3__circle::before {
        width: 12px;
    }
}
.page-template-front-page .abs__news {
    position: absolute;
    left: 0;
    bottom: 50px;
    background: #fff;
    width: 650px;
    height: 230px;
    z-index: 6;
    border-radius: 0 8px 8px 0;
    padding: 25px 25px 25px 8vw;
}
@media (max-width: 1280px) {
    .page-template-front-page .abs__news {
        bottom: 30px;
        padding: 15px 15px 15px 6vw;
        height: 210px;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .abs__news {
        position: unset;
        width: unset;
        height: unset;
        border-radius: 0;
    }
}
.page-template-front-page .abs__news .abs__news__header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}
.page-template-front-page .abs__news .abs__news__header .ttl {
    display: flex;
    align-items: baseline;
    gap: 8px;
}
.page-template-front-page .abs__news .abs__news__header .ttl .h2__en {
    font-size: 2.4rem;
    font-family: var(--font-lato);
}
@media (max-width: 768px) {
    .page-template-front-page .abs__news .abs__news__header .ttl .h2__en {
        font-size: 2rem;
    }
}
.page-template-front-page .abs__news .abs__news__header a {
    text-decoration: underline;
}
.page-template-front-page .abs__news .wrapper {
    position: relative;
    height: 120px;
    overflow-y: auto;
}
@media (max-width: 768px) {
    .page-template-front-page .abs__news .wrapper {
        border-bottom: 1px solid #F4F5F6;
    }
}
.page-template-front-page .abs__news .wrapper .swiper-pagination-bullets {
    position: absolute;
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: -moz-fit-content;
    width: fit-content;
    top: 50%;
    left: 0;
    transform: translate(calc(-100% - 8px), -50%);
    gap: 4px;
}
.page-template-front-page .abs__news .wrapper .swiper-pagination-bullets .swiper-pagination-bullet {
    width: 5px;
    height: 5px;
    background: #D0D0D0;
    margin: 0 !important;
}
.page-template-front-page .abs__news .wrapper .swiper-pagination-bullets .swiper-pagination-bullet-active {
    background: var(--color-orange);
}
.page-template-front-page .abs__news .wrapper .news__list {
    position: relative;
    height: 120px;
    overflow: auto;
}
@media (max-width: 768px) {
    .page-template-front-page .abs__news .wrapper .news__list {
        height: 100px;
    }
}
.page-template-front-page .abs__news .wrapper .news__list > div {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.page-template-front-page .abs__news .wrapper .news__list .wiper-slide a {
    display: flex;
    gap: 16px;
}
@media (max-width: 768px) {
    .page-template-front-page .abs__news .wrapper .news__list .wiper-slide a {
        gap: 8px;
    }
}
.page-template-front-page .abs__news .wrapper .news__list .wiper-slide a .thumbnail {
    width: 215px;
    aspect-ratio: 215/120;
    border-radius: 4px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
}
@media (max-width: 768px) {
    .page-template-front-page .abs__news .wrapper .news__list .wiper-slide a .thumbnail {
        width: 160px;
    }
}
@media (max-width: 500px) {
    .page-template-front-page .abs__news .wrapper .news__list .wiper-slide a .thumbnail {
        width: 115px;
    }
}
.page-template-front-page .abs__news .wrapper .news__list .wiper-slide a .thumbnail img {
    border-radius: 4px;
    -o-object-fit: contain;
       object-fit: contain;
    -o-object-position: center;
       object-position: center;
    height: 100%;
}
.page-template-front-page .abs__news .wrapper .news__list .wiper-slide a .detail {
    flex: 1 1;
}
@media (max-width: 500px) {
    .page-template-front-page .abs__news .wrapper .news__list .wiper-slide a .detail {
        font-size: 1.4rem;
    }
}
.page-template-front-page .abs__news .wrapper .news__list .wiper-slide a .detail .day__tags {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 8px;
}
@media (max-width: 768px) {
    .page-template-front-page .abs__news .wrapper .news__list .wiper-slide a .detail .day__tags {
        gap: 4px;
    }
}
.page-template-front-page .abs__news .wrapper .news__list .wiper-slide a .detail .day__tags .tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}
.page-template-front-page .abs__news .wrapper .news__list .wiper-slide a .detail .day__tags .tags span {
    border: 1px solid #A8D828;
    border-radius: 2px;
    padding: 0 8px;
    height: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.page-template-front-page .abs__news .wrapper .news__list .wiper-slide a .detail .day__tags .tags span.press {
    border: 1px solid #F4962D;
}
@media (max-width: 768px) {
    .page-template-front-page .abs__news .wrapper .news__list .wiper-slide a .detail .day__tags .tags span {
        height: 18px;
        padding: 0 5px;
        font-size: 1.5rem;
    }
}
.page-template-front-page .abs__news .wrapper .news__list .wiper-slide a .detail .day__tags .date {
    font-size: 1.4rem;
    color: #D0D0D0;
}
@media (max-width: 768px) {
    .page-template-front-page .abs__news .wrapper .news__list .wiper-slide a .detail .day__tags .date {
        font-size: 1.3rem;
    }
}
.page-template-front-page .abs__news .wrapper .news__list .wiper-slide a .detail .ttl {
    margin-top: 10px;
    font-weight: 700;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-height: 1.2;
}
@media (max-width: 768px) {
    .page-template-front-page .abs__news .wrapper .news__list .wiper-slide a .detail .ttl {
        margin-top: 5px;
    }
}
.page-template-front-page .mv {
    position: relative;
}
.page-template-front-page .mv > .swiper .swiper-wrapper .swiper-slide img {
    min-height: 800px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
}
@media (max-width: 1280px) {
    .page-template-front-page .mv > .swiper .swiper-wrapper .swiper-slide img {
        min-height: 600px;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .mv > .swiper .swiper-wrapper .swiper-slide img {
        min-height: 500px;
    }
}
.page-template-front-page .mv .pagination__container {
    position: absolute;
    top: 50%;
    right: 80px;
    transform: translate(-50%, 0);
    z-index: 2;
}
@media (max-width: 1600px) {
    .page-template-front-page .mv .pagination__container {
        right: 40px;
    }
}
@media (max-width: 1280px) {
    .page-template-front-page .mv .pagination__container {
        right: 30px;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .mv .pagination__container {
        right: unset;
        top: unset;
        bottom: 10px;
        left: 50%;
    }
}
.page-template-front-page .mv .pagination__container .swiper-pagination-bullets {
    display: flex;
    flex-direction: column;
    gap: 11px;
}
@media (max-width: 1280px) {
    .page-template-front-page .mv .pagination__container .swiper-pagination-bullets {
        gap: 6px;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .mv .pagination__container .swiper-pagination-bullets {
        flex-direction: row;
    }
}
.page-template-front-page .mv .pagination__container .swiper-pagination-bullets .swiper-pagination-bullet {
    background: #fff;
    width: 13px;
    height: 13px;
    border-radius: 7px;
    margin: unset;
    opacity: unset;
    transition: 0.3s;
}
@media (max-width: 1280px) {
    .page-template-front-page .mv .pagination__container .swiper-pagination-bullets .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
        border-radius: 5px;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .mv .pagination__container .swiper-pagination-bullets .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
        border-radius: 4px;
    }
}
.page-template-front-page .mv .pagination__container .swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--color-orange);
    height: 36px;
}
@media (max-width: 1280px) {
    .page-template-front-page .mv .pagination__container .swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
        height: 25px;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .mv .pagination__container .swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
        height: 8px;
        width: 21px;
    }
}
.page-template-front-page .mv .scroll__down {
    position: absolute;
    bottom: 60px;
    right: 80px;
    z-index: 6;
    color: #fff;
    writing-mode: vertical-rl;
    font-family: var(--font-lato);
    padding-bottom: 40px;
    line-height: 1;
}
@media (max-width: 1600px) {
    .page-template-front-page .mv .scroll__down {
        right: 40px;
    }
}
@media (max-width: 1280px) {
    .page-template-front-page .mv .scroll__down {
        right: 30px;
        bottom: 40px;
        font-size: 1.5rem;
        padding-bottom: 30px;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .mv .scroll__down {
        writing-mode: unset;
        padding-bottom: 0;
        padding-right: 15px;
        bottom: 10px;
        font-size: 1.2rem;
    }
}
.page-template-front-page .mv .scroll__down::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 25px;
    aspect-ratio: 1;
    background: url(../img/top/scroll_down.svg) center/contain no-repeat;
}
@media (max-width: 1280px) {
    .page-template-front-page .mv .scroll__down::before {
        width: 20px;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .mv .scroll__down::before {
        left: unset;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 11px;
        height: 11px;
    }
}
.page-template-front-page .mv .abs {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    padding-top: var(--header-height);
    z-index: 5;
}
@media (max-width: 768px) {
    .page-template-front-page .mv .abs .inner {
        height: 100%;
        display: flex;
        flex-direction: column;
        padding-bottom: 30px;
    }
}
.page-template-front-page .mv .abs .inner .or {
    color: var(--color-orange);
}
.page-template-front-page .mv .abs .inner h1 {
    margin-top: 100px;
    font-size: 7.2rem;
    font-weight: 700;
    line-height: 1.3;
}
@media (max-width: 1280px) {
    .page-template-front-page .mv .abs .inner h1 {
        font-size: 4rem;
        margin-top: 25px;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .mv .abs .inner h1 {
        font-size: 2.4rem;
    }
}
.page-template-front-page .mv .abs .inner .h1__bottom {
    font-weight: 700;
    line-height: 2;
}
.page-template-front-page .about .inner {
    display: flex;
    line-height: 1.6;
}
@media (max-width: 1280px) {
    .page-template-front-page .about .inner {
        flex-direction: column;
    }
}
.page-template-front-page .about .inner .left, .page-template-front-page .about .inner .right {
    width: 50%;
}
@media (max-width: 1280px) {
    .page-template-front-page .about .inner .left, .page-template-front-page .about .inner .right {
        width: 100%;
    }
}
.page-template-front-page .about .inner .left {
    padding-right: 5%;
}
.page-template-front-page .about .inner .btn {
    display: flex;
    align-items: center;
    background: var(--color-black);
    color: #fff;
    width: 340px;
    padding: 0 32px;
    height: 77px;
    border-radius: 39px;
    font-size: 2rem;
    font-weight: 700;
    position: relative;
    border: 1px solid var(--color-black);
}
.page-template-front-page .about .inner .btn:hover {
    background: #fff;
    color: var(--color-black);
    opacity: unset;
}
.page-template-front-page .about .inner .btn:hover::before {
    background: var(--color-black);
    -webkit-mask: url(../img/common/arrow_wh_right.svg) center/contain no-repeat;
            mask: url(../img/common/arrow_wh_right.svg) center/contain no-repeat;
}
@media (max-width: 1280px) {
    .page-template-front-page .about .inner .btn {
        width: 240px;
        padding: 0 20px;
        height: 60px;
        border-radius: 30px;
        font-size: 1.8rem;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .about .inner .btn {
        width: 200px;
        padding: 0 15px;
        height: 50px;
        border-radius: 50px;
        font-size: 1.6rem;
    }
}
.page-template-front-page .about .inner .btn::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 32px;
    transform: translateY(-50%);
    width: 8px;
    aspect-ratio: 8/14;
    background: url(../img/common/arrow_wh_right.svg) center/contain no-repeat;
}
@media (max-width: 1280px) {
    .page-template-front-page .about .inner .btn::before {
        right: 20px;
        width: 7px;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .about .inner .btn::before {
        right: 15px;
    }
}
.page-template-front-page .business {
    position: relative;
    z-index: 0;
    line-height: 2.5;
}
.page-template-front-page .business::before {
    content: "";
    position: absolute;
    z-index: -2;
    background: #F4F5F6;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.page-template-front-page .business::after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../img/top/business_bg.webp) center/cover no-repeat;
}
.page-template-front-page .business .inner .link__container {
    display: flex;
    gap: 40px;
}
@media (max-width: 1280px) {
    .page-template-front-page .business .inner .link__container {
        gap: 20px;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .business .inner .link__container {
        flex-direction: column;
    }
}
.page-template-front-page .business .inner .link__container a {
    width: calc((100% - 40px) / 2);
    border-radius: 16px;
    position: relative;
}
@media (max-width: 1280px) {
    .page-template-front-page .business .inner .link__container a {
        width: calc((100% - 20px) / 2);
    }
}
@media (max-width: 768px) {
    .page-template-front-page .business .inner .link__container a {
        width: 100%;
        border-radius: 8px;
    }
}
.page-template-front-page .business .inner .link__container a img {
    border-radius: inherit;
}
.page-template-front-page .business .inner .link__container a .txt {
    position: absolute;
    color: #fff;
    font-size: 3.2rem;
    font-weight: 700;
    left: 60px;
    bottom: 50px;
    line-height: 1;
}
@media (max-width: 1280px) {
    .page-template-front-page .business .inner .link__container a .txt {
        font-size: 2rem;
        left: 20px;
        bottom: 40px;
    }
}
.page-template-front-page .business .inner .link__container a::before {
    content: "";
    position: absolute;
    right: 50px;
    bottom: 40px;
    width: 56px;
    aspect-ratio: 1;
    background: url(../img/top/link_circle.svg) center/contain no-repeat;
}
@media (max-width: 1280px) {
    .page-template-front-page .business .inner .link__container a::before {
        right: 20px;
        bottom: 30px;
        width: 45px;
    }
}
.page-template-front-page .news .inner .btn {
    width: 340px;
    height: 77px;
    border-radius: 39px;
    background: var(--color-black);
    display: flex;
    align-items: center;
    padding: 0 32px;
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    position: relative;
    border: 1px solid var(--color-black);
}
.page-template-front-page .news .inner .btn:hover {
    color: var(--color-black);
    background: #fff;
    opacity: unset;
}
.page-template-front-page .news .inner .btn:hover::before {
    background: var(--color-black);
    -webkit-mask: url(../img/common/arrow_wh_right.svg) center/contain no-repeat;
            mask: url(../img/common/arrow_wh_right.svg) center/contain no-repeat;
}
.page-template-front-page .news .inner .btn.sp {
    display: none;
}
@media (max-width: 768px) {
    .page-template-front-page .news .inner .btn.sp {
        display: flex !important;
        margin: 0 auto;
    }
}
@media (max-width: 1280px) {
    .page-template-front-page .news .inner .btn {
        width: 260px;
        height: 60px;
        border-radius: 30px;
        padding: 0 25px;
        font-size: 1.8rem;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .news .inner .btn {
        width: 240px;
        height: 50px;
        border-radius: 25px;
        padding: 0 20px;
        font-size: 1.6rem;
    }
}
.page-template-front-page .news .inner .btn::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 32px;
    width: 8px;
    aspect-ratio: 8/14;
    background: url(../img/common/arrow_wh_right.svg) center/contain no-repeat;
}
@media (max-width: 1280px) {
    .page-template-front-page .news .inner .btn::before {
        right: 25px;
        width: 7px;
    }
}
.page-template-front-page .news .inner .news__upper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
@media (max-width: 768px) {
    .page-template-front-page .news .inner .news__upper {
        flex-direction: column;
        align-items: flex-start;
    }
}
.page-template-front-page .news .inner .wiper-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
}
@media (max-width: 1280px) {
    .page-template-front-page .news .inner .wiper-wrapper {
        gap: 20px;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .news .inner .wiper-wrapper {
        flex-direction: column;
    }
}
.page-template-front-page .news .inner .wiper-wrapper .post__wrapper a {
    display: flex;
    align-items: baseline;
    gap: 20px;
}
@media (max-width: 768px) {
    .page-template-front-page .news .inner .wiper-wrapper .post__wrapper a {
        flex-direction: column;
        gap: 5px;
    }
}
.page-template-front-page .news .inner .wiper-wrapper .post__wrapper .thumbnail {
    padding: 0 5px;
}
.page-template-front-page .news .inner .wiper-wrapper .post__wrapper .thumbnail img {
    aspect-ratio: 500/280;
    -o-object-fit: contain;
       object-fit: contain;
    -o-object-position: center;
       object-position: center;
    border-radius: 8px;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.2509803922);
}
.page-template-front-page .news .inner .wiper-wrapper .post__wrapper .day__tags {
    display: flex;
    align-items: center;
    gap: 8px;
}
.page-template-front-page .news .inner .wiper-wrapper .post__wrapper .day__tags .tags span {
    font-size: 1.4rem;
    font-weight: 700;
    border: 1px solid #A8D828;
    border-radius: 2px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 22px;
    padding: 0 10px;
}
.page-template-front-page .news .inner .wiper-wrapper .post__wrapper .day__tags .tags span.column {
    border: 1px solid #4686ED;
}
.page-template-front-page .news .inner .wiper-wrapper .post__wrapper .day__tags .tags span.press {
    border: 1px solid #F4962D;
}
.page-template-front-page .news .inner .wiper-wrapper .post__wrapper .day__tags .day {
    font-size: 1.4rem;
    color: #D0D0D0;
}
.page-template-front-page .news .inner .wiper-wrapper .post__wrapper .ttl {
    font-weight: 700;
    line-height: 2;
    flex: 1 1;
}
.page-template-front-page .news .inner .wh__box {
    max-width: 1200px;
    margin: 0 auto;
    background: #fff;
    border-radius: 10px;
    padding: 60px 90px;
    display: flex;
    justify-content: space-between;
    border: 2px solid var(--color-orange);
}
@media (max-width: 1280px) {
    .page-template-front-page .news .inner .wh__box {
        padding: 30px 20px;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .news .inner .wh__box {
        padding: 20px;
        flex-direction: column;
        row-gap: 20px;
        align-items: center;
    }
}
.page-template-front-page .news .inner .wh__box .txt {
    color: #F4962D;
    font-size: 2.2rem;
    line-height: 1.8;
}
@media (max-width: 1280px) {
    .page-template-front-page .news .inner .wh__box .txt {
        font-size: 1.8rem;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .news .inner .wh__box .txt {
        font-size: 1.6rem;
    }
}
.page-template-front-page .news .inner .wh__box .btn {
    width: 340px;
    height: 77px;
    border-radius: 39px;
    background: #F4962D;
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    padding: 0 32px;
    position: relative;
    display: flex;
    align-items: center;
    border: 1px solid var(--color-orange);
}
.page-template-front-page .news .inner .wh__box .btn:hover {
    background: #fff;
    color: #F4962D;
    opacity: unset;
}
.page-template-front-page .news .inner .wh__box .btn:hover::before {
    background: #F4962D;
    -webkit-mask: url(../img/common/arrow_wh_right.svg) center/contain no-repeat;
            mask: url(../img/common/arrow_wh_right.svg) center/contain no-repeat;
}
@media (max-width: 1280px) {
    .page-template-front-page .news .inner .wh__box .btn {
        width: 260px;
        height: 60px;
        border-radius: 30px;
        font-size: 1.8rem;
        padding: 0 25px;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .news .inner .wh__box .btn {
        width: 240px;
        height: 50px;
        border-radius: 25px;
        font-size: 1.6rem;
        padding: 0 20px;
    }
}
.page-template-front-page .news .inner .wh__box .btn::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 32px;
    transform: translateY(-50%);
    width: 8px;
    aspect-ratio: 8/14;
    background: url(../img/common/arrow_wh_right.svg) center/contain no-repeat;
}
@media (max-width: 1280px) {
    .page-template-front-page .news .inner .wh__box .btn::before {
        right: 25px;
        width: 7px;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .news .inner .wh__box .btn::before {
        right: 20px;
        width: 6px;
    }
}

/* ------------------------------------- /
/  お知らせ一覧ページ
/* ------------------------------------- */
.page-template-home .post__list .inner .list__wrapper,
body.tag .post__list .inner .list__wrapper,
body.archive .post__list .inner .list__wrapper {
    display: flex;
    flex-direction: column;
    gap: 60px;
}
@media (max-width: 768px) {
    .page-template-home .post__list .inner .list__wrapper,
    body.tag .post__list .inner .list__wrapper,
    body.archive .post__list .inner .list__wrapper {
        gap: 30px;
    }
}
.page-template-home .post__list .inner .list__wrapper .post__wrapper a,
body.tag .post__list .inner .list__wrapper .post__wrapper a,
body.archive .post__list .inner .list__wrapper .post__wrapper a {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
@media (max-width: 768px) {
    .page-template-home .post__list .inner .list__wrapper .post__wrapper a,
    body.tag .post__list .inner .list__wrapper .post__wrapper a,
    body.archive .post__list .inner .list__wrapper .post__wrapper a {
        flex-direction: column;
    }
}
.page-template-home .post__list .inner .list__wrapper .post__wrapper .thumbnail img,
body.tag .post__list .inner .list__wrapper .post__wrapper .thumbnail img,
body.archive .post__list .inner .list__wrapper .post__wrapper .thumbnail img {
    border-radius: 8px;
    aspect-ratio: 500/280;
    -o-object-fit: contain;
       object-fit: contain;
    -o-object-position: center;
       object-position: center;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.2509803922);
}
.page-template-home .post__list .inner .list__wrapper .post__wrapper .day__tags,
body.tag .post__list .inner .list__wrapper .post__wrapper .day__tags,
body.archive .post__list .inner .list__wrapper .post__wrapper .day__tags {
    display: flex;
    align-items: center;
    gap: 11px;
}
@media (max-width: 768px) {
    .page-template-home .post__list .inner .list__wrapper .post__wrapper .day__tags,
    body.tag .post__list .inner .list__wrapper .post__wrapper .day__tags,
    body.archive .post__list .inner .list__wrapper .post__wrapper .day__tags {
        gap: 7px;
    }
}
.page-template-home .post__list .inner .list__wrapper .post__wrapper .day__tags .tags,
body.tag .post__list .inner .list__wrapper .post__wrapper .day__tags .tags,
body.archive .post__list .inner .list__wrapper .post__wrapper .day__tags .tags {
    display: flex;
}
.page-template-home .post__list .inner .list__wrapper .post__wrapper .day__tags .tags span,
body.tag .post__list .inner .list__wrapper .post__wrapper .day__tags .tags span,
body.archive .post__list .inner .list__wrapper .post__wrapper .day__tags .tags span {
    height: 22px;
    border-radius: 2px;
    padding: 0 10px;
    border: 1px solid #A8D828;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.4rem;
    font-weight: 700;
}
.page-template-home .post__list .inner .list__wrapper .post__wrapper .day__tags .tags span.press,
body.tag .post__list .inner .list__wrapper .post__wrapper .day__tags .tags span.press,
body.archive .post__list .inner .list__wrapper .post__wrapper .day__tags .tags span.press {
    border: 1px solid #F4962D;
}
.page-template-home .post__list .inner .list__wrapper .post__wrapper .day__tags .tags span.column,
body.tag .post__list .inner .list__wrapper .post__wrapper .day__tags .tags span.column,
body.archive .post__list .inner .list__wrapper .post__wrapper .day__tags .tags span.column {
    border: 1px solid #4686ED;
}
.page-template-home .post__list .inner .list__wrapper .post__wrapper .day__tags .day,
body.tag .post__list .inner .list__wrapper .post__wrapper .day__tags .day,
body.archive .post__list .inner .list__wrapper .post__wrapper .day__tags .day {
    color: #acacac;
    font-size: 1.4rem;
}
.page-template-home .post__list .inner .list__wrapper .post__wrapper .ttl,
body.tag .post__list .inner .list__wrapper .post__wrapper .ttl,
body.archive .post__list .inner .list__wrapper .post__wrapper .ttl {
    line-height: 2;
    font-weight: 700;
    flex: 1 1;
}

/* ------------------------------------- /
/  お知らせ単体ページ
/* ------------------------------------- */
.single-post .single__header .inner .breadcrumb {
    display: flex;
    gap: 5px;
    font-weight: 700;
    white-space: nowrap;
    overflow-x: auto;
    max-width: 100%;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
}
@media (max-width: 768px) {
    .single-post .single__header .inner .breadcrumb {
        justify-content: flex-start;
    }
}
.single-post .single__header .inner .breadcrumb .this {
    color: #B2B2B2;
}
.single-post .single__header .inner .breadcrumb li:not(:first-child) {
    display: flex;
    align-items: center;
    gap: 10px;
}
.single-post .single__header .inner .breadcrumb li:not(:first-child)::before {
    content: "＞";
    display: block;
}
.single-post .post .post__header {
    display: flex;
    align-items: center;
    gap: 25px;
}
@media (max-width: 768px) {
    .single-post .post .post__header {
        gap: 15px;
    }
}
.single-post .post .post__header .date {
    font-size: 2.4rem;
    color: #D0D0D0;
    font-family: var(--font-lato);
    line-height: 1.4;
}
@media (max-width: 768px) {
    .single-post .post .post__header .date {
        font-size: 1.8rem;
    }
}
.single-post .post .post__header .tags {
    display: flex;
    gap: 10px;
    font-size: 1.8rem;
}
@media (max-width: 768px) {
    .single-post .post .post__header .tags {
        font-size: 1.6rem;
    }
}
.single-post .post .post__header .tags span {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 28px;
    border-radius: 2px;
    border: 1px solid #A8D828;
    padding: 0 10px;
}
@media (max-width: 768px) {
    .single-post .post .post__header .tags span {
        height: 24px;
        padding: 0 5px;
    }
}
.single-post .post .post__header .tags span.press {
    border: 1px solid #F4962D;
}
.single-post .post .post__header .tags span.column {
    border: 1px solid #4686ED;
}
.single-post .post h1 {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.6;
    border-bottom: 3px solid #F4962D;
}
@media (max-width: 1280px) {
    .single-post .post h1 {
        font-size: 3rem;
    }
}
@media (max-width: 768px) {
    .single-post .post h1 {
        font-size: 2rem;
    }
}
.single-post .post .post__detail h2 {
    background: #FFF4DE;
    font-size: 2.4rem;
    font-weight: 700;
    padding: 20px 20px 20px 60px;
    position: relative;
    margin-top: 60px;
    margin-bottom: 40px;
}
@media (max-width: 1280px) {
    .single-post .post .post__detail h2 {
        font-size: 2rem;
        margin-top: 50px;
        margin-bottom: 30px;
    }
}
@media (max-width: 768px) {
    .single-post .post .post__detail h2 {
        font-size: 1.8rem;
        margin-top: 30px;
        margin-bottom: 15px;
        padding: 10px 10px 10px 30px;
    }
}
.single-post .post .post__detail h2::before {
    content: "";
    position: absolute;
    width: 25px;
    aspect-ratio: 25/21;
    top: 50%;
    transform: translateY(-50%);
    left: 20px;
    background: url(../img/common/h2.svg) center/contain no-repeat;
}
@media (max-width: 768px) {
    .single-post .post .post__detail h2::before {
        width: 20px;
        left: 10px;
    }
}
.single-post .post .post__detail p {
    margin: 20px 0;
}
@media (max-width: 768px) {
    .single-post .post .post__detail p {
        margin: 10px 0;
    }
}
.single-post .post .pagination .btn__return {
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--color-black);
    color: #fff;
    width: 340px;
    height: 77px;
    border-radius: 39px;
    font-size: 2rem;
    font-weight: 700;
    position: relative;
}
@media (max-width: 1280px) {
    .single-post .post .pagination .btn__return {
        width: 280px;
        height: 70px;
        border-radius: 35px;
        font-size: 1.8rem;
    }
}
@media (max-width: 768px) {
    .single-post .post .pagination .btn__return {
        width: 220px;
        height: 60px;
        border-radius: 30px;
        font-size: 1.6rem;
    }
}
.single-post .post .pagination .btn__return::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 40px;
    width: 8px;
    aspect-ratio: 8/14;
    background: url(../img/common/arrow_wh_left.svg) center/contain no-repeat;
}
@media (max-width: 768px) {
    .single-post .post .pagination .btn__return::before {
        left: 20px;
        width: 7px;
    }
}
@media (max-width: 768px) {
    .single-post .post .pagination .btn__return.pc {
        display: none;
    }
}
.single-post .post .pagination .btn__return.sp {
    display: none;
}
@media (max-width: 768px) {
    .single-post .post .pagination .btn__return.sp {
        display: flex;
        margin: 0 auto;
    }
}
.single-post .post .pagination .wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
}
.single-post .post .pagination .wrapper .next {
    padding-right: 24px;
    position: relative;
}
@media (max-width: 768px) {
    .single-post .post .pagination .wrapper .next {
        padding-right: 18px;
    }
}
.single-post .post .pagination .wrapper .next::before {
    position: absolute;
    content: "";
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    aspect-ratio: 8/14;
    background: url(../img/common/next.svg) center/contain no-repeat;
}
@media (max-width: 768px) {
    .single-post .post .pagination .wrapper .next::before {
        width: 7px;
    }
}
.single-post .post .pagination .wrapper .previous {
    padding-left: 24px;
    position: relative;
}
@media (max-width: 768px) {
    .single-post .post .pagination .wrapper .previous {
        padding-left: 18px;
    }
}
.single-post .post .pagination .wrapper .previous::before {
    position: absolute;
    content: "";
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    aspect-ratio: 8/14;
    background: url(../img/common/previous.svg) center/contain no-repeat;
}
@media (max-width: 768px) {
    .single-post .post .pagination .wrapper .previous::before {
        width: 7px;
    }
}

/* ------------------------------------- /
/  プライバシーポリシー
/* ------------------------------------- */
.page-template-page-privacy .contents {
    line-height: 1.8;
}
.page-template-page-privacy .contents h3 {
    font-size: 3.2rem;
    font-weight: 700;
    padding-left: 38px;
    position: relative;
}
@media (max-width: 1280px) {
    .page-template-page-privacy .contents h3 {
        font-size: 2.4rem;
        padding-left: 30px;
    }
}
@media (max-width: 768px) {
    .page-template-page-privacy .contents h3 {
        font-size: 1.8rem;
        padding-left: 20px;
    }
}
.page-template-page-privacy .contents h3::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 18px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: var(--color-orange);
}
@media (max-width: 1280px) {
    .page-template-page-privacy .contents h3::before {
        width: 14px;
    }
}
@media (max-width: 768px) {
    .page-template-page-privacy .contents h3::before {
        width: 10px;
    }
}
.page-template-page-privacy .contents h2 {
    font-size: 4rem;
    font-weight: 700;
    border-bottom: 1px solid #D8D8D8;
}
@media (max-width: 1280px) {
    .page-template-page-privacy .contents h2 {
        font-size: 3.2rem;
    }
}
@media (max-width: 768px) {
    .page-template-page-privacy .contents h2 {
        font-size: 2.4rem;
    }
}
.page-template-page-privacy .contents h4 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-orange);
}
@media (max-width: 1280px) {
    .page-template-page-privacy .contents h4 {
        font-size: 1.8rem;
    }
}
@media (max-width: 768px) {
    .page-template-page-privacy .contents h4 {
        font-size: 1.6rem;
    }
}

/* ------------------------------------- /
/  電子公告・決算公告
/* ------------------------------------- */
.page-template-page-notice .contents .underline {
    text-decoration: underline;
}
.page-template-page-notice .contents h2 {
    font-size: 3rem;
    font-weight: 500;
}
@media (max-width: 1280px) {
    .page-template-page-notice .contents h2 {
        font-size: 2.4rem;
    }
}
@media (max-width: 768px) {
    .page-template-page-notice .contents h2 {
        font-size: 1.8rem;
    }
}
.page-template-page-notice .contents ul li {
    padding: 30px 0;
    border-top: 1px solid #D8D8D8;
}
@media (max-width: 1280px) {
    .page-template-page-notice .contents ul li {
        padding: 20px 0;
    }
}
@media (max-width: 768px) {
    .page-template-page-notice .contents ul li {
        padding: 10px 0;
    }
}
.page-template-page-notice .contents ul li a {
    text-decoration: underline;
}
.page-template-page-notice .contents ul li:last-child {
    border-bottom: 1px solid #D8D8D8;
}
.page-template-page-notice .contents .get__adobe__reader {
    display: flex;
    flex-wrap: wrap;
    gap: 15px 50px;
    align-items: center;
}
@media (max-width: 768px) {
    .page-template-page-notice .contents .get__adobe__reader {
        gap: 25px;
    }
}
.page-template-page-notice .contents .get__adobe__reader .adobe {
    width: 112px;
}

/* ------------------------------------- /
/  会社概要
/* ------------------------------------- */
.page-template-page-company .link__container .inner1200 {
    display: flex;
    gap: 35px;
}
@media (max-width: 1280px) {
    .page-template-page-company .link__container .inner1200 {
        gap: 20px;
        flex-wrap: wrap;
    }
}
@media (max-width: 768px) {
    .page-template-page-company .link__container .inner1200 {
        gap: 15px;
    }
}
.page-template-page-company .link__container .inner1200 a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: calc((100% - 140px) / 5);
    height: 60px;
    border-radius: 3px;
    border: 1px solid var(--color-orange);
    font-size: 2rem;
    position: relative;
}
@media (max-width: 1280px) {
    .page-template-page-company .link__container .inner1200 a {
        width: calc((100% - 40px) / 3);
        font-size: 1.7rem;
        height: 50px;
    }
}
@media (max-width: 768px) {
    .page-template-page-company .link__container .inner1200 a {
        width: calc((100% - 15px) / 2);
        font-size: 1.6rem;
        height: 40px;
    }
}
.page-template-page-company .link__container .inner1200 a::before {
    content: "";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 13px;
    aspect-ratio: 13/8;
    background: url(../img/common/arrow_or_down.svg) center/contain no-repeat;
}
@media (max-width: 1280px) {
    .page-template-page-company .link__container .inner1200 a::before {
        right: 10px;
        width: 11px;
    }
}
.page-template-page-company .information table {
    width: min(920px, 100%);
    margin: 0 auto;
    line-height: 1.4;
}
.page-template-page-company .information table tbody tr th, .page-template-page-company .information table tbody tr td {
    padding: 30px 0;
    font-weight: 500;
    border-bottom: 1px solid #E6E6E6;
}
@media (max-width: 1280px) {
    .page-template-page-company .information table tbody tr th, .page-template-page-company .information table tbody tr td {
        padding: 20px 0;
    }
}
@media (max-width: 768px) {
    .page-template-page-company .information table tbody tr th, .page-template-page-company .information table tbody tr td {
        padding: 15px 0;
    }
}
.page-template-page-company .information table tbody tr th {
    color: var(--color-orange);
    white-space: nowrap;
    padding-right: 10px;
}
.page-template-page-company .information table tbody tr a {
    text-decoration: underline;
}
.page-template-page-company .location .location__container {
    display: flex;
    gap: 30px;
}
@media (max-width: 1280px) {
    .page-template-page-company .location .location__container {
        gap: 20px;
    }
}
@media (max-width: 768px) {
    .page-template-page-company .location .location__container {
        flex-direction: column;
        row-gap: 20px;
    }
}
.page-template-page-company .location .location__container .box {
    width: calc((100% - 60px) / 3);
    border-radius: 10px;
    border: 1px solid #D8D8D8;
    padding: 20px;
    text-align: center;
}
@media (max-width: 1280px) {
    .page-template-page-company .location .location__container .box {
        padding: 15px;
        width: calc((100% - 40px) / 3);
    }
}
@media (max-width: 768px) {
    .page-template-page-company .location .location__container .box {
        width: 100%;
    }
}
.page-template-page-company .location .location__container .box .name {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
}
@media (max-width: 1280px) {
    .page-template-page-company .location .location__container .box .name {
        font-size: 1.7rem;
    }
}
@media (max-width: 768px) {
    .page-template-page-company .location .location__container .box .name {
        font-size: 1.6rem;
    }
}
.page-template-page-company .location .location__container .box .name .sm {
    font-size: 1.6rem;
}
@media (max-width: 1280px) {
    .page-template-page-company .location .location__container .box .name .sm {
        font-size: 1.5rem;
    }
}
@media (max-width: 768px) {
    .page-template-page-company .location .location__container .box .name .sm {
        font-size: 1.4rem;
    }
}
.page-template-page-company .location .location__container .box .tel a {
    color: #009DFF;
    text-decoration: underline;
}
.page-template-page-company .group {
    background: #F4F5F6;
}
.page-template-page-company .group h3 {
    font-size: 4rem;
    font-weight: 700;
    padding-left: 38px;
    position: relative;
}
@media (max-width: 1280px) {
    .page-template-page-company .group h3 {
        font-size: 3rem;
        padding-left: 32px;
    }
}
@media (max-width: 768px) {
    .page-template-page-company .group h3 {
        font-size: 2.2rem;
        padding-left: 25px;
    }
}
.page-template-page-company .group h3::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: var(--color-orange);
}
@media (max-width: 1280px) {
    .page-template-page-company .group h3::before {
        width: 15px;
    }
}
@media (max-width: 768px) {
    .page-template-page-company .group h3::before {
        width: 12px;
    }
}
.page-template-page-company .group .container {
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    display: flex;
    flex-wrap: wrap;
}
@media (max-width: 1280px) {
    .page-template-page-company .group .container {
        padding: 15px;
    }
}
.page-template-page-company .group .container .box {
    width: 33.3333333333%;
    padding: 0 25px 20px;
    border-left: 1px solid #D8D8D8;
}
@media (max-width: 1280px) {
    .page-template-page-company .group .container .box {
        padding: 0 15px 15px;
    }
}
@media (max-width: 768px) {
    .page-template-page-company .group .container .box {
        width: 100%;
    }
}
.page-template-page-company .group .container .box:nth-child(3n+1) {
    border-left: none;
}
.page-template-page-company .group .container .box:nth-child(n+4) {
    border-top: 1px solid #D8D8D8;
    padding: 30px 5px 20px;
}
@media (max-width: 1280px) {
    .page-template-page-company .group .container .box:nth-child(n+4) {
        padding: 15px;
    }
}
.page-template-page-company .group .container .box:nth-child(3n+1) {
    padding-left: 0;
}
.page-template-page-company .group .container .box:nth-child(3n) {
    padding-right: 0;
}
@media (max-width: 768px) {
    .page-template-page-company .group .container .box:nth-child(n) {
        border-left: none;
        padding: 15px 0;
    }
    .page-template-page-company .group .container .box:nth-child(n):not(:first-child) {
        border-top: 1px solid #D8D8D8;
    }
}
.page-template-page-company .group .container .box h4 {
    font-size: 2rem;
}
@media (max-width: 1280px) {
    .page-template-page-company .group .container .box h4 {
        font-size: 1.7rem;
    }
}
@media (max-width: 768px) {
    .page-template-page-company .group .container .box h4 {
        font-size: 1.6rem;
    }
}
.page-template-page-company .group .container .box h4 a {
    color: #009DFF;
    text-decoration: underline;
}
.page-template-page-company .group .container .box .circle__container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
@media (max-width: 1280px) {
    .page-template-page-company .group .container .box .circle__container {
        gap: 6px;
    }
}
.page-template-page-company .group .container .box .circle__container span {
    padding: 10px 15px;
    background: #F4F5F6;
    height: 35px;
    border-radius: 18px;
    display: flex;
    align-items: center;
}
@media (max-width: 1280px) {
    .page-template-page-company .group .container .box .circle__container span {
        padding: 5px 10px;
        height: 25px;
        border-radius: 13px;
        font-size: 1.5rem;
    }
}
.page-template-page-company .press {
    background: #F4F5F6;
}
.page-template-page-company .press .news__list {
    display: flex;
    gap: 50px;
}
@media (max-width: 1280px) {
    .page-template-page-company .press .news__list {
        gap: 25px;
    }
}
@media (max-width: 768px) {
    .page-template-page-company .press .news__list {
        flex-direction: column;
    }
}
.page-template-page-company .press .news__list .post__wrapper {
    width: calc((100% - 100px) / 3);
}
@media (max-width: 1280px) {
    .page-template-page-company .press .news__list .post__wrapper {
        width: calc((100% - 50px) / 3);
    }
}
@media (max-width: 768px) {
    .page-template-page-company .press .news__list .post__wrapper {
        width: 100%;
    }
}
.page-template-page-company .press .news__list .post__wrapper .thumbnail img {
    border-radius: 8px;
}
.page-template-page-company .press .news__list .post__wrapper .day__tags {
    display: flex;
    font-size: 1.4rem;
    gap: 8px;
}
.page-template-page-company .press .news__list .post__wrapper .day__tags .tags {
    display: flex;
    font-weight: 700;
}
.page-template-page-company .press .news__list .post__wrapper .day__tags .tags span {
    height: 22px;
    border-radius: 2px;
    border: 1px solid #F4962D;
    padding: 0 5px;
}
.page-template-page-company .press .news__list .post__wrapper .day__tags .day {
    color: #D0D0D0;
}
.page-template-page-company .press .news__list .post__wrapper .ttl {
    font-weight: 700;
}
.page-template-page-company .press .btn {
    margin: 0 auto;
    display: flex;
    align-items: center;
    padding: 0 30px;
    width: 340px;
    height: 77px;
    border-radius: 39px;
    background: var(--color-black);
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    position: relative;
}
@media (max-width: 1280px) {
    .page-template-page-company .press .btn {
        padding: 0 20px;
        width: 240px;
        height: 60px;
        border-radius: 30px;
        font-size: 1.8rem;
    }
}
@media (max-width: 768px) {
    .page-template-page-company .press .btn {
        padding: 0 15px;
        width: 200px;
        height: 50px;
        border-radius: 25px;
        font-size: 1.6rem;
    }
}
.page-template-page-company .press .btn::before {
    content: "";
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    aspect-ratio: 8/14;
    background: url(../img/common/arrow_wh_right.svg) center/contain no-repeat;
}
@media (max-width: 1280px) {
    .page-template-page-company .press .btn::before {
        right: 20px;
        width: 7px;
    }
}
@media (max-width: 768px) {
    .page-template-page-company .press .btn::before {
        right: 15px;
        width: 6px;
    }
}

/* ------------------------------------- /
/  広済堂ビジネスサポートについて
/* ------------------------------------- */
/* ------------------------------------- /
/  拠点一覧
/* ------------------------------------- */
.page-template-page-location .branch__table {
    line-height: 1.4;
}
.page-template-page-location .branch__table .inner1200 {
    overflow-x: auto;
}
.page-template-page-location .branch__table table {
    width: max(780px, 100%);
}
.page-template-page-location .branch__table table thead {
    color: var(--color-orange);
    border-bottom: 1px solid var(--color-orange);
}
.page-template-page-location .branch__table table thead th {
    padding: 15px 0;
    font-weight: 500;
}
@media (max-width: 768px) {
    .page-template-page-location .branch__table table thead th {
        padding: 10px 0;
    }
}
.page-template-page-location .branch__table table tbody tr td {
    padding: 30px 0;
    border-bottom: 1px solid #E6E6E6;
    vertical-align: middle;
}
@media (max-width: 1280px) {
    .page-template-page-location .branch__table table tbody tr td {
        padding: 20px 0;
    }
}
@media (max-width: 768px) {
    .page-template-page-location .branch__table table tbody tr td {
        padding: 15px 0;
    }
}
.page-template-page-location .branch__table table tbody tr td .tel {
    color: #009DFF;
    text-decoration: underline;
}
.page-template-page-location .branch__table table tbody tr td .address {
    text-decoration: underline;
}
.page-template-page-location .group__company {
    line-height: 1.4;
}
.page-template-page-location .group__company h2 {
    font-size: 5rem;
    font-weight: 700;
}
@media (max-width: 1280px) {
    .page-template-page-location .group__company h2 {
        font-size: 4rem;
    }
}
@media (max-width: 768px) {
    .page-template-page-location .group__company h2 {
        font-size: 2.6rem;
    }
}
.page-template-page-location .group__company :nth-child(1 of .company__container) {
    border-top: 1px solid #D8D8D8;
}
.page-template-page-location .group__company .company__container {
    border-bottom: 1px solid #D8D8D8;
}
.page-template-page-location .group__company .company__container .company .name {
    font-size: 1.8rem;
}
@media (max-width: 768px) {
    .page-template-page-location .group__company .company__container .company .name {
        font-size: 1.6rem;
    }
}
.page-template-page-location .group__company .company__container .company .txt {
    color: #727272;
}
.page-template-page-location .group__company .company__container .company .gmap {
    text-decoration: underline;
}
.page-template-page-location .group__company .company__container .company .tel {
    color: #009DFF;
    text-decoration: underline;
}

/* ------------------------------------- /
/  経営理念・ビジョン
/* ------------------------------------- */
.page-template-page-vision .h2__box {
    padding: 20px 0;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: url(../img/vision/h2.svg) center/contain no-repeat;
}
@media (max-width: 768px) {
    .page-template-page-vision .h2__box {
        padding: 10px;
    }
}
.page-template-page-vision .h2__box .h2__en {
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-orange);
    font-family: var(--font-lato);
}
@media (max-width: 1280px) {
    .page-template-page-vision .h2__box .h2__en {
        font-size: 1.8rem;
    }
}
@media (max-width: 768px) {
    .page-template-page-vision .h2__box .h2__en {
        font-size: 1.7rem;
    }
}
.page-template-page-vision .h2__box h2 {
    font-size: 5rem;
    font-weight: 700;
}
@media (max-width: 1280px) {
    .page-template-page-vision .h2__box h2 {
        font-size: 3.6rem;
    }
}
@media (max-width: 768px) {
    .page-template-page-vision .h2__box h2 {
        font-size: 2.8rem;
    }
}
.page-template-page-vision h3 {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
}
@media (max-width: 1280px) {
    .page-template-page-vision h3 {
        font-size: 2.4rem;
    }
}
@media (max-width: 768px) {
    .page-template-page-vision h3 {
        font-size: 1.8rem;
    }
}
.page-template-page-vision .en__or {
    color: var(--color-orange);
    font-size: 2rem;
    font-weight: 600;
    font-family: var(--font-lato);
    text-align: center;
}
@media (max-width: 1280px) {
    .page-template-page-vision .en__or {
        font-size: 1.8rem;
    }
}
@media (max-width: 768px) {
    .page-template-page-vision .en__or {
        font-size: 1.6rem;
    }
}
.page-template-page-vision .txt {
    text-align: center;
}
@media (max-width: 768px) {
    .page-template-page-vision .txt {
        text-align: left;
    }
}
.page-template-page-vision .txt p {
    margin-bottom: 20px;
    line-height: 1.8;
}
@media (max-width: 768px) {
    .page-template-page-vision .txt p {
        margin-bottom: 10px;
    }
}
.page-template-page-vision .txt h4 {
    font-weight: 700;
}

/* ------------------------------------- /
/  採用情報
/* ------------------------------------- */
.page-template-page-recruit .recruit .banner {
    width: 100%;
    aspect-ratio: 1200/320;
    color: #fff;
    padding: 0 7.5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 10px;
    gap: 30px;
}
@media (max-width: 768px) {
    .page-template-page-recruit .recruit .banner {
        padding: 20px;
        flex-direction: column;
        justify-content: center;
        gap: 30px 20px;
        aspect-ratio: unset;
    }
}
.page-template-page-recruit .recruit .banner.new {
    background: url(../img/company/new_guraduate.webp) center/cover no-repeat;
}
.page-template-page-recruit .recruit .banner.mid {
    background: url(../img/company/mid.webp) center/cover no-repeat;
}
.page-template-page-recruit .recruit .banner .left {
    flex: 1 1;
}
@media (max-width: 768px) {
    .page-template-page-recruit .recruit .banner .left {
        flex: 0 1;
    }
}
.page-template-page-recruit .recruit .banner .left h3 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.3;
}
@media (max-width: 1280px) {
    .page-template-page-recruit .recruit .banner .left h3 {
        font-size: 2.2rem;
    }
}
@media (max-width: 768px) {
    .page-template-page-recruit .recruit .banner .left h3 {
        font-size: 1.8rem;
    }
}
.page-template-page-recruit .recruit .banner a {
    width: 340px;
    height: 77px;
    border-radius: 39px;
    background: #fff;
    color: var(--color-orange);
    font-size: 2rem;
    font-weight: 700;
    padding: 0 30px;
    display: flex;
    align-items: center;
    position: relative;
    border: 1px solid #fff;
}
.page-template-page-recruit .recruit .banner a:hover {
    background: var(--color-orange);
    color: #fff;
    opacity: unset;
    border: 1px solid var(--color-orange);
}
.page-template-page-recruit .recruit .banner a:hover::before {
    background: #fff;
    -webkit-mask: url(../img/common/next.svg) center/contain no-repeat;
            mask: url(../img/common/next.svg) center/contain no-repeat;
}
@media (max-width: 1280px) {
    .page-template-page-recruit .recruit .banner a {
        width: 240px;
        height: 60px;
        border-radius: 30px;
        font-size: 1.8rem;
        padding: 0 20px;
    }
}
@media (max-width: 768px) {
    .page-template-page-recruit .recruit .banner a {
        width: 200px;
        height: 50px;
        border-radius: 25px;
        font-size: 1.6rem;
        padding: 0 15px;
    }
}
.page-template-page-recruit .recruit .banner a::before {
    content: "";
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    aspect-ratio: 8/14;
    background: url(../img/common/next.svg) center/contain no-repeat;
}
@media (max-width: 1280px) {
    .page-template-page-recruit .recruit .banner a::before {
        right: 20px;
        width: 6px;
    }
}
@media (max-width: 768px) {
    .page-template-page-recruit .recruit .banner a::before {
        right: 15px;
        width: 5px;
    }
}

/* ------------------------------------- /
/  代表メッセージ
/* ------------------------------------- */
.page-template-page-message .message {
    position: relative;
    z-index: 0;
    line-height: 2;
}
.page-template-page-message .message::before {
    content: "";
    position: absolute;
    z-index: -2;
    background: #F4F5F6;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.page-template-page-message .message::after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../img/top/business_bg.webp) center top/cover no-repeat;
}
.page-template-page-message .message h2 {
    font-size: 5rem;
    font-weight: 700;
    border-bottom: 1px solid #D8D8D8;
}
@media (max-width: 1280px) {
    .page-template-page-message .message h2 {
        font-size: 4rem;
    }
}
@media (max-width: 768px) {
    .page-template-page-message .message h2 {
        font-size: 3rem;
    }
}

/* ------------------------------------- /
/  グローバル人材サービス・IT人材サービス
/* ------------------------------------- */
.page-template-page-global h2,
.page-template-page-it h2 {
    font-size: 5rem;
    font-weight: 700;
    padding-bottom: 40px;
    line-height: 1.3;
    border-bottom: 1px solid #D8D8D8;
}
@media (max-width: 1280px) {
    .page-template-page-global h2,
    .page-template-page-it h2 {
        font-size: 3.6rem;
        padding-bottom: 30px;
    }
}
@media (max-width: 768px) {
    .page-template-page-global h2,
    .page-template-page-it h2 {
        font-size: 2.4rem;
        padding-bottom: 20px;
    }
}
.page-template-page-global .on__h2,
.page-template-page-it .on__h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-orange);
    padding-left: 40px;
    position: relative;
}
@media (max-width: 1280px) {
    .page-template-page-global .on__h2,
    .page-template-page-it .on__h2 {
        font-size: 1.8rem;
        padding-left: 30px;
    }
}
@media (max-width: 768px) {
    .page-template-page-global .on__h2,
    .page-template-page-it .on__h2 {
        font-size: 1.6rem;
        padding-left: 24px;
    }
}
.page-template-page-global .on__h2::before,
.page-template-page-it .on__h2::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 25px;
    aspect-ratio: 25/21;
    background: url(../img/common/h2.svg) center/contain no-repeat;
}
@media (max-width: 1280px) {
    .page-template-page-global .on__h2::before,
    .page-template-page-it .on__h2::before {
        width: 20px;
    }
}
@media (max-width: 768px) {
    .page-template-page-global .on__h2::before,
    .page-template-page-it .on__h2::before {
        width: 16px;
    }
}
.page-template-page-global .h3__circle,
.page-template-page-it .h3__circle {
    position: relative;
    padding-left: 38px;
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
}
@media (max-width: 1280px) {
    .page-template-page-global .h3__circle,
    .page-template-page-it .h3__circle {
        padding-left: 30px;
        font-size: 2.8rem;
    }
}
@media (max-width: 768px) {
    .page-template-page-global .h3__circle,
    .page-template-page-it .h3__circle {
        font-size: 2rem;
        padding-left: 24px;
    }
}
.page-template-page-global .h3__circle::before,
.page-template-page-it .h3__circle::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 18px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: var(--color-orange);
}
@media (max-width: 1280px) {
    .page-template-page-global .h3__circle::before,
    .page-template-page-it .h3__circle::before {
        width: 14px;
    }
}
@media (max-width: 768px) {
    .page-template-page-global .h3__circle::before,
    .page-template-page-it .h3__circle::before {
        width: 12px;
    }
}
.page-template-page-global .matching .point__box,
.page-template-page-global .support .point__box,
.page-template-page-it .matching .point__box,
.page-template-page-it .support .point__box {
    position: relative;
    z-index: 0;
    padding-top: 20px;
    padding-bottom: 20px;
}
@media (max-width: 1280px) {
    .page-template-page-global .matching .point__box,
    .page-template-page-global .support .point__box,
    .page-template-page-it .matching .point__box,
    .page-template-page-it .support .point__box {
        padding-top: 15px;
        padding-bottom: 15px;
    }
}
.page-template-page-global .matching .point__box::before,
.page-template-page-global .support .point__box::before,
.page-template-page-it .matching .point__box::before,
.page-template-page-it .support .point__box::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: -30px;
    width: 165px;
    aspect-ratio: 165/141;
    background: url(../img/common/h2.svg) center/contain no-repeat;
    opacity: 0.1;
}
@media (max-width: 1280px) {
    .page-template-page-global .matching .point__box::before,
    .page-template-page-global .support .point__box::before,
    .page-template-page-it .matching .point__box::before,
    .page-template-page-it .support .point__box::before {
        left: -20px;
        width: 130px;
    }
}
.page-template-page-global .matching .point__box .point,
.page-template-page-global .support .point__box .point,
.page-template-page-it .matching .point__box .point,
.page-template-page-it .support .point__box .point {
    font-size: 2rem;
    font-weight: 600;
    font-family: var(--font-lato);
    color: var(--color-orange);
}
@media (max-width: 1280px) {
    .page-template-page-global .matching .point__box .point,
    .page-template-page-global .support .point__box .point,
    .page-template-page-it .matching .point__box .point,
    .page-template-page-it .support .point__box .point {
        font-size: 1.8rem;
    }
}
.page-template-page-global .matching .point__box h4,
.page-template-page-global .support .point__box h4,
.page-template-page-it .matching .point__box h4,
.page-template-page-it .support .point__box h4 {
    margin-top: 10px;
    font-size: 3rem;
    font-weight: 700;
}
@media (max-width: 1280px) {
    .page-template-page-global .matching .point__box h4,
    .page-template-page-global .support .point__box h4,
    .page-template-page-it .matching .point__box h4,
    .page-template-page-it .support .point__box h4 {
        font-size: 2rem;
    }
}
.page-template-page-global .matching .txt__img__container,
.page-template-page-global .support .txt__img__container,
.page-template-page-it .matching .txt__img__container,
.page-template-page-it .support .txt__img__container {
    display: flex;
}
@media (max-width: 768px) {
    .page-template-page-global .matching .txt__img__container,
    .page-template-page-global .support .txt__img__container,
    .page-template-page-it .matching .txt__img__container,
    .page-template-page-it .support .txt__img__container {
        row-gap: 30px;
    }
}
.page-template-page-global .matching .txt__img__container .txt, .page-template-page-global .matching .txt__img__container .img,
.page-template-page-global .support .txt__img__container .txt,
.page-template-page-global .support .txt__img__container .img,
.page-template-page-it .matching .txt__img__container .txt,
.page-template-page-it .matching .txt__img__container .img,
.page-template-page-it .support .txt__img__container .txt,
.page-template-page-it .support .txt__img__container .img {
    width: 50%;
}
@media (max-width: 768px) {
    .page-template-page-global .matching .txt__img__container .txt, .page-template-page-global .matching .txt__img__container .img,
    .page-template-page-global .support .txt__img__container .txt,
    .page-template-page-global .support .txt__img__container .img,
    .page-template-page-it .matching .txt__img__container .txt,
    .page-template-page-it .matching .txt__img__container .img,
    .page-template-page-it .support .txt__img__container .txt,
    .page-template-page-it .support .txt__img__container .img {
        width: 100%;
    }
}
.page-template-page-global .matching .txt__img__container .img img,
.page-template-page-global .support .txt__img__container .img img,
.page-template-page-it .matching .txt__img__container .img img,
.page-template-page-it .support .txt__img__container .img img {
    border-radius: 20px;
}
@media (max-width: 1280px) {
    .page-template-page-global .matching .txt__img__container .img img,
    .page-template-page-global .support .txt__img__container .img img,
    .page-template-page-it .matching .txt__img__container .img img,
    .page-template-page-it .support .txt__img__container .img img {
        border-radius: 10px;
    }
}
@media (max-width: 768px) {
    .page-template-page-global .matching .txt__img__container .img img,
    .page-template-page-global .support .txt__img__container .img img,
    .page-template-page-it .matching .txt__img__container .img img,
    .page-template-page-it .support .txt__img__container .img img {
        border-radius: 5px;
    }
}
.page-template-page-global .bottom__section h3,
.page-template-page-it .bottom__section h3 {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.3;
}
@media (max-width: 1280px) {
    .page-template-page-global .bottom__section h3,
    .page-template-page-it .bottom__section h3 {
        font-size: 2.4rem;
    }
}
@media (max-width: 768px) {
    .page-template-page-global .bottom__section h3,
    .page-template-page-it .bottom__section h3 {
        font-size: 1.8rem;
    }
}
.page-template-page-global .bottom__section .h3__bottom,
.page-template-page-it .bottom__section .h3__bottom {
    text-align: center;
}
.page-template-page-global .bottom__section .lr__container,
.page-template-page-it .bottom__section .lr__container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 140px;
}
@media (max-width: 1280px) {
    .page-template-page-global .bottom__section .lr__container,
    .page-template-page-it .bottom__section .lr__container {
        gap: 80px;
    }
}
@media (max-width: 768px) {
    .page-template-page-global .bottom__section .lr__container,
    .page-template-page-it .bottom__section .lr__container {
        flex-direction: column;
        gap: 30px;
    }
}
.page-template-page-global .bottom__section .lr__container .btn,
.page-template-page-it .bottom__section .lr__container .btn {
    background: #F4962D;
    width: 340px;
    height: 77px;
    border-radius: 39px;
    color: #fff;
    display: flex;
    align-items: center;
    padding: 0 30px;
    font-size: 2rem;
    font-weight: 700;
    position: relative;
    border: 1px solid #F4962D;
}
.page-template-page-global .bottom__section .lr__container .btn:hover,
.page-template-page-it .bottom__section .lr__container .btn:hover {
    background: #fff;
    color: #F4962D;
    opacity: unset;
}
.page-template-page-global .bottom__section .lr__container .btn:hover::before,
.page-template-page-it .bottom__section .lr__container .btn:hover::before {
    background: #F4962D;
    -webkit-mask: url(../img/common/arrow_wh_right.svg) center/contain no-repeat;
            mask: url(../img/common/arrow_wh_right.svg) center/contain no-repeat;
}
@media (max-width: 1280px) {
    .page-template-page-global .bottom__section .lr__container .btn,
    .page-template-page-it .bottom__section .lr__container .btn {
        width: 260px;
        height: 60px;
        border-radius: 30px;
        padding: 0 25px;
        font-size: 1.8rem;
    }
}
@media (max-width: 768px) {
    .page-template-page-global .bottom__section .lr__container .btn,
    .page-template-page-it .bottom__section .lr__container .btn {
        width: 220px;
        height: 50px;
        border-radius: 25px;
        padding: 0 20px;
        font-size: 1.6rem;
    }
}
.page-template-page-global .bottom__section .lr__container .btn::before,
.page-template-page-it .bottom__section .lr__container .btn::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 30px;
    width: 8px;
    aspect-ratio: 8/14;
    background: url(../img/common/arrow_wh_right.svg) center/contain no-repeat;
}
.page-template-page-global .bottom__section .lr__container .txt,
.page-template-page-it .bottom__section .lr__container .txt {
    text-align: center;
}
.page-template-page-global .bottom__section .lr__container .txt .tel,
.page-template-page-it .bottom__section .lr__container .txt .tel {
    font-family: var(--font-lato);
    font-size: 4rem;
}
@media (max-width: 1280px) {
    .page-template-page-global .bottom__section .lr__container .txt .tel,
    .page-template-page-it .bottom__section .lr__container .txt .tel {
        font-size: 3rem;
    }
}
@media (max-width: 768px) {
    .page-template-page-global .bottom__section .lr__container .txt .tel,
    .page-template-page-it .bottom__section .lr__container .txt .tel {
        font-size: 2.4rem;
    }
}
.page-template-page-global .merit__wrapper,
.page-template-page-it .merit__wrapper {
    padding: 10px 50px 70px;
    border: 1px solid #D8D8D8;
    border-radius: 8px;
}
@media (max-width: 1280px) {
    .page-template-page-global .merit__wrapper,
    .page-template-page-it .merit__wrapper {
        padding: 10px 30px 40px;
    }
}
@media (max-width: 768px) {
    .page-template-page-global .merit__wrapper,
    .page-template-page-it .merit__wrapper {
        padding: 10px 20px 30px;
        border-radius: 4px;
    }
}
.page-template-page-global .merit__wrapper h3,
.page-template-page-it .merit__wrapper h3 {
    font-size: 3.2rem;
    font-weight: 700;
    position: relative;
    z-index: 0;
    padding-top: 60px;
    line-height: 1.4;
}
@media (max-width: 1280px) {
    .page-template-page-global .merit__wrapper h3,
    .page-template-page-it .merit__wrapper h3 {
        padding-top: 40px;
        font-size: 2.4rem;
    }
}
.page-template-page-global .merit__wrapper h3 .sm,
.page-template-page-it .merit__wrapper h3 .sm {
    font-size: 2rem;
}
@media (max-width: 1280px) {
    .page-template-page-global .merit__wrapper h3 .sm,
    .page-template-page-it .merit__wrapper h3 .sm {
        font-size: 1.8rem;
    }
}
.page-template-page-global .merit__wrapper h3 .num,
.page-template-page-it .merit__wrapper h3 .num {
    position: absolute;
    left: 0;
    top: 30px;
    font-size: 6rem;
    font-weight: 700;
    font-family: var(--font-lato);
    color: var(--color-orange);
    z-index: -1;
    line-height: 1;
    opacity: 0.22;
}
@media (max-width: 1280px) {
    .page-template-page-global .merit__wrapper h3 .num,
    .page-template-page-it .merit__wrapper h3 .num {
        top: 20px;
        font-size: 4.5rem;
    }
}
.page-template-page-global .merit__wrapper h3:not(:first-child),
.page-template-page-it .merit__wrapper h3:not(:first-child) {
    border-top: 1px solid #D8D8D8;
}
.page-template-page-global .merit__wrapper h4,
.page-template-page-it .merit__wrapper h4 {
    font-size: 2rem;
    font-weight: 700;
}
@media (max-width: 768px) {
    .page-template-page-global .merit__wrapper h4,
    .page-template-page-it .merit__wrapper h4 {
        font-size: 1.8rem;
    }
}

/* ------------------------------------- /
/  グローバル人材サービス
/* ------------------------------------- */
.page-template-page-global .link__container .inner1200 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
}
@media (max-width: 1280px) {
    .page-template-page-global .link__container .inner1200 {
        gap: 30px;
    }
}
@media (max-width: 768px) {
    .page-template-page-global .link__container .inner1200 {
        gap: 15px;
    }
}
.page-template-page-global .link__container .inner1200 a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 350px;
    height: 60px;
    border-radius: 3px;
    border: 1px solid var(--color-orange);
    font-size: 2rem;
    position: relative;
}
@media (max-width: 1280px) {
    .page-template-page-global .link__container .inner1200 a {
        width: 240px;
        height: 50px;
        font-size: 1.7rem;
    }
}
@media (max-width: 768px) {
    .page-template-page-global .link__container .inner1200 a {
        width: 100%;
        font-size: 1.6rem;
        height: 40px;
    }
}
.page-template-page-global .link__container .inner1200 a::before {
    content: "";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 13px;
    aspect-ratio: 13/8;
    background: url(../img/common/arrow_or_down.svg) center/contain no-repeat;
}
@media (max-width: 1280px) {
    .page-template-page-global .link__container .inner1200 a::before {
        right: 10px;
        width: 11px;
    }
}
.page-template-page-global .circle__container {
    background: #F4F5F6;
    display: flex;
    justify-content: center;
    gap: 50px;
}
@media (max-width: 1280px) {
    .page-template-page-global .circle__container {
        gap: 30px;
    }
}
@media (max-width: 768px) {
    .page-template-page-global .circle__container {
        flex-direction: column;
        align-items: center;
        row-gap: 20px;
    }
}
.page-template-page-global .circle__container .box {
    max-width: 280px;
    text-align: center;
}
.page-template-page-global .circle__container .box img {
    margin-bottom: 25px;
    padding: 0 30px;
}
.page-template-page-global .circle__container .box p {
    font-size: 1.8rem;
    font-weight: 600;
}
@media (max-width: 768px) {
    .page-template-page-global .circle__container .box p {
        font-size: 1.6rem;
    }
}
.page-template-page-global .foreign .example__container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}
.page-template-page-global .foreign .example__container .box {
    width: calc((100% - 40px) / 2);
    padding: 40px 50px;
    border: 1px solid #D8D8D8;
    border-radius: 8px;
}
.page-template-page-global .foreign .example__container .box h4 {
    color: var(--color-orange);
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1;
}
.page-template-page-global .foreign .example__container .box h4 .sm {
    font-size: 2rem;
}
.page-template-page-global .foreign .example__container .box .condition {
    width: 150px;
    height: 36px;
    border-radius: 18px;
    font-weight: 700;
    background: #F4F5F6;
    display: flex;
    justify-content: center;
    align-items: center;
}
.page-template-page-global .foreign .example__container .box .border {
    width: 100%;
    height: 1px;
    background: #D8D8D8;
    margin: 30px 0;
}
.page-template-page-global .foreign .example__container .box .or {
    color: var(--color-orange);
}
.page-template-page-global .housekeeping {
    background: #F4F5F6;
}
.page-template-page-global .housekeeping .h3__wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: baseline;
}
.page-template-page-global .housekeeping .h3__wrapper .h3__right {
    font-size: 2rem;
    font-weight: 700;
}
.page-template-page-global .housekeeping .bg__wh {
    background: #fff;
    border-radius: 8px;
    padding: 50px;
}
@media (max-width: 1280px) {
    .page-template-page-global .housekeeping .bg__wh {
        padding: 30px;
    }
}
@media (max-width: 768px) {
    .page-template-page-global .housekeeping .bg__wh {
        padding: 20px;
    }
}
.page-template-page-global .housekeeping .bg__wh h4 {
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--color-orange);
    line-height: 1;
    padding-bottom: 30px;
    border-bottom: 1px solid #D8D8D8;
}
@media (max-width: 1280px) {
    .page-template-page-global .housekeeping .bg__wh h4 {
        font-size: 2.4rem;
        padding-bottom: 20px;
    }
}
@media (max-width: 768px) {
    .page-template-page-global .housekeeping .bg__wh h4 {
        font-size: 1.9rem;
        padding-bottom: 15px;
    }
}
.page-template-page-global .housekeeping .bg__wh .contents__container {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
}
@media (max-width: 1280px) {
    .page-template-page-global .housekeeping .bg__wh .contents__container {
        gap: 20px;
    }
}
@media (max-width: 768px) {
    .page-template-page-global .housekeeping .bg__wh .contents__container {
        gap: 15px;
    }
}
.page-template-page-global .housekeeping .bg__wh .contents__container .content {
    text-align: center;
    width: calc((100% - 140px) / 5);
}
@media (max-width: 1280px) {
    .page-template-page-global .housekeeping .bg__wh .contents__container .content {
        width: calc((100% - 60px) / 4);
    }
}
@media (max-width: 768px) {
    .page-template-page-global .housekeeping .bg__wh .contents__container .content {
        width: calc((100% - 15px) / 2);
    }
}
.page-template-page-global .housekeeping .bg__wh .service__container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}
@media (max-width: 1280px) {
    .page-template-page-global .housekeeping .bg__wh .service__container {
        gap: 20px;
    }
}
@media (max-width: 768px) {
    .page-template-page-global .housekeeping .bg__wh .service__container {
        gap: 15px;
    }
}
.page-template-page-global .housekeeping .bg__wh .service__container .box {
    width: calc((100% - 40px) / 2);
    padding: 50px 35px;
    border-radius: 8px;
    border: 1px solid #D8D8D8;
}
@media (max-width: 1280px) {
    .page-template-page-global .housekeeping .bg__wh .service__container .box {
        padding: 35px 25px;
        width: calc((100% - 20px) / 2);
    }
}
@media (max-width: 768px) {
    .page-template-page-global .housekeeping .bg__wh .service__container .box {
        padding: 20px;
        width: 100%;
    }
}
.page-template-page-global .housekeeping .bg__wh .service__container .box h5 {
    font-size: 2rem;
    font-weight: 700;
    height: 50px;
    line-height: 1.4;
}
@media (max-width: 1280px) {
    .page-template-page-global .housekeeping .bg__wh .service__container .box h5 {
        font-size: 1.8rem;
        height: 40px;
    }
}
.page-template-page-global .housekeeping .bg__wh.kosaido__housekeeping {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #F4962D;
    font-size: 2.2rem;
    padding: 0 100px;
    gap: 30px;
}
@media (max-width: 1280px) {
    .page-template-page-global .housekeeping .bg__wh.kosaido__housekeeping {
        padding: 0 30px;
        font-size: 2rem;
    }
}
@media (max-width: 768px) {
    .page-template-page-global .housekeeping .bg__wh.kosaido__housekeeping {
        flex-direction: column;
        gap: 20px;
        font-size: 1.8rem;
    }
}
.page-template-page-global .housekeeping .bg__wh.kosaido__housekeeping .txt {
    flex: 1 1;
}
.page-template-page-global .housekeeping .bg__wh.kosaido__housekeeping .btn {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 420px;
    height: 77px;
    border-radius: 39px;
    background: #F4962D;
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    padding: 0 32px;
    position: relative;
    border: 1px solid #F4962D;
}
.page-template-page-global .housekeeping .bg__wh.kosaido__housekeeping .btn:hover {
    background: #fff;
    color: #F4962D;
    opacity: unset;
}
.page-template-page-global .housekeeping .bg__wh.kosaido__housekeeping .btn:hover::after {
    background: #F4962D;
    -webkit-mask: url(../img/common/arrow_wh_right.svg) center/contain no-repeat;
            mask: url(../img/common/arrow_wh_right.svg) center/contain no-repeat;
}
@media (max-width: 1280px) {
    .page-template-page-global .housekeeping .bg__wh.kosaido__housekeeping .btn {
        width: 340px;
        height: 60px;
        border-radius: 30px;
        font-size: 1.8rem;
        padding: 0 25px;
    }
}
@media (max-width: 768px) {
    .page-template-page-global .housekeeping .bg__wh.kosaido__housekeeping .btn {
        width: 300px;
        height: 50px;
        border-radius: 25px;
        font-size: 1.6rem;
        padding: 0 20px;
    }
}
.page-template-page-global .housekeeping .bg__wh.kosaido__housekeeping .btn::after {
    content: "";
    position: absolute;
    right: 32px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    aspect-ratio: 8/14;
    background: url(../img/common/arrow_wh_right.svg) center/contain no-repeat;
}
@media (max-width: 1280px) {
    .page-template-page-global .housekeeping .bg__wh.kosaido__housekeeping .btn::after {
        right: 25px;
    }
}
@media (max-width: 768px) {
    .page-template-page-global .housekeeping .bg__wh.kosaido__housekeeping .btn::after {
        right: 20px;
        width: 7px;
    }
}
.page-template-page-global .support .txt__img__container:nth-child(2n+1) {
    flex-direction: row;
}
@media (max-width: 768px) {
    .page-template-page-global .support .txt__img__container:nth-child(2n+1) {
        flex-direction: column;
    }
}
.page-template-page-global .support .txt__img__container:nth-child(2n+1) .txt {
    padding-right: 6%;
}
@media (max-width: 1280px) {
    .page-template-page-global .support .txt__img__container:nth-child(2n+1) .txt {
        padding-right: 4%;
    }
}
@media (max-width: 768px) {
    .page-template-page-global .support .txt__img__container:nth-child(2n+1) .txt {
        padding-right: 0;
    }
}
.page-template-page-global .support .txt__img__container:nth-child(2n) {
    flex-direction: row-reverse;
}
@media (max-width: 768px) {
    .page-template-page-global .support .txt__img__container:nth-child(2n) {
        flex-direction: column;
    }
}
.page-template-page-global .support .txt__img__container:nth-child(2n) .txt {
    padding-left: 6%;
}
@media (max-width: 1280px) {
    .page-template-page-global .support .txt__img__container:nth-child(2n) .txt {
        padding-left: 4%;
    }
}
@media (max-width: 768px) {
    .page-template-page-global .support .txt__img__container:nth-child(2n) .txt {
        padding-left: 0;
    }
}
.page-template-page-global .mid__section {
    background: url(../img/global/mid_bg.webp) center/cover no-repeat;
}
.page-template-page-global .mid__section h3 {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
}
.page-template-page-global .mid__section p {
    text-align: center;
}
.page-template-page-global .process {
    position: relative;
    z-index: 0;
}
.page-template-page-global .process::before {
    content: "";
    position: absolute;
    z-index: -2;
    background: #F8F8F8;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.page-template-page-global .process::after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../img/top/business_bg.webp) center/cover no-repeat;
}
.page-template-page-global .service .service__container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.page-template-page-global .service .service__container:nth-child(n+4) {
    border-top: 1px solid #D8D8D8;
}
.page-template-page-global .service .service__container .txt, .page-template-page-global .service .service__container .img {
    width: 50%;
}
@media (max-width: 768px) {
    .page-template-page-global .service .service__container .txt, .page-template-page-global .service .service__container .img {
        width: 100%;
    }
}
.page-template-page-global .service .service__container .txt h4 {
    font-size: 3rem;
    font-weight: 700;
}
@media (max-width: 1280px) {
    .page-template-page-global .service .service__container .txt h4 {
        font-size: 2.4rem;
    }
}
@media (max-width: 768px) {
    .page-template-page-global .service .service__container .txt h4 {
        font-size: 1.8rem;
    }
}
.page-template-page-global .service .service__container .img img {
    border-radius: 16px;
}
@media (max-width: 768px) {
    .page-template-page-global .service .service__container .img img {
        border-radius: 8px;
    }
}
@media (max-width: 768px) {
    .page-template-page-global .service .service__container:nth-child(2n+1) {
        flex-direction: column;
        row-gap: 20px;
    }
}
.page-template-page-global .service .service__container:nth-child(2n+1) .txt {
    padding: 0 3% 0 0;
}
@media (max-width: 768px) {
    .page-template-page-global .service .service__container:nth-child(2n+1) .txt {
        padding: 0;
    }
}
.page-template-page-global .service .service__container:nth-child(2n+1) .img {
    padding: 0 0 0 3%;
}
@media (max-width: 768px) {
    .page-template-page-global .service .service__container:nth-child(2n+1) .img {
        padding: 0;
    }
}
.page-template-page-global .service .service__container:nth-child(2n) {
    flex-direction: row-reverse;
}
@media (max-width: 768px) {
    .page-template-page-global .service .service__container:nth-child(2n) {
        flex-direction: column;
        row-gap: 20px;
    }
}
.page-template-page-global .service .service__container:nth-child(2n) .txt {
    padding: 0 0 0 3%;
}
@media (max-width: 768px) {
    .page-template-page-global .service .service__container:nth-child(2n) .txt {
        padding: 0;
    }
}
.page-template-page-global .service .service__container:nth-child(2n) .img {
    padding: 0 3% 0 0;
}
@media (max-width: 768px) {
    .page-template-page-global .service .service__container:nth-child(2n) .img {
        padding: 0;
    }
}
.page-template-page-global .service .global {
    padding: 40px;
    border: 2px solid var(--color-orange);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.2rem;
    color: #F4962D;
    text-align: center;
    gap: 20px;
}
@media (max-width: 1280px) {
    .page-template-page-global .service .global {
        padding: 15px;
        font-size: 2rem;
        gap: 15px;
        flex-wrap: wrap;
    }
}
@media (max-width: 768px) {
    .page-template-page-global .service .global {
        font-size: 1.8rem;
    }
}
.page-template-page-global .service .global img {
    max-width: 375px;
    flex: 1 1;
}
@media (max-width: 1280px) {
    .page-template-page-global .service .global img {
        max-width: 280px;
        flex: unset;
    }
}
.page-template-page-global .service .global p {
    flex: 1 1;
}
@media (max-width: 1280px) {
    .page-template-page-global .service .global p {
        flex: unset;
    }
}
.page-template-page-global .service .global .btn {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 340px;
    height: 77px;
    border-radius: 39px;
    background: #F4962D;
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    padding: 0 32px;
    position: relative;
    border: 1px solid #F4962D;
}
.page-template-page-global .service .global .btn:hover {
    background: #fff;
    color: #F4962D;
    opacity: unset;
}
.page-template-page-global .service .global .btn:hover::after {
    background: #F4962D;
    -webkit-mask: url(../img/common/arrow_wh_right.svg) center/contain no-repeat;
            mask: url(../img/common/arrow_wh_right.svg) center/contain no-repeat;
}
@media (max-width: 1280px) {
    .page-template-page-global .service .global .btn {
        width: 300px;
        height: 60px;
        border-radius: 30px;
        font-size: 1.8rem;
        padding: 0 25px;
    }
}
@media (max-width: 768px) {
    .page-template-page-global .service .global .btn {
        width: 280px;
        height: 50px;
        border-radius: 25px;
        font-size: 1.6rem;
        padding: 0 20px;
    }
}
.page-template-page-global .service .global .btn::after {
    content: "";
    position: absolute;
    right: 32px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    aspect-ratio: 8/14;
    background: url(../img/common/arrow_wh_right.svg) center/contain no-repeat;
}
@media (max-width: 1280px) {
    .page-template-page-global .service .global .btn::after {
        right: 25px;
    }
}
@media (max-width: 768px) {
    .page-template-page-global .service .global .btn::after {
        right: 20px;
        width: 7px;
    }
}
.page-template-page-global .faq {
    background: #F4F5F6;
}
.page-template-page-global .bottom__section {
    background: url(../img/global/bottom_bg.webp) center/cover no-repeat;
}

/* ------------------------------------- /
/  IT人材サービス
/* ------------------------------------- */
.page-template-page-it .link__container .inner1200 {
    display: flex;
    flex-wrap: wrap;
    gap: 27px;
}
@media (max-width: 768px) {
    .page-template-page-it .link__container .inner1200 {
        gap: 15px;
    }
}
.page-template-page-it .link__container .inner1200 a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: calc((100% - 81px) / 4);
    height: 60px;
    border-radius: 3px;
    border: 1px solid var(--color-orange);
    font-size: 2rem;
    position: relative;
}
@media (max-width: 1280px) {
    .page-template-page-it .link__container .inner1200 a {
        width: calc((100% - 27px) / 2);
        font-size: 1.7rem;
        height: 50px;
    }
}
@media (max-width: 768px) {
    .page-template-page-it .link__container .inner1200 a {
        width: 100%;
        font-size: 1.6rem;
        height: 40px;
    }
}
.page-template-page-it .link__container .inner1200 a::before {
    content: "";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 13px;
    aspect-ratio: 13/8;
    background: url(../img/common/arrow_or_down.svg) center/contain no-repeat;
}
@media (max-width: 1280px) {
    .page-template-page-it .link__container .inner1200 a::before {
        right: 10px;
        width: 11px;
    }
}
.page-template-page-it .link__container .inner1200 a .sm {
    font-size: 1.6rem;
}
@media (max-width: 768px) {
    .page-template-page-it .link__container .inner1200 a .sm {
        font-size: 1.4rem;
    }
}
.page-template-page-it .ses .inner1200 > h3 {
    font-size: 3rem;
    font-weight: 500;
}
@media (max-width: 1280px) {
    .page-template-page-it .ses .inner1200 > h3 {
        font-size: 2.4rem;
    }
}
@media (max-width: 768px) {
    .page-template-page-it .ses .inner1200 > h3 {
        font-size: 1.8rem;
    }
}
.page-template-page-it .ses .container {
    background: #F4F5F6;
    padding: 50px;
    display: flex;
    justify-content: space-between;
    text-align: center;
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.8;
    gap: 10%;
}
@media (max-width: 1280px) {
    .page-template-page-it .ses .container {
        padding: 30px;
        gap: 5%;
        font-size: 1.7rem;
    }
}
.page-template-page-it .ses .container .box {
    width: 26.6666666667%;
}
@media (max-width: 1280px) {
    .page-template-page-it .ses .container .box {
        width: 30%;
    }
}
.page-template-page-it .ses .wrapper {
    border-radius: 8px;
    border: 1px solid #D8D8D8;
    display: flex;
}
@media (max-width: 768px) {
    .page-template-page-it .ses .wrapper {
        flex-direction: column;
    }
}
.page-template-page-it .ses .wrapper .box {
    width: 50%;
    padding: 50px;
}
@media (max-width: 1280px) {
    .page-template-page-it .ses .wrapper .box {
        padding: 25px;
    }
}
@media (max-width: 768px) {
    .page-template-page-it .ses .wrapper .box {
        width: 100%;
        padding: 20px;
    }
}
.page-template-page-it .ses .wrapper .box h3 {
    border-bottom: 1px solid #D8D8D8;
    color: var(--color-orange);
    font-size: 3.2rem;
    font-weight: 700;
}
@media (max-width: 1280px) {
    .page-template-page-it .ses .wrapper .box h3 {
        font-size: 2.4rem;
    }
}
@media (max-width: 768px) {
    .page-template-page-it .ses .wrapper .box h3 {
        font-size: 1.8rem;
    }
}
.page-template-page-it .ses .wrapper .box .tag__container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.page-template-page-it .ses .wrapper .box .tag__container span {
    background: #F4F5F6;
    height: 36px;
    border-radius: 18px;
    width: 150px;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (max-width: 1280px) {
    .page-template-page-it .ses .wrapper .box .tag__container span {
        font-size: 1.4rem;
        width: 130px;
        height: 30px;
        border-radius: 15px;
        padding: 7px 5px;
    }
}
.page-template-page-it .dispatch {
    background: #F4F5F6;
}
.page-template-page-it .dispatch .lr__container {
    display: flex;
}
@media (max-width: 768px) {
    .page-template-page-it .dispatch .lr__container {
        flex-direction: column;
        row-gap: 30px;
    }
}
.page-template-page-it .dispatch .lr__container .left, .page-template-page-it .dispatch .lr__container .right {
    width: 50%;
}
@media (max-width: 768px) {
    .page-template-page-it .dispatch .lr__container .left, .page-template-page-it .dispatch .lr__container .right {
        width: 100%;
    }
}
.page-template-page-it .dispatch .lr__container .left {
    padding-right: 5%;
}
@media (max-width: 768px) {
    .page-template-page-it .dispatch .lr__container .left {
        padding-right: 0;
    }
}
.page-template-page-it .dispatch .lr__container .right {
    position: relative;
}
.page-template-page-it .dispatch .lr__container .right .txt {
    font-size: 2rem;
    font-weight: 700;
}
@media (max-width: 1280px) {
    .page-template-page-it .dispatch .lr__container .right .txt {
        font-size: 1.8rem;
    }
}
.page-template-page-it .introduction {
    background: #F4F5F6;
}
.page-template-page-it .introduction .lr__container {
    display: flex;
    gap: 40px;
    line-height: 1.6;
}
@media (max-width: 1280px) {
    .page-template-page-it .introduction .lr__container {
        gap: 25px;
    }
}
@media (max-width: 768px) {
    .page-template-page-it .introduction .lr__container {
        flex-direction: column;
    }
}
.page-template-page-it .introduction .lr__container .left, .page-template-page-it .introduction .lr__container .right {
    width: calc((100% - 40px) / 2);
    border-radius: 8px;
}
@media (max-width: 1280px) {
    .page-template-page-it .introduction .lr__container .left, .page-template-page-it .introduction .lr__container .right {
        width: calc((100% - 25px) / 2);
    }
}
@media (max-width: 768px) {
    .page-template-page-it .introduction .lr__container .left, .page-template-page-it .introduction .lr__container .right {
        width: 100%;
    }
}
.page-template-page-it .introduction .lr__container .left {
    background: #fff;
    padding: 40px;
}
@media (max-width: 1280px) {
    .page-template-page-it .introduction .lr__container .left {
        padding: 25px;
    }
}
@media (max-width: 768px) {
    .page-template-page-it .introduction .lr__container .left {
        padding: 20px;
    }
}
.page-template-page-it .introduction .lr__container .left h5 {
    font-size: 2rem;
    font-weight: 700;
    border-bottom: 1px solid #D8D8D8;
}
@media (max-width: 1280px) {
    .page-template-page-it .introduction .lr__container .left h5 {
        font-size: 1.8rem;
    }
}
.page-template-page-it .introduction .lr__container .left .tag__container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px 10px;
}
.page-template-page-it .introduction .lr__container .left .tag__container span {
    height: 36px;
    border-radius: 18px;
    background: #F4F5F6;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.page-template-page-it .introduction .lr__container .right {
    position: relative;
}
.page-template-page-it .introduction .lr__container .right .txt {
    position: absolute;
    top: 35px;
    left: 35px;
    font-size: 2rem;
    font-weight: 700;
}
@media (max-width: 1280px) {
    .page-template-page-it .introduction .lr__container .right .txt {
        top: 20px;
        left: 20px;
        font-size: 1.8rem;
    }
}
.page-template-page-it .introduction .lr__container .right img {
    border-radius: inherit;
}
.page-template-page-it .matching .txt__img__container:nth-child(2n),
.page-template-page-it .support .txt__img__container:nth-child(2n) {
    flex-direction: row;
}
@media (max-width: 768px) {
    .page-template-page-it .matching .txt__img__container:nth-child(2n),
    .page-template-page-it .support .txt__img__container:nth-child(2n) {
        flex-direction: column;
    }
}
.page-template-page-it .matching .txt__img__container:nth-child(2n) .txt,
.page-template-page-it .support .txt__img__container:nth-child(2n) .txt {
    padding-right: 6%;
}
@media (max-width: 1280px) {
    .page-template-page-it .matching .txt__img__container:nth-child(2n) .txt,
    .page-template-page-it .support .txt__img__container:nth-child(2n) .txt {
        padding-right: 4%;
    }
}
@media (max-width: 768px) {
    .page-template-page-it .matching .txt__img__container:nth-child(2n) .txt,
    .page-template-page-it .support .txt__img__container:nth-child(2n) .txt {
        padding-right: 0;
    }
}
.page-template-page-it .matching .txt__img__container:nth-child(2n+1),
.page-template-page-it .support .txt__img__container:nth-child(2n+1) {
    flex-direction: row-reverse;
}
@media (max-width: 768px) {
    .page-template-page-it .matching .txt__img__container:nth-child(2n+1),
    .page-template-page-it .support .txt__img__container:nth-child(2n+1) {
        flex-direction: column;
    }
}
.page-template-page-it .matching .txt__img__container:nth-child(2n+1) .txt,
.page-template-page-it .support .txt__img__container:nth-child(2n+1) .txt {
    padding-left: 6%;
}
@media (max-width: 1280px) {
    .page-template-page-it .matching .txt__img__container:nth-child(2n+1) .txt,
    .page-template-page-it .support .txt__img__container:nth-child(2n+1) .txt {
        padding-left: 4%;
    }
}
@media (max-width: 768px) {
    .page-template-page-it .matching .txt__img__container:nth-child(2n+1) .txt,
    .page-template-page-it .support .txt__img__container:nth-child(2n+1) .txt {
        padding-left: 0;
    }
}
.page-template-page-it .bottom__section {
    background: url(../img/it/it__bottom.webp) center/cover no-repeat;
}

/* ------------------------------------- /
/  お問い合わせ
/* ------------------------------------- */
.page-template-page-contact .to__job .btn,
.page-template-page-job .to__job .btn {
    width: 400px;
    height: 77px;
    background: var(--color-black);
    border-radius: 39px;
    padding: 0 32px;
    display: flex;
    align-items: center;
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto;
    position: relative;
}
@media (max-width: 1280px) {
    .page-template-page-contact .to__job .btn,
    .page-template-page-job .to__job .btn {
        width: 320px;
        height: 60px;
        border-radius: 30px;
        padding: 0 25px;
        font-size: 1.8rem;
    }
}
@media (max-width: 768px) {
    .page-template-page-contact .to__job .btn,
    .page-template-page-job .to__job .btn {
        width: 260px;
        height: 50px;
        border-radius: 25px;
        padding: 0 20px;
        font-size: 1.7rem;
    }
}
.page-template-page-contact .to__job .btn::before,
.page-template-page-job .to__job .btn::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 32px;
    transform: translateY(-50%);
    width: 8px;
    aspect-ratio: 8/14;
    background: url(../img/common/arrow_wh_right.svg) center/contain no-repeat;
}
@media (max-width: 1280px) {
    .page-template-page-contact .to__job .btn::before,
    .page-template-page-job .to__job .btn::before {
        right: 25px;
    }
}
@media (max-width: 768px) {
    .page-template-page-contact .to__job .btn::before,
    .page-template-page-job .to__job .btn::before {
        right: 20px;
        width: 6px;
    }
}
.page-template-page-contact .contact__form dl,
.page-template-page-job .contact__form dl {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 20px 40px;
}
@media (max-width: 1280px) {
    .page-template-page-contact .contact__form dl,
    .page-template-page-job .contact__form dl {
        gap: 20px 20px;
    }
}
@media (max-width: 768px) {
    .page-template-page-contact .contact__form dl,
    .page-template-page-job .contact__form dl {
        gap: 10px;
    }
}
.page-template-page-contact .contact__form dl dt,
.page-template-page-job .contact__form dl dt {
    width: 350px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 4px;
    gap: 20px;
}
@media (max-width: 1280px) {
    .page-template-page-contact .contact__form dl dt,
    .page-template-page-job .contact__form dl dt {
        width: 300px;
    }
}
@media (max-width: 768px) {
    .page-template-page-contact .contact__form dl dt,
    .page-template-page-job .contact__form dl dt {
        margin-top: 20px;
        width: 100%;
        justify-content: flex-start;
        padding-top: unset;
    }
}
.page-template-page-contact .contact__form dl dt .required,
.page-template-page-job .contact__form dl dt .required {
    font-size: 1.4rem;
    color: #fff;
    font-weight: 700;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 30px;
    background: #F4962D;
    border-radius: 5px;
}
.page-template-page-contact .contact__form dl dd,
.page-template-page-job .contact__form dl dd {
    width: calc(100% - 40px - 350px);
}
@media (max-width: 1280px) {
    .page-template-page-contact .contact__form dl dd,
    .page-template-page-job .contact__form dl dd {
        width: calc(100% - 20px - 300px);
    }
}
@media (max-width: 768px) {
    .page-template-page-contact .contact__form dl dd,
    .page-template-page-job .contact__form dl dd {
        width: 100%;
    }
}
.page-template-page-contact .contact__form dl dd input[type=text],
.page-template-page-contact .contact__form dl dd input[type=email],
.page-template-page-contact .contact__form dl dd input[type=tel],
.page-template-page-contact .contact__form dl dd textarea,
.page-template-page-job .contact__form dl dd input[type=text],
.page-template-page-job .contact__form dl dd input[type=email],
.page-template-page-job .contact__form dl dd input[type=tel],
.page-template-page-job .contact__form dl dd textarea {
    width: 100%;
    border: none;
    border-radius: 5px;
    background: #FAFAFA;
    font-size: inherit;
    font-family: inherit;
    padding: 8px;
}
.page-template-page-contact .contact__form dl dd .wpcf7-list-item,
.page-template-page-job .contact__form dl dd .wpcf7-list-item {
    display: block;
    margin-bottom: 10px;
}
.page-template-page-contact .contact__form dl dd label:has(input[type=checkbox]),
.page-template-page-job .contact__form dl dd label:has(input[type=checkbox]) {
    position: relative;
    padding-left: 37px;
}
.page-template-page-contact .contact__form dl dd label:has(input[type=checkbox])::before,
.page-template-page-job .contact__form dl dd label:has(input[type=checkbox])::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 22px;
    aspect-ratio: 1;
    border-radius: 50%;
    border: 1px solid var(--color-black);
}
.page-template-page-contact .contact__form dl dd label:has(input[type=checkbox]):has(input[type=checkbox]:checked)::after,
.page-template-page-job .contact__form dl dd label:has(input[type=checkbox]):has(input[type=checkbox]:checked)::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 11px;
    transform: translate(-50%, -50%);
    width: 10px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: var(--color-black);
}
.page-template-page-contact .contact__form .submit__btn__wrapper,
.page-template-page-job .contact__form .submit__btn__wrapper {
    margin: 0 auto;
    width: -moz-fit-content;
    width: fit-content;
    position: relative;
    border-radius: 39px;
}
.page-template-page-contact .contact__form .submit__btn__wrapper.return:hover input[type=button],
.page-template-page-job .contact__form .submit__btn__wrapper.return:hover input[type=button] {
    color: #fff;
    background: var(--color-black);
}
.page-template-page-contact .contact__form .submit__btn__wrapper.return:hover::before,
.page-template-page-job .contact__form .submit__btn__wrapper.return:hover::before {
    background: #fff;
    -webkit-mask: url(../img/common/arrow_wh_right.svg) center/contain no-repeat;
            mask: url(../img/common/arrow_wh_right.svg) center/contain no-repeat;
}
.page-template-page-contact .contact__form .submit__btn__wrapper.return::before,
.page-template-page-job .contact__form .submit__btn__wrapper.return::before {
    background: var(--color-black);
    -webkit-mask: url(../img/common/arrow_wh_right.svg) center/contain no-repeat;
            mask: url(../img/common/arrow_wh_right.svg) center/contain no-repeat;
}
.page-template-page-contact .contact__form .submit__btn__wrapper.return input[type=button],
.page-template-page-job .contact__form .submit__btn__wrapper.return input[type=button] {
    color: var(--color-black);
    border: 1px solid var(--color-black);
    background: #fff;
}
@media (max-width: 1280px) {
    .page-template-page-contact .contact__form .submit__btn__wrapper,
    .page-template-page-job .contact__form .submit__btn__wrapper {
        border-radius: 30px;
    }
}
@media (max-width: 768px) {
    .page-template-page-contact .contact__form .submit__btn__wrapper,
    .page-template-page-job .contact__form .submit__btn__wrapper {
        border-radius: 25px;
    }
}
.page-template-page-contact .contact__form .submit__btn__wrapper:hover::before,
.page-template-page-job .contact__form .submit__btn__wrapper:hover::before {
    background: var(--color-black);
    -webkit-mask: url(../img/common/arrow_wh_right.svg) center/contain no-repeat;
            mask: url(../img/common/arrow_wh_right.svg) center/contain no-repeat;
}
.page-template-page-contact .contact__form .submit__btn__wrapper::before,
.page-template-page-job .contact__form .submit__btn__wrapper::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 32px;
    transform: translateY(-50%);
    width: 8px;
    aspect-ratio: 8/14;
    background: url(../img/common/arrow_wh_right.svg) center/contain no-repeat;
}
@media (max-width: 1280px) {
    .page-template-page-contact .contact__form .submit__btn__wrapper::before,
    .page-template-page-job .contact__form .submit__btn__wrapper::before {
        right: 25px;
    }
}
.page-template-page-contact .contact__form .submit__btn__wrapper input[type=submit],
.page-template-page-contact .contact__form .submit__btn__wrapper input[type=button],
.page-template-page-job .contact__form .submit__btn__wrapper input[type=submit],
.page-template-page-job .contact__form .submit__btn__wrapper input[type=button] {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 32px;
    color: #fff;
    background: var(--color-black);
    border: 1px solid var(--color-black);
    font-size: 2rem;
    font-weight: 700;
    width: 340px;
    height: 77px;
    border-radius: inherit;
    text-align: left;
    cursor: pointer;
    transition: all 0.2s;
}
.page-template-page-contact .contact__form .submit__btn__wrapper input[type=submit]:hover,
.page-template-page-contact .contact__form .submit__btn__wrapper input[type=button]:hover,
.page-template-page-job .contact__form .submit__btn__wrapper input[type=submit]:hover,
.page-template-page-job .contact__form .submit__btn__wrapper input[type=button]:hover {
    background: #fff;
    color: var(--color-black);
}
@media (max-width: 1280px) {
    .page-template-page-contact .contact__form .submit__btn__wrapper input[type=submit],
    .page-template-page-contact .contact__form .submit__btn__wrapper input[type=button],
    .page-template-page-job .contact__form .submit__btn__wrapper input[type=submit],
    .page-template-page-job .contact__form .submit__btn__wrapper input[type=button] {
        width: 280px;
        height: 60px;
        font-size: 1.8rem;
        padding: 0 25px;
    }
}
@media (max-width: 768px) {
    .page-template-page-contact .contact__form .submit__btn__wrapper input[type=submit],
    .page-template-page-contact .contact__form .submit__btn__wrapper input[type=button],
    .page-template-page-job .contact__form .submit__btn__wrapper input[type=submit],
    .page-template-page-job .contact__form .submit__btn__wrapper input[type=button] {
        width: 200px;
        height: 50px;
        font-size: 1.6rem;
        padding: 0 20px;
    }
}
.page-template-page-contact .contact__form .submit__btn__wrapper .wpcf7-spinner,
.page-template-page-job .contact__form .submit__btn__wrapper .wpcf7-spinner {
    display: none;
}/*# sourceMappingURL=style.css.map */